rekipedia 0.9.30 → 0.9.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,6 +15,8 @@ No hallucinations, no guessing — every answer is grounded in your actual codeb
15
15
  - **Agentic wiki orchestration**: `PlannerAgent` designs the wiki structure dynamically based on your repo
16
16
  - **Page importance scoring**: planner assigns each page an importance score (0–100); nav sidebar sorts by priority
17
17
  - **DeepWiki-style sections**: pages grouped into logical sections (`getting-started`, `architecture`, `core-components`, etc.)
18
+ - **Wiki sidebar categories**: `reki serve` sidebar groups pages by `section` field with collapsible headers
19
+ - **Live search**: type in the sidebar search box to filter wiki pages by title or category instantly
18
20
  - **Context slicing**: each page only receives the data it needs (~40–60% token reduction vs fixed-layout approach)
19
21
  - **Hybrid RAG Q&A**: FAISS-indexed code chunks + wiki pages give the LLM full codebase context when answering questions
20
22
  - **Embed provider choice**: `--embed-provider openai|ollama|azure|...` — any litellm-compatible embedding model
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rekipedia",
3
- "version": "0.9.30",
3
+ "version": "0.9.32",
4
4
  "description": "Agentic repo-to-wiki: scan any repository into a portable SQLite knowledge store with wiki pages, diagrams, and grounded Q&A.",
5
5
  "bin": {
6
6
  "rekipedia": "./bin/rekipedia.js"