all-for-claudecode 2.10.0 → 2.11.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.
@@ -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.10.0"
9
+ "version": "2.11.0"
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.10.0",
16
+ "version": "2.11.0",
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.10.0",
3
+ "version": "2.11.0",
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",
package/README.md CHANGED
@@ -52,6 +52,10 @@ Spec (1/5) → Plan (2/5) → Implement (3/5) → Review (4/5) → Clean (5/5)
52
52
  │ └─ File change map, ADR recording, research persistence
53
53
  └─ Acceptance criteria, pre-implementation gates
54
54
 
55
+ Skill Advisor checkpoints (A–E) between phases dynamically invoke
56
+ auxiliary skills (ideate, consult, architect, security, test, qa, learner)
57
+ when LLM evaluation detects they would add value. Budget: max 5 per run.
58
+
55
59
  Hooks run automatically at each step.
56
60
  CI failure → debug-based RCA (not blind retry).
57
61
  Critic Loops verify quality at each gate until convergence.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "all-for-claudecode",
3
- "version": "2.10.0",
3
+ "version": "2.11.0",
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"
@@ -113,6 +113,8 @@ check_agent_names() {
113
113
  local count=0
114
114
  local invalid=0
115
115
  for ref in $referenced_agents; do
116
+ # Skip dynamic template patterns (e.g., afc-{domain}-expert)
117
+ case "$ref" in *"{"*) continue ;; esac
116
118
  count=$((count + 1))
117
119
  if ! printf '%s\n' "$defined_agents" | grep -qxF "$ref"; then
118
120
  fail "subagent_type 'afc:$ref' referenced but no agents/$ref.md found"
@@ -32,16 +32,18 @@ If neither rules file nor config exists: read `CLAUDE.md` for architecture info.
32
32
 
33
33
  ### 1. Parse Analysis Intent
34
34
 
35
- Classify `$ARGUMENTS` into one of these analysis modes:
35
+ Read the user's question semantically. What does the user actually want to understand? Select the mode that best serves their learning goal.
36
36
 
37
- | Mode | Trigger Keywords | Focus |
38
- |------|-----------------|-------|
39
- | **Root Cause** | "why", "cause", "bug", "error", "broken" | Error trace → data flow → hypothesis |
40
- | **Structural** | "how", "architecture", "flow", "trace", "structure" | Component relationships, call graphs, data flow |
41
- | **Exploratory** | "what", "find", "where", "which", "list" | File/function discovery, pattern matching |
42
- | **Comparative** | "difference", "compare", "vs", "between" | Side-by-side analysis of implementations |
37
+ | Mode | When to select | Focus |
38
+ |------|---------------|-------|
39
+ | **Root Cause** | User wants to understand WHY something is broken, failing, or behaving unexpectedly — the goal is diagnosing a problem | Error trace → data flow → hypothesis |
40
+ | **Structural** | User wants to understand HOW a system is built or how components relate the goal is comprehension of design or flow | Component relationships, call graphs, data flow |
41
+ | **Exploratory** | User wants to discover WHAT exists in the codebase — the goal is finding, listing, or locating things | File/function discovery, pattern matching |
42
+ | **Comparative** | User wants to understand the DIFFERENCE between two or more things — the goal is contrast and tradeoff evaluation | Side-by-side analysis of implementations |
43
43
 
44
- If the intent doesn't clearly match a mode, default to **Exploratory**.
44
+ If the question spans multiple modes, select the PRIMARY mode that best matches the user's core learning goal, and note secondary aspects to incorporate during analysis.
45
+
46
+ If the intent doesn't clearly match a single mode, default to **Exploratory**.
45
47
 
46
48
  ### 2. Codebase Exploration
47
49
 
@@ -53,8 +53,8 @@ Analyze `$ARGUMENTS` to identify the task type:
53
53
 
54
54
  Use Agent Teams for wide analysis scope (3+ modules) with parallel exploration:
55
55
  ```
56
- Task("analyze features/timeline", subagent_type: Explore)
57
- Task("analyze widgets/timeline", subagent_type: Explore)
56
+ Task("analyze features/timeline", subagent_type: "Explore")
57
+ Task("analyze widgets/timeline", subagent_type: "Explore")
58
58
  ```
59
59
 
60
60
  **Cross-Module Import Chain Verification** (after Explore agents return):
@@ -101,7 +101,7 @@ Structure analysis results and **print to console**:
101
101
 
102
102
  > **Always** read `${CLAUDE_PLUGIN_ROOT}/docs/critic-loop-rules.md` first and follow it.
103
103
 
104
- Run the critic loop until convergence. Safety cap: 7 passes (higher than the standard 5 because architecture analysis involves broader exploration across modules and layers).
104
+ Run the critic loop until convergence. Safety cap: 5 passes.
105
105
 
106
106
  | Criterion | Validation |
107
107
  |-----------|------------|