@super-one/cli 0.53.8-alpha → 0.53.9-alpha
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/MANIFEST.json +2 -2
- package/lib/cli.mjs +25 -2
- package/package.json +1 -1
package/MANIFEST.json
CHANGED
package/lib/cli.mjs
CHANGED
|
@@ -14431,6 +14431,16 @@ var init_fork_session = __esm({
|
|
|
14431
14431
|
}
|
|
14432
14432
|
});
|
|
14433
14433
|
|
|
14434
|
+
// ../../packages/claude/src/transcript-store.ts
|
|
14435
|
+
var MAX_INSPECT_BYTES;
|
|
14436
|
+
var init_transcript_store = __esm({
|
|
14437
|
+
"../../packages/claude/src/transcript-store.ts"() {
|
|
14438
|
+
"use strict";
|
|
14439
|
+
init_fork_session();
|
|
14440
|
+
MAX_INSPECT_BYTES = 64 * 1024;
|
|
14441
|
+
}
|
|
14442
|
+
});
|
|
14443
|
+
|
|
14434
14444
|
// ../../packages/claude/src/index.ts
|
|
14435
14445
|
var init_src2 = __esm({
|
|
14436
14446
|
"../../packages/claude/src/index.ts"() {
|
|
@@ -14444,6 +14454,7 @@ var init_src2 = __esm({
|
|
|
14444
14454
|
init_root_permission_guard();
|
|
14445
14455
|
init_map_sdk_message();
|
|
14446
14456
|
init_fork_session();
|
|
14457
|
+
init_transcript_store();
|
|
14447
14458
|
}
|
|
14448
14459
|
});
|
|
14449
14460
|
|
|
@@ -15457,6 +15468,18 @@ var init_capability_prompt_tags = __esm({
|
|
|
15457
15468
|
displayName: "Super Browser",
|
|
15458
15469
|
intent: "automate the built-in browser via browser tools",
|
|
15459
15470
|
toolPrefix: "browser_"
|
|
15471
|
+
},
|
|
15472
|
+
{
|
|
15473
|
+
id: "widget",
|
|
15474
|
+
displayName: "Widget",
|
|
15475
|
+
intent: "render SVG, diagrams, charts, or interactive HTML inline in chat via widget tools",
|
|
15476
|
+
toolPrefix: "widget_"
|
|
15477
|
+
},
|
|
15478
|
+
{
|
|
15479
|
+
id: "debug",
|
|
15480
|
+
displayName: "Debug",
|
|
15481
|
+
intent: "diagnose SuperOne bugs, gather logs, and help file an upstream issue when the user wants",
|
|
15482
|
+
hint: 'first call read_manual({ domain: "product", topic: "debug" }); then read_manual({ domain: "product", topic: "contribute" }) only if they want to report upstream. If they have no GitHub account, draft the issue for them to copy \u2014 do not open a PR'
|
|
15460
15483
|
}
|
|
15461
15484
|
];
|
|
15462
15485
|
BUILTIN_CAPABILITY_IDS = BUILTIN_CAPABILITIES.map((c) => c.id);
|
|
@@ -61387,8 +61410,8 @@ import { fileURLToPath } from "node:url";
|
|
|
61387
61410
|
function resolveCliReleaseVersion() {
|
|
61388
61411
|
const fromEnv = process.env.SUPERONE_CLI_VERSION?.trim();
|
|
61389
61412
|
if (fromEnv) return fromEnv;
|
|
61390
|
-
if ("0.53.
|
|
61391
|
-
return "0.53.
|
|
61413
|
+
if ("0.53.9-alpha".trim()) {
|
|
61414
|
+
return "0.53.9-alpha".trim();
|
|
61392
61415
|
}
|
|
61393
61416
|
const fromDist = readDistManifestVersion();
|
|
61394
61417
|
if (fromDist) return fromDist;
|
package/package.json
CHANGED