在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用概览
RESTful API conventions
安装命令
npx skills add https://github.com/hongmaple0820/scale-engine --skill api-design复制此命令并粘贴到 Claude Code 中以安装该技能
星标26
分支4
更新时间2026年5月3日 03:57
SKILL.md
readonlyRESTful API conventions
npx skills add https://github.com/hongmaple0820/scale-engine --skill api-design复制此命令并粘贴到 Claude Code 中以安装该技能
Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, reviewing, or refactoring code to avoid overcomplication, make surgical changes, surface assumptions, and define verifiable success criteria.
Code quality review checklist
Systematic debugging protocol
Documentation writing standards
Commit and PR standards
Optimization patterns
| name | api-design |
| version | 1.0.0 |
| description | RESTful API conventions |
| triggers | ["api","endpoint","rest"] |
| agents | ["planner","implementer"] |
Consistent, intuitive interfaces.
| Method | Purpose |
|---|---|
| GET | Retrieve |
| POST | Create |
| PUT | Replace |
| PATCH | Update |
| DELETE | Remove |
{
"success": boolean,
"data": object | null,
"error": string | null,
"meta": { total, page, limit }
}
| Code | Meaning |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not found |
| 500 | Server error |