cadet-agent 0.17.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/package.json +1 -1
- package/src/install.mjs +16 -2
package/README.md
CHANGED
|
@@ -19,6 +19,27 @@ Cadet-Agent is **not a one-shot code generator**. It won't spit out a finished g
|
|
|
19
19
|
- `package-agent.ps1` builds the distributable `cadet-agent.zip` package.
|
|
20
20
|
- `publish-npm.ps1` publishes the CLI to npm using a token from `~/.npm_token`.
|
|
21
21
|
|
|
22
|
+
## Cross-IDE Support
|
|
23
|
+
|
|
24
|
+
Cadet-Agent provides full workflow parity across four IDEs. The same 7 skills + resume + reviewer are available in each:
|
|
25
|
+
|
|
26
|
+
| Feature | GitHub Copilot | Cursor | Continue | Claude Code |
|
|
27
|
+
|---|---|---|---|---|
|
|
28
|
+
| Auto-load rules | Agent definition | `alwaysApply` rule | Project rule | Project skill |
|
|
29
|
+
| Skill dispatch | `/cadet-<skill>` prompts | Natural language | `/cadet-<skill>` commands | `/cadet-<skill>` skills |
|
|
30
|
+
| Requirements | ✅ | ✅ | ✅ | ✅ |
|
|
31
|
+
| Architecture | ✅ | ✅ | ✅ | ✅ |
|
|
32
|
+
| Spike | ✅ | ✅ | ✅ | ✅ |
|
|
33
|
+
| Story Breakdown | ✅ | ✅ | ✅ | ✅ |
|
|
34
|
+
| TDD | ✅ | ✅ | ✅ | ✅ |
|
|
35
|
+
| Debugging | ✅ | ✅ | ✅ | ✅ |
|
|
36
|
+
| Code Review | ✅ | ✅ | ✅ | ✅ |
|
|
37
|
+
| Resume | ✅ | ✅ | ✅ | ✅ |
|
|
38
|
+
| Reviewer mode | Agent picker | Rule toggle | `/cadet-agent-reviewer` | `/cadet-agent-reviewer` |
|
|
39
|
+
| Git guard | PreToolUse hook | Manual | Manual | Manual |
|
|
40
|
+
|
|
41
|
+
All adapters delegate to the canonical files under `.cadet/agent/core/` — no duplicated rules or skills. See `ADAPTERS.md` for the full inventory.
|
|
42
|
+
|
|
22
43
|
## Quick Install
|
|
23
44
|
|
|
24
45
|
```bash
|
package/package.json
CHANGED
package/src/install.mjs
CHANGED
|
@@ -227,12 +227,26 @@ export async function install(targetDir, opts = {}) {
|
|
|
227
227
|
console.log('── Next steps ──');
|
|
228
228
|
console.log(' GitHub Copilot:');
|
|
229
229
|
console.log(' Select "Cadet Agent" from the agent picker in Copilot Chat');
|
|
230
|
+
console.log(' Slash commands: /cadet-requirements, /cadet-architecture, /cadet-spike,');
|
|
231
|
+
console.log(' /cadet-breakdown, /cadet-tdd, /cadet-debug, /cadet-review, /cadet-resume');
|
|
232
|
+
console.log(' Reviewer: select "Cadet Agent Reviewer" from the agent picker');
|
|
230
233
|
console.log(' Cursor:');
|
|
231
|
-
console.log(' Already active — .cursor\\rules\\cadet-agent.md loads automatically');
|
|
234
|
+
console.log(' Already active — .cursor\\rules\\cadet-agent.md loads automatically (alwaysApply)');
|
|
235
|
+
console.log(' Ask for a phase by name: "run the requirements skill", "do a code review", etc.');
|
|
236
|
+
console.log(' Reviewer: enable the cadet-agent-reviewer rule (alwaysApply: false)');
|
|
237
|
+
console.log(' Git guard: manual — see .cursor\\rules\\cadet-agent.md for instructions');
|
|
232
238
|
console.log(' Continue:');
|
|
233
|
-
console.log(' Already active — .continue\\rules\\cadet-agent.md loads
|
|
239
|
+
console.log(' Already active — .continue\\rules\\cadet-agent.md loads as a project rule');
|
|
240
|
+
console.log(' Slash commands: /cadet-requirements, /cadet-architecture, /cadet-spike,');
|
|
241
|
+
console.log(' /cadet-breakdown, /cadet-tdd, /cadet-debug, /cadet-review, /cadet-resume');
|
|
242
|
+
console.log(' Reviewer: /cadet-agent-reviewer');
|
|
243
|
+
console.log(' Git guard: manual — see .continue\\rules\\cadet-agent.md for instructions');
|
|
234
244
|
console.log(' Claude Code:');
|
|
235
245
|
console.log(' Already active — .claude\\skills\\cadet-agent.md loads as a project skill');
|
|
246
|
+
console.log(' Slash commands: /cadet-requirements, /cadet-architecture, /cadet-spike,');
|
|
247
|
+
console.log(' /cadet-breakdown, /cadet-tdd, /cadet-debug, /cadet-review, /cadet-resume');
|
|
248
|
+
console.log(' Reviewer: /cadet-agent-reviewer');
|
|
249
|
+
console.log(' Git guard: manual — see .claude\\skills\\cadet-agent.md for instructions');
|
|
236
250
|
console.log('');
|
|
237
251
|
}
|
|
238
252
|
|