mirror of
https://github.com/luongnv89/claude-howto.git
synced 2026-07-07 11:17:48 +02:00
ee0f4bd5d9
- Add comprehensive built-in commands reference (40+ commands) - Document argument handling ($ARGUMENTS, $1, $2, etc.) - Add bash execution syntax (! prefix) and file references (@ prefix) - Update frontmatter to official fields (allowed-tools, argument-hint, model, etc.) - Add Plugin Commands and MCP Slash Commands sections - Add SlashCommand Tool documentation for programmatic invocation - Add Skills vs Slash Commands comparison table - Create commit.md example with bash execution and context - Update existing examples to use official frontmatter format - Add OpenSpec proposal for change tracking
20 lines
482 B
Markdown
20 lines
482 B
Markdown
---
|
|
description: Create comprehensive API documentation from source code
|
|
---
|
|
|
|
# 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
|