@vincemakes/kiso-tui 0.39.1 → 0.39.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.
Files changed (2) hide show
  1. package/dist/editor.js +6 -0
  2. package/package.json +2 -2
package/dist/editor.js CHANGED
@@ -116,8 +116,14 @@ export const MENU_ITEMS = [
116
116
  // the /resume+/clear mini-spec: the session-navigation pair
117
117
  { name: "/clear", desc: "start a fresh conversation (the old session stays resumable)" },
118
118
  { name: "/resume", desc: "switch to another session; /resume <id> goes directly" },
119
+ // 0.39.2: `/reload` has been dispatchable since §2.5 and `/help` lists
120
+ // it, and typing `/` never offered it — the one place a person who does
121
+ // not know a command exists goes to find one. Caught with `/copy` by the
122
+ // gate that now holds the three lists together.
123
+ { name: "/reload", desc: "reread extensions, skills and config into this session" },
119
124
  { name: "/think", desc: "show the last full thinking block" },
120
125
  { name: "/last", desc: "show the most recent tool call's input and output" },
126
+ { name: "/copy", desc: "copy the last answer (raw markdown) — ctrl+x does the same" },
121
127
  // R4 (C4d): the committed transcript belongs to the terminal and can
122
128
  // never be re-wrapped in place (ADR-0046); this appends it re-folded.
123
129
  { name: "/rewrap", desc: "re-print the recent prose at the current width" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincemakes/kiso-tui",
3
- "version": "0.39.1",
3
+ "version": "0.39.2",
4
4
  "description": "kiso tui \u2014 the pure terminal layer (cell renderer, dock, raw editor, diff, palette). Zero runtime dependencies: input is data, output is bytes.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -35,6 +35,6 @@
35
35
  },
36
36
  "homepage": "https://github.com/vincemakes/kiso/tree/main/packages/tui#readme",
37
37
  "dependencies": {
38
- "@vincemakes/kiso-tui-cells": "0.39.1"
38
+ "@vincemakes/kiso-tui-cells": "0.39.2"
39
39
  }
40
40
  }