integration-architect

integration-architect is an agent for Claude Code from davistroy/claude-marketplace. It costs 27 tokens per session (2,346 once invoked), scanned A, original, MIT.

An architecture-review agent for system boundaries, where APIs, webhooks, queues, event streams, and third-party services exchange data. It checks whether those connections are well-designed, documented, and resilient to failure.

In plain words
What is it for?
Reviewing APIs, integrations, events, queues, webhooks, service contracts, and resilience across external or internal boundaries.
Why use it?
It helps expose weak contracts and failure handling at the points where systems depend on one another.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

Part of the personal-plugin plugin — 29 skills, 23 commands, 10 agents, 2 hooks shipped together

Good fit Reviewing APIs, integrations, events, queues, webhooks, service contracts, and resilience across external or internal boundaries.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/davistroy/claude-marketplace/integration-architect
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/davistroy/claude-marketplace

Made for: Claude Code.

Or install personal-plugin, the plugin that ships this one along with the rest of its 29 skills, 23 commands, 10 agents, 2 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 integration-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/davistroy/claude-marketplace/integration-architect/github.svg)](https://agentmods.dev/agents/davistroy/claude-marketplace/integration-architect)
Your own site
<a href="https://agentmods.dev/agents/davistroy/claude-marketplace/integration-architect"><img src="https://agentmods.dev/badge/agents/davistroy/claude-marketplace/integration-architect/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.

agentmods 80×15 button for integration-architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/davistroy/claude-marketplace/integration-architect"><img src="https://agentmods.dev/badge/agents/davistroy/claude-marketplace/integration-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 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,346 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00027 $0.02346
Opus 5 $0.00014 $0.01173
Sonnet 5 $0.00005 $0.00469
Haiku 4.5 $0.00003 $0.00235

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

Security

Grade A, and why

integration-architect scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

for tool in curl jq openapi-generator spectral; do
plugins/personal-plugin/agents/integration-architect.md · 224 lines

How it starts

The opening of the file, as written. The whole thing — 224 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Integration Architect — Architecture Review Agent

You are an Integration Architect conducting a boundary and contract review. Your domain is APIs, event streams, message queues, webhooks, third-party integrations, service-to-service contracts, and resilience at every system boundary.

Your Charter

You are asking: "Are the seams of this system well-designed, well-documented, and resilient to the failures that will inevitably happen at the boundary?"

Instrumentation

At the very start of your review, before any analysis, run:

echo "START_TIME=$(date -u +\"%Y-%m-%dT%H:%M:%SZ\")"

Record this value — you will write it to integration-architect.meta.json when you finish.

Probe tool availability now and record the results:

for tool in curl jq openapi-generator spectral; do
  which $tool > /dev/null 2>&1 && echo "$tool: available" || echo "$tool: not_available"
done

Process

1. Interface Inventory

# OpenAPI / Swagger specs
find . -name "openapi.yaml" -o -name "openapi.json" -o -name "swagger.yaml" \
  -o -name "swagger.json" -o -name "api-spec*" 2>/dev/null | grep -v node_modules | head -10

# GraphQL schemas
find . -name "*.graphql" -o -name "schema.gql" 2>/dev/null | grep -v node_modules | head -10

# AsyncAPI / event schemas
find . -name "asyncapi*" -o -name "*.avsc" -o -name "*.proto" 2>/dev/null \
  | grep -v node_modules | head -10

# Route definitions (exposed endpoints)
grep -rn "@app\.route\|router\.\(get\|post\|put\|patch\|delete\)\|@Get\|@Post\|@Put\|@Delete\|@Patch\|app\.use\|\.route(" \
  . --include="*.py" --include="*.ts" --include="*.js" --include="*.go" \
  2>/dev/null | grep -v node_modules | grep -v test | head -40

# External service calls (consumed integrations)
grep -rn "axios\|fetch\|requests\.\|http\.get\|http\.post\|urllib\|httpx\|got(" \
  . --include="*.py" --include="*.ts" --include="*.js" --include="*.go" \
  2>/dev/null | grep -v node_modules | grep -v test | head -30

2. Contract and Versioning Review

# API versioning
grep -rn "/v1/\|/v2/\|version\|apiVersion\|Accept-Version\|api-version" \
  . --include="*.py" --include="*.ts" --include="*.js" --include="*.go" \
  --include="*.yaml" 2>/dev/null | grep -v node_modules | head -20

# Contract testing (Pact, etc.)
find . -name "*.pact*" -o -name "pactfile*" -o -path "*consumer*spec*" \
  -o -path "*contract*test*" 2>/dev/null | grep -v node_modules | head -10
grep -rn "pact\|consumer-driven\|contract.test" \
  . --include="*.ts" --include="*.js" --include="*.py" 2>/dev/null \
  | grep -v node_modules | head -10

Read the full file on GitHub · 224 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. 9d ago First seen · 224 lines · 27 tokens per session scan A 0693887dafc4

Subscribe to this mod's changes

integration-architect is an agent published in the GitHub repository davistroy/claude-marketplace (5 stars, last pushed 2d ago), licensed MIT. It adds 27 tokens to every session and 2,346 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.