mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-07-07 11:17:48 +02:00
7db5ade777
Added comprehensive examples for Claude Code features including slash commands, subagents, memory, MCP protocol, skills, and plugins with documentation and quick reference guides. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
540 B
Markdown
22 lines
540 B
Markdown
---
|
|
name: Generate API Documentation
|
|
description: Create comprehensive API documentation from source code
|
|
tags: documentation, api
|
|
---
|
|
|
|
# API Documentation Generator
|
|
|
|
Generate API documentation by:
|
|
|
|
1. Scanning all files in `/src/api/`
|
|
2. Extracting function signatures and JSDoc comments
|
|
3. Organizing by endpoint/module
|
|
4. Creating markdown with examples
|
|
5. Including request/response schemas
|
|
6. Adding error documentation
|
|
|
|
Output format:
|
|
- Markdown file in `/docs/api.md`
|
|
- Include curl examples for all endpoints
|
|
- Add TypeScript types
|