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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +4 -0
- package/package.json +1 -1
- package/scripts/afc-consistency-check.sh +2 -0
- package/skills/analyze/SKILL.md +10 -8
- package/skills/architect/SKILL.md +3 -3
- package/skills/auto/SKILL.md +642 -71
- package/skills/clarify/SKILL.md +4 -3
- package/skills/clean/SKILL.md +14 -13
- package/skills/consult/SKILL.md +19 -18
- package/skills/implement/SKILL.md +28 -15
- package/skills/init/SKILL.md +5 -1
- package/skills/learner/SKILL.md +4 -4
- package/skills/pr-comment/SKILL.md +4 -4
- package/skills/principles/SKILL.md +1 -1
- package/skills/qa/SKILL.md +2 -2
- package/skills/release-notes/SKILL.md +8 -4
- package/skills/review/SKILL.md +11 -11
- package/skills/security/SKILL.md +19 -4
- package/skills/spec/SKILL.md +1 -1
- package/skills/triage/SKILL.md +6 -7
|
@@ -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
|
+
"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.
|
|
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.
|
|
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
|
@@ -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"
|
package/skills/analyze/SKILL.md
CHANGED
|
@@ -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
|
-
|
|
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 |
|
|
38
|
-
|
|
39
|
-
| **Root Cause** |
|
|
40
|
-
| **Structural** |
|
|
41
|
-
| **Exploratory** |
|
|
42
|
-
| **Comparative** |
|
|
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
|
|
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:
|
|
104
|
+
Run the critic loop until convergence. Safety cap: 5 passes.
|
|
105
105
|
|
|
106
106
|
| Criterion | Validation |
|
|
107
107
|
|-----------|------------|
|