build-status-cache

build-status-cache is a skill for Claude Code from closedloop-ai/claude-plugins. It costs 69 tokens per session (396 once invoked), scanned A, original, Apache-2.0.

A build-check cache that records the current uncommitted code changes after a successful build and compares them later.

In plain words
What is it for?
Use it between build-validation phases to decide whether to skip or repeat a build check, including after visual fixes.
Why use it?
It avoids running the same build validation again when the code has not changed. If the code changed, it signals that validation should run again.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the code plugin — 15 skills, 7 commands, 23 agents, 7 hooks shipped together

Good fit Use it between build-validation phases to decide whether to skip or repeat a build check, including after visual fixes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/closedloop-ai/claude-plugins/build-status-cache
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add closedloop-ai/claude-plugins --skill build-status-cache
Clone the repo
git clone --depth 1 https://github.com/closedloop-ai/claude-plugins

Made for: Claude Code.

Or install code, the plugin that ships this one along with the rest of its 15 skills, 7 commands, 23 agents, 7 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for build-status-cache

README.md
[![agentmods](https://agentmods.dev/badge/skills/closedloop-ai/claude-plugins/build-status-cache.svg)](https://agentmods.dev/skills/closedloop-ai/claude-plugins/build-status-cache)
Your own site
<a href="https://agentmods.dev/skills/closedloop-ai/claude-plugins/build-status-cache"><img src="https://agentmods.dev/badge/skills/closedloop-ai/claude-plugins/build-status-cache.svg" alt="Measured on agentmods" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 396 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.00396
Opus 5 $0.00034 $0.00198
Sonnet 5 $0.00014 $0.00079
Haiku 4.5 $0.00007 $0.00040

Measured yesterday against content hash 7c756541d644, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

build-status-cache scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/check_build_cache.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/code/skills/build-status-cache/SKILL.md · 59 lines

What it actually says

Build Status Cache

Check whether a Phase 7 build-validator launch can be skipped because no code has changed since Phase 5 build validation passed.

When to Use

  1. After Phase 5 build passes: Stamp the cache
  2. At Phase 7 build check: Check the cache before launching build-validator

Usage

Stamp (after Phase 5 build passes)

bash ${CLAUDE_SKILL_DIR}/scripts/check_build_cache.sh <WORKDIR> stamp

Output: BUILD_CACHE_STAMPED

Check (before Phase 7 build)

bash ${CLAUDE_SKILL_DIR}/scripts/check_build_cache.sh <WORKDIR>

Interpreting Output

Cache Hit

BUILD_CACHE_HIT

Action: Skip the Phase 7 build-validator launch. Build was already validated and no code changed.

Cache Miss

BUILD_CACHE_MISS
reason: <why the cache is stale or missing>

Action: Run build-validator as normal.

How It Works

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.

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 59 lines · 69 tokens per session scan A 7c756541d644

Subscribe to this mod's changes

build-status-cache is a skill published in the GitHub repository closedloop-ai/claude-plugins (103 stars, last pushed yesterday), licensed Apache-2.0. It adds 69 tokens to every session and 396 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-07.

Related

Other skills, from other repositories

auto-optimize

Autonomously optimize any Claude Code skill by running it repeatedly, scoring against binary evals, mutating the prompt, and keeping improvements. Use when: optimize/improve/benchmark/eval a skill, autoresearch, auto-optimize. Not for creating skills from scratch (use skill-creator-pro).

LeeJuOh/claude-code-zero · 65 tokens

audit-harness

Use when auditing HARNESS.md, pre-commit hooks, pre-push hooks, architecture gates, or CI workflows for tunacode-cli. This skill treats any mismatch, skipped gate, or failing check as a critical failure and requires manual one-by-one execution rather than make targets, batch wrappers, or summary-only audits.

alchemiststudiosDOTai/tunacode · 69 tokens

sd-plan-tests

The test-planning craft skill (software-delivery SDLC step 5). Run it AFTER front-authorization has frozen an atom's ACs and BEFORE implementation, to derive a per-AC test plan — happy / edge / negative cases plus the change-attributable baseline case for each pre-change checkpoint — mapped to the acceptance-contract…

lukasrepublic/agentic-foundry · 133 tokens

mcp-tool-developer

Build Model Context Protocol (MCP) servers and tools from scratch. Full-stack MCP development with TypeScript/Python, testing, deployment, and registry publishing.

LiHongwei-cn/lihongwei-cn · 38 tokens

skill-test

Verifies that the skill system is working correctly.

andrefetch/postal · 13 tokens

id-simulate

The infra-delivery OFFLINE LOCAL-SIMULATION step (the new simulate step, between id-test and id-plan) — a PROCEDURE skill the generic agent runs ENTIRELY OFFLINE (no live cloud, no credentials) to author-and-prove the IaC corpus before the live pre-merge plan. Layer 1: apply the profile's EXISTING primitive OpenTofu…

lukasrepublic/agentic-foundry · 370 tokens