all-for-claudecode 2.8.0 → 2.8.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.8.0"
9
+ "version": "2.8.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.8.0",
16
+ "version": "2.8.1",
17
17
  "category": "automation",
18
18
  "tags": ["pipeline", "automation", "spec", "plan", "implement", "review", "critic-loop"]
19
19
  }
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "afc",
3
- "version": "2.8.0",
3
+ "version": "2.8.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",
7
7
  "repository": "https://github.com/jhlee0409/all-for-claudecode",
8
8
  "license": "MIT",
9
9
  "keywords": ["pipeline", "automation", "spec", "plan", "implement", "review", "critic-loop"],
10
- "commands": "./commands/",
11
- "hooks": "./hooks/hooks.json"
10
+ "commands": "./commands/"
12
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "all-for-claudecode",
3
- "version": "2.8.0",
3
+ "version": "2.8.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"
@@ -19,14 +19,14 @@ PROJECT_DIR="${CLAUDE_PROJECT_DIR:-$(pwd)}"
19
19
  LEARNER_CONFIG="$PROJECT_DIR/.claude/afc/learner.json"
20
20
  QUEUE_FILE="$PROJECT_DIR/.claude/.afc-learner-queue.jsonl"
21
21
 
22
- # Gate: exit immediately if learner is not enabled
22
+ # Read stdin (must consume before any exit to prevent pipe break)
23
+ INPUT=$(cat)
24
+
25
+ # Gate: exit if learner is not enabled
23
26
  if [ ! -f "$LEARNER_CONFIG" ]; then
24
27
  exit 0
25
28
  fi
26
29
 
27
- # Read stdin (contains user prompt JSON)
28
- INPUT=$(cat)
29
-
30
30
  # Extract prompt text
31
31
  USER_TEXT=""
32
32
  if command -v jq >/dev/null 2>&1; then