@anokye-labs/kbexplorer
v0.1.0
Published
CLI tool for the kbexplorer interactive knowledge base — turn any repo into a navigable knowledge graph
Maintainers
Readme
kbexplorer
CLI tool for the kbexplorer interactive knowledge base — turn any GitHub repository into a navigable knowledge graph.
Install
# Use directly
npx @anokye-labs/kbexplorer init
# Or install as dev dependency
npm install -D @anokye-labs/kbexplorerCommands
| Command | Description |
|---------|-------------|
| kbexplorer init | Add .kbexplorer/ submodule, install agents/skills, configure |
| kbexplorer generate | Run content generation pipeline (architect → transform → writer) |
| kbexplorer dev | Start dev server in local mode |
| kbexplorer build | Production build |
| kbexplorer manifest | Regenerate repo manifest from local data |
| kbexplorer update | Pull latest template + refresh agents/skills |
Quick Start
# In any GitHub repo:
npx kbexplorer init # Interactive setup wizard
npx kbexplorer dev # Launch the explorerWhat init Does
- Adds
.kbexplorer/as a git submodule (the visual explorer app) - Installs agents to
.github/agents/(kb-architect, kb-writer, kb-researcher) - Installs skills to
.github/skills/kbexplorer/ - Runs interactive config wizard (content mode, title, theme, etc.)
- Creates
.env.kbexplorerand adds npm scripts
Content Generation
Generate rich documentation from code analysis:
# In Copilot CLI, ask the kb-architect agent to analyze the repo
# It produces catalogue.json, then:
npx kbexplorer generateOr use the full pipeline in Copilot CLI — the kb-architect, kb-writer, and kb-researcher agents are installed in your repo's .github/agents/.
Agents
| Agent | Description |
|-------|-------------|
| kb-architect | Scans repo → structured catalogue with clusters, connections, Fluent icons |
| kb-writer | Generates rich content pages with citations, Mermaid diagrams |
| kb-researcher | Deep investigation with evidence-first analysis |
Adapted from microsoft/skills deep-wiki (MIT License).
License
MIT
