Files
howtos/docs/CHEATSHEET.md
user c6b4a88736 feat: scaffold howtos project
Collection of usage guides and cheatsheets. Includes project docs,
topic template, and directory structure.
2026-02-21 19:18:48 +01:00

24 lines
717 B
Markdown

# Cheatsheet
## Quick Reference
| Action | Command |
|---------------------|--------------------------------------|
| List topics | `ls topics/` |
| Read topic | `bat topics/<name>.md` |
| Add topic | `cp docs/TEMPLATE.md topics/<n>.md` |
| Search across all | `grep -ri <term> topics/` |
## File Format
Each topic file follows `docs/TEMPLATE.md`:
```
# <Topic>
## Overview — one-liner description
## Common Commands — daily-driver commands
## Examples — real-world patterns
## Gotchas — pitfalls and edge cases
## See Also — related topics, links
```