all-for-claudecode 2.5.0 → 2.6.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 +13 -2
- package/commands/auto.md +1 -1
- package/commands/doctor.md +63 -22
- package/commands/init.md +8 -5
- package/commands/qa.md +191 -0
- package/commands/resume.md +1 -1
- package/docs/phase-gate-protocol.md +1 -1
- package/package.json +5 -3
- package/scripts/afc-bash-guard.sh +3 -3
- package/scripts/afc-config-change.sh +8 -0
- package/scripts/afc-consistency-check.sh +58 -19
- package/scripts/afc-dag-validate.sh +1 -1
- package/scripts/afc-doctor.sh +445 -0
- package/scripts/afc-failure-hint.sh +24 -2
- package/scripts/afc-qa-audit.sh +536 -0
- package/scripts/afc-state.sh +3 -3
- package/scripts/afc-sync-cache.sh +49 -0
- package/scripts/afc-triage.sh +14 -3
- package/scripts/pre-compact-checkpoint.sh +2 -2
- package/scripts/session-start-context.sh +27 -1
- package/scripts/track-afc-changes.sh +3 -3
|
@@ -14,14 +14,14 @@ cleanup() {
|
|
|
14
14
|
}
|
|
15
15
|
trap cleanup EXIT
|
|
16
16
|
|
|
17
|
+
# Consume stdin immediately (prevents SIGPIPE if exiting early)
|
|
18
|
+
INPUT=$(cat)
|
|
19
|
+
|
|
17
20
|
# If pipeline is inactive -> skip
|
|
18
21
|
if ! afc_state_is_active; then
|
|
19
22
|
exit 0
|
|
20
23
|
fi
|
|
21
24
|
|
|
22
|
-
# Parse tool input from stdin
|
|
23
|
-
INPUT=$(cat)
|
|
24
|
-
|
|
25
25
|
# Skip if stdin is empty
|
|
26
26
|
if [ -z "$INPUT" ]; then
|
|
27
27
|
exit 0
|