feat(desktop): register Cursor as native ACP runtime + onboarding harness#2536
Open
Bartok9 wants to merge 3 commits into
Open
feat(desktop): register Cursor as native ACP runtime + onboarding harness#2536Bartok9 wants to merge 3 commits into
Bartok9 wants to merge 3 commits into
Conversation
Bartok9
added a commit
to Bartok9/buzz
that referenced
this pull request
Jul 23, 2026
Pre-maintainer pass on block#2536 / Refs block#2535.
5 tasks
Bartok9
added a commit
to Bartok9/buzz
that referenced
this pull request
Jul 23, 2026
Both Cursor and Grok Build install `~/.local/bin/agent`. Binding Cursor to the bare `agent` basename mis-routes Grok installs as Cursor. - Prefer `cursor-agent` as the only catalog command - Path-qualify bare `agent` only when the binary lives under cursor-agent/ - Drop bare `agent` from process-sweep + default-args mapping - Auth probe / login hint use `cursor-agent` - Tests cover Grok path non-match Pre-maintainer polish for block#2536 / Refs block#2535.
Author
Self-review polish landedCritical finding fixed: Cursor and Grok Build both install a PATH shim named Changes in latest push
Still out of scope (called out in PR)
|
Bartok9
added a commit
to Bartok9/buzz
that referenced
this pull request
Jul 23, 2026
Pre-maintainer pass on block#2536 / Refs block#2535. Signed-off-by: Bartok9 <danielrpike9@gmail.com>
Bartok9
added a commit
to Bartok9/buzz
that referenced
this pull request
Jul 23, 2026
Both Cursor and Grok Build install `~/.local/bin/agent`. Binding Cursor to the bare `agent` basename mis-routes Grok installs as Cursor. - Prefer `cursor-agent` as the only catalog command - Path-qualify bare `agent` only when the binary lives under cursor-agent/ - Drop bare `agent` from process-sweep + default-args mapping - Auth probe / login hint use `cursor-agent` - Tests cover Grok path non-match Pre-maintainer polish for block#2536 / Refs block#2535. Signed-off-by: Bartok9 <danielrpike9@gmail.com>
Bartok9
force-pushed
the
bartok9/cursor-acp-runtime
branch
from
July 23, 2026 16:37
a267560 to
c04c4b1
Compare
…ness Users only saw Claude Code and Codex on the harness setup page. Cursor already speaks ACP natively (`agent acp` / `cursor-agent acp`). - Add cursor to KNOWN_ACP_RUNTIMES (install, auth probe, skills, PATH) - Default args acp; readiness via `agent status` / `agent login` - Show Cursor on onboarding harness page (with Claude + Codex) - Tests + buzz-acp README note on extension-method follow-up Refs block#1683. Companion: Grok Build remains block#2347. Signed-off-by: Bartok9 <danielrpike9@gmail.com>
Pre-maintainer pass on block#2536 / Refs block#2535. Signed-off-by: Bartok9 <danielrpike9@gmail.com>
Both Cursor and Grok Build install `~/.local/bin/agent`. Binding Cursor to the bare `agent` basename mis-routes Grok installs as Cursor. - Prefer `cursor-agent` as the only catalog command - Path-qualify bare `agent` only when the binary lives under cursor-agent/ - Drop bare `agent` from process-sweep + default-args mapping - Auth probe / login hint use `cursor-agent` - Tests cover Grok path non-match Pre-maintainer polish for block#2536 / Refs block#2535. Signed-off-by: Bartok9 <danielrpike9@gmail.com>
Bartok9
force-pushed
the
bartok9/cursor-acp-runtime
branch
from
July 23, 2026 17:25
c04c4b1 to
efb6360
Compare
Author
Polish pass (rebased on
|
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
Register Cursor as a first-class ACP harness and show it on Set up your agent harnesses next to Claude Code and Codex.
Closes #2535. Related: #1683 (prior Cursor PR), #2347 / #2546 (Grok Build companion).
Why this PR exists
Onboarding currently hard-filters visible harnesses to
claude+codexonly (ONBOARDING_RUNTIME_ORDER). Cursor users cannot Install/sign-in on that page even though Cursor speaks ACP natively:Critical design note (Grok collision)
Both Cursor and Grok Build install
~/.local/bin/agent. This PR deliberately:cursor-agentas the catalog command (not bareagent)agentas Cursor when the binary path is under Cursor’s install treeagent(would claim Grok workers)What changed
KNOWN_ACP_RUNTIMES:cursorentry (cursor-agent, default argsacp, install script,cursor-agent statusauth probe,.cursor/skills,~/.cursor/binon PATH)cursor-agentonly)claude,codex,cursoragentReadinesstreats Cursor like other CLI harnessesbuzz-acpREADME: Cursor path + extension-method follow-up noteNon-claims
Test plan
cargo test --lib normalizes_cursorcargo test --lib resolves_cursorcargo test --lib path_qualified_cursorcargo test --lib cursor_runtimenode --test onboardingRuntimeSelection.test.mjscursor-agent login, Next enablescursor-agent, not Grok’sagentshimSigned-off-by: Bartok9 danielrpike9@gmail.com