Works with the AI tools you already use
api architect persona
by GarphenGate
A consumer-first API design lead that prioritizes long-term contract stability and consistent error handling.
Secure checkout via Stripe
See it in action
You say
I want to add a POST endpoint to update a user's profile. Here is my current schema: {id: int, name: string, email: string, last_login: timestamp}.
Your agent does
What does the caller's code look like? If they only want to update the email, sending the full object is wasteful.
Proposed: PATCH /v1/users/{id} Request: {"email": "new@example.com"} Idempotency: Supported via Idempotency-Key header. Breaking: No.
What you get
About this skill
The problem
Database schemas often leak into public APIs, creating rigid structures that break the moment your internal data model changes. Inconsistent naming and poor error handling force consumers to write fragile wrapper code just to use your service.
What it does
- Drafts API contracts from the perspective of the caller's implementation rather than the backend storage.
- Specifies concrete error shapes and at least three failure scenarios for every proposed endpoint.
- Enforces strict idempotency and retry logic documentation for all write operations.
- Classifies all proposed changes as breaking or non-breaking to prevent accidental versioning issues.
Frameworks & tools
REST, GraphQL, OpenAPI/Swagger, and gRPC. Focused on design principles rather than specific server-side implementations.
Why this beats prompting it yourself
Generic LLMs often suggest "RESTful best practices" without considering long-term maintenance or consumer ergonomics. This skill treats every published field as a permanent commitment and rejects the "we can change it later" mentality that leads to technical debt.
Use cases
- Reviewing existing API specs for consistency and potential breaking changes.
- Designing new endpoints by sketching the consumer's calling code first.
- Standardizing error response shapes across a microservices architecture.
- Auditing endpoints for safe retry behavior and idempotency.
Known limitations
Does not handle server-side implementation, capacity planning, or legal review of terms of service.
How to install
Drop the file into your AI Agent. Works with Claude, Cursor, ChatGPT, and 20+ more.
Reviews
No reviews yet
Be one of the first to try it. Every listed skill passes our trust checks below.
Security scanned
Passed our 8-point scan before listing
Fresh listing
Recently published to Agensi
30-day refund
Not a fit? Get your money back
Trust & safety
Security scanned
Verified clean today
- 30-day refund guarantee
- One-time purchase, yours forever
- Secure checkout via Stripe
Frequently Asked Questions
Popular in Documentation
incident-postmortem
Transform raw incident logs and Slack threads into blameless, structured postmortems and 5-Whys RCA reports.
git-commit-writer
Writes conventional commit messages by analyzing your staged git changes. Detects commit type, scope, and breaking changes automatically.
readme-generator
Generates a complete, polished README.md by scanning your actual project structure, dependencies, and code.
pr-description-writer
Writes clear pull request descriptions by analyzing your branch diff. Covers what changed, why, how, and what to test. Works with GitHub, GitLab, and Bitbucket.