·api designer
</>

api designer

daffy0208/ai-dev-standards

Design REST and GraphQL APIs. Use when creating backend APIs, defining API contracts, or integrating third-party services. Covers endpoint design, authentication, versioning, documentation, and best practices.

47Installs·0Trend·@daffy0208

Installation

$npx skills add https://github.com/daffy0208/ai-dev-standards --skill api designer

SKILL.md

| Method | Purpose | Idempotent | Safe | Request Body | Response Body |

| GET | Retrieve data | Yes | Yes | No | Yes | | POST | Create resource | No | No | Yes | Yes (created) | | PUT | Replace resource | Yes | No | Yes | Yes (optional) | | PATCH | Partial update | No | No | Yes | Yes (optional) | | DELETE | Remove resource | Yes | No | No | No (204) or Yes |

Idempotent: Multiple identical requests have same effect as single request Safe: Request doesn't modify server state

Design REST and GraphQL APIs. Use when creating backend APIs, defining API contracts, or integrating third-party services. Covers endpoint design, authentication, versioning, documentation, and best practices. Source: daffy0208/ai-dev-standards.

View raw

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/daffy0208/ai-dev-standards --skill api designer
Category
</>Dev Tools
Verified
First Seen
2026-02-01
Updated
2026-02-18

Quick answers

What is api designer?

Design REST and GraphQL APIs. Use when creating backend APIs, defining API contracts, or integrating third-party services. Covers endpoint design, authentication, versioning, documentation, and best practices. Source: daffy0208/ai-dev-standards.

How do I install api designer?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/daffy0208/ai-dev-standards --skill api designer Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor

Where is the source repository?

https://github.com/daffy0208/ai-dev-standards