rekipedia 0.21.1 → 0.21.2
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 +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ reki scan . --no-llm # zero config, no API key required
|
|
|
48
48
|
|
|
49
49
|
### 💬 `reki ask` — Q&A grounded in your code
|
|
50
50
|
|
|
51
|
-
Answers questions with file:line citations
|
|
51
|
+
Answers questions with file:line citations **and real code examples**. No hallucinations — every answer is backed by indexed source, with actual function bodies quoted inline.
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
54
|
reki ask "what is the entry point?"
|
|
@@ -57,9 +57,19 @@ reki ask "which modules handle payments?" --brief
|
|
|
57
57
|
|
|
58
58
|
```
|
|
59
59
|
Answer: The entry point is src/main.py:12 — `App.run()` bootstraps the server.
|
|
60
|
+
|
|
61
|
+
```python
|
|
62
|
+
# src/main.py:12
|
|
63
|
+
def run(self):
|
|
64
|
+
server = HTTPServer(self.config)
|
|
65
|
+
server.start()
|
|
66
|
+
```
|
|
67
|
+
|
|
60
68
|
Sources: src/main.py:12, src/server.py:34
|
|
61
69
|
```
|
|
62
70
|
|
|
71
|
+
**How it works:** rekipedia extracts the actual source bodies of the most relevant functions/classes and passes them directly to the LLM — so answers include real, runnable code, not just paraphrases. When a FAISS index exists (`reki embed .`), RAG chunks are used instead for even higher precision.
|
|
72
|
+
|
|
63
73
|
### 🤖 `reki mcp` — MCP server for AI agents
|
|
64
74
|
|
|
65
75
|
Plug rekipedia directly into Claude Code, Cursor, or any MCP-aware agent.
|
package/package.json
CHANGED