Help us improve
Share bugs, ideas, or general feedback.
From code
Skips Phase 7 build validation if no code changes since Phase 5 passed, using git diff hash caching. Stamp cache after Phase 5 success, check before Phase 7.
npx claudepluginhub closedloop-ai/claude-plugins --plugin codeHow this skill is triggered — by the user, by Claude, or both
Slash command
/code:build-status-cacheThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check whether a Phase 7 build-validator launch can be skipped because no code has changed since Phase 5 build validation passed.
Checks if cross-repo coordinator results are reusable by comparing git hashes of peer repos against stored hashes, avoiding redundant Sonnet agent launches before Phase 1.4.1 peer discovery.
Orchestrates parallel execution of phase build plans via subagents, manages task dependencies by waves, commits atomically. For PBR workflow after planning.
Advances the validator execution state baseline to the current working tree without running validation checks, useful for skipping validation on unchanged code.
Share bugs, ideas, or general feedback.
Check whether a Phase 7 build-validator launch can be skipped because no code has changed since Phase 5 build validation passed.
The scripts/ directory is relative to this skill's base directory (shown above as "Base directory for this skill").
bash <base_directory>/scripts/check_build_cache.sh <WORKDIR> stamp
Output: BUILD_CACHE_STAMPED
bash <base_directory>/scripts/check_build_cache.sh <WORKDIR>
BUILD_CACHE_HIT
Action: Skip the Phase 7 build-validator launch. Build was already validated and no code changed.
BUILD_CACHE_MISS
reason: <why the cache is stale or missing>
Action: Run build-validator as normal.
The script hashes git diff HEAD output (all uncommitted changes). After Phase 5 passes, this hash is stored. Before Phase 7 runs, the current hash is compared. If Phase 6 (visual QA) made code fixes, the hash changes and build-validator re-runs. If Phase 6 was skipped or made no code changes, the hash matches and build-validator is skipped.