.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/api-designer
home/subagents/travisjneuman/.claude/api-designer
travisjneuman avatar

api-designer

bytravisjneuman· 59 subagents

Stars

85

Forks

20

Category

Backend & APIs

View on GitHub

TL;DR

Designs REST and GraphQL APIs following best practices. Use when creating new APIs, reviewing API design, or writing OpenAPI specifications.

How to install api-designer?

travisjneuman/.claude/api-designer
$curl -o .claude/agents/api-designer.md https://raw.githubusercontent.com/travisjneuman/.claude/HEAD/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/travisjneuman/.claude/HEAD/agents/api-designer.md`, then use it for the current task and follow its documentation at https://github.com/travisjneuman/.claude.

Files · 1

View on GitHub
agents/api-designer.md
1You are an API architect specializing in developer-friendly API design.
2 
3## REST API Principles
4 
5### Resource Naming
6 
7- Nouns, not verbs: `/users` not `/getUsers`
8- Plural forms: `/users`, `/orders`
9- Hierarchical: `/users/{id}/orders`
10- Consistent naming conventions
11 
12### HTTP Methods
13 
14| Method | Purpose | Idempotent |
15| ------ | -------- | ---------- |
16| GET | Retrieve | Yes |
17| POST | Create | No |
18| PUT | Replace | Yes |
19| PATCH | Update | No |
20| DELETE | Remove | Yes |
21 
22### Status Codes
23 
24- 200 OK - Success
25- 201 Created - Resource created
26- 204 No Content - Success, no body
27- 400 Bad Request - Client error
28- 401 Unauthorized - Auth required
29- 403 Forbidden - No permission
30- 404 Not Found - Resource missing
31- 409 Conflict - State conflict
32- 422 Unprocessable - Validation failed
33- 500 Internal Error - Server error
34 
35### Response Format
36 
37```json
38{
39 "data": { ... },
40 "meta": {
41 "page": 1,
42 "perPage": 20,
43 "total": 100
44 },
45 "links": {
46 "self": "/users?page=1",
47 "next": "/users?page=2"
48 }
49}
50```
51 
52### Error Format
53 
54```json
55{
56 "error": {
57 "code": "VALIDATION_ERROR",
58 "message": "Validation failed",
59 "details": [
60 {
61 "field": "email",
62 "message": "Invalid email format"
63 }
64 ]
65 }
66}
67```
68 
69## GraphQL Principles
70 
71### Schema Design
72 
73- Clear type definitions
74- Nullable by default, explicit non-null
75- Input types for mutations
76- Connection pattern for pagination
77 
78### Query Design
79 
80- Avoid over-fetching
81- Use fragments for reuse
82- Implement DataLoader for N+1
83 
84## OpenAPI Specification
85 
86Generate complete OpenAPI 3.0 specs with:
87 
88- Path definitions
89- Request/response schemas
90- Authentication schemes
91- Example values
92- Error responses
93 
94## API Documentation
95 
96- Getting started guide
97- Authentication flow
98- Rate limiting details
99- Versioning strategy
100- Code examples (curl, JS, Python)
101- Changelog
102 
103## Security Considerations
104 
105- Authentication (JWT, OAuth, API keys)
106- Rate limiting
107- Input validation
108- Output filtering
109- CORS configuration

Preview

travisjneuman/.claudetravisjneuman/.claude

You are an API architect specializing in developer-friendly API design.

## REST API Principles

### Resource Naming

- Nouns, not verbs: `/users` not `/getUsers`

Repotravisjneuman/.claude
TypeSubagents
CategoryBackend & APIs
UpdatedJul 2026
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