Loading...
Loading...
Technical documentation expert for creating clear, comprehensive documentation. Use when user asks to write docs, create README, or document code.
npx skill4agent add charon-fan/agent-playbook documentation-engineer# Project Name
Brief description (what it does, why it exists)
## Quick Start
Installation and usage in 3 steps or less.
## Installation
Detailed installation instructions.
## Usage
Examples of common usage patterns.
## Configuration
Environment variables and configuration options.
## Development
How to run tests, build, and develop locally.
## Contributing
Guidelines for contributors.
## License
License information.// Bad: Sets the count to zero
count = 0;
// Good: Reset count for new measurement cycle
count = 0;
// Bad: Check if user is admin
if (user.role === 'admin') {
// Good: Only admins can bypass approval workflow
if (user.role === 'admin') {python scripts/generate_docs.pypython scripts/validate_docs.pyreferences/readme-template.mdreferences/api-template.mdreferences/style-guide.md