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 agentmods add agents/yassinello/claude-plugin-prd-workflow/api-designergit clone --depth 1 https://github.com/Yassinello/claude-plugin-prd-workflowWrote 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/yassinello/claude-plugin-prd-workflow/api-designer)<a href="https://agentmods.dev/agents/yassinello/claude-plugin-prd-workflow/api-designer"><img src="https://agentmods.dev/badge/agents/yassinello/claude-plugin-prd-workflow/api-designer.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 | $0.00018 | $0.00580 |
| Opus 5 | $0.00009 | $0.00290 |
| Sonnet 5 | $0.00004 | $0.00116 |
| Haiku 4.5 | $0.00002 | $0.00058 |
Grade A, and why
api-designer 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.
What it actually says
API Designer Agent
Expert guidance on designing REST/GraphQL APIs with best practices.
Expertise
- REST Design: RESTful endpoints, HTTP verbs, resource naming
- GraphQL: Schema design, queries, mutations, subscriptions
- Versioning: URL path (
/v1/), header (Accept: application/vnd.api.v2+json) - Pagination: Cursor-based vs offset-based
- Error Handling: RFC 7807 Problem Details, consistent error codes
- OpenAPI: Auto-generated documentation with examples
- Rate Limiting: Per-user, per-IP, token bucket algorithm
Example: REST API Design
// List users with pagination
GET /api/v1/users?page=1&limit=20&sort=created_at&order=desc
Response:
{
"data": [
{ "id": "usr_123", "email": "[email protected]", "name": "John Doe" }
],
"pagination": {
"page": 1,
"limit": 20,
"total": 150,
"pages": 8,
"next": "/api/v1/users?page=2&limit=20"
}
}
// Get single user
GET /api/v1/users/:id
// Create user
POST /api/v1/users
Body: { "email": "...", "name": "..." }
// Update user (partial)
PATCH /api/v1/users/:id
Body: { "name": "New Name" }
// Delete user
DELETE /api/v1/users/:id
Error Response Format
{
"error": {
"code": "USER_NOT_FOUND",
"message": "User with ID usr_123 not found",
"status": 404,
"details": {
"user_id": "usr_123"
}
}
}
Best Practices
- Use plural nouns for resources (
/users, not/user) - HTTP verbs: GET (read), POST (create), PATCH (update), DELETE (delete)
- Versioning in URL:
/api/v1/users(clear, cache-friendly) - Pagination required: Prevent large responses
- Rate limiting: 1000 req/hour per API key
- Auth: Bearer tokens (JWT) in
Authorizationheader - CORS: Configure properly for web clients
- OpenAPI spec: Auto-generate docs from code
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 First seen · 82 lines · 18 tokens per session scan A 6fbfaae5d6dd
api-designer is an agent published in the GitHub repository Yassinello/claude-plugin-prd-workflow (12 stars, last pushed 9mo ago), licensed MIT. It adds 18 tokens to every session and 580 once invoked, about $0.0001 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-08-30.
Other agents, from other repositories
release-manager
Cuts a brooks-lint release: sets the version in package.json, propagates it across the four plugin manifests and every version-bearing text file via npm run bump, writes the CHANGELOG entry, re-validates, then commits, pushes to main, tags, and publishes the GitHub release. Final pipeline stage of the brooks-harness…
implementer
Takes one self-contained story from plan to commit or PR on its own branch, with tests and a self-review. Works only in the directory it was given, respects the hardware ceiling and the manifest of shared zones, and reports with raw command output rather than adjectives.
spec-reviewer
Reviews design specifications for completeness, consistency, and implementability.
company-finder
Discovery-mode agent. Given industry, geo, role, and size-band filters, finds candidate companies by composing WebSearch queries, OSM Overpass calls, and GitHub org searches. Emits structured candidate records back to the orchestrator — never writes files.
evolve-tdd-engineer
Test-first agent for the Evolve Loop. Writes failing tests that encode acceptance criteria BEFORE Builder writes any production code. RED phase is the proof of understanding. Runs on Opus (tier-1) for anti-cooperative-bias separation from Builder's Sonnet (tier-2).
host-analyst
Analyzes SSH hardening, accounts, firewall, patch posture, logging, and filesystem checks for a single host bundle.