@vincemakes/kiso-code 0.1.23 → 0.1.25
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/dist/dispatch.js +1 -1
- package/dist/index.js +2 -2
- package/dist/trust-ui.js +1 -1
- package/package.json +8 -8
package/dist/dispatch.js
CHANGED
|
@@ -18,7 +18,7 @@ export function dispatch(line, ctx) {
|
|
|
18
18
|
// Prints the available commands with one-line descriptions.
|
|
19
19
|
// v2a: the command names are the blue identity accent.
|
|
20
20
|
const p = palette();
|
|
21
|
-
const cmd = (name, desc) => `${p.
|
|
21
|
+
const cmd = (name, desc) => `${p.bold}${name}${p.reset} ${desc}`;
|
|
22
22
|
ctx.chainRef.current = ctx.chainRef.current.then(async () => {
|
|
23
23
|
bodyLog(cmd("/help", "print this list of commands"));
|
|
24
24
|
bodyLog(cmd("/think", "show the last full thinking block"));
|
package/dist/index.js
CHANGED
|
@@ -164,7 +164,7 @@ function makeLineInput() {
|
|
|
164
164
|
const editor = new Editor(() => (dock.active ? dock.redraw() : editor.selfRender()));
|
|
165
165
|
editor.enter();
|
|
166
166
|
const p = palette();
|
|
167
|
-
dock.bindInput(() => editor.dockState(), `${p.
|
|
167
|
+
dock.bindInput(() => editor.dockState(), `${p.bold}${EDITOR_PROMPT}${p.reset}`);
|
|
168
168
|
dock.bindMenu(() => editor.menuState()); // v3 §04: the slash-command menu
|
|
169
169
|
return editorInput(editor);
|
|
170
170
|
}
|
|
@@ -374,7 +374,7 @@ async function main() {
|
|
|
374
374
|
// v2d: the body renderer — active only where the dock is (a color
|
|
375
375
|
// TTY with a real size); pipes run it in passthrough, byte-for-byte.
|
|
376
376
|
setBody(new Body({
|
|
377
|
-
active: () => process.stdin.isTTY && palette().
|
|
377
|
+
active: () => process.stdin.isTTY && palette().bold !== "" && (process.stdout.rows ?? 0) >= 4,
|
|
378
378
|
height: () => process.stdout.rows ?? 24,
|
|
379
379
|
width: () => process.stdout.columns ?? 80,
|
|
380
380
|
editCol: () => dock.editCol(),
|
package/dist/trust-ui.js
CHANGED
|
@@ -17,7 +17,7 @@ import { loadUserConfig, resolveProjectTrustPolicy } from "./config.js";
|
|
|
17
17
|
* pipe bytes must not change.) */
|
|
18
18
|
export function interactivePrompt() {
|
|
19
19
|
const p = palette();
|
|
20
|
-
return `${p.
|
|
20
|
+
return `${p.bold}you> ${p.reset}`;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* Ask the human a question. Non-interactive stdin (piped, CI) cannot wait
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-code",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.25",
|
|
4
4
|
"description": "kiso CLI \u2014 the coding-agent reference product: kiso chat / kiso resume / kiso sessions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"test": "vitest run"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@vincemakes/kiso-core": "0.1.
|
|
22
|
-
"@vincemakes/kiso-evals": "0.1.
|
|
23
|
-
"@vincemakes/kiso-provider-anthropic": "0.1.
|
|
24
|
-
"@vincemakes/kiso-provider-openai": "0.1.
|
|
25
|
-
"@vincemakes/kiso-runtime": "0.1.
|
|
26
|
-
"@vincemakes/kiso-tools-node": "0.1.
|
|
27
|
-
"@vincemakes/kiso-tui": "0.1.
|
|
21
|
+
"@vincemakes/kiso-core": "0.1.25",
|
|
22
|
+
"@vincemakes/kiso-evals": "0.1.25",
|
|
23
|
+
"@vincemakes/kiso-provider-anthropic": "0.1.25",
|
|
24
|
+
"@vincemakes/kiso-provider-openai": "0.1.25",
|
|
25
|
+
"@vincemakes/kiso-runtime": "0.1.25",
|
|
26
|
+
"@vincemakes/kiso-tools-node": "0.1.25",
|
|
27
|
+
"@vincemakes/kiso-tui": "0.1.25"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^26.1.2",
|