— No reviews yet
0 installs
10 views
0.0% view→install
Install
$ agentstack add skill-sourav15mukherjee-skillforge-free-skills-api-docs-writer ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Api Docs Writer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
API Docs Writer
Generate complete API documentation by analyzing route handler source code.
Workflow
- Find all API routes
Search for API route files:
- Next.js:
app/api/**/route.ts - Express: files with
router.get/post/put/delete - FastAPI: files with
@app.get/post/put/delete
- Analyze each route
For every endpoint, extract:
- HTTP method (GET, POST, PUT, DELETE)
- URL path and path parameters
- Query parameters
- Request body schema (from TypeScript types or validation)
- Response schema (from return statements)
- Authentication requirements
- Error responses
- Generate documentation using this format for each endpoint:
### [METHOD] /api/path
[One-line description]
**Authentication:** Required / None
**Request**
| Parameter | Type | In | Required | Description |
|-----------|--------|-------|----------|-------------|
| id | string | path | yes | Resource ID |
**Request Body**
\`\`\`json
{
"field": "value"
}
\`\`\`
**Response (200)**
\`\`\`json
{
"data": { ... }
}
\`\`\`
**Error Responses**
| Status | Description |
|--------|-------------|
| 401 | Unauthorized |
| 404 | Not found |
- Write the output
Create or update the docs file (e.g., docs/API.md or API_REFERENCE.md).
Rules
- Include curl examples for each endpoint
- Show both success and error response examples
- Group endpoints by resource/domain
- Note any rate limits or special headers required
- Include authentication details (Bearer token, API key, cookies)
- Link to related endpoints where relevant
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sourav15mukherjee
- Source: sourav15mukherjee/skillforge-free-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.