with one click
documentation-help
Overview of documentation and diagram commands
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Overview of documentation and diagram commands
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Flow: Auto - Full Issue Lifecycle in One Shot - Complete end-to-end workflow: start worktree → analyze issue → ELI5 plan + necessity gate → implement ...
Run quality checks (lint + test + typecheck + security) without committing
Flow: Finish - Quality Gates, Commit, Push, and Create PR - Run quality checks, commit changes, push the branch, and create a pull request.
Flow Commands - Streamlined worktree-based development workflow. No locks, no Redis - just git.
Flow: Merge PR and Clean Up - Merge the current branch's PR, then clean up the worktree and branch.
Diagnose flow workflow setup and environment
| name | documentation-help |
| description | Overview of documentation and diagram commands |
Generated from a Claude Code command. Where the procedure references these Claude-only surfaces, adapt as follows:
~/.codex/config.toml, or fall back to the referenced repo scripts and CLI entry points.scripts/<name> are bundled under scripts/ in this skill directory (byte-identical copies from the claude-power-pack checkout); some expect sibling repo resources, so prefer a full checkout when one is available.Generate architecture documentation and professional presentations.
| Command | Purpose |
|---|---|
/documentation-c4 | Generate C4 architecture diagrams (all 4 levels) |
/documentation-pptx | Create PowerPoint presentations with optional diagrams |
/documentation-help | This help overview |
PowerPoint/PPTX generation is provided by the native Anthropic pptx skill (not an MCP server). Install it into a project with:
npx skills add anthropics/skills@pptx
/documentation-pptx drives the skill to build slide decks.
/documentation-c4 renders C4 diagrams as GitHub-renderable Mermaid via a zero-dependency Python engine (scripts/c4-mermaid.py, issue #411). It analyzes the project, builds a C4 model (docs/architecture/c4-model.json), then emits L1-L3 as Mermaid flowchart (with subgraph boundaries and C4 classDef colors) and L4 as classDiagram. Output is one .mmd per level plus an index.md that renders inline on GitHub, and a c4-manifest.json. The engine enforces an edge-validity QA gate (every edge/relation endpoint must be a defined node) and flags dense diagrams for splitting.
| Type | C4 Concept | Color |
|---|---|---|
person | Actor / User | Dark blue (pill shape) |
system | External System | Grey |
system-focus | System of Interest | Blue |
container | Container (app, DB, service) | Green |
component | Component within container | Purple |
code | Class / module / interface | Amber |
Add an update_docs target to your Makefile to run C4 diagram generation and doc review as part of /flow-auto and /flow-finish.
/cpp-load-mcp-docs - Load all MCP server documentation@playwright/mcp - Browser automation for screenshots