rekipedia 0.9.37 → 0.9.39

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
@@ -17,6 +17,7 @@ No hallucinations, no guessing — every answer is grounded in your actual codeb
17
17
  - **DeepWiki-style sections**: pages grouped into logical sections (`getting-started`, `architecture`, `core-components`, etc.)
18
18
  - **Wiki sidebar categories**: `reki serve` sidebar groups pages by `section` field with collapsible headers
19
19
  - **Live search**: type in the sidebar search box to filter wiki pages by title or category instantly
20
+ - **Refactor analysis**: `reki refactor` detects code smells (god class, circular deps, dead code, high coupling) with LLM-enriched suggestions — outputs `REFACTOR.md` + `refactor_report.json`
20
21
  - **Context slicing**: each page only receives the data it needs (~40–60% token reduction vs fixed-layout approach)
21
22
  - **Hybrid RAG Q&A**: FAISS-indexed code chunks + wiki pages give the LLM full codebase context when answering questions
22
23
  - **Embed provider choice**: `--embed-provider openai|ollama|azure|...` — any litellm-compatible embedding model
@@ -76,6 +77,7 @@ brew install rekipedia
76
77
  | `rekipedia export --format graphml\|cypher\|obsidian` | Export graph to GraphML / Neo4j Cypher / Obsidian wikilinks |
77
78
  | `rekipedia mcp` | Start JSON-RPC 2.0 MCP stdio server (6 tools for AI coding assistants) |
78
79
  | `rekipedia watch add\|start\|list\|remove` | Watch repos and auto-index on file change |
80
+ | `rekipedia refactor [REPO]` | Detect code smells + generate `REFACTOR.md` and `refactor_report.json` (use `--no-llm` for static only) |
79
81
 
80
82
  ---
81
83
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rekipedia",
3
- "version": "0.9.37",
3
+ "version": "0.9.39",
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"