@super-one/cli 0.53.8-alpha → 0.53.10-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 +36 -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);
|
|
@@ -18747,11 +18770,20 @@ var init_types2 = __esm({
|
|
|
18747
18770
|
}
|
|
18748
18771
|
});
|
|
18749
18772
|
|
|
18773
|
+
// ../../packages/shared/src/platform-registry/relay-identify.ts
|
|
18774
|
+
var init_relay_identify = __esm({
|
|
18775
|
+
"../../packages/shared/src/platform-registry/relay-identify.ts"() {
|
|
18776
|
+
"use strict";
|
|
18777
|
+
init_protocols();
|
|
18778
|
+
}
|
|
18779
|
+
});
|
|
18780
|
+
|
|
18750
18781
|
// ../../packages/shared/src/platform-registry/capabilities.ts
|
|
18751
18782
|
var init_capabilities2 = __esm({
|
|
18752
18783
|
"../../packages/shared/src/platform-registry/capabilities.ts"() {
|
|
18753
18784
|
"use strict";
|
|
18754
18785
|
init_protocols();
|
|
18786
|
+
init_relay_identify();
|
|
18755
18787
|
}
|
|
18756
18788
|
});
|
|
18757
18789
|
|
|
@@ -18839,6 +18871,7 @@ var init_relay_discovery = __esm({
|
|
|
18839
18871
|
"use strict";
|
|
18840
18872
|
init_model_tasks();
|
|
18841
18873
|
init_protocols();
|
|
18874
|
+
init_relay_identify();
|
|
18842
18875
|
CANONICAL_CATALOG_PROVIDERS = ["openai", "anthropic", "google"];
|
|
18843
18876
|
FIRST_PARTY_CATALOG_PROVIDERS = /* @__PURE__ */ new Set([
|
|
18844
18877
|
...CANONICAL_CATALOG_PROVIDERS,
|
|
@@ -19874,6 +19907,7 @@ var init_platform_registry = __esm({
|
|
|
19874
19907
|
init_capabilities2();
|
|
19875
19908
|
init_merge();
|
|
19876
19909
|
init_relay_discovery();
|
|
19910
|
+
init_relay_identify();
|
|
19877
19911
|
init_effective_endpoints();
|
|
19878
19912
|
init_builtin();
|
|
19879
19913
|
}
|
|
@@ -61387,8 +61421,8 @@ import { fileURLToPath } from "node:url";
|
|
|
61387
61421
|
function resolveCliReleaseVersion() {
|
|
61388
61422
|
const fromEnv = process.env.SUPERONE_CLI_VERSION?.trim();
|
|
61389
61423
|
if (fromEnv) return fromEnv;
|
|
61390
|
-
if ("0.53.
|
|
61391
|
-
return "0.53.
|
|
61424
|
+
if ("0.53.10-alpha".trim()) {
|
|
61425
|
+
return "0.53.10-alpha".trim();
|
|
61392
61426
|
}
|
|
61393
61427
|
const fromDist = readDistManifestVersion();
|
|
61394
61428
|
if (fromDist) return fromDist;
|
package/package.json
CHANGED