rekipedia 0.22.1 → 0.23.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.
- package/README.md +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,6 +103,7 @@ Parses your repo into a SQLite knowledge store with symbols, relationships, and
|
|
|
103
103
|
```bash
|
|
104
104
|
reki scan . # full scan with LLM summaries
|
|
105
105
|
reki scan . --no-llm # zero config, no API key required
|
|
106
|
+
reki scan . --community-sharding # group related files by import-graph community before summarising
|
|
106
107
|
```
|
|
107
108
|
|
|
108
109
|
### 💬 `reki ask` — Q&A grounded in your code
|
|
@@ -147,6 +148,9 @@ reki mcp
|
|
|
147
148
|
| `get_context` | Symbols and relationships for a file |
|
|
148
149
|
| `get_relationships` | Callers and callees for a symbol |
|
|
149
150
|
| `get_hub_nodes` | Architectural chokepoints |
|
|
151
|
+
| `get_god_nodes` | Top N symbols by combined in+out degree — find architectural bottlenecks instantly |
|
|
152
|
+
| `shortest_path` | BFS shortest directed call-path between any two symbols (e.g. "how does A reach B?") |
|
|
153
|
+
| `get_community` | Which import-graph community a symbol belongs to, plus all community members |
|
|
150
154
|
| `get_impact` | Blast-radius for a changed file |
|
|
151
155
|
| `get_knowledge_gaps` | Untested high-call-count symbols |
|
|
152
156
|
| `list_wiki_pages` / `get_wiki_page` | Wiki browsing |
|
|
@@ -368,4 +372,4 @@ Open an issue or PR — the bar is low and the maintainer is responsive.
|
|
|
368
372
|
|
|
369
373
|
---
|
|
370
374
|
|
|
371
|
-
**Current version:** `0.
|
|
375
|
+
**Current version:** `0.23.0` · [PyPI](https://pypi.org/project/rekipedia/) · [MIT License](LICENSE)
|
package/package.json
CHANGED