← ClaudeAtlas

mini-wikilisted

Automatically generate **professional-grade** structured project Wiki from documentation, code, design files, and images. Use when: - User requests "generate wiki", "create docs", "create documentation" - User requests "update wiki", "rebuild wiki" - User requests "list plugins", "install plugin", "manage plugins" - Project needs automated documentation generation Features: - Smart project structure and tech stack analysis - **Deep code analysis** with semantic understanding - **Mermaid diagrams** for architecture, data flow, dependencies - **Cross-linked documentation** network - Incremental updates (only changed files) - Code blocks link to source files - Multi-language support (zh/en) - **Plugin system for extensions** For Chinese instructions, see references/SKILL.zh.md
trsoliu/mini-wiki · ★ 108 · Data & Documents · score 82
Install: claude install-skill trsoliu/mini-wiki
# Wiki Generator Generate **professional-grade** structured project Wiki to `.mini-wiki/` directory. > **核心原则**:生成的文档必须 **详细、结构化、有图表、相互关联**,达到企业级技术文档标准。 ## 📋 Documentation Quality Standards **CRITICAL**: All generated documentation MUST meet these standards: ### Content Depth - Every topic must have **complete context** - no bare lists or skeleton content - Descriptions must be **detailed and specific** - explain WHY and HOW - Must include **working code examples** with expected output - Must document **edge cases, warnings, common pitfalls** ### Structure Requirements - Use **hierarchical headings** (H2/H3/H4) for clear information architecture - Important concepts in **tables** for quick reference - Processes visualized with **Mermaid diagrams** - **Cross-links** between related documents ### Diagram Requirements (minimum 2-3 per document) | Content Type | Diagram Type | |--------------|--------------| | Architecture | `flowchart TB` with subgraphs | | Data/Call flow | `sequenceDiagram` | | State changes | `stateDiagram-v2` | | **Class/Interface** | `classDiagram` with properties + methods | | Dependencies | `flowchart LR` | ### 🔴 MANDATORY: Source Code Traceability **Every section MUST include source references** at the end: ```markdown **Section sources** - [filename.ts](file://path/to/file.ts#L1-L50) - [another.ts](file://path/to/another.ts#L20-L80) **Diagram sources** - [architecture.ts](file://src/architecture.ts#L1-L100) ``` ### 🔴 MANDATORY: Dynamic Qua