@schoolai/shipyard 3.10.0 → 3.11.0-rc.20260610.0
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/capability-detector-worker.js +3 -3
- package/dist/{chunk-EI4HMJ54.js → chunk-C6QOTETH.js} +28 -5
- package/dist/chunk-C6QOTETH.js.map +1 -0
- package/dist/{chunk-AEUTFH76.js → chunk-L7ELOV3S.js} +2 -2
- package/dist/{chunk-KRX7OJER.js → chunk-R3XQ6W7L.js} +2 -2
- package/dist/{chunk-4PBXNWJV.js → chunk-RMLQ5DRP.js} +5 -3
- package/dist/chunk-RMLQ5DRP.js.map +1 -0
- package/dist/{chunk-VKCGK333.js → chunk-YXPPZQBJ.js} +4 -2
- package/dist/chunk-YXPPZQBJ.js.map +1 -0
- package/dist/{chunk-4THTCNVI.js → chunk-ZRJTZLRF.js} +3 -3
- package/dist/cursor-runner.js +2 -2
- package/dist/electron-utility.js +2 -2
- package/dist/index.js +3 -3
- package/dist/{login-NZKH63H7.js → login-U256OVOJ.js} +3 -3
- package/dist/{serve-HVLR5UQ7.js → serve-MSZSF5JT.js} +564 -248
- package/dist/{serve-HVLR5UQ7.js.map → serve-MSZSF5JT.js.map} +1 -1
- package/dist/{start-YA4H2XFQ.js → start-CVNCLJMM.js} +6 -6
- package/package.json +2 -2
- package/dist/chunk-4PBXNWJV.js.map +0 -1
- package/dist/chunk-EI4HMJ54.js.map +0 -1
- package/dist/chunk-VKCGK333.js.map +0 -1
- /package/dist/{chunk-AEUTFH76.js.map → chunk-L7ELOV3S.js.map} +0 -0
- /package/dist/{chunk-KRX7OJER.js.map → chunk-R3XQ6W7L.js.map} +0 -0
- /package/dist/{chunk-4THTCNVI.js.map → chunk-ZRJTZLRF.js.map} +0 -0
- /package/dist/{login-NZKH63H7.js.map → login-U256OVOJ.js.map} +0 -0
- /package/dist/{start-YA4H2XFQ.js.map → start-CVNCLJMM.js.map} +0 -0
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
detectCapabilities,
|
|
4
4
|
refreshMcpServers,
|
|
5
5
|
registerBuiltInProfiles
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-C6QOTETH.js";
|
|
7
7
|
import "./chunk-GM6MH4CD.js";
|
|
8
8
|
import {
|
|
9
9
|
getRepoMetadata
|
|
@@ -15,8 +15,8 @@ import {
|
|
|
15
15
|
import "./chunk-RR6V6SNM.js";
|
|
16
16
|
import "./chunk-2EQOL57Z.js";
|
|
17
17
|
import "./chunk-ZFKJAYAN.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-YXPPZQBJ.js";
|
|
19
|
+
import "./chunk-RMLQ5DRP.js";
|
|
20
20
|
import "./chunk-EHQITHQX.js";
|
|
21
21
|
import "./chunk-X3MULCV5.js";
|
|
22
22
|
import {
|
|
@@ -48,13 +48,13 @@ import {
|
|
|
48
48
|
isImageMimeType,
|
|
49
49
|
toRecord,
|
|
50
50
|
toSdkContent
|
|
51
|
-
} from "./chunk-
|
|
51
|
+
} from "./chunk-YXPPZQBJ.js";
|
|
52
52
|
import {
|
|
53
53
|
AnthropicAuthStatusSchema,
|
|
54
54
|
CodexAuthStatusSchema,
|
|
55
55
|
CursorAuthStatusSchema,
|
|
56
56
|
PermissionModeSchema
|
|
57
|
-
} from "./chunk-
|
|
57
|
+
} from "./chunk-RMLQ5DRP.js";
|
|
58
58
|
import {
|
|
59
59
|
logger
|
|
60
60
|
} from "./chunk-QJP7JCIS.js";
|
|
@@ -736,7 +736,7 @@ function toRecord2(value) {
|
|
|
736
736
|
}
|
|
737
737
|
|
|
738
738
|
// src/shared/capabilities/model-capabilities.ts
|
|
739
|
-
var THINKING_CAPABLE_PREFIXES = ["claude-sonnet", "claude-opus"];
|
|
739
|
+
var THINKING_CAPABLE_PREFIXES = ["claude-sonnet", "claude-opus", "claude-fable"];
|
|
740
740
|
function supportsAdaptiveThinking(model) {
|
|
741
741
|
return THINKING_CAPABLE_PREFIXES.some((prefix) => model.startsWith(prefix));
|
|
742
742
|
}
|
|
@@ -1205,6 +1205,7 @@ function convertUserContent(content) {
|
|
|
1205
1205
|
var MODEL_CAPABILITY_TIERS = {
|
|
1206
1206
|
"claude-opus-4-8": "frontier",
|
|
1207
1207
|
"claude-opus-4-7": "frontier",
|
|
1208
|
+
"claude-fable-5": "frontier",
|
|
1208
1209
|
"claude-sonnet-4-6": "strong",
|
|
1209
1210
|
"claude-sonnet-4-6[1m]": "strong",
|
|
1210
1211
|
"claude-haiku-4-5-20251001": "light",
|
|
@@ -1436,6 +1437,27 @@ var claudeCodeProfile = {
|
|
|
1436
1437
|
vision: true
|
|
1437
1438
|
}
|
|
1438
1439
|
},
|
|
1440
|
+
{
|
|
1441
|
+
id: "claude-fable-5",
|
|
1442
|
+
nativeName: "claude-fable-5",
|
|
1443
|
+
displayName: "Claude Fable 5",
|
|
1444
|
+
description: "Anthropic's most capable model \u2014 Mythos-class, for long-horizon agentic work",
|
|
1445
|
+
note: "Covered Model \xB7 30-day retention",
|
|
1446
|
+
contextWindow: 1e6,
|
|
1447
|
+
maxOutput: 128e3,
|
|
1448
|
+
supportedEfforts: ["none", "low", "medium", "high", "xhigh", "ultracode", "max"],
|
|
1449
|
+
defaultEffort: "xhigh",
|
|
1450
|
+
tagline: "Anthropic's most capable model \u2014 Mythos-class, for long-horizon agentic work",
|
|
1451
|
+
speedTier: "slow",
|
|
1452
|
+
costInputUsd: 10,
|
|
1453
|
+
costOutputUsd: 50,
|
|
1454
|
+
capabilities: {
|
|
1455
|
+
reasoning: true,
|
|
1456
|
+
adaptiveThinking: true,
|
|
1457
|
+
webSearch: true,
|
|
1458
|
+
vision: true
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1439
1461
|
{
|
|
1440
1462
|
id: "claude-opus-4-7",
|
|
1441
1463
|
nativeName: "claude-opus-4-7",
|
|
@@ -6416,7 +6438,8 @@ function toModelInfo(profile, model, efforts = model.supportedEfforts) {
|
|
|
6416
6438
|
provider: profile.id,
|
|
6417
6439
|
description: model.description,
|
|
6418
6440
|
reasoning,
|
|
6419
|
-
...model.supportsFastMode === true ? { supportsFastMode: true } : {}
|
|
6441
|
+
...model.supportsFastMode === true ? { supportsFastMode: true } : {},
|
|
6442
|
+
...model.note !== void 0 ? { note: model.note } : {}
|
|
6420
6443
|
};
|
|
6421
6444
|
}
|
|
6422
6445
|
function buildCatalogModelInfos() {
|
|
@@ -8135,4 +8158,4 @@ export {
|
|
|
8135
8158
|
refreshInstalledAgents,
|
|
8136
8159
|
refreshCodexAuthSlice
|
|
8137
8160
|
};
|
|
8138
|
-
//# sourceMappingURL=chunk-
|
|
8161
|
+
//# sourceMappingURL=chunk-C6QOTETH.js.map
|