Expand toolkit to 135 agents, 120 plugins, 796 total files

- Add 60 new agents across all 10 categories (75 -> 135)
- Add 95 new plugins with command files (25 -> 120)
- Update all agents to use model: opus
- Update README with complete plugin/agent tables
- Update marketplace.json with all 120 plugins
This commit is contained in:
Rohit Ghumare
2026-02-04 21:08:28 +00:00
parent 79573df7cb
commit c3f43d8b61
540 changed files with 22594 additions and 281 deletions

View File

@@ -0,0 +1,6 @@
{
"name": "api-reference",
"version": "1.0.0",
"description": "API reference documentation generation from source code",
"commands": ["commands/generate-api-ref.md"]
}

View File

@@ -0,0 +1,28 @@
# /generate-api-ref - Generate API Reference
Generate API reference documentation from source code and route definitions.
## Steps
1. Detect the API framework: Express, FastAPI, Django REST, Spring Boot, Gin, etc.
2. Scan route definitions to find all API endpoints
3. For each endpoint, extract: HTTP method, path, middleware, handler function
4. Parse handler functions to identify request parameters (path, query, body, headers)
5. Extract request/response schemas from TypeScript types, Pydantic models, or JSDoc
6. Identify authentication requirements from middleware chains
7. Find example request/response pairs from test files or inline documentation
8. Detect rate limiting, pagination, and caching configurations
9. Generate markdown documentation for each endpoint with: method, path, description, parameters, request body, response, errors
10. Group endpoints by resource or router module
11. Add a table of contents and overview section
12. Save documentation to docs/api-reference.md or the specified output path
## Rules
- Include all HTTP methods (GET, POST, PUT, PATCH, DELETE) for each resource
- Document error responses (400, 401, 403, 404, 500) with example payloads
- Use the actual TypeScript/Python types, not simplified versions
- Include authentication requirements for each endpoint
- Show curl examples for at least the primary endpoints
- Do not document internal or health-check endpoints unless requested
- Keep parameter descriptions concise but include type and required status