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.
npx skills add lukasrepublic/agentic-foundry --skill verifygit clone --depth 1 https://github.com/lukasrepublic/agentic-foundryWrote 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.
[](https://agentmods.dev/skills/lukasrepublic/agentic-foundry/verify)<a href="https://agentmods.dev/skills/lukasrepublic/agentic-foundry/verify"><img src="https://agentmods.dev/badge/skills/lukasrepublic/agentic-foundry/verify/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/lukasrepublic/agentic-foundry/verify"><img src="https://agentmods.dev/badge/skills/lukasrepublic/agentic-foundry/verify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00146 | $0.01490 |
| Opus 5 | $0.00073 | $0.00745 |
| Sonnet 5 | $0.00029 | $0.00298 |
| Haiku 4.5 | $0.00015 | $0.00149 |
Grade A, and why
verify 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 5d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/foundry:verify
The executor the frozen stack-profile recipe was authored for. It runs SDLC step 7 (static validation) and step 8 (tests + coverage) for the active stack — resolving the recipe from the stack-profile lock and dispatching the profile-declared commands fail-closed, so a forgotten typecheck / coverage step or a wrong-stack command set is caught by construction, not by memory.
It is a dispatcher, not a definer: it does NOT define recipes and implements NO linter / formatter
/ test runner of its own. Every command it runs is a profile-declared string from
schema/stack-profile.schema.json's static_validation + test_recipe.
When to trigger
- "verify", "/foundry:verify", "run the static-validation + tests", or before cutting a PR / at the
software-deliveryverify step, to run the active stack's step-7/step-8 recipe.
Procedure (advisory, ordered)
- Resolve the active profile. Read
.foundry/stack-profile.lockunderCLAUDE_PROJECT_DIRand call the merged loader'sresolve_lock()(scripts/foundry-stack-profile.py, imported read-only).resolve_lock()returns a LIST of resolved profile docs.- No lock present (
read_lock()isNone) => SKIP (no active stack) — a distinct, reasoned skip, never a pass. - Resolution raises (unpinned / sha-drifted / version-mismatch / core-incompatible / malformed lock) => FAIL (a present lock that won't resolve is a broken build contract, not "nothing to do").
- Zero resolved profiles => FAIL ("nothing to run" is never green). More than one with no selection mechanism => FAIL (ambiguous active profile; selection over N is deferred).
- Exactly one => use it.
- No lock present (
- Read the recipe BY NAME (do not redefine). From the single resolved profile, read the
schema-shaped command strings:
static_validation.{format, lint, typecheck, build}thentest_recipe.{unit, integration, e2e}— these seven strings are the ordered command set.test_recipe.coverage_gateis a NUMBER: surface it in the run record (the declared threshold); do NOT dispatch it as a command — the test commands enforce the threshold themselves (e.g.pytest --cov-fail-under=N), andverifycatches their non-zero exit. - Dispatch in declared order. Run each command string under a shell,
cwd= the project/repo dir, full utf-8 stdout/stderr capture, with a timeout. Any non-zero exit or launch failure => that record'spassed=False. - Report the verdict (fail-closed). Return the ordered
{phase, key, command, exit_code, passed}records, the surfacedcoverage_gate, and an overallverdict:passiff a lock is active, resolution yields exactly one profile, AND every dispatched command exits zero.failif any command exits non-zero (or fails to launch), OR resolution raised, OR the resolved count is not exactly one.skiponly when no lock is present. The process exit code mirrors the verdict:pass->0,fail->non-zero,skip->a distinct non-pass status (never 0 masquerading as a green run).
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.
- 5d ago First seen · 91 lines · 146 tokens per session scan A 9e00bfe5a0f3
verify is a skill published in the GitHub repository lukasrepublic/agentic-foundry (1 stars, last pushed 4d ago), licensed MIT. It adds 146 tokens to every session and 1,490 once invoked, about $0.0007 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-03.
Other skills, from other repositories
ops-nuke-cicd
Designs and troubleshoots NUKE-based CI/CD pipelines for .NET services. Use when refactoring target graphs, splitting test flows, publishing reports, or diagnosing slow pipelines.
build-status-cache
Skip Phase 7 rebuild when no code changed since Phase 5 build passed. Compares git diff hash against stored hash from last successful build validation. Triggers on: entering Phase 7, checking build status, before final build validation. Returns BUILDCACHEHIT to skip or BUILDCACHEMISS to re-run build-validator.
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.
eval-forge
Turn an observed agent defect into a machine-checkable eval scenario, generated and self-validated in one step. Use after a defect lands in the feedback ledger, or before changing an agent definition that has no eval coverage. Trigger with /eval-forge.
journey-simulation
Use when caller wants to observe how a stranger encounters a flow, artifact, or sandbox — triggers like "simulate a user journey", "test our onboarding / checkout / signup", "will my ICP convert", "how does a cold reader experience this README", "first-time user test", "cognitive walkthrough", or any request to…
tune-repo
Audit and tighten the current repository so Claude Code works faster and more accurately in it — verify the existing CLAUDE.md still matches reality, tighten the build/test/lint verification loop, add only the missing static guardrails, and reduce permission friction. Use when the user wants to "tune", "audit"…