← Back to list

api-documentation
by michelabboud
⭐ 2🍴 0📅 Jan 16, 2026
SKILL.md
name: api-documentation description: Generate comprehensive API documentation following OpenAPI 3.0 and REST standards when creating or documenting APIs, endpoints, or web services
API Documentation Skill
Generate professional API documentation following industry standards.
OpenAPI 3.0 Format
openapi: 3.0.0
info:
title: Your API Name
version: 1.0.0
description: Clear API description
servers:
- url: https://api.example.com/v1
paths:
/users:
get:
summary: List all users
parameters:
- name: limit
in: query
schema:
type: integer
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
components:
schemas:
User:
type: object
required:
- id
- email
properties:
id:
type: string
email:
type: string
Documentation Checklist
- Endpoint path and HTTP method
- Clear summary (1 line)
- Detailed description (2-3 sentences)
- All query/path/header parameters documented
- Request body schema (if applicable)
- All response status codes
- Response schemas
- Authentication requirements
- Rate limiting information
- Example requests and responses
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+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