rekipedia 0.17.18 → 0.17.23
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 +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ reki export . --format md # export full wiki to markdown
|
|
|
52
52
|
| `reki init .` | Scaffold config |
|
|
53
53
|
| `reki scan .` | Full analysis → wiki + knowledge store |
|
|
54
54
|
| `reki update .` | Incremental refresh (changed files only) |
|
|
55
|
+
| `reki update . --impact-only` | Impact-aware mode — only regenerates wiki pages for affected modules |
|
|
55
56
|
| `reki serve .` | Local web UI — browse, search, ask AI |
|
|
56
57
|
| `reki ask` | Interactive Q&A REPL (streamed) |
|
|
57
58
|
| `reki embed .` | Build FAISS semantic index for hybrid RAG |
|
|
@@ -62,12 +63,27 @@ reki export . --format md # export full wiki to markdown
|
|
|
62
63
|
| `reki onboard .` | Static onboarding guide for new developers |
|
|
63
64
|
| `reki review` | LLM PR review grounded in wiki context |
|
|
64
65
|
| `reki refactor .` | Detect code smells → `REFACTOR.md` |
|
|
66
|
+
| `reki refactor . --dry-run` | Preview refactor suggestions without writing files |
|
|
67
|
+
| `reki refactor . --apply` | Auto-apply safe fixes (dead code markers, split suggestions) |
|
|
68
|
+
| `reki refactor . --apply --dry-run` | Preview what `--apply` would do |
|
|
65
69
|
| `reki watch .` | Auto-index on file change (OS watcher) |
|
|
66
70
|
| `reki hook install` | Git post-commit auto-rebuild |
|
|
67
71
|
| `reki mcp` | MCP stdio server for AI coding assistants |
|
|
68
72
|
|
|
69
73
|
---
|
|
70
74
|
|
|
75
|
+
### `reki ask` — Brief mode
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
# Brief mode — ~150 tokens, summary + citations only
|
|
79
|
+
reki ask "what does Scanner.scan() do?" --brief
|
|
80
|
+
|
|
81
|
+
# Or via env var (useful for piping)
|
|
82
|
+
REKIPEDIA_BRIEF=1 reki ask "entry point?" | grep 'src/'
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
71
87
|
## LLM Setup
|
|
72
88
|
|
|
73
89
|
rekipedia uses [litellm](https://github.com/BerriAI/litellm) and supports any provider:
|
package/package.json
CHANGED