agent-method 1.5.0 → 1.5.3

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 CHANGED
@@ -1,256 +1,246 @@
1
- # agent-method
2
-
3
- A file-structure-first methodology for AI-agent-assisted development. Files are the interface — with optional CLI tools for validation, routing, and project management.
4
-
5
- `ai-agents` `prompt-engineering` `developer-tools` `context-engineering` `agent-framework` `markdown` `llm-tools` `ai-workflow` `cursor` `claude-code`
6
-
7
- ---
8
-
9
- ## The problem
10
-
11
- AI-agent-assisted development breaks down in three ways:
12
-
13
- - **Context rot** — agent quality degrades as context windows fill with irrelevant conversation
14
- - **Amnesia** — decisions from session N are lost by session N+1
15
- - **Scope drift** — without structured gates, work sprawls and progress becomes invisible
16
-
17
- Existing solutions tie you to specific agent runtimes through CLI tools and slash commands. agent-method solves this with **files as the interface** — readable, portable, agent-agnostic.
18
-
19
- ## Quick start
20
-
21
- ### Option A: npx (recommended, zero-install)
22
-
23
- ```bash
24
- npx agent-method init code ~/my-project
25
- ```
26
-
27
- Replace `code` with your project type: `code`, `context`, `data`, `mix`, or `general`.
28
-
29
- Done. Templates are copied, extensions merged, placeholders filled. Open `PROJECT.md` and start working.
30
-
31
- ### Option B: Setup script
32
-
33
- ```bash
34
- git clone https://github.com/anthropics/agent-method.git
35
- cd agent-method
36
- bash setup.sh ~/my-project
37
- ```
38
-
39
- Interactive installer — asks project name, type, runtime, tier, lifecycle, and profile.
40
-
41
- ### Option C: Manual copy
42
-
43
- ```
44
- cp -r templates/starter/ ~/my-project/
45
- ```
46
-
47
- Delete the two entry point files you don't use and fill in `PROJECT.md`.
48
-
49
- ## CLI Tools (optional)
50
-
51
- The methodology works entirely through files, but CLI tools are available for validation, routing, and project management.
52
-
53
- ### Installation
54
-
55
- ```bash
56
- npx agent-method # zero-install, runs directly
57
- ```
58
-
59
- Or install permanently:
60
-
61
- ```bash
62
- npm install -g agent-method # Node.js (global)
63
- pip install agent-method-tools # Python (alternative)
64
- ```
65
-
66
- Both distributions have identical commands, same registry, same templates.
67
-
68
- ### Developer commands
69
-
70
- | Command | What it does |
71
- |---------|-------------|
72
- | `agent-method check` | Validate your entry point (auto-finds file, auto-detects type) |
73
- | `agent-method scan` | Detect project type from directory contents |
74
- | `agent-method route "<query>"` | Show how a query routes through the pipeline |
75
- | `agent-method refine` | Extract refinement report from SESSION-LOG.md |
76
- | `agent-method status` | Check if your methodology version is current |
77
- | `agent-method upgrade` | Brownfield-safe methodology update |
78
- | `agent-method init <type>` | Describe entry point contents for a project type |
79
-
80
- ### Project type aliases
81
-
82
- Use friendly names with any command: `code`, `context`, `data`, `mix`, `general`.
83
-
84
- ```bash
85
- agent-method init code # software project
86
- agent-method init context # analytical/prompt project (PromptStudy)
87
- agent-method init data # data index/querying project (SysMLv2)
88
- agent-method init mix # multi-type project
89
- agent-method route "query" -p context # route with project type
90
- ```
91
-
92
- ### Advanced: pipeline subcommands
93
-
94
- For debugging individual pipeline stages: `agent-method pipeline classify|select|resolve|cascade|test`.
95
-
96
- ### Key features
97
-
98
- - **All commands support `--json`** for machine-readable output
99
- - **Smart defaults** auto-finds entry point, session log, and project type
100
- - **Two distributions** — `npx agent-method` (Node.js, zero-install) or `pip install agent-method-tools` (Python)
101
- - **CLI is opt-in** — methodology works without it; tools add convenience
102
-
103
- Run `agent-method --help` for full command reference.
104
-
105
- ## What you get
106
-
107
- ```
108
- your-project/
109
- CLAUDE.md / .cursorrules / AGENT.md # Agent entry point (pick one)
110
- PROJECT.md # Project vision fill this in first
111
- PROJECT-PROFILE.md # Project type, lifecycle stage, extensions
112
- STATE.md # Decisions, blockers, current position
113
- ROADMAP.md # Phase breakdown with gate criteria
114
- PLAN.md # Current task with verification criteria
115
- .context/
116
- BASE.md # Core context — always loaded with entry point
117
- METHODOLOGY.md # Workflows, conventions overflow (lite/standard profiles)
118
- ```
119
-
120
- Full tier adds: `REQUIREMENTS.md`, `SUMMARY.md`, `.context/REGISTRY.md`, `docs/`, `todos/backlog.md`.
121
-
122
- Every file ships with **inline instructions** — the agent reads them and helps you populate each section.
123
-
124
- ## How it works
125
-
126
- ### Scoping rules
127
-
128
- The entry point contains a table mapping query types to file sets. When you ask a question, the agent loads only the relevant files and constrains its writes. Context windows stay small, responses stay focused.
129
-
130
- ```markdown
131
- | Query type | Read before acting | Update after acting |
132
- |---------------------|------------------------------|----------------------------|
133
- | **Code change** | .context/BASE.md + specialist | Source files, test files |
134
- | **Planning** | REQUIREMENTS.md, ROADMAP.md | STATE.md, PLAN.md |
135
- ```
136
-
137
- ### Dependency cascade
138
-
139
- "When X changes, also update Y." The agent checks this table after every file change, preventing files from drifting out of sync.
140
-
141
- ```markdown
142
- | When this changes | Also update |
143
- |----------------------|------------------------------------------------|
144
- | Database schema | Migrations, type imports, .context/DATABASE.md |
145
- | Phase completion | SUMMARY.md, STATE.md, ROADMAP.md |
146
- ```
147
-
148
- ### Context pairing
149
-
150
- Instead of loading all context at once, the agent pairs `.context/BASE.md` with one specialist file per query type. A code change loads `BASE.md + DATABASE.md`. A planning query loads `REQUIREMENTS.md + ROADMAP.md`. Token usage stays low, relevance stays high.
151
-
152
- ### Cross-session memory
153
-
154
- `STATE.md` persists decisions, blockers, and current position across sessions. The agent reads it at the start of every conversation — no re-explaining what happened yesterday.
155
-
156
- ## Integration profiles
157
-
158
- Control how much methodology surface area gets installed. Match the profile to your model's capability.
159
-
160
- | Profile | Best for | Entry point size | What's included |
161
- |---------|----------|:-----------------:|-----------------|
162
- | **lite** | Haiku, simple projects | ~25 lines | STATE.md, minimal rules, 2 cascade rules |
163
- | **standard** | Sonnet (recommended) | ~40 lines | + PLAN.md, context pairing, 6 cascade rules, overflow to METHODOLOGY.md |
164
- | **full** | Opus, complex projects | ~60 lines | All rules inline, all intelligence layer files |
165
-
166
- Three rules followed consistently beat ten rules followed inconsistently.
167
-
168
- ## Project types
169
-
170
- | Type | CLI name | What's added to the entry point |
171
- |------|----------|-------------------------------|
172
- | **General** | `general` | Universal scoping and cascade rules only |
173
- | **Code** | `code` | Code change, bug fix, dependency, database, API, deployment scoping + cascade |
174
- | **Data** | `data` | Data ingest, schema, document, entity, relationship, analytical query scoping + cascade |
175
- | **Analytical** | `context` | Chain work, evaluation, composition, domain research scoping + cascade |
176
- | **Mixed** | `mix` | Multiple extensions combined (code+data, code+analytical, etc.) |
177
-
178
- Extensions are additive — they add rows to existing tables, never override universal content.
179
-
180
- ## Brownfield projects (existing codebases)
181
-
182
- For projects with existing code, `setup.sh` detects project indicators and activates brownfield mode:
183
-
184
- - **Never overwrites** existing files — only copies methodology files that don't already exist
185
- - **Appends** methodology sections to your existing entry point (`CLAUDE.md`, `.cursorrules`, etc.)
186
- - **Preserves** all your existing conventions, rules, and project terminology
187
- - **Suggests** the Discovery workflow (WF-08) for systematic codebase understanding:
188
-
189
- > Ask your agent: "Scan the codebase and populate the context files"
190
-
191
- The agent inventories your project, maps dependencies, extracts patterns, and bootstraps `.context/` files — all without modifying your source code.
192
-
193
- ## Lifecycle stages
194
-
195
- Projects evolve. The methodology adapts.
196
-
197
- | Stage | When | What activates |
198
- |-------|------|----------------|
199
- | **Discovery** | Existing project, agent maps it first | SCAN features, WF-08 discovery workflow |
200
- | **Design** | New project, defining architecture | Planning workflows, decision recording |
201
- | **Development** | Building and iterating | Code/data/analytical workflows, full cascade |
202
- | **Evolution** | Maintaining and extending | Context refresh, drift detection |
203
-
204
- Transitions happen naturally — update `PROJECT-PROFILE.md` when you're ready to move on.
205
-
206
- ## Supported runtimes
207
-
208
- | File | Runtime | Auto-loaded? |
209
- |------|---------|:------------:|
210
- | `CLAUDE.md` | Claude Code | Yes |
211
- | `.cursorrules` | Cursor | Yes |
212
- | `AGENT.md` | Any agent | No (paste or reference manually) |
213
-
214
- All three contain identical scoping rules, cascade structure, and conventions — only the filename and auto-loading behavior differ.
215
-
216
- ## Template tiers
217
-
218
- **Starter** (7 files) — Cross-session memory, scoped context loading, project profiling, structured execution. Good for most projects.
219
-
220
- **Full** (11+ files) Everything in starter, plus requirements tracking, execution history (`SUMMARY.md`), navigation registry, human-facing docs scaffold, and backlog capture. For complex or long-running projects.
221
-
222
- ## Methodology at a glance
223
-
224
- | Concept | What it does |
225
- |---------|-------------|
226
- | **Intelligence layer** | PROJECT / STATE / ROADMAP / PLAN / SUMMARY files provide persistent cross-session memory |
227
- | **Scoping rules** | Table-driven query routing — agent loads only what's relevant |
228
- | **Dependency cascade** | "When X changes, also update Y" prevents file drift |
229
- | **Context pairing** | One specialist file per query type, not everything at once |
230
- | **Workflow stages** | Initialize Scope Plan → Execute → Verify → Close |
231
- | **Integration profiles** | lite / standard / full match methodology depth to model capability |
232
- | **Brownfield merge** | Append-only integration never overwrites, never deletes |
233
- | **CLI tools (optional)** | 7 developer commands + pipeline subcommands for debugging |
234
- | **32 agent capabilities** | Organized across 8 domains, activate behind the scenes |
235
-
236
- ## Documentation
237
-
238
- | Document | Audience |
239
- |----------|----------|
240
- | [Quick start guide](docs/guides/quick-start.md) | Developers — setup and first session |
241
- | [For developers](docs/guides/for-developers.md) | Developers workflows, context, troubleshooting |
242
- | [For managers](docs/guides/for-managers.md) | Managers reading project status from methodology files |
243
- | [Template kit](templates/README.md) | Template tiers, extensions, bootstrapping |
244
- | [CLI tools](https://github.com/anthropics/agent-method#cli-tools-optional) | Command reference (or run `agent-method --help`) |
245
- | [Docs hub](docs/index.md) | Full architecture, workflow, and methodology docs |
246
-
247
- ## Prior art
248
-
249
- | System | Relationship |
250
- |--------|-------------|
251
- | [GSD (get-shit-done)](https://github.com/jlowin/get-shit-done) | Inspired the structured agent workflow. agent-method removes CLI dependency, adds scoping rules and context pairing |
252
- | PromptStudy | Reference implementation. Scoping rules, cascade, and context pairing patterns extracted from real agent-human collaboration |
253
-
254
- ## License
255
-
256
- MIT (pending)
1
+ # wwa
2
+
3
+ A file-structure-first methodology for AI-agent-assisted development. Files are the interface — no proprietary tools, no vendor lock-in. Works with Claude Code, Cursor, or any agent that reads markdown.
4
+
5
+ `ai-agents` `prompt-engineering` `developer-tools` `context-engineering` `agent-framework` `mcp` `model-context-protocol` `cursor` `claude-code`
6
+
7
+ ## Who This Is For
8
+
9
+ People who want to describe what they want and have it built correctly — without losing context between sessions, re-explaining decisions, or watching the agent drift off scope.
10
+
11
+ If you've ever had an AI agent forget what you told it yesterday, make the same mistake twice, or change files it shouldn't have touched — this fixes that.
12
+
13
+ ## Requirements
14
+
15
+ - **Node.js >= 18**
16
+ - **A supported AI runtime** — [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Cursor](https://cursor.sh), or any agent that reads markdown files
17
+
18
+ ## Getting Started
19
+
20
+ ```bash
21
+ npx wwa init
22
+ ```
23
+
24
+ The installer guides you through everything:
25
+
26
+ 1. **Project type** — Code, Data, Analytical, Mixed, or General
27
+ 2. **Directory** where to set up (default: current directory)
28
+ 3. **Runtime** — Claude Code, Cursor, or all (creates the right entry point)
29
+ 4. **Template tier** Starter (7 files, most projects) or Full (11+ files, complex projects)
30
+ 5. **Integration profile** — Standard (Sonnet, recommended), Lite (Haiku), or Full (Opus)
31
+
32
+ Done. Open `PROJECT.md` and start working with your AI agent.
33
+
34
+ ### Verify
35
+
36
+ ```bash
37
+ npx wwa check
38
+ ```
39
+
40
+ Validates your entry point, auto-detects project type, and reports any issues.
41
+
42
+ ## Staying Updated
43
+
44
+ ```bash
45
+ npx wwa upgrade
46
+ ```
47
+
48
+ Brownfield-safe — appends new methodology sections without overwriting your customizations. Check your current version with `npx wwa status`.
49
+
50
+ ## Non-interactive Install (CI, Scripts, Docker)
51
+
52
+ ```bash
53
+ # Specify everything on the command line
54
+ npx wwa init code ~/my-project --runtime claude --tier starter --profile standard
55
+
56
+ # Just the type and directory (defaults for the rest)
57
+ npx wwa init code ~/my-project
58
+
59
+ # Data project for Cursor
60
+ npx wwa init data ~/my-data --runtime cursor
61
+
62
+ # Analytical project with full methodology
63
+ npx wwa init context ~/my-analysis --tier full --profile full
64
+ ```
65
+
66
+ ### Install globally
67
+
68
+ Instead of `npx` each time:
69
+
70
+ ```bash
71
+ npm install -g wwa
72
+ ```
73
+
74
+ ### Python alternative
75
+
76
+ Same commands, same registry, same templates:
77
+
78
+ ```bash
79
+ pip install wwa-tools # requires Python >= 3.9
80
+ ```
81
+
82
+ ## Development Installation
83
+
84
+ Clone and run locally for testing or contributing:
85
+
86
+ ```bash
87
+ git clone https://github.com/anthropics/wwa.git
88
+ cd wwa
89
+ npm link
90
+ wwa init code ./test-project --runtime claude
91
+ ```
92
+
93
+ Or use the bash setup script directly:
94
+
95
+ ```bash
96
+ bash setup.sh ~/my-project
97
+ ```
98
+
99
+ Interactive asks project name, type, runtime, tier, lifecycle, and profile.
100
+
101
+ ## Commands
102
+
103
+ | Command | What it does |
104
+ |---------|-------------|
105
+ | `wwa init` | Set up a new project (interactive) |
106
+ | `wwa check` | Validate your entry point |
107
+ | `wwa scan` | Detect project type from directory contents |
108
+ | `wwa route "<query>"` | Show how a query routes through the pipeline |
109
+ | `wwa refine` | Extract refinement report from SESSION-LOG.md |
110
+ | `wwa status` | Check if your methodology version is current |
111
+ | `wwa upgrade` | Brownfield-safe methodology update |
112
+ | `wwa serve` | Start MCP server for IDE integration |
113
+ | `wwa watch` | Watch files, validate on save |
114
+
115
+ All commands support `--json` for machine-readable output.
116
+
117
+ ### MCP Server (AI tool integration)
118
+
119
+ Expose methodology tools directly to your AI agent via the [Model Context Protocol](https://modelcontextprotocol.io):
120
+
121
+ ```json
122
+ {
123
+ "mcpServers": {
124
+ "wwa": {
125
+ "command": "npx",
126
+ "args": ["wwa", "serve"]
127
+ }
128
+ }
129
+ }
130
+ ```
131
+
132
+ 8 tools available. Works with VS Code, Cursor, Claude Code, Cline. See [MCP Integration Guide](docs/guides/mcp-integration.md).
133
+
134
+ ### Pipeline commands (advanced)
135
+
136
+ For debugging individual pipeline stages:
137
+
138
+ ```bash
139
+ wwa pipeline classify "<query>" --project-type code
140
+ wwa pipeline select code_change
141
+ wwa pipeline resolve WF-02 --stage execute
142
+ wwa pipeline cascade --trigger phase_completion
143
+ wwa pipeline test fixtures/
144
+ ```
145
+
146
+ ## What You Get
147
+
148
+ ```
149
+ your-project/
150
+ CLAUDE.md / .cursorrules / AGENT.md # Agent entry point (pick one)
151
+ PROJECT.md # Project vision — fill this in first
152
+ PROJECT-PROFILE.md # Project type, lifecycle stage, extensions
153
+ STATE.md # Decisions, blockers, current position
154
+ ROADMAP.md # Phase breakdown with gate criteria
155
+ PLAN.md # Current task with verification criteria
156
+ .context/
157
+ BASE.md # Core context — always loaded with entry point
158
+ METHODOLOGY.md # Workflows, conventions overflow
159
+ ```
160
+
161
+ Full tier adds: `REQUIREMENTS.md`, `SUMMARY.md`, `.context/REGISTRY.md`, `docs/`, `todos/backlog.md`.
162
+
163
+ Every file ships with **inline instructions** the agent reads them and helps you populate each section.
164
+
165
+ ---
166
+
167
+ ## About
168
+
169
+ ### The problem
170
+
171
+ AI-agent-assisted development breaks down in three ways:
172
+
173
+ - **Context rot** agent quality degrades as context windows fill with irrelevant conversation
174
+ - **Amnesia** decisions from session N are lost by session N+1
175
+ - **Scope drift** without structured gates, work sprawls and progress becomes invisible
176
+
177
+ Existing solutions tie you to specific agent runtimes through CLI tools and slash commands. wwa solves this with **files as the interface** — readable, portable, agent-agnostic.
178
+
179
+ ### How it works
180
+
181
+ **Scoping rules** — The entry point contains a table mapping query types to file sets. The agent loads only the relevant files and constrains its writes. Context windows stay small, responses stay focused.
182
+
183
+ **Dependency cascade** — "When X changes, also update Y." The agent checks this table after every file change, preventing files from drifting out of sync.
184
+
185
+ **Context pairing** Instead of loading all context at once, the agent pairs `.context/BASE.md` with one specialist file per query type. Token usage stays low, relevance stays high.
186
+
187
+ **Cross-session memory** `STATE.md` persists decisions, blockers, and current position across sessions. No re-explaining what happened yesterday.
188
+
189
+ ### Integration profiles
190
+
191
+ | Profile | Best for | What's included |
192
+ |---------|----------|-----------------|
193
+ | **Lite** | Haiku, simple projects | STATE.md, minimal rules, 2 cascade rules |
194
+ | **Standard** | Sonnet (recommended) | + PLAN.md, context pairing, 6 cascade rules |
195
+ | **Full** | Opus, complex projects | All rules inline, all intelligence layer files |
196
+
197
+ Three rules followed consistently beat ten rules followed inconsistently.
198
+
199
+ ### Project types
200
+
201
+ | Type | CLI name | What's added |
202
+ |------|----------|-------------|
203
+ | **Code** | `code` | Code change, bug fix, dependency, database, API, deployment |
204
+ | **Data** | `data` | Data ingest, schema, document, entity, relationship, analytics |
205
+ | **Analytical** | `context` | Chain work, evaluation, composition, domain research |
206
+ | **Mixed** | `mix` | Multiple extensions combined |
207
+ | **General** | `general` | Universal scoping and cascade rules only |
208
+
209
+ ### Brownfield projects
210
+
211
+ Works with existing codebases:
212
+
213
+ - **Never overwrites** existing files
214
+ - **Appends** methodology sections to your existing entry point
215
+ - **Preserves** all your existing conventions and rules
216
+ - **Suggests** the Discovery workflow for systematic codebase understanding
217
+
218
+ ### Supported runtimes
219
+
220
+ | File | Runtime | Auto-loaded? |
221
+ |------|---------|:------------:|
222
+ | `CLAUDE.md` | Claude Code | Yes |
223
+ | `.cursorrules` | Cursor | Yes |
224
+ | `AGENT.md` | Any agent | No (paste or reference manually) |
225
+
226
+ ## Documentation
227
+
228
+ | Document | Audience |
229
+ |----------|----------|
230
+ | [Quick start guide](docs/guides/quick-start.md) | Setup and first session |
231
+ | [For developers](docs/guides/for-developers.md) | Workflows, context, troubleshooting |
232
+ | [MCP Integration](docs/guides/mcp-integration.md) | IDE integration (VS Code, Cursor, Claude Code, Cline) |
233
+ | [For managers](docs/guides/for-managers.md) | Reading project status from methodology files |
234
+ | [Template kit](templates/README.md) | Template tiers, extensions, bootstrapping |
235
+ | [Docs hub](docs/index.md) | Full architecture, workflow, and methodology docs |
236
+
237
+ ## Prior art
238
+
239
+ | System | Relationship |
240
+ |--------|-------------|
241
+ | [GSD](https://github.com/gsd-build/get-shit-done) | Inspired the structured agent workflow. wwa adds scoping rules, context pairing, and file-structure-first approach |
242
+ | PromptStudy | Reference implementation. Patterns extracted from real agent-human collaboration |
243
+
244
+ ## License
245
+
246
+ MIT (pending)
@@ -1,13 +1,14 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * agent-method CLI — methodology tools for AI-agent-assisted development.
4
+ * wwa CLI — methodology tools for AI-agent-assisted development.
5
5
  *
6
6
  * Thin entry point: each command is registered from lib/cli/*.js modules.
7
7
  *
8
8
  * Three-tier command structure:
9
9
  * Tier 1 (developer): check, scan, route, refine, status, upgrade, init
10
- * Tier 2 (pipeline): agent-method pipeline classify/select/resolve/cascade/test
10
+ * Tier 2 (pipeline): wwa pipeline classify/select/resolve/cascade/test
11
+ * Tier 3 (server): serve (MCP server), watch (file watcher)
11
12
  */
12
13
 
13
14
  import { Command } from "commander";
@@ -21,11 +22,13 @@ import { register as status } from "../lib/cli/status.js";
21
22
  import { register as upgrade } from "../lib/cli/upgrade.js";
22
23
  import { register as init } from "../lib/cli/init.js";
23
24
  import { register as pipeline } from "../lib/cli/pipeline.js";
25
+ import { register as serve } from "../lib/cli/serve.js";
26
+ import { register as watchCmd } from "../lib/cli/watch.js";
24
27
 
25
28
  const program = new Command();
26
29
 
27
30
  program
28
- .name("agent-method")
31
+ .name("wwa")
29
32
  .description(
30
33
  "Methodology tools for AI-agent-assisted development.\n\n" +
31
34
  "Developer commands:\n" +
@@ -41,7 +44,10 @@ program
41
44
  " pipeline select Select workflow for a query type\n" +
42
45
  " pipeline resolve Resolve features for a workflow stage\n" +
43
46
  " pipeline cascade Compute cascade chain from a trigger\n" +
44
- " pipeline test Run YAML test fixtures"
47
+ " pipeline test Run YAML test fixtures\n\n" +
48
+ "Server commands:\n" +
49
+ " serve Start MCP server on stdio transport\n" +
50
+ " watch Watch files and validate on change"
45
51
  )
46
52
  .version(pkg.version, "-V, --version");
47
53
 
@@ -54,5 +60,7 @@ status(program);
54
60
  upgrade(program);
55
61
  init(program);
56
62
  pipeline(program);
63
+ serve(program);
64
+ watchCmd(program);
57
65
 
58
66
  program.parse();
package/lib/cli/check.js CHANGED
@@ -1,4 +1,4 @@
1
- /** agent-method check — validate entry point and project setup. */
1
+ /** wwa check — validate entry point and project setup. */
2
2
 
3
3
  import { dirname, resolve } from "node:path";
4
4
  import {
@@ -28,7 +28,7 @@ export function register(program) {
28
28
  console.error(
29
29
  "No entry point found in current directory " +
30
30
  "(looked for CLAUDE.md, .cursorrules, AGENT.md).\n" +
31
- "Specify a path: agent-method check path/to/CLAUDE.md"
31
+ "Specify a path: npx wwa check path/to/CLAUDE.md"
32
32
  );
33
33
  process.exit(1);
34
34
  }