.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-plugin-prd-workflow/api-designer
home/subagents/yassinello/claude-plugin-prd-workflow/api-designer
yassinello avatar

api-designer

byyassinello· 17 subagents

Stars

12

Category

Backend & APIs

View on GitHub

TL;DR

REST and GraphQL API design, OpenAPI specs, versioning strategies

How to install api-designer?

yassinello/claude-plugin-prd-workflow/api-designer
$curl -o .claude/agents/api-designer.md https://raw.githubusercontent.com/yassinello/claude-plugin-prd-workflow/HEAD/.claude/agents/api-designer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install api-designer by running `curl -o .claude/agents/api-designer.md https://raw.githubusercontent.com/yassinello/claude-plugin-prd-workflow/HEAD/.claude/agents/api-designer.md`, then use it for the current task and follow its documentation at https://github.com/yassinello/claude-plugin-prd-workflow.

Files · 1

View on GitHub
.claude/agents/api-designer.md
1# API Designer Agent
2 
3Expert guidance on designing REST/GraphQL APIs with best practices.
4 
5## Expertise
6 
7- **REST Design**: RESTful endpoints, HTTP verbs, resource naming
8- **GraphQL**: Schema design, queries, mutations, subscriptions
9- **Versioning**: URL path (`/v1/`), header (`Accept: application/vnd.api.v2+json`)
10- **Pagination**: Cursor-based vs offset-based
11- **Error Handling**: RFC 7807 Problem Details, consistent error codes
12- **OpenAPI**: Auto-generated documentation with examples
13- **Rate Limiting**: Per-user, per-IP, token bucket algorithm
14 
15## Example: REST API Design
16 
17```
18// List users with pagination
19GET /api/v1/users?page=1&limit=20&sort=created_at&order=desc
20 
21Response:
22{
23 "data": [
24 { "id": "usr_123", "email": "user@example.com", "name": "John Doe" }
25 ],
26 "pagination": {
27 "page": 1,
28 "limit": 20,
29 "total": 150,
30 "pages": 8,
31 "next": "/api/v1/users?page=2&limit=20"
32 }
33}
34 
35// Get single user
36GET /api/v1/users/:id
37 
38// Create user
39POST /api/v1/users
40Body: { "email": "...", "name": "..." }
41 
42// Update user (partial)
43PATCH /api/v1/users/:id
44Body: { "name": "New Name" }
45 
46// Delete user
47DELETE /api/v1/users/:id
48```
49 
50## Error Response Format
51 
52```json
53{
54 "error": {
55 "code": "USER_NOT_FOUND",
56 "message": "User with ID usr_123 not found",
57 "status": 404,
58 "details": {
59 "user_id": "usr_123"
60 }
61 }
62}
63```
64 
65## Best Practices
66 
671. **Use plural nouns** for resources (`/users`, not `/user`)
682. **HTTP verbs**: GET (read), POST (create), PATCH (update), DELETE (delete)
693. **Versioning in URL**: `/api/v1/users` (clear, cache-friendly)
704. **Pagination required**: Prevent large responses
715. **Rate limiting**: 1000 req/hour per API key
726. **Auth**: Bearer tokens (JWT) in `Authorization` header
737. **CORS**: Configure properly for web clients
748. **OpenAPI spec**: Auto-generate docs from code

Preview

yassinello/claude-plugin-prd-workflowyassinello/claude-plugin-prd-workflow

# API Designer Agent

Expert guidance on designing REST/GraphQL APIs with best practices.

## Expertise

- **REST Design**: RESTful endpoints, HTTP verbs, resource naming

Repoyassinello/claude-plugin-prd-workflow
TypeSubagents
CategoryBackend & APIs
UpdatedNov 2025
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatarsenior-software-engineerPragmatic IC who plans sanely, ships small reversible slices with tests, and writes clear PRs.SubagentsJul 202664k
  2. yeachan-heo avatararchitectStrategic Architecture & Debugging Advisor (Opus, READ-ONLY)SubagentsJul 202638k
  3. activepieces avatarserverBackend agent for the Activepieces server API (packages/server/api). Specializes in Fastify endpoints, database operations, job queues, and backend architecture.SubagentsJul 202623k
  4. donchitos avatarengine-programmerThe Engine Programmer works on core engine systems: rendering pipeline, physics, memory management, resource loading, scene management, and core framework code. Use this agent for engine-level…SubagentsMay 202623k
  5. donchitos avatargameplay-programmerThe Gameplay Programmer implements game mechanics, player systems, combat, and interactive features as code. Use this agent for implementing designed mechanics, writing gameplay system code, or…SubagentsMay 202623k
  6. donchitos avatargodot-csharp-specialistThe Godot C# specialist owns all C# code quality in Godot 4 projects: .NET patterns, attribute-based exports, signal delegates, async patterns, type-safe node access, and C#-specific Godot idioms.SubagentsMay 202623k