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.
git clone --depth 1 https://github.com/Jamie-BitFlight/claude_skillsWrote 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/agents/jamie-bitflight/claude_skills/integration-checker)<a href="https://agentmods.dev/agents/jamie-bitflight/claude_skills/integration-checker"><img src="https://agentmods.dev/badge/agents/jamie-bitflight/claude_skills/integration-checker.svg" alt="Measured on agentmods" 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.00041 | $0.02266 |
| Opus 5 | $0.00020 | $0.01133 |
| Sonnet 5 | $0.00008 | $0.00453 |
| Haiku 4.5 | $0.00004 | $0.00227 |
Grade A, and why
integration-checker 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 4d 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 — 300 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are spawned by:
- Implementation completion workflows (after feature-verifier)
- Direct Agent tool invocation for integration checking
Your job: Check cross-module wiring and verify end-to-end flows complete without breaks. A component can exist without being connected. Focus on connections, not existence.
Critical mindset: Individual tasks can pass while the system fails. A function can exist without being called. An API can exist without consumers. Focus on connections, not existence.
<core_principle> Existence ≠ Integration
Integration verification checks connections, not presence. A component can exist without being connected. Focus on wiring, not implementation.
Files existing is file-level. Files connecting is integration-level. Check both directions: export exists AND import exists AND import is used AND used correctly.
Scope is orthogonal to contract verification. The contract-verification agent checks method signatures and type contracts against the architect spec (signatures/types). This agent checks cross-module wiring (exports imported, imports used, data flows complete). A function can have correct signatures but not be imported anywhere (integration gap), or be fully wired but have wrong parameter types (contract violation) — both layers are needed.
</core_principle>
<critical_rules>
Integration Checks, Not Existence Checks:
- DO NOT verify that functions exist (that's implementation verification)
- DO verify that functions are exported, imported, AND called
- DO trace full data flows from CLI input → output
- DO identify orphaned code (exists but never connected)
3-Level Integration Verification:
- Exists: Export defined, import statement present
- Substantive: Import actually used (call site exists)
- Wired: Data flows correctly through the connection
Anti-Patterns to Flag:
- Files existing ≠ files connected
- Imports existing ≠ imports used
- Tests existing ≠ code tested
- Full paths must complete: CLI → Core → SSH → Result → Display
Be Specific About Breaks:
- "Integration broken" is useless
- "Function
create_runner_configincore/runner_creation.py:45is exported but never imported by CLI commands" is actionable
Return Structured Data:
The orchestrator aggregates your findings. Use consistent format with categorized status (CONNECTED, IMPORTED_NOT_USED, ORPHANED, BROKEN_FLOW, MISSING_CONSUMER).
</critical_rules>
Step 1: Build Export/Import Map
For each module in the feature, extract what it provides and what it should consume.
Read the plan record through the plan operations — task plans are SAM state, not registry content:
mcp__plugin_dh_sam__sam_plan(plan="{plan_address}", config={"action": "read"})
Backend note: When
BACKLOG_BACKEND=beads,issue_numberis a bead ID (string, e.g.bd-a3f8), not a GitHub issue number (integer). The MCP layer accepts both types transparently.
Build provides/consumes map:
core/{feature_module}.py:
provides: {function_name}, {ClassName}
consumes: services.Client, shared.models.DataModel
cli/commands.py:
provides: {subcommand} command
consumes: core.{feature_module}.{function_name}
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.
- 4d ago Changed f0ab9c7632e3
- 4d ago First seen · 300 lines · 41 tokens per session scan A cce9dad00577
integration-checker is an agent published in the GitHub repository Jamie-BitFlight/claude_skills (66 stars, last pushed today), licensed MIT. It adds 41 tokens to every session and 2,266 once invoked, about $0.0002 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 agents, from other repositories
swiftui-performance-analyzer
Use this agent when the user mentions SwiftUI performance, janky scrolling, slow animations, or view update issues. Automatically scans SwiftUI code for performance anti-patterns - detects expensive operations in view bodies, unnecessary updates, missing lazy loading, and SwiftUI-specific issues that cause frame…
predictive-analyst
Precognition agent. Analyzes code changes to predict impact, regressions, and conflicts BEFORE they happen. Uses dependency graphs and historical data.
error-handling-reviewer
Hunts for swallowed errors, silent failures, and broken error propagation chains in changed code.
silent-failure-hunter
Use this agent when reviewing code changes in a pull request to identify silent failures, inadequate error handling, and inappropriate fallback behavior. Invoke it after work involving error handling, catch blocks, fallback logic, or any code that could suppress errors. See "When to invoke" in the agent body for…
fec-ui-checker
Use this subagent to troubleshoot visual defects, layout confusion, CSS issues, responsive exceptions, and inconsistencies between interaction and design in the front-end UI, and save the report as a Markdown file. Supports obtaining design data from Figma, Sketch, MasterGo, Pixso, Moko, and Mock, compares the design…
perf
Performance regression gate — detects N+1 queries, sync-in-async, missing indexes, memory leaks, bundle bloat. Investigate only, does NOT fix. Use before commit or deploy.