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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/commands/checkpoint.md +1 -1
- package/commands/clean.md +1 -1
- package/commands/doctor.md +1 -1
- package/commands/init.md +13 -13
- package/commands/principles.md +1 -1
- package/commands/resume.md +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
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.
|
|
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.
|
|
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",
|
package/commands/checkpoint.md
CHANGED
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:
|
|
5
|
+
model: sonnet
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# /afc:clean — Pipeline Cleanup
|
package/commands/doctor.md
CHANGED
package/commands/init.md
CHANGED
|
@@ -7,7 +7,7 @@ allowed-tools:
|
|
|
7
7
|
- Write
|
|
8
8
|
- Bash
|
|
9
9
|
- Glob
|
|
10
|
-
model:
|
|
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 —
|
|
275
|
-
- `afc:doctor` —
|
|
276
|
-
- `afc:architect` —
|
|
277
|
-
- `afc:security` —
|
|
278
|
-
- `afc:checkpoint` —
|
|
279
|
-
- `afc:resume` —
|
|
280
|
-
- `afc:principles` —
|
|
281
|
-
- `afc:clean` —
|
|
282
|
-
- `afc:triage` —
|
|
283
|
-
- `afc:learner` —
|
|
284
|
-
- `afc:pr-comment` —
|
|
285
|
-
- `afc:release-notes` —
|
|
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
|
|
package/commands/principles.md
CHANGED
package/commands/resume.md
CHANGED
package/package.json
CHANGED