Files
openclaw-mission-control/docs/style-guide.md
2026-03-03 05:04:42 +05:30

40 lines
809 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Docs style guide
## Principles
- **Be concrete.** Prefer commands, examples, and “expected output” over prose.
- **Dont invent behavior.** If unsure, link to the source file and mark it as “verify”.
- **Optimize for scanning.** Short sections, bullets, and tables.
- **Call out risk.** Anything destructive or security-sensitive should be labeled clearly.
## Markdown conventions
- Use sentence-case headings.
- Prefer fenced code blocks with a language (`bash`, `yaml`, `json`).
- For warnings/notes, use simple callouts:
```md
> **Note**
> ...
> **Warning**
> ...
```
## Common templates
### Procedure
1. Prereqs
2. Steps
3. Verify
4. Troubleshooting
### Config reference entry
- **Name**
- **Where set** (`.env`, env var, compose)
- **Default**
- **Example**
- **Notes / pitfalls**