@mrciphersmith/keryx 0.2.23 → 0.2.24

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 (2) hide show
  1. package/dist/cli.js +6 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -40360,7 +40360,10 @@ var AGENT_SLASH_COMMANDS = [
40360
40360
  {
40361
40361
  name: "/provider",
40362
40362
  description: "Switch provider \u2014 /provider <name>, or no arg to re-select",
40363
- modes: CHAT_ONLY
40363
+ modes: BOTH,
40364
+ modeDescriptions: {
40365
+ agent: "Switch provider / API key (interactive picker)"
40366
+ }
40364
40367
  },
40365
40368
  { name: "/think", description: "Expand the last reasoning block", modes: AGENT_ONLY },
40366
40369
  { name: "/expand", description: "Expand the last tool output block", modes: AGENT_ONLY },
@@ -44674,7 +44677,7 @@ Staying in the current session.
44674
44677
  `);
44675
44678
  return;
44676
44679
  }
44677
- if (command.name === "/connect") {
44680
+ if (command.name === "/connect" || command.name === "/provider") {
44678
44681
  (async () => {
44679
44682
  const detected = opts.redetect !== undefined ? await opts.redetect() : opts.detected;
44680
44683
  const ns = await chrome.withOverlay(() => selectProviderModelInTui(otui, r, detected));
@@ -45195,7 +45198,7 @@ init_shell_config();
45195
45198
  // package.json
45196
45199
  var package_default = {
45197
45200
  name: "@mrciphersmith/keryx",
45198
- version: "0.2.23",
45201
+ version: "0.2.24",
45199
45202
  description: "Version-controlled project context for AI coding agents: code graph, architecture wiki, project memory, relevant tests, quality signals, and task flows.",
45200
45203
  private: false,
45201
45204
  publishConfig: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrciphersmith/keryx",
3
- "version": "0.2.23",
3
+ "version": "0.2.24",
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": {