agentsclimarketplace

Api generating

Skill huangjia2019/claude-code-engineering/04-Skills/projects/06-agent-skill-combo/.claude/skills/api-generating

This repository demonstrates how to use Claude Code to do real engineering work, not just writing code. 本项目是极客时间专栏 《Claude Code 工程化实战》 的官方配套示例仓库,目标就是: 👉 把 Claude Code 从“对话式编码工具”,变成 可设计、可复用、可治理的工程系统。

Install
npx -y skills add huangjia2019/claude-code-engineering --skill api-generating

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Generate API endpoint documentation from Express route files. Use when the user asks to generate, update, or review API docs for Express.js routes.

SKILL.md

1.7 KB, as published. Nobody here has run it

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:

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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.