rekipedia 0.10.1 → 0.11.0

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
@@ -24,6 +24,7 @@ No hallucinations, no guessing — every answer is grounded in your actual codeb
24
24
  - **Wiki export**: bundle to a single Markdown file, ZIP archive, or structured JSON (`rekipedia export`)
25
25
  - **Incremental updates**: only re-processes changed files after the first scan
26
26
  - **Grounded Q&A**: answers cite real file paths and line numbers — no hallucinations
27
+ - **Codebase tree index** — every scan builds a hierarchical directory/file tree in SQLite, enabling structured navigation and future reasoning-based retrieval.
27
28
 
28
29
  ## Quick start
29
30
 
@@ -78,6 +79,7 @@ brew install rekipedia
78
79
  | `rekipedia mcp` | Start JSON-RPC 2.0 MCP stdio server (6 tools for AI coding assistants) |
79
80
  | `rekipedia watch add\|start\|list\|remove` | Watch repos and auto-index on file change |
80
81
  | `rekipedia refactor [REPO]` | Detect code smells + generate `REFACTOR.md` and `refactor_report.json` (use `--no-llm` for static only) |
82
+ | `rekipedia note add\|list\|remove\|edit\|import` | Manage persistent tech lead notes — injected into `reki ask` context automatically |
81
83
 
82
84
  ---
83
85
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rekipedia",
3
- "version": "0.10.1",
3
+ "version": "0.11.0",
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"