con un clic
documentation-help
Overview of documentation and diagram commands
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Overview of documentation and diagram commands
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Analyze a GitHub-backed repository's open issues, pull requests, branches, and worktrees to recommend the next unclaimed issue or cleanup action. Use when Codex is asked what to work on next, to triage project backlog, or to choose between open GitHub issues.
Analyze a GitHub-backed repository's open issues, pull requests, branches, and worktrees to recommend the next unclaimed issue or cleanup action. Use when Codex is asked what to work on next, to triage project backlog, or to choose between open GitHub issues.
Launch a bounded, read-only Claude Code session through the Claude Agent SDK to review the current issue-branch diff and advise Codex. Use when the user requests a Claude or cross-model code review, or when flow-auto remains stuck after two materially distinct attempts and needs implementation support.
Launch a bounded, read-only Claude Code session through the Claude Agent SDK to review the current issue-branch diff and advise Codex. Use when the user requests a Claude or cross-model code review, or when flow-auto remains stuck after two materially distinct attempts and needs implementation support.
Bootstrap Codex Power Pack host wiring with explicit consent for every global change
Report installed Codex Power Pack plugins, host pointers, health, and drift without changing the machine
| 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