docs-managerlisted
Install: claude install-skill sequenzia/agent-alchemy
# Documentation Manager Workflow
Execute a structured 6-phase workflow for managing documentation. Supports two documentation formats (MkDocs sites and standalone markdown files) and three action types (generate, update, change summary).
## Phase Overview
Execute these phases in order (some phases are conditional):
1. **Interactive Discovery** -- Determine documentation type, format, and scope through user interaction
2. **Project Detection & Setup** -- Detect project context, conditionally scaffold MkDocs
3. **Codebase Analysis** -- Deep codebase exploration using the deep-analysis skill
4. **Documentation Planning** -- Translate analysis findings into a concrete plan for user approval
5. **Documentation Generation** -- Launch docs-writer agents to generate content
6. **Integration & Finalization** -- Write files, validate, present results
---
## Phase 1: Interactive Discovery
**Goal:** Determine through user interaction what documentation to create and in what format.
### Step 1 -- Infer intent from `$ARGUMENTS`
Parse the user's input to pre-fill selections:
- Keywords like "README", "CONTRIBUTING", "ARCHITECTURE" -> infer `basic-markdown`
- Keywords like "mkdocs", "docs site", "documentation site" -> infer `mkdocs`
- Keywords like "changelog", "release notes", "what changed" -> infer `change-summary`
If the intent is clear, present a summary for quick confirmation before proceeding (skip to Step 4). If ambiguous, proceed to Step 2.
### Step 2 -- Q1: Documentatio