@mrciphersmith/keryx 0.2.12 → 0.2.13
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 +19 -2
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,11 +163,21 @@ knowing the repository, and that cannot end one by asserting it is done.
|
|
|
163
163
|
keryx shell # TUI + agent (default UI)
|
|
164
164
|
keryx shell --no-tui # classic readline shell
|
|
165
165
|
keryx shell --chat # chat without tools
|
|
166
|
-
keryx shell --provider ollama --model
|
|
166
|
+
keryx shell --provider ollama --model gemma4:e4b # fully local
|
|
167
167
|
```
|
|
168
168
|
|
|
169
|
+
Here it is answering a blast-radius question through the project graph rather
|
|
170
|
+
than by reading files and guessing — one tool call, twelve seconds:
|
|
171
|
+
|
|
172
|
+
<p align="center">
|
|
173
|
+
<img src="docs/assets/shell.png" alt="keryx shell answering a blast-radius question with the graph_affected tool" width="880">
|
|
174
|
+
</p>
|
|
175
|
+
|
|
176
|
+
And when it needs a decision from you, it asks with structured options instead
|
|
177
|
+
of guessing — the same `ask` the policy engine raises for a guarded action:
|
|
178
|
+
|
|
169
179
|
<p align="center">
|
|
170
|
-
<img src="docs/assets/shell.png" alt="keryx shell
|
|
180
|
+
<img src="docs/assets/shell-ask.png" alt="keryx shell asking the user a structured question with selectable options" width="880">
|
|
171
181
|
</p>
|
|
172
182
|
|
|
173
183
|
What is in it today:
|
|
@@ -198,6 +208,13 @@ What is in it today:
|
|
|
198
208
|
JSONL/RPC, the TUI, and the loopback HTTP entry (`keryx serve`) all drive the
|
|
199
209
|
same execution loop and the same session state.
|
|
200
210
|
|
|
211
|
+
Provider-neutral means what it says — the same loop, the same tool registry and
|
|
212
|
+
the same policy, with the model swapped out from under it:
|
|
213
|
+
|
|
214
|
+
<p align="center">
|
|
215
|
+
<img src="docs/assets/shell-deepseek.png" alt="The same keryx shell running the same tools against a different provider" width="880">
|
|
216
|
+
</p>
|
|
217
|
+
|
|
201
218
|
You do not have to use it. Every module above works with Codex, Claude Code or
|
|
202
219
|
Cursor driving them instead. But if you want an agent that is native to the
|
|
203
220
|
project rather than a guest in it, it is here and it is the same install.
|
package/dist/cli.js
CHANGED
|
@@ -48183,7 +48183,7 @@ Usage:
|
|
|
48183
48183
|
// package.json
|
|
48184
48184
|
var package_default = {
|
|
48185
48185
|
name: "@mrciphersmith/keryx",
|
|
48186
|
-
version: "0.2.
|
|
48186
|
+
version: "0.2.13",
|
|
48187
48187
|
description: "Version-controlled project context for AI coding agents: code graph, architecture wiki, project memory, relevant tests, quality signals, and task flows.",
|
|
48188
48188
|
private: false,
|
|
48189
48189
|
publishConfig: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrciphersmith/keryx",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "Version-controlled project context for AI coding agents: code graph, architecture wiki, project memory, relevant tests, quality signals, and task flows.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|