Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Fixed

- **`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.

## 0.3.0 — /cursor:review + codebase hardening

### Added
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-fast`). Result below.

Expand Down
Loading