Comprehensive documentation and technical writing. Triggers when users need documentation, tutorials, API references, technical writing, diagrams, or software copyright application materials in Chinese.
README: what it is, how to install, quick example β 5 minutes to first success
Getting Started: guided tutorial for beginners β one complete workflow
Guides: task-oriented ("How to X") β goal-focused, not feature-focused
Reference: exhaustive API/CLI docs β complete but not for learning
Troubleshooting: common errors with solutions β search-optimized
README Essentials
1. One-sentence description β what problem it solves
2. Installation β copy-paste command that works
3. Quick start β minimal example that actually runs
4. Link to full docs β don't cram everything in README
Missing any of these = users bounce before trying.
Code Examples
Every example must be tested β untested examples rot within months
Show complete runnable code, not fragments β users copy-paste
Include expected output β confirms they did it right
Bad: client.query(...) / Good: full script with imports, setup, and output
Version-pin examples: npm install package@2.1.0 not npm install package