一键导入
api-design
Design RESTful APIs following best practices. Use when Designing new API endpoints, Restructuring existing APIs, or Planning API versioning strategy
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Design RESTful APIs following best practices. Use when Designing new API endpoints, Restructuring existing APIs, or Planning API versioning strategy
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyze A/B test results with statistical significance, sample size validation, confidence intervals, and ship/extend/stop recommendations. Use when evaluating experiment results, checking if a test reached significance, interpreting split test data, or deciding whether to ship a variant.
Local-first dual-pillar agentic memory inspired by TencentDB-Agent-Memory.
Assess whether your product work is AI-first or AI-shaped. Use when evaluating AI maturity and choosing the next team capability to build.
Full autonomous execution from idea to working code
Track high-priority leadership requests.
Conducts deep-dive research to create a strategic dossier on a target company.
| name | api-design |
| description | Design RESTful APIs following best practices. Use when Designing new API endpoints, Restructuring existing APIs, or Planning API versioning strategy |
Use this skill to design API resources, payloads, and failure modes with consistent conventions.
RESTful API design:
# Users API
GET /api/v1/users # List users (paginated)
POST /api/v1/users # Create user
GET /api/v1/users/:id # Get user by ID
PUT /api/v1/users/:id # Update user
DELETE /api/v1/users/:id # Delete user
# Nested resources
GET /api/v1/users/:id/posts # Get user's posts
# Response format
{
"data": { ... },
"meta": { "page": 1, "total": 100 }
}
# Error format
{
"error": {
"code": "VALIDATION_ERROR",
"message": "Email is required",
"details": [...]
}
}
scripts/ only when the task is fragile, repetitive, or benefits from deterministic execution.references/ only when details are too large or too variant-specific to keep in SKILL.md.assets/ only for files that will be consumed in the final output.SKILL.md plus only the resources that materially help.