@vincemakes/kiso-code 0.2.0 → 0.2.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.
- package/dist/index.js +6 -0
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -543,6 +543,12 @@ async function main() {
|
|
|
543
543
|
const session = await agent.session({ id });
|
|
544
544
|
bodyLog(`session ${id}\n`);
|
|
545
545
|
extensionsBanner(recentSessions(id, agent));
|
|
546
|
+
// finding E4-1: the same faux resolution the chat/resume cases
|
|
547
|
+
// carry (faux = currentFaux) — pre-patch the initial faux=true
|
|
548
|
+
// was passed here, so ANY provider failure in a bare-command
|
|
549
|
+
// session surfaced as "[faux mode] the scripted model failed:
|
|
550
|
+
// <real error>" (a false accusation of the keyless demo).
|
|
551
|
+
faux = currentFaux;
|
|
546
552
|
await chat(session, faux, input, autoCompactFromEnv());
|
|
547
553
|
break;
|
|
548
554
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincemakes/kiso-code",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "kiso CLI
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "kiso CLI \u2014 the durable coding agent that survives kill -9: kiso chat / kiso resume / kiso sessions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@vincemakes/kiso-mcp-ext": "0.2.0",
|
|
24
24
|
"@vincemakes/kiso-provider-anthropic": "0.2.0",
|
|
25
25
|
"@vincemakes/kiso-provider-openai": "0.2.0",
|
|
26
|
-
"@vincemakes/kiso-runtime": "0.2.
|
|
26
|
+
"@vincemakes/kiso-runtime": "0.2.1",
|
|
27
27
|
"@vincemakes/kiso-skills-ext": "0.2.0",
|
|
28
28
|
"@vincemakes/kiso-subagent-ext": "0.2.0",
|
|
29
29
|
"@vincemakes/kiso-task-ext": "0.2.0",
|