.claude/local/skills/health-check/SKILL.md
# Skill: Health Check ## Description Runs all health checks defined in `ai/context/health-checks.md` and produces a table-format report. Can be called standalone or by other skills (e.g., `/long-run`). ## Trigger - Invoked by the `/health-check` slash command. - Called programmatically by `/long-run` at the start of each cycle. ## Inputs | Input | Type | Required | Description | |-------|------|----------|-------------| | health_checks | Markdown file | Yes | `ai/context/health-checks.md`
npx skillsauth add beekeeper-lab/foundry .claude/local/skills/health-checkInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Runs all health checks defined in ai/context/health-checks.md and produces a table-format report. Can be called standalone or by other skills (e.g., /long-run).
/health-check slash command./long-run at the start of each cycle.| Input | Type | Required | Description |
|-------|------|----------|-------------|
| health_checks | Markdown file | Yes | ai/context/health-checks.md — check definitions |
| mode | String | No | interactive (default) or autonomous. In autonomous mode, FAIL-level checks create Unapproved beans. |
CLAUDE.md and .claude/shared/CLAUDE.md. Sum them. Threshold: 500 lines.MEMORY.md. Threshold: 200 lines..claude/agents/*.md. Threshold: 300 lines each.ai/context/bean-workflow.md. Threshold: 600 lines.ai/beans/_index.md. For each Done bean, read its bean.md Telemetry summary section.Total Tokens In < 5,000.Total Cost > $15.—).Duration = "< 1m" but >5 tasks./tmp/foundry-worktree-* directories./tmp/foundry-worker-*.status files./internal:new-beansource: health-check| Output | Type | Description | |--------|------|-------------| | report | Console text | Table-format health check report | | beans | Markdown files | (Autonomous mode only) Unapproved beans for FAIL-level issues |
| Error | Cause | Resolution |
|-------|-------|------------|
| NoBeanIndex | _index.md not found | Report error and skip telemetry/stale checks |
| ParseError | Bean telemetry section malformed | Log warning, skip that bean, continue |
ai/context/health-checks.md — check definitions and thresholdsai/beans/_index.md — bean index for telemetry and stale checksdevelopment
# Skill: VDD (Verification-Driven Development) Gate ## Description Runs the programmatic VDD gate for a bean: parses the bean's `## Acceptance Criteria` section, dispatches each criterion's evidence type to the matching runner (test, lint, file, file-contains, or manual), aggregates the results into a pass/fail verdict, and writes a structured markdown report at `ai/outputs/tech-qa/vdd-<NNN>.md` (zero-padded NNN). This is the machine-checkable counterpart to the prose VDD policy in `ai/contex
tools
# Skill: Spawn Task ## Description Dispatches a single specialist persona to execute a single task with only that task's context. Auto-detects the runtime environment and chooses one of two execution paths: - **In tmux** (`$TMUX` set): spawn a worker in a git worktree using a child tmux window. Process-isolated, parallelizable, durable across the calling session's lifetime. Same pattern as `/spawn-bean` but at task granularity. - **Not in tmux**: invoke the `Agent` tool with `subagent_typ
development
# Skill: Orchestration Report ## Description Aggregates the per-bean **Orchestration Telemetry** blocks (BEAN-278) across recent Done beans and produces a markdown report that answers the architecture-aware-evaluation question: **is the orchestration paying for itself?** Distinct from `/telemetry-report` (which aggregates raw cost, duration, and tokens); this skill aggregates the orchestration-quality metrics layered on top — bounces, persona activations, contract violations, escape-hatch usag
tools
# Skill: Validate Repo ## Description Runs a comprehensive health check against a generated project or any repo that follows the Foundry structure. Verifies folder expectations, required files, template completeness, broken internal links, and stack-specific tooling (lint, test, build commands). Produces a pass/fail checklist with actionable remediation for every finding. This skill works on any project regardless of stack because it adapts its checks based on the composition spec. ## Trigger