@cluesmith/codev 1.5.23 → 1.5.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cluesmith/codev",
3
- "version": "1.5.23",
3
+ "version": "1.5.24",
4
4
  "description": "Codev CLI - AI-assisted software development framework",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,10 +42,7 @@ The `af` command orchestrates builders, manages worktrees, and coordinates devel
42
42
 
43
43
  **Full reference:** See [codev/resources/agent-farm.md](../resources/agent-farm.md)
44
44
 
45
- **Quick setup:**
46
- ```bash
47
- alias af='./codev/bin/agent-farm'
48
- ```
45
+ **Note:** `af`, `consult`, and `codev` are global commands installed via npm. They work from any directory - no aliases or paths needed.
49
46
 
50
47
  ### Consult Tool
51
48
 
@@ -182,8 +179,8 @@ The Architect uses SPIDER or TICK protocols. The Architect is responsible for th
182
179
  4. Create a detailed specification (incorporating lessons learned)
183
180
  5. **Consult external reviewers** using the consult tool:
184
181
  ```bash
185
- ./codev/bin/consult gemini "Review spec 0034: <summary>"
186
- ./codev/bin/consult codex "Review spec 0034: <summary>"
182
+ consult --model gemini --type spec-review spec 0034
183
+ consult --model codex --type spec-review spec 0034
187
184
  ```
188
185
  5. Address concerns raised by the reviewers
189
186
  6. **Present to human** for final review:
@@ -199,8 +196,8 @@ The Architect uses SPIDER or TICK protocols. The Architect is responsible for th
199
196
  4. Specify acceptance criteria
200
197
  5. **Consult external reviewers** using the consult tool:
201
198
  ```bash
202
- ./codev/bin/consult gemini "Review plan 0034: <summary>"
203
- ./codev/bin/consult codex "Review plan 0034: <summary>"
199
+ consult --model gemini --type plan-review plan 0034
200
+ consult --model codex --type plan-review plan 0034
204
201
  ```
205
202
  5. Address concerns raised by the reviewers
206
203
  6. **Present to human** for final review:
@@ -380,9 +377,9 @@ Focus on:
380
377
 
381
378
  Give verdict: APPROVE or REQUEST_CHANGES with specific integration feedback."
382
379
 
383
- ./codev/bin/consult gemini "$QUERY" &
384
- ./codev/bin/consult codex "$QUERY" &
385
- ./codev/bin/consult claude "$QUERY" &
380
+ consult --model gemini --type integration-review pr 35 &
381
+ consult --model codex --type integration-review pr 35 &
382
+ consult --model claude --type integration-review pr 35 &
386
383
  wait
387
384
  ```
388
385