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/davistroy/claude-marketplaceWrote 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/davistroy/claude-marketplace/integration-architect)<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.
<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>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.00027 | $0.02346 |
| Opus 5 | $0.00014 | $0.01173 |
| Sonnet 5 | $0.00005 | $0.00469 |
| Haiku 4.5 | $0.00003 | $0.00235 |
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 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
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.
- 9d ago First seen · 224 lines · 27 tokens per session scan A 0693887dafc4
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.
Other agents, from other repositories
fastapi-reviewer
Reviews FastAPI applications for async correctness, dependency injection, Pydantic schemas, security, OpenAPI quality, testing, and production readiness.
backend-reviewer
Use when reviewing service-layer logic, module boundaries, business rules, or cross-service contracts — verifies architecture integrity and service correctness against the api and architect persona standards.
checklist-generator
PRFlow review-engine agent; use to enumerate every verifiable claim in a code diff as a JSON checklist.
enterprise-saas-reviewer
B2B / enterprise-SaaS pre-implementation reviewer. Outputs threat model TM-{slug}.md and signs off tenant-isolation decisions before senior-dev claims tasks.
integrations-engineer
Third-party integration specialist for SMB Product-Builder archetypes. Owns the integration contract — OAuth2/API-key flows, webhook signature verification, idempotency keys, retry/backoff with jitter, rate-limit handling, secret storage, and sandbox→prod promotion — for Stripe, Twilio, QuickBooks, Google/Microsoft…
integration-auditor
Integration patterns auditor. Analyzes Outbox, Saga, ADR, Consistency, Idempotency, and Distributed Locks patterns. Called by acc:architecture-auditor.