managing-knowledge-baselisted
Install: claude install-skill Open330/agt
# Knowledge Base Manager
Organize, generate, and maintain project documentation and knowledge bases.
## Overview
**핵심 기능:**
- Project knowledge base structure scaffolding
- Auto-generate documentation from code (API docs, README, ADRs)
- Create user guides, tutorials, and runbooks
- Cross-reference indexing with TOC and glossary
- Documentation freshness checks and link validation
## When to Use
**명시적 요청:**
- "문서화해줘", "지식 베이스 만들어줘"
- "매뉴얼 작성해줘", "가이드 생성해줘"
- "API 문서 만들어줘", "README 생성해줘"
- "Create knowledge base", "Generate documentation"
**자동 활성화:**
- New project without documentation structure
- After major feature completion requiring docs update
- When onboarding documentation is requested
## Knowledge Base Structure
### Standard Layout
```
docs/
├── README.md # Documentation index
├── getting-started/ # Onboarding & quickstart
│ ├── installation.md
│ ├── quickstart.md
│ └── configuration.md
├── guides/ # How-to guides (task-oriented)
│ ├── user-guide.md
│ └── admin-guide.md
├── reference/ # Technical reference (API, CLI)
│ ├── api/
│ │ ├── overview.md
│ │ └── endpoints/
│ ├── cli.md
│ └── configuration.md
├── architecture/ # System design & decisions
│ ├── overview.md
│ ├── adr/ # Architecture Decision Records
│ │ ├── 0001-use-postgresql.md
│ │ └── template.md
│ └── diagrams/
├── tutorials/ # Learning-oriented walkthroughs
│