cadet-agent 0.25.0 → 0.27.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.
Files changed (2) hide show
  1. package/README.md +15 -3
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -9,7 +9,7 @@ Cadet-Agent is **not a one-shot code generator**. It won't spit out a finished g
9
9
  - `cadet-agent.md` is the thin global directive: identity, non-negotiable rules, workflow routing, hard-gate protocol, and skill dispatch.
10
10
  - `Harness.md` is the canonical harness contract: budgets, evidence-backed gates, retries, context tiers, tool routing, privacy, and escalation.
11
11
  - `harness.schema.json` and `state.schema.json` are the machine-readable schemas for harness records and session state.
12
- - `skills/` contains scoped workflow-phase skills (Requirements, Architecture, Spike, StoryBreakdown, TDD, Debugging, CodeReview, Resume, MCPSetup, AgentReviewer).
12
+ - `skills/` contains scoped workflow-phase skills (PlanningReview, Requirements, Architecture, Spike, StoryBreakdown, TDD, Debugging, CodeReview, Resume, MCPSetup, AgentReviewer).
13
13
  - `templates/` contains runtime templates for planning artifacts.
14
14
  - `.cadet/harness.json` holds repository-local budget/policy overrides (preserved by sync).
15
15
  - `.cadet/runs/` holds sanitized run ledgers (preserved by sync; no secrets or raw prompts by default).
@@ -23,16 +23,18 @@ Cadet-Agent is **not a one-shot code generator**. It won't spit out a finished g
23
23
  - `.agents/skills/` contains Deep Code (and cross-client) skill adapters.
24
24
  - These IDE folders hold thin integration shims; the core framework logic still lives in `.cadet/agent/core/`.
25
25
  - `package-agent.ps1` builds the distributable `cadet-agent.zip` package.
26
- - `publish-npm.ps1` publishes the CLI to npm using a token from `~/.npm_token`.
26
+ - `bump-version.ps1` bumps the version, updates version-bearing files, commits, tags, and pushes. It runs `npm run lint` first and refuses to release if the link check fails.
27
+ - `npm run lint` checks all markdown links (the same offline check CI runs); `npm run verify` runs tests + lint.
27
28
 
28
29
  ## Cross-IDE Support
29
30
 
30
- Cadet-Agent provides full workflow parity across five IDEs. The same 9 skills + reviewer are available in each:
31
+ Cadet-Agent provides full workflow parity across five IDEs. The same 10 skills + reviewer are available in each:
31
32
 
32
33
  | Feature | GitHub Copilot | Cursor | Continue | Claude Code | Deep Code |
33
34
  |---|---|---|---|---|---|
34
35
  | Auto-load rules | Agent definition | `alwaysApply` rule | Project rule | Project skill | Project skill (`.agents/skills/`) |
35
36
  | Skill dispatch | `/cadet-<skill>` prompts | Natural language | `/cadet-<skill>` commands | `/cadet-<skill>` skills | `/skills` menu (`/`) |
37
+ | Planning Review | ✅ | ✅ | ✅ | ✅ | ✅ |
36
38
  | Requirements | ✅ | ✅ | ✅ | ✅ | ✅ |
37
39
  | Architecture | ✅ | ✅ | ✅ | ✅ | ✅ |
38
40
  | Spike | ✅ | ✅ | ✅ | ✅ | ✅ |
@@ -111,6 +113,7 @@ flowchart TD
111
113
  REPORT["Report current phase,<br/>epics, stories & gates"]
112
114
  CR["🔍 Context Resolution<br/>classify change size,<br/>calibrate learner,<br/>detect policy"]
113
115
  REQ["📋 Requirements<br/>Given/When/Then criteria<br/>assumption audit"]
116
+ PLANREV["🧩 Planning Review<br/>interview one question<br/>at a time · decision tree"]
114
117
  ARCH["🏗️ Architecture<br/>technical design,<br/>ADR decisions"]
115
118
  SPIKE["🧪 Spikes<br/>resolve unverified<br/>assumptions"]
116
119
  BREAKDOWN["📐 Story Breakdown<br/>epics → testable stories"]
@@ -125,8 +128,11 @@ flowchart TD
125
128
  RESUME -->|"yes"| REPORT --> CR
126
129
 
127
130
  CR -->|"large change"| REQ
131
+ CR -->|"plan fuzzy or contested"| PLANREV
128
132
  CR -->|"small / no_test_required"| IMPL
129
133
 
134
+ PLANREV -->|"shared understanding reached"| REQ
135
+
130
136
  REQ --> ARCH
131
137
  ARCH -->|"unverified assumptions"| SPIKE
132
138
  ARCH -->|"all assumptions resolved"| BREAKDOWN
@@ -143,6 +149,7 @@ flowchart TD
143
149
  style START fill:#4a9,stroke:#333,color:#fff
144
150
  style CLOSED fill:#4a9,stroke:#333,color:#fff
145
151
  style RESUME fill:#e8a840,stroke:#333,color:#000
152
+ style PLANREV fill:#8a7ae8,stroke:#333,color:#fff
146
153
  style REVIEW fill:#e87440,stroke:#333,color:#fff
147
154
  style VALIDATE fill:#e87440,stroke:#333,color:#fff
148
155
  ```
@@ -206,6 +213,11 @@ Cadet Agent will classify the change, check `.cadet/state.json` for blocking gat
206
213
 
207
214
  **Skill mode:** For a specific workflow phase, use the matching slash command so the skill becomes the primary instruction context:
208
215
 
216
+ ```text
217
+ /cadet-planning-review
218
+ clarify the plan for a co-op loot system before I write the design
219
+ ```
220
+
209
221
  ```text
210
222
  /cadet-requirements
211
223
  create a requirements doc for a kart handling prototype
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "cadet-agent",
3
- "version": "0.25.0",
3
+ "version": "0.27.0",
4
4
  "description": "Cross-IDE agent framework for Unity/C# game-development — one-command install",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "cadet-agent": "bin/cli.mjs"
8
8
  },
9
9
  "scripts": {
10
- "test": "node --test test/*.test.mjs"
10
+ "test": "node --test test/*.test.mjs",
11
+ "lint": "lychee --offline --include-fragments \"**/*.md\"",
12
+ "verify": "npm test && npm run lint"
11
13
  },
12
14
  "files": [
13
15
  "bin/",