api-designer — community api-designer, local-review, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Backend Agents needing to design and implement scalable RESTful APIs Simple code reviewer in local

tolluset tolluset
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The api-designer skill by tolluset is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Backend Agents needing to design and implement scalable RESTful APIs

Core Value

Empowers agents to define API endpoints using RESTful rules, such as GET, POST, PATCH, PUT, and DELETE methods, and standardize response formats in JSON, enabling seamless integration with frontend applications and microservices architectures using protocols like HTTP and HTTPS

Capabilities Granted for api-designer

Designing resource-oriented API endpoints
Implementing CRUD operations using RESTful methods
Standardizing API response formats for consistent data exchange

! Prerequisites & Limits

  • Requires knowledge of RESTful architecture principles
  • Limited to designing APIs using RESTful rules and JSON response format
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

api-designer

Install api-designer, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

API Designer Skill

Role

Backend developer who designs and implements RESTful APIs

API Design Principles

RESTful Rules

MethodPurposePath Pattern
GETRetrieve/api/resources, /api/resources/:id
POSTCreate/api/resources
PATCHPartial update/api/resources/:id
PUTFull replace/api/resources/:id
DELETEDelete/api/resources/:id

Response Format

typescript
1// Success 2{ data: T } 3{ data: T[], total?: number } 4 5// Error 6{ error: string, details?: unknown }

HTTP Status Codes

CodePurpose
200Success
201Created
400Bad request
404Not found
500Server error

Implementation Order

1. Type Definition (packages/shared)

typescript
1// packages/shared/src/index.ts 2export type CreateFeatureRequest = { 3 name: string; 4 description?: string; 5}; 6 7export type FeatureResponse = { 8 id: string; 9 name: string; 10 description: string | null; 11 createdAt: string; 12};

2. DB Schema (if needed)

typescript
1// packages/db/src/schema.ts 2export const features = sqliteTable('features', { 3 id: text('id').primaryKey(), 4 name: text('name').notNull(), 5 description: text('description'), 6 createdAt: text('created_at').notNull(), 7});

3. Route Implementation

typescript
1// apps/server/src/routes/features.ts 2import { Router } from 'express'; 3import { db } from '@local-review/db'; 4import { features } from '@local-review/db/schema'; 5import { nanoid } from 'nanoid'; 6 7const router = Router(); 8 9// GET /api/features 10router.get('/', async (req, res) => { 11 try { 12 const result = await db.select().from(features); 13 res.json(result); 14 } catch (error) { 15 res.status(500).json({ error: 'Failed to fetch features' }); 16 } 17}); 18 19// POST /api/features 20router.post('/', async (req, res) => { 21 try { 22 const { name, description } = req.body; 23 24 if (!name) { 25 return res.status(400).json({ error: 'Name is required' }); 26 } 27 28 const newFeature = { 29 id: nanoid(), 30 name, 31 description: description ?? null, 32 createdAt: new Date().toISOString(), 33 }; 34 35 await db.insert(features).values(newFeature); 36 res.status(201).json(newFeature); 37 } catch (error) { 38 res.status(500).json({ error: 'Failed to create feature' }); 39 } 40}); 41 42export default router;

4. Register Route

typescript
1// apps/server/src/index.ts 2import featuresRouter from './routes/features'; 3app.use('/api/features', featuresRouter);

5. Frontend API Client

typescript
1// apps/web/src/lib/api.ts 2export const featureApi = { 3 list: () => fetchJson<FeatureResponse[]>('/api/features'), 4 create: (data: CreateFeatureRequest) => 5 fetchJson<FeatureResponse>('/api/features', { 6 method: 'POST', 7 body: JSON.stringify(data), 8 }), 9};

Existing API Reference

Current project API structure:

  • GET /api/git/branches - Branch list
  • GET/POST /api/sessions - Session CRUD
  • GET/POST /api/sessions/:id/comments - Comments
  • PATCH /api/sessions/:id/files/*/status - File status

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is api-designer?

Perfect for Backend Agents needing to design and implement scalable RESTful APIs Simple code reviewer in local

How do I install api-designer?

Run the command: npx killer-skills add tolluset/local-review/api-designer. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for api-designer?

Key use cases include: Designing resource-oriented API endpoints, Implementing CRUD operations using RESTful methods, Standardizing API response formats for consistent data exchange.

Which IDEs are compatible with api-designer?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for api-designer?

Requires knowledge of RESTful architecture principles. Limited to designing APIs using RESTful rules and JSON response format.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add tolluset/local-review/api-designer. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use api-designer immediately in the current project.

Related Skills

Looking for an alternative to api-designer or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI