Loading...
Loading...
Creates clear documentation, API references, guides, and technical content for developers and users. Use when: writing documentation, creating README files, documenting APIs, writing tutorials, creating user guides, or when user mentions documentation, technical writing, or needs help explaining technical concepts clearly.
npx skill4agent add shubhamsaboo/awesome-llm-apps technical-writer# Project Name
[One-line description]
## Features
- [Key features as bullets]
## Installation
[Minimal steps to install]
## Quick Start
[Simplest possible example]
## Usage
[Common use cases with examples]
## API Reference
[If applicable]
## Configuration
[Optional settings]
## Troubleshooting
[Common issues and solutions]
## Contributing
[How to contribute]
## License## Function/Endpoint Name
[Brief description of what it does]
### Parameters
| Name | Type | Required | Description |
|------|------|----------|-------------|
| param1 | string | Yes | What it's for |
### Returns
[What it returns and in what format]
### Example
```language
[Complete working example]| Code | Description | Solution |
|---|
### For Tutorials
```markdown
# [What You'll Build]
[Brief description and screenshot/demo]
## Prerequisites
- [Required knowledge]
- [Required software]
## Step 1: [First Action]
[Clear instructions with code]
## Step 2: [Next Action]
[Continue step by step]
## Next Steps
[Where to go from here]code formatting# Always include comments explaining non-obvious code
# Show complete, working examples
# Include expected output
def example_function(param: str) -> str:
"""
Brief description of what this does.
Args:
param: What this parameter is for
Returns:
What gets returned
"""
return f"Result: {param}"
# Example usage
result = example_function("test")
print(result)
# Output: Result: test## Installation
### Using pip
```bash
pip install package-namenpm install package-namegit clone https://github.com/user/repo.git
cd repo
pip install -e .
### Troubleshooting Section
```markdown
## Troubleshooting
### Error: "Module not found"
**Cause:** Package not installed or wrong Python environment
**Solution:**
```bash
pip install package-namesudo command
# or
chmod +x script.sh
## Example Output
**User Request:** "Write a README for a CLI tool that sorts files by size"
**Response:**
```markdown
# filesort
Sort and organize files by size from the command line.
## Features
- Sort files in any directory by size
- Filter by file extension
- Export results to CSV
- Human-readable size formatting
## Installation
```bash
pip install filesortfilesort .1.2 GB video.mp4
856 MB dataset.zip
45 MB photo.jpg
2.1 KB README.mdfilesort [OPTIONS] DIRECTORY| Option | Description |
|---|---|
| Show largest files first (default: smallest first) |
| Show only top N files |
| Filter by file extension |
| Export to CSV file |
| Include subdirectories |
filesort . --reverse --number 10filesort ~/Videos --extension mp4 --reversefilesort . --output files.csvfilesort ~/Documents --recursive --reverse --number 20~/.filesort.yamlreverse: true
number: 50
ignore:
- "*.tmp"
- "__pycache__"sudo filesort /var/log# This might not match anything
filesort . --extension xyz
# Try without filters
filesort .
---
**Why this works:**
- Starts with clear value proposition
- Quick start gets users running immediately
- Examples for every feature
- Troubleshooting for common issues
- Scannable structure with tables
- Progressive complexity (basic → advanced)