Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,7 @@ The roadmap is about one thing: making the agent smarter, more autonomous, and m

### Done

- [x] Pair programming: `bolt pair` shares one live session across two terminals, prompts and replies from either side appear in both (no shared cursor yet; direct shell input may double-render, and permission prompts can be answered by either side)
- [x] `multiedit`: batch several edits to one file in a single tool call
- [x] Background process tools: `background` start, output, list, and kill without blocking the loop
- [x] `test_run`: run tests and hand the agent structured failures
Expand Down
3 changes: 1 addition & 2 deletions packages/opencode/src/cli/cmd/pair.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ export const PairCommand = effectCmd({
username: args.username,
pair: true,
}),
)
yield* Effect.promise(() => server.stop(true))
).pipe(Effect.ensuring(Effect.promise(() => server.stop(true))))
}),
})
Loading