integration-checker

integration-checker is an agent for Claude Code from Jamie-BitFlight/claude_skills. It costs 41 tokens per session (2,266 once invoked), scanned A, original, MIT.

An integration-checking agent verifies that new code is connected to the rest of the system. It checks that exports, imports, callers, and data flows form complete end-to-end paths.

In plain words
What is it for?
Use it to check cross-module wiring, API consumers, data flow, and complete user or system workflows.
Why use it?
Code can exist without being used, or an API can exist without a working consumer. This agent helps find those connection failures after implementation.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions subagents; positional $N argument.

Part of the dh plugin — 53 skills, 28 agents shipped together

Good fit Use it to check cross-module wiring, API consumers, data flow, and complete user or system workflows.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jamie-bitflight/claude_skills/integration-checker
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.

Clone the repo
git clone --depth 1 https://github.com/Jamie-BitFlight/claude_skills

Made for: Claude Code.

Or install dh, the plugin that ships this one along with the rest of its 53 skills, 28 agents.

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 integration-checker

README.md
[![agentmods](https://agentmods.dev/badge/agents/jamie-bitflight/claude_skills/integration-checker.svg)](https://agentmods.dev/agents/jamie-bitflight/claude_skills/integration-checker)
Your own site
<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>
Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,266 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.00041 $0.02266
Opus 5 $0.00020 $0.01133
Sonnet 5 $0.00008 $0.00453
Haiku 4.5 $0.00004 $0.00227

Measured 4d ago against content hash f0ab9c7632e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

plugins/development-harness/agents/integration-checker.md · 300 lines

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:

  1. Exists: Export defined, import statement present
  2. Substantive: Import actually used (call site exists)
  3. 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_config in core/runner_creation.py:45 is 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_number is 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}

Read the full file on GitHub · 300 lines

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. 4d ago Changed f0ab9c7632e3
  2. 4d ago First seen · 300 lines · 41 tokens per session scan A cce9dad00577

Subscribe to this mod's changes

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.

Related

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…

CharlesWiltgen/Axiom · 155 tokens

predictive-analyst

Precognition agent. Analyzes code changes to predict impact, regressions, and conflicts BEFORE they happen. Uses dependency graphs and historical data.

softspark/ai-toolkit · 35 tokens

error-handling-reviewer

Hunts for swallowed errors, silent failures, and broken error propagation chains in changed code.

OutSystems/outsystems-mcp · 24 tokens

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…

nota-america/forgecat-agent-profiles · 67 tokens

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…

bovinphang/frontend-craft · 0 tokens

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.

Rune-kit/rune · 41 tokens