@vincemakes/kiso-code 0.4.0 → 0.5.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.
Files changed (2) hide show
  1. package/dist/dispatch.js +3 -1
  2. package/package.json +13 -13
package/dist/dispatch.js CHANGED
@@ -27,7 +27,9 @@ export function dispatch(line, ctx) {
27
27
  bodyLog(cmd("/mode", "show the approval tier; /mode <name> switches (manual/default/accept-edits/plan/bypass)"));
28
28
  bodyLog(cmd("/model", "list model profiles; /model <name|provider/model> switches"));
29
29
  bodyLog(cmd("/compact", "summarize the older conversation to free context"));
30
- bodyLog(cmd("exit", "leave the session"));
30
+ // KC1: the composer's keys ride the SAME bodyLog call (it splits
31
+ // on \n) — the help gains a row, the cli source does not
32
+ bodyLog(`${cmd("exit", "leave the session")}\n${cmd("keys", "enter sends · ctrl+J inserts a newline (shift+enter where the terminal encodes it)")}`);
31
33
  ctx.input.prompt();
32
34
  });
33
35
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincemakes/kiso-code",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "kiso CLI — the durable coding agent that survives kill -9: kiso chat / kiso resume / kiso sessions.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -18,18 +18,18 @@
18
18
  "test": "vitest run"
19
19
  },
20
20
  "dependencies": {
21
- "@vincemakes/kiso-core": "0.2.0",
22
- "@vincemakes/kiso-evals": "0.2.0",
23
- "@vincemakes/kiso-mcp-ext": "0.2.0",
24
- "@vincemakes/kiso-provider-anthropic": "0.2.0",
25
- "@vincemakes/kiso-provider-openai": "0.2.0",
26
- "@vincemakes/kiso-runtime": "0.3.0",
27
- "@vincemakes/kiso-skills-ext": "0.2.0",
28
- "@vincemakes/kiso-subagent-ext": "0.2.0",
29
- "@vincemakes/kiso-task-ext": "0.2.0",
30
- "@vincemakes/kiso-tools-node": "0.2.0",
31
- "@vincemakes/kiso-tui": "0.2.0",
32
- "@vincemakes/kiso-tui-cells": "0.2.0"
21
+ "@vincemakes/kiso-core": "0.5.0",
22
+ "@vincemakes/kiso-evals": "0.5.0",
23
+ "@vincemakes/kiso-mcp-ext": "0.5.0",
24
+ "@vincemakes/kiso-provider-anthropic": "0.5.0",
25
+ "@vincemakes/kiso-provider-openai": "0.5.0",
26
+ "@vincemakes/kiso-runtime": "0.5.0",
27
+ "@vincemakes/kiso-skills-ext": "0.5.0",
28
+ "@vincemakes/kiso-subagent-ext": "0.5.0",
29
+ "@vincemakes/kiso-task-ext": "0.5.0",
30
+ "@vincemakes/kiso-tools-node": "0.5.0",
31
+ "@vincemakes/kiso-tui": "0.5.0",
32
+ "@vincemakes/kiso-tui-cells": "0.5.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "^26.1.2",