5.1 KiB
5.1 KiB
docs/ — User-Facing Documentation
Generated: 2026-05-20
OVERVIEW
19 Markdown files across 6 subdirectories + 2 root files. Categorized by audience: user-facing guides + reference, internal design docs (superpowers/), troubleshooting, legal. The web site at packages/web/ consumes some of these (via web-deploy.yml triggers).
WHERE TO LOOK
| Audience / Task | Location |
|---|---|
| New users — what is this? | docs/guide/overview.md |
| Installing the plugin | docs/guide/installation.md |
| How agents collaborate | docs/guide/orchestration.md |
| Picking the right model per agent | docs/guide/agent-model-matching.md |
| Team Mode (opt-in multi-agent) | docs/guide/team-mode.md |
| Configuration field reference | docs/reference/configuration.md |
| Feature-by-feature reference | docs/reference/features.md |
| CLI command reference | docs/reference/cli.md |
| Known issues & workarounds | docs/reference/known-issues.md |
prompt_async_gate deep-dive |
docs/reference/prompt-async-gate-rfc.md |
| Release process | docs/reference/release-process.md |
| Claiming the lazycodex npm name | docs/reference/lazycodex-npm-reservation.md |
| Rules-injector cross-module comparison | docs/reference/rules-injection-cross-module-comparison.md |
| Sample configs | docs/examples/ (default, coding-focused, planning-focused) |
| Privacy & ToS | docs/legal/ |
| Manifesto | docs/manifesto.md |
| Ollama troubleshooting | docs/troubleshooting/ollama.md |
| Internal design plans/specs | docs/superpowers/plans/ + docs/superpowers/specs/ |
STRUCTURE
docs/
├── manifesto.md # The "why" — referenced from README
├── model-capabilities-maintenance.md # How model-capabilities cache is refreshed
├── guide/ # User-facing tutorial-style guides (5 files)
├── reference/ # API / config / CLI reference (7 files)
├── examples/ # Sample JSONC configs (3 files)
├── legal/ # privacy-policy.md + terms-of-service.md
├── superpowers/
│ ├── plans/ # In-flight design plans (model-settings, background-task-retry, log-rotation)
│ └── specs/ # Frozen design specs (model-settings-compatibility, background-task-retry-timeline)
└── troubleshooting/
└── ollama.md
CONVENTIONS
- User-facing language only in
guide/andreference/. NoOmOinternal jargon without explanation. superpowers/is internal. Design docs, plans, RFCs. Outside readers should not be expected to follow these.- Path links use the
file://scheme so OpenCode renders them in TUI. Use absolute paths. - No HTML. Markdown only. No
<details>/<summary>(causes rendering issues in some terminals). - Code blocks use language fences. Use
jsoncfor config snippets to preserve comments. - Docs touching
packages/web/re-trigger the web CI viaweb-ci.yml.
ANTI-PATTERNS
- Never add a doc to
guide/orreference/without aWHERE TO LOOKentry above. - Never paste agent-facing system prompts here. Those live in
src/agents/orsrc/features/builtin-skills/. - Never document changing config keys without also updating
src/config/schema/and re-runningbun run build:schema.