feat: add Amp (Sourcegraph) as a supported ACP agent#55
Merged
wesbillman merged 3 commits intomainfrom Feb 12, 2026
Merged
Conversation
Register Amp in both the backend and frontend known-agent registries so it is discovered locally (via the `amp-acp` binary) and available for remote Blox workspaces via `blox acp --command=amp-acp`. Co-Authored-By: Claude Opus 4.6 <[email protected]>
Remote Blox workstations support a fixed set of agents (Goose, Claude, Amp) regardless of what the user has installed locally. The agent selector in the new-session modal now receives a `remote` prop so it displays these three options instead of relying on local discovery. Co-Authored-By: Claude Opus 4.6 <[email protected]>
The remote-branch code path always used the agent stored on the branch (`branch.agent`) and ignored the `provider` parameter coming from the UI. This meant the `--command` flag on `blox acp` never reflected the user's selection in the agent dropdown. Use `provider.or_else(|| branch.agent.clone())` so the UI selection takes priority, falling back to the branch default only when no explicit choice is made. Co-Authored-By: Claude Opus 4.6 <[email protected]>
matt2e
approved these changes
Feb 12, 2026
taylorkmho
added a commit
that referenced
this pull request
Feb 12, 2026
* origin/main: feat: async worktree creation (#71) fix: Skip main worktree on project import and remove main badge UI (#70) feat(ui): replace long-press picker with explicit New note / New commit buttons (#67) fix: remember ordered list of recent agents instead of single last-used (#65) fix: capitalize 'Staged' in macOS application menu (#64) fix: dismiss new branch dialog immediately for remote branches (#57) feat: add Amp (Sourcegraph) as a supported ACP agent (#55) feat: restore subfolder autocomplete in new project dialog (#56) Consolidate ACP implementations into acp-client crate (#52) # Conflicts: # staged/src/lib/BranchCard.svelte # staged/src/lib/NewSessionModal.svelte
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
amp-acpbinary) and available for remote Blox workspaces viablox acp --command=amp-acpblox acpfor remote sessions instead of always using the branch defaultTest plan
--command=amp-acp🤖 Generated with Claude Code