mini-wikilisted
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