Doc generate
Skill christopherlouet/claude-base/.claude/skills/doc-generate
Opinionated Claude Code foundation — Explore → TDD → Audit workflow, auto-detected stack presets (nextjs, fastapi, astro, ...), curl | bash install. MIT.
npx -y skills add christopherlouet/claude-base --skill doc-generateAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Technical documentation generation. Trigger when the user wants to create a README, API docs, or guides.
SKILL.md
1.3 KB, as published. Nobody here has run it
Documentation Generation
README Structure
# Project Name
> Short description
[](link) [](link)
## Features
- Feature 1
- Feature 2
## Quick Start
\`\`\`bash
npm install
npm run dev
\`\`\`
## Documentation
- [Getting Started](docs/getting-started.md)
- [API Reference](docs/api.md)
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md)
## License
MIT
API Documentation
## POST /api/users
Create a new user.
**Request:**
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| email | string | Yes | User email |
| name | string | Yes | User name |
**Response:**
\`\`\`json
{
"id": "uuid",
"email": "[email protected]",
"name": "John"
}
\`\`\`
**Errors:**
| Status | Description |
|--------|-------------|
| 400 | Validation error |
| 409 | Email already exists |
Principles
- Working code examples
- Tables for parameters
- Request/response schemas
- List of possible errors
- Internal links for navigation