all-for-claudecode 2.9.0 → 2.9.1

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.
@@ -6,14 +6,14 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Automated pipeline for Claude Code — spec → plan → implement → review → clean",
9
- "version": "2.9.0"
9
+ "version": "2.9.1"
10
10
  },
11
11
  "plugins": [
12
12
  {
13
13
  "name": "afc",
14
14
  "source": "./",
15
15
  "description": "Automated pipeline for Claude Code. Automates the full development cycle: spec → plan → implement → review → clean.",
16
- "version": "2.9.0",
16
+ "version": "2.9.1",
17
17
  "category": "automation",
18
18
  "tags": ["pipeline", "automation", "spec", "plan", "implement", "review", "critic-loop"]
19
19
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "afc",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "Automated pipeline for Claude Code. Automates the full development cycle: spec → plan → implement → review → clean.",
5
5
  "author": { "name": "jhlee0409", "email": "relee6203@gmail.com" },
6
6
  "homepage": "https://github.com/jhlee0409/all-for-claudecode",
@@ -2,7 +2,7 @@
2
2
  name: afc:checkpoint
3
3
  description: "Save session state — use when the user asks to save progress, checkpoint the session, or preserve current work state"
4
4
  argument-hint: "[checkpoint message]"
5
- model: haiku
5
+ model: sonnet
6
6
  allowed-tools:
7
7
  - Read
8
8
  - Write
package/commands/clean.md CHANGED
@@ -2,7 +2,7 @@
2
2
  name: afc:clean
3
3
  description: "Pipeline artifact cleanup and codebase hygiene — use when the user asks to clean up artifacts, remove pipeline files, or finalize after implementation"
4
4
  argument-hint: "[feature name — defaults to current pipeline feature]"
5
- model: haiku
5
+ model: sonnet
6
6
  ---
7
7
 
8
8
  # /afc:clean — Pipeline Cleanup
@@ -7,7 +7,7 @@ allowed-tools:
7
7
  - Grep
8
8
  - Glob
9
9
  - Bash
10
- model: haiku
10
+ model: sonnet
11
11
  ---
12
12
 
13
13
  # /afc:doctor — Plugin Setup Diagnosis
package/commands/init.md CHANGED
@@ -7,7 +7,7 @@ allowed-tools:
7
7
  - Write
8
8
  - Bash
9
9
  - Glob
10
- model: haiku
10
+ model: sonnet
11
11
  ---
12
12
 
13
13
  # /afc:init — Project Initial Setup
@@ -271,18 +271,18 @@ Classify the user's intent and route to the matching skill. Use semantic underst
271
271
  2. **Compound intents**: Route to the primary intent. The pipeline handles sequencing internally.
272
272
  3. **Design-first**: When scope is non-trivial (multiple files, architectural decisions needed), prefer `afc:auto` or `afc:plan` over direct `afc:implement`.
273
273
 
274
- User-only (not auto-triggered — inform user on request):
275
- - `afc:doctor` — inform user when health check is requested
276
- - `afc:architect` — inform user when architecture review is requested
277
- - `afc:security` — inform user when security scan is requested
278
- - `afc:checkpoint` — inform user when session save is requested
279
- - `afc:resume` — inform user when session restore is requested
280
- - `afc:principles` — inform user when project principles management is requested
281
- - `afc:clean` — inform user when pipeline cleanup is requested (artifact cleanup, dead code scan, pipeline flag release)
282
- - `afc:triage` — inform user when parallel PR/issue triage is requested
283
- - `afc:learner` — inform user when pattern learning or rule promotion is requested
284
- - `afc:pr-comment` — inform user when posting PR review comments to GitHub is requested
285
- - `afc:release-notes` — inform user when generating release notes from git history is requested
274
+ User-only (not auto-triggered — when user invokes directly via `/afc:X`, execute the skill immediately):
275
+ - `afc:doctor` — plugin health check
276
+ - `afc:architect` — architecture review
277
+ - `afc:security` — security scan
278
+ - `afc:checkpoint` — session save
279
+ - `afc:resume` — session restore
280
+ - `afc:principles` — project principles management
281
+ - `afc:clean` — pipeline cleanup (artifact cleanup, dead code scan, pipeline flag release)
282
+ - `afc:triage` — parallel PR/issue triage
283
+ - `afc:learner` — pattern learning or rule promotion
284
+ - `afc:pr-comment` — post PR review comments to GitHub
285
+ - `afc:release-notes` — generate release notes from git history
286
286
 
287
287
  ## Pipeline
288
288
 
@@ -7,7 +7,7 @@ allowed-tools:
7
7
  - Write
8
8
  - Grep
9
9
  - Glob
10
- model: haiku
10
+ model: sonnet
11
11
  ---
12
12
 
13
13
  # /afc:principles — Manage Project Principles
@@ -2,7 +2,7 @@
2
2
  name: afc:resume
3
3
  description: "Restore session — use when the user asks to resume a previous session, restore saved state, or continue where they left off"
4
4
  argument-hint: "[no arguments]"
5
- model: haiku
5
+ model: sonnet
6
6
  allowed-tools:
7
7
  - Read
8
8
  - Glob
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "all-for-claudecode",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "Claude Code plugin that automates the full dev cycle — spec, plan, implement, review, clean.",
5
5
  "bin": {
6
6
  "all-for-claudecode": "bin/cli.mjs"