AI-powered documentation generator that turns any code repository into a browsable, searchable wiki with architecture diagrams, code explanations, and an AI Q&A assistant.
- Instant wiki generation — point at any GitHub, GitLab, Bitbucket, or Azure DevOps repo and get a comprehensive wiki in minutes
- 14+ languages — tree-sitter parsing for Python, TypeScript, Java, Go, Rust, C++, Ruby, PHP, Kotlin, Swift, and more
- AI Q&A — ask questions about any repository and get source-cited answers
- Deep Research — multi-step agentic research engine for complex codebase questions with tool calls and planning
- Mermaid diagrams — auto-generated architecture, sequence, and flow diagrams
- MCP Server — use your wikis directly from Claude Code, Cursor, or Windsurf
- Multiple LLM providers — OpenAI, Anthropic, Google Gemini, Ollama (fully local), AWS Bedrock
- Self-hosted — runs entirely on your infrastructure with a single
docker compose up - Authentication — built-in username/password, GitHub OAuth, Google OAuth
One command to install and run:
curl -fsSL https://raw.githubusercontent.com/arozumenko/wikis/main/install.sh | bashThe installer will prompt for your LLM provider, generate JWT keys, and start everything via Docker Compose.
Or manually:
git clone https://github.com/arozumenko/wikis.git && cd wikis
cp .env.example .env # Edit: set LLM_PROVIDER and LLM_API_KEY
docker compose up -dWindows: The install script requires bash (WSL or Git Bash). Alternatively, clone the repo, copy
.env.exampleto.env, fill in your LLM key, and rundocker compose up -d.
Open http://localhost:3000 and log in: admin@wikis.dev / changeme123
Change the default password immediately after first login.
Repository URL
│
▼
┌─────────────┐ ┌──────────────┐ ┌───────────────┐
│ Clone repo │───▶│ Parse code │───▶│ Build indexes │
│ (git) │ │ (tree-sitter)│ │ (FAISS + BM25)│
└─────────────┘ └──────────────┘ └───────┬───────┘
│
▼
┌──────────────────┐
│ Generate wiki │
│ (LangGraph agent)│
└────────┬─────────┘
│
┌────────▼─────────┐
│ Browsable wiki │
│ + AI Q&A + MCP │
└──────────────────┘
| Service | Port | Description |
|---|---|---|
| Web App | 3000 | Next.js 15 — React SPA + Better-Auth (JWT, OAuth) |
| Backend | 8000 | FastAPI — wiki engine, Q&A, deep research, MCP server |
Both services ship as Docker images on GitHub Container Registry:
docker pull ghcr.io/arozumenko/wikis/web:latest
docker pull ghcr.io/arozumenko/wikis/backend:latest| Provider | Models | Embeddings |
|---|---|---|
| OpenAI | gpt-4o, gpt-4o-mini | text-embedding-3-large |
| Anthropic | claude-sonnet-4-6, claude-haiku-4-5 | requires secondary provider |
| Google Gemini | gemini-2.5-pro, gemini-2.0-flash | text-embedding-004 |
| Ollama | llama3.2, qwen3.5 (local) | nomic-embed-text |
| AWS Bedrock | Claude, Titan (enterprise) | titan-embed-text-v1 |
| OpenAI-compatible | Any (Together, Groq, vLLM, LM Studio) | varies |
Set LLM_PROVIDER and LLM_API_KEY in .env to switch.
Connect your AI IDE to Wikis for codebase-aware answers directly in your editor:
{
"mcpServers": {
"wikis": {
"url": "http://localhost:3000/mcp"
}
}
}Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.
The wikis skill lets any AI agent browse wikis, ask codebase questions, run deep research, and generate new wikis — without opening a browser. It ships with this repo and works in three ways.
/plugin marketplace add arozumenko/wikis
/plugin install wikis@wikis
Claude Code auto-discovers the skills/wikis/ directory and wires everything up.
Copies the skill directly into the IDE skill directories of your current project:
# Install to all detected IDEs
npx github:arozumenko/wikis init
# Install to Claude Code only
npx github:arozumenko/wikis init --target claude
# Overwrite an existing install
npx github:arozumenko/wikis init --update| Target | Directory | Installed path |
|---|---|---|
| Claude Code | .claude/ |
.claude/skills/wikis/ |
| Cursor | .cursor/ |
.cursor/skills/wikis/ |
| Windsurf | .windsurf/ |
.windsurf/skills/wikis/ |
| GitHub Copilot | .github/ |
.github/skills/wikis/ |
After install, set the WIKIS_URL env var before starting your IDE:
export WIKIS_URL=http://localhost:3000
export WIKIS_TOKEN=<jwt-token> # only if auth is enablednpx skills add https://github.com/arozumenko/wikisThe skill at skills/wikis/SKILL.md follows the agentskills.io spec and is compatible with any tool that reads it.
| Operation | Script | API |
|---|---|---|
| List all wikis | list-wikis.mjs |
GET /api/v1/wikis |
| Read wiki / page | get-wiki.mjs <id> [page] |
GET /api/v1/wikis/{id} |
| Ask a question | ask-wiki.mjs <id> "<question>" |
POST /api/v1/ask |
| Deep research | research-wiki.mjs <id> "<question>" |
POST /api/v1/research |
| Generate wiki | generate-wiki.mjs <repo_url> [branch] |
POST /api/v1/generate |
Scripts live in skills/wikis/scripts/ and require Node.js 18+.
| Dashboard | Generate Wiki |
![]() |
![]() |
| Wiki Content | Ask Mode |
![]() |
![]() |
Full documentation at arozumenko.github.io/wikis
- Quick Start — first-time setup
- Self-Hosting — deployment and configuration
- LLM Providers — provider setup and model selection
- MCP Integration — AI IDE integration
See CONTRIBUTING.md for development setup and guidelines.
MIT — see LICENSE.




