rekipedia 0.9.7 → 0.9.29

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 (3) hide show
  1. package/LICENSE +13 -0
  2. package/README.md +16 -1
  3. package/package.json +3 -3
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2026 Eddie Chan (unrealandychan). All Rights Reserved.
2
+
3
+ PROPRIETARY AND CONFIDENTIAL
4
+
5
+ This software and its source code are the exclusive property of Eddie Chan
6
+ ("Owner"). Unauthorized copying, distribution, modification, public display,
7
+ or public performance of this software, via any medium, is strictly prohibited.
8
+
9
+ No part of this software may be reproduced, distributed, or transmitted in any
10
+ form or by any means, including photocopying, recording, or other electronic or
11
+ mechanical methods, without the prior written permission of the Owner.
12
+
13
+ For licensing inquiries, please contact the Owner directly.
package/README.md CHANGED
@@ -7,6 +7,11 @@ rekipedia scans any repository into a portable SQLite knowledge store and gives
7
7
  No hallucinations, no guessing — every answer is grounded in your actual codebase.
8
8
 
9
9
  ### Key features
10
+ - **Relationship confidence scoring**: every extracted relationship tagged as EXTRACTED/INFERRED/AMBIGUOUS with confidence score
11
+ - **Design rationale extraction**: `# NOTE:`, `# HACK:`, `# WHY:` comments extracted as knowledge nodes
12
+ - **God nodes**: highest-degree symbols surfaced in index.md and highlighted in the graph UI
13
+ - **Interactive dependency graph**: `rekipedia serve` now includes a `/graph` route with D3.js force-directed visualization
14
+ - **Git hooks**: `rekipedia hook install` triggers auto-rebuild on every commit
10
15
  - **Agentic wiki orchestration**: `PlannerAgent` designs the wiki structure dynamically based on your repo
11
16
  - **Page importance scoring**: planner assigns each page an importance score (0–100); nav sidebar sorts by priority
12
17
  - **DeepWiki-style sections**: pages grouped into logical sections (`getting-started`, `architecture`, `core-components`, etc.)
@@ -62,6 +67,13 @@ brew install rekipedia
62
67
  | `rekipedia serve [REPO]` | Start a local web UI to browse wiki pages and ask questions |
63
68
  | `rekipedia embed [REPO]` | Build (or rebuild) the FAISS semantic search index for hybrid RAG Q&A |
64
69
  | `rekipedia export [REPO]` | Bundle the wiki to a single file (`--format md\|zip\|json`) |
70
+ | `rekipedia hook install/uninstall/status` | Manage git post-commit hook for auto wiki rebuild |
71
+ | `rekipedia diff [A] [B]` | Compare two graph snapshots (defaults to last two) |
72
+ | `rekipedia impact <file>` | Show blast-radius — all affected files, symbols, tests for a changed file |
73
+ | `rekipedia search <query>` | Search symbols (`--all-repos` for cross-repo parallel search) |
74
+ | `rekipedia export --format graphml\|cypher\|obsidian` | Export graph to GraphML / Neo4j Cypher / Obsidian wikilinks |
75
+ | `rekipedia mcp` | Start JSON-RPC 2.0 MCP stdio server (6 tools for AI coding assistants) |
76
+ | `rekipedia watch add\|start\|list\|remove` | Watch repos and auto-index on file change |
65
77
 
66
78
  ---
67
79
 
@@ -300,4 +312,7 @@ make release-all PYPI_TOKEN=*** NPM_TOKEN=*** VERSION=0.5.0
300
312
 
301
313
  ## License
302
314
 
303
- MITsee [LICENSE](LICENSE).
315
+ Proprietary and Confidential Copyright © 2026 Eddie Chan. All Rights Reserved.
316
+
317
+ Unauthorized copying, distribution, or modification of this software is strictly prohibited.
318
+ See [LICENSE](LICENSE) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rekipedia",
3
- "version": "0.9.7",
3
+ "version": "0.9.29",
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"
@@ -22,9 +22,9 @@
22
22
  "license": "MIT",
23
23
  "repository": {
24
24
  "type": "git",
25
- "url": "https://github.com/your-org/rekipedia.git"
25
+ "url": "https://github.com/unrealandychan/rekipedia.git"
26
26
  },
27
27
  "bugs": {
28
- "url": "https://github.com/your-org/rekipedia/issues"
28
+ "url": "https://github.com/unrealandychan/rekipedia/issues"
29
29
  }
30
30
  }