← Back to list

api-protocol
by yongseongkim
성지순례
⭐ 0🍴 0📅 Jan 3, 2026
SKILL.md
name: api-protocol description: API protocol guide for Sunrei project. Use when writing API endpoints, request/response type naming, and HTTP method conventions.
API Protocol Guide
RESTful API + OpenAPI 3.0 spec
- Request type:
{HttpMethod}{Name}Params(e.g.,GetUserParams,ListUsersParams) - Response type:
{HttpMethod}{Name}Result(e.g.,GetUserResult,ListUsersResult)
HTTP Method Rules
GET+ singular → single item (e.g.,GET /sunreis/{id})List+ plural → list items (e.g.,GET /sunreis)POST→ createPUT→ full updatePATCH→ partial updateDELETE→ delete
Response Format
- Success:
{ "data": ... }or domain key (e.g.,{ "sunreis": [...] }) - Error:
{ "error": { "code": "...", "message": "..." } } - Pagination:
{ "items": [...], "nextToken": "..." }
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon