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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- **Model aliases updated for Composer 2.5.** Cursor retired the Composer 2.x ids — `cursor-agent --list-models` now lists only `composer-2.5` and `composer-2.5-fast` (verified on macOS, 2026-06-10). The `composer`, `composer-fast`, and `fast` shortcuts now resolve to `composer-2.5-fast` (was the dead `composer-2-fast`), and `composer-full` resolves to `composer-2.5` (was `composer-2`). The retired `composer-2` / `composer-2-fast` ids are kept as identity passthroughs so users on older `cursor-agent` builds aren't broken. README, the `cursor-runner` agent guidance, command/package descriptions, and tests updated to match. (#8)
- **`cursor-runner` agent invocation corrected.** Step 6 told the subagent to run `node_modules/.bin/tsx …/plugins/cursor/scripts/delegate.ts` — stale from before the zero-deps `.mjs` rewrite: `tsx` is not a dependency, there is no `.ts` file, and the path double-counted `plugins/cursor`. It now matches the working slash command: `node "${CLAUDE_PLUGIN_ROOT}/scripts/delegate.mjs" -- …`. The `/cursor:delegate` slash command was already correct; only the subagent's documented call was broken. (#10)

## 0.3.0 — /cursor:review + codebase hardening

Expand Down
5 changes: 2 additions & 3 deletions plugins/cursor/agents/cursor-runner.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ When in doubt: fresh if the task topic changed, resume if it's the same thread o
### 6. Invoke `/cursor:delegate` via a single `Bash` call

```bash
"${CLAUDE_PLUGIN_ROOT}/node_modules/.bin/tsx" \
"${CLAUDE_PLUGIN_ROOT}/plugins/cursor/scripts/delegate.ts" \
node "${CLAUDE_PLUGIN_ROOT}/scripts/delegate.mjs" \
-- --model fast "<prompt>"
```

Expand All @@ -97,7 +96,7 @@ Do not paraphrase the summary, do not rewrite the file list, do not hide the cha

## Output format

Return exactly what `delegate.ts` prints. One line of your own framing is fine:
Return exactly what `delegate.mjs` prints. One line of your own framing is fine:

> Delegated to Cursor (`composer-2.5-fast`). Result below.

Expand Down
Loading