api-generating
SolidGenerate API endpoint documentation from Express route files. Use when the user asks to generate, update, or review API docs for Express.js routes.
API & Backend 1,022 stars
364 forks Updated 4 days ago
Install
Quality Score: 84/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# API 文档生成 Skill
## 工作流程 — MANDATORY
**IMPORTANT**: You MUST follow these steps in order. DO NOT skip or substitute any step.
### Step 1: Route Discovery(路由发现)
**You MUST use the Python script for route detection:**
```bash
python3 skills/scripts/detect-routes.py src/
```
DO NOT manually search for routes using Grep — the script handles edge cases
(dynamic routes, middleware-mounted sub-routers, re-exported routes) that Grep
patterns will miss.
### Step 2: Route Analysis(路由分析)
For each route discovered by the script:
1. Read the route handler source file
2. Identify: HTTP method, path, parameters, request body schema, response schema
3. Check for authentication middleware (e.g., `requireAuth`, `isAdmin`)
4. Check for validation middleware (e.g., `validate(schema)`)
### Step 3: Documentation Generation(文档生成)
Use the template at `templates/api-doc.md` to generate documentation.
**Output rules:**
- One markdown file per route group (e.g., `docs/api/users.md`)
- Include request/response examples
- Mark authenticated endpoints with 🔒
## Reference Files
- Route detection script: `scripts/detect-routes.py`
- Documentation template: `templates/api-doc.md`
- Express routing patterns: see PATTERNS.md (same directory)
## Quality Checklist
Before finishing, verify:
- [ ] All routes from script output are documented
- [ ] Request/response schemas match actual code
- [ ] Auth requirements are marked
- [ ] Examples are valid JSON
Details
- Author
- huangjia2019
- Repository
- huangjia2019/claude-code-engineering
- Created
- 6 months ago
- Last Updated
- 4 days ago
- Language
- JavaScript
- License
- None
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
API & Backend Solid
api-doc-gen
从 Flask、FastAPI、Express 或 Gin 等 Web 框架的源代码中自动扫描路由定义,生成符合 OpenAPI 3.0 / Swagger 规范的标准化 API 文档文件。当用户需要生成 API 文档、提到 OpenAPI、Swagger、接口文档、路由扫描或从代码自动提取接口信息时触发。
4 Updated 1 weeks ago
serejaris Data & Documents Solid
api-documenting
Generate API documentation from code. Use when the user wants to document APIs, create API reference, generate endpoint documentation, or needs help with OpenAPI/Swagger specs.
1,022 Updated 4 days ago
huangjia2019 AI & Automation Listed
api-documentation-generator
Generate comprehensive, developer-friendly API documentation from code, including endpoints, parameters, examples, and best practices
5 Updated 3 days ago
rootcastleco