priiisk 0.1.3 → 0.1.4
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/{chunk-GCJD6IMI.js → chunk-44I2RCT5.js} +1 -1
- package/dist/{chunk-Z64QXV3O.js → chunk-62BTCFUO.js} +199 -33
- package/dist/{chunk-C7GQZ3PV.js → chunk-GLWKYPVL.js} +1 -1
- package/dist/{chunk-4IQLMJ25.js → chunk-GZTHKLSX.js} +43 -4
- package/dist/{chunk-PIZUXHCN.js → chunk-JFAW425C.js} +15 -1
- package/dist/{chunk-T6NUWP6F.js → chunk-QX5EESCS.js} +154 -43
- package/dist/{chunk-VHGA3U67.js → chunk-XI3HWC7Q.js} +2 -2
- package/dist/priiisk-host.js +55 -36
- package/dist/priiisk.js +6 -6
- package/package.json +10 -10
- /package/dist/{chunk-GCJD6IMI.js.LEGAL.txt → chunk-44I2RCT5.js.LEGAL.txt} +0 -0
- /package/dist/{chunk-T6NUWP6F.js.LEGAL.txt → chunk-QX5EESCS.js.LEGAL.txt} +0 -0
|
@@ -1067,7 +1067,7 @@ var makeCampUiComposerComponent = (context, tui) => {
|
|
|
1067
1067
|
};
|
|
1068
1068
|
|
|
1069
1069
|
// packages/host-ui/src/pi/blocks/campUiDetail.ts
|
|
1070
|
-
import { getSelectListTheme as
|
|
1070
|
+
import { getSelectListTheme as getSelectListTheme8 } from "@earendil-works/pi-coding-agent";
|
|
1071
1071
|
import { Key as Key2, matchesKey as matchesKey2 } from "@earendil-works/pi-tui";
|
|
1072
1072
|
|
|
1073
1073
|
// packages/host-ui/src/pi/blocks/campUiEquipmentBlock.ts
|
|
@@ -1134,10 +1134,129 @@ var renderCampUiPanel = (label, body, width) => {
|
|
|
1134
1134
|
];
|
|
1135
1135
|
};
|
|
1136
1136
|
|
|
1137
|
+
// packages/host-ui/src/pi/blocks/campUiExploredBlock.ts
|
|
1138
|
+
import { getSelectListTheme as getSelectListTheme6 } from "@earendil-works/pi-coding-agent";
|
|
1139
|
+
var CAMP_UI_EXPLORED_TOOL_NAMES = ["read"];
|
|
1140
|
+
var CAMP_UI_EXPLORED_COLLAPSED_PATHS = 8;
|
|
1141
|
+
var CampUiExploredStatus = {
|
|
1142
|
+
running: "running",
|
|
1143
|
+
completed: "completed",
|
|
1144
|
+
failed: "failed"
|
|
1145
|
+
};
|
|
1146
|
+
var isCampUiExploredTool = (toolName) => CAMP_UI_EXPLORED_TOOL_NAMES.includes(toolName);
|
|
1147
|
+
var stringArgument = (parameters, name) => {
|
|
1148
|
+
const value = parameters[name];
|
|
1149
|
+
return typeof value === "string" && value.trim() !== "" ? value : void 0;
|
|
1150
|
+
};
|
|
1151
|
+
var numberArgument = (parameters, name) => {
|
|
1152
|
+
const value = parameters[name];
|
|
1153
|
+
return typeof value === "number" && Number.isFinite(value) ? value : void 0;
|
|
1154
|
+
};
|
|
1155
|
+
var campUiExploredReadPath = (parameters) => stringArgument(parameters, "path") ?? stringArgument(parameters, "file_path");
|
|
1156
|
+
var campUiExploredReadRange = (parameters) => {
|
|
1157
|
+
const offset = numberArgument(parameters, "offset");
|
|
1158
|
+
const limit = numberArgument(parameters, "limit");
|
|
1159
|
+
if (offset === void 0 && limit === void 0) return void 0;
|
|
1160
|
+
const start = offset ?? 1;
|
|
1161
|
+
return limit === void 0 ? `from line ${String(start)}` : `lines ${String(start)}-${String(start + limit - 1)}`;
|
|
1162
|
+
};
|
|
1163
|
+
var statusRank = {
|
|
1164
|
+
completed: 0,
|
|
1165
|
+
running: 1,
|
|
1166
|
+
failed: 2
|
|
1167
|
+
};
|
|
1168
|
+
var splitPath = (path) => {
|
|
1169
|
+
const separator = path.lastIndexOf("/");
|
|
1170
|
+
if (separator < 0) return { directory: ".", name: path };
|
|
1171
|
+
if (separator === 0) return { directory: "/", name: path.slice(1) };
|
|
1172
|
+
return { directory: path.slice(0, separator), name: path.slice(separator + 1) };
|
|
1173
|
+
};
|
|
1174
|
+
var collectNodes = (reads) => {
|
|
1175
|
+
const byPath = /* @__PURE__ */ new Map();
|
|
1176
|
+
for (const read of reads) {
|
|
1177
|
+
const existing = byPath.get(read.path);
|
|
1178
|
+
const node = existing ?? (() => {
|
|
1179
|
+
const { directory, name } = splitPath(read.path);
|
|
1180
|
+
const created = {
|
|
1181
|
+
path: read.path,
|
|
1182
|
+
directory,
|
|
1183
|
+
name,
|
|
1184
|
+
reads: 0,
|
|
1185
|
+
status: CampUiExploredStatus.completed,
|
|
1186
|
+
ranges: [],
|
|
1187
|
+
errorMessage: void 0
|
|
1188
|
+
};
|
|
1189
|
+
byPath.set(read.path, created);
|
|
1190
|
+
return created;
|
|
1191
|
+
})();
|
|
1192
|
+
node.reads += 1;
|
|
1193
|
+
if (statusRank[read.status] > statusRank[node.status]) node.status = read.status;
|
|
1194
|
+
if (read.range !== void 0 && !node.ranges.includes(read.range)) node.ranges.push(read.range);
|
|
1195
|
+
if (read.errorMessage !== void 0 && node.errorMessage === void 0) {
|
|
1196
|
+
node.errorMessage = read.errorMessage;
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
return [...byPath.values()];
|
|
1200
|
+
};
|
|
1201
|
+
var toneByStatus = {
|
|
1202
|
+
completed: CampUiTone.success,
|
|
1203
|
+
running: CampUiTone.active,
|
|
1204
|
+
failed: CampUiTone.error
|
|
1205
|
+
};
|
|
1206
|
+
var firstLine = (message) => message.split("\n")[0] ?? message;
|
|
1207
|
+
var nodeLine = (node, expanded) => {
|
|
1208
|
+
const theme = getSelectListTheme6();
|
|
1209
|
+
const repeats = node.reads > 1 ? theme.description(` \xD7${String(node.reads)}`) : "";
|
|
1210
|
+
const ranges = expanded && node.ranges.length > 0 ? theme.description(` \xB7 ${node.ranges.join(", ")}`) : "";
|
|
1211
|
+
const error = node.errorMessage === void 0 ? "" : theme.noMatch(` \u2014 ${firstLine(node.errorMessage)}`);
|
|
1212
|
+
return ` ${renderCampUiStatus(node.name, toneByStatus[node.status])}${repeats}${ranges}${error}`;
|
|
1213
|
+
};
|
|
1214
|
+
var selectVisibleNodes = (nodes, budget) => {
|
|
1215
|
+
if (nodes.length <= budget) return nodes;
|
|
1216
|
+
const attention = nodes.filter((node) => node.status !== CampUiExploredStatus.completed);
|
|
1217
|
+
const remaining = Math.max(0, budget - attention.length);
|
|
1218
|
+
const completed = nodes.filter((node) => node.status === CampUiExploredStatus.completed).slice(0, remaining);
|
|
1219
|
+
const keep = /* @__PURE__ */ new Set([...attention, ...completed]);
|
|
1220
|
+
return nodes.filter((node) => keep.has(node));
|
|
1221
|
+
};
|
|
1222
|
+
var renderCampUiExploredGroup = (reads, width, expanded) => {
|
|
1223
|
+
const theme = getSelectListTheme6();
|
|
1224
|
+
const nodes = collectNodes(reads);
|
|
1225
|
+
const visible = expanded ? nodes : selectVisibleNodes(nodes, CAMP_UI_EXPLORED_COLLAPSED_PATHS);
|
|
1226
|
+
const hidden = nodes.length - visible.length;
|
|
1227
|
+
const running = nodes.filter((node) => node.status === CampUiExploredStatus.running).length;
|
|
1228
|
+
const failed = nodes.filter((node) => node.status === CampUiExploredStatus.failed).length;
|
|
1229
|
+
const label = [
|
|
1230
|
+
`explored \xB7 ${String(nodes.length)} ${nodes.length === 1 ? "file" : "files"}`,
|
|
1231
|
+
...running === 0 ? [] : [`${String(running)} running`],
|
|
1232
|
+
...failed === 0 ? [] : [`${String(failed)} failed`]
|
|
1233
|
+
].join(" \xB7 ");
|
|
1234
|
+
const innerWidth = Math.max(1, width - 2);
|
|
1235
|
+
const body = [];
|
|
1236
|
+
let directory;
|
|
1237
|
+
for (const node of visible) {
|
|
1238
|
+
if (node.directory !== directory) {
|
|
1239
|
+
directory = node.directory;
|
|
1240
|
+
body.push(theme.description(directory));
|
|
1241
|
+
}
|
|
1242
|
+
body.push(nodeLine(node, expanded));
|
|
1243
|
+
}
|
|
1244
|
+
body.push(
|
|
1245
|
+
theme.description(
|
|
1246
|
+
hidden > 0 ? `... ${String(hidden)} more paths \xB7 enter expand` : expanded ? "enter collapse" : "enter expand"
|
|
1247
|
+
)
|
|
1248
|
+
);
|
|
1249
|
+
return renderCampUiPanel(
|
|
1250
|
+
label,
|
|
1251
|
+
body.map((line) => fitCampUiLine(line, innerWidth)),
|
|
1252
|
+
width
|
|
1253
|
+
);
|
|
1254
|
+
};
|
|
1255
|
+
|
|
1137
1256
|
// packages/host-ui/src/pi/blocks/campUiToolResult.ts
|
|
1138
1257
|
import {
|
|
1139
1258
|
getMarkdownTheme as getMarkdownTheme6,
|
|
1140
|
-
getSelectListTheme as
|
|
1259
|
+
getSelectListTheme as getSelectListTheme7,
|
|
1141
1260
|
truncateToVisualLines
|
|
1142
1261
|
} from "@earendil-works/pi-coding-agent";
|
|
1143
1262
|
import { Markdown as Markdown3 } from "@earendil-works/pi-tui";
|
|
@@ -1174,7 +1293,7 @@ var renderCampUiToolResult = (result, width, expanded) => {
|
|
|
1174
1293
|
const boundedWidth = Math.max(1, width);
|
|
1175
1294
|
const plainText = toolResultPlainText(result);
|
|
1176
1295
|
const preview = truncateToVisualLines(
|
|
1177
|
-
|
|
1296
|
+
getSelectListTheme7().description(plainText),
|
|
1178
1297
|
previewLinesByTool.get(result.toolName ?? "") ?? CAMP_UI_DEFAULT_TOOL_PREVIEW_LINES,
|
|
1179
1298
|
boundedWidth
|
|
1180
1299
|
);
|
|
@@ -1182,7 +1301,7 @@ var renderCampUiToolResult = (result, width, expanded) => {
|
|
|
1182
1301
|
return [
|
|
1183
1302
|
...preview.visualLines,
|
|
1184
1303
|
...preview.skippedCount === 0 ? [] : [
|
|
1185
|
-
|
|
1304
|
+
getSelectListTheme7().description(
|
|
1186
1305
|
`... ${preview.skippedCount} more lines \xB7 enter expand`
|
|
1187
1306
|
)
|
|
1188
1307
|
]
|
|
@@ -1192,18 +1311,24 @@ var renderCampUiToolResult = (result, width, expanded) => {
|
|
|
1192
1311
|
const lines = content === "" ? [] : new Markdown3(content, 0, 0, getMarkdownTheme6()).render(boundedWidth);
|
|
1193
1312
|
return [
|
|
1194
1313
|
...lines,
|
|
1195
|
-
...result.errorMessage === void 0 ? [] : [
|
|
1314
|
+
...result.errorMessage === void 0 ? [] : [getSelectListTheme7().noMatch(`Error: ${result.errorMessage}`)],
|
|
1196
1315
|
...result.toolResultDetails === void 0 ? [] : [
|
|
1197
|
-
|
|
1316
|
+
getSelectListTheme7().description("Details"),
|
|
1198
1317
|
...new Markdown3(jsonText(result.toolResultDetails), 0, 0, getMarkdownTheme6()).render(
|
|
1199
1318
|
boundedWidth
|
|
1200
1319
|
)
|
|
1201
1320
|
],
|
|
1202
|
-
...preview.skippedCount === 0 ? [] : [
|
|
1321
|
+
...preview.skippedCount === 0 ? [] : [getSelectListTheme7().description("enter collapse")]
|
|
1203
1322
|
];
|
|
1204
1323
|
};
|
|
1205
1324
|
|
|
1206
1325
|
// packages/host-ui/src/pi/blocks/campUiTranscriptBlocks.ts
|
|
1326
|
+
var toolResultErrorText = (result) => {
|
|
1327
|
+
for (const content of result.content) {
|
|
1328
|
+
if (content.kind === "text" && content.text.trim() !== "") return content.text;
|
|
1329
|
+
}
|
|
1330
|
+
return void 0;
|
|
1331
|
+
};
|
|
1207
1332
|
var contentMarkdown = (message, includeToolCalls) => message.content.flatMap((content) => {
|
|
1208
1333
|
if (content.kind === "text") return [content.text];
|
|
1209
1334
|
if (content.kind === "thinking") {
|
|
@@ -1290,6 +1415,17 @@ var renderUnmatchedToolResult = (message, width, expanded) => {
|
|
|
1290
1415
|
width
|
|
1291
1416
|
);
|
|
1292
1417
|
};
|
|
1418
|
+
var exploredRead = (toolCall, path, result) => {
|
|
1419
|
+
const range = campUiExploredReadRange(toolCall.arguments);
|
|
1420
|
+
const errorMessage = result?.isError === true ? result.errorMessage ?? toolResultErrorText(result) ?? "read failed" : void 0;
|
|
1421
|
+
return {
|
|
1422
|
+
toolCallId: toolCall.toolCallId,
|
|
1423
|
+
path,
|
|
1424
|
+
status: result === void 0 ? CampUiExploredStatus.running : result.isError === true ? CampUiExploredStatus.failed : CampUiExploredStatus.completed,
|
|
1425
|
+
...range === void 0 ? {} : { range },
|
|
1426
|
+
...errorMessage === void 0 ? {} : { errorMessage }
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1293
1429
|
var renderTranscript = (transcript, width, expandedDetailBlockIds) => {
|
|
1294
1430
|
const results = /* @__PURE__ */ new Map();
|
|
1295
1431
|
const callIds = /* @__PURE__ */ new Set();
|
|
@@ -1301,23 +1437,45 @@ var renderTranscript = (transcript, width, expandedDetailBlockIds) => {
|
|
|
1301
1437
|
if (content.kind === "tool-call") callIds.add(content.toolCallId);
|
|
1302
1438
|
}
|
|
1303
1439
|
}
|
|
1304
|
-
|
|
1440
|
+
const blocks = [];
|
|
1441
|
+
let group = [];
|
|
1442
|
+
const closeGroup = () => {
|
|
1443
|
+
const first = group[0];
|
|
1444
|
+
if (first === void 0) return;
|
|
1445
|
+
const blockId = `explored:${first.toolCallId}`;
|
|
1446
|
+
blocks.push({
|
|
1447
|
+
id: blockId,
|
|
1448
|
+
lines: renderCampUiExploredGroup(group, width, expandedDetailBlockIds.has(blockId)),
|
|
1449
|
+
toggleable: true
|
|
1450
|
+
});
|
|
1451
|
+
group = [];
|
|
1452
|
+
};
|
|
1453
|
+
transcript.forEach((message, index) => {
|
|
1305
1454
|
const messageId = message.id ?? String(index);
|
|
1306
1455
|
if (message.role === "toolResult") {
|
|
1456
|
+
if (message.toolCallId !== void 0 && callIds.has(message.toolCallId)) return;
|
|
1457
|
+
closeGroup();
|
|
1307
1458
|
const blockId = `tool-result:${messageId}`;
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
];
|
|
1459
|
+
blocks.push({
|
|
1460
|
+
id: blockId,
|
|
1461
|
+
lines: renderUnmatchedToolResult(message, width, expandedDetailBlockIds.has(blockId)),
|
|
1462
|
+
toggleable: true
|
|
1463
|
+
});
|
|
1464
|
+
return;
|
|
1315
1465
|
}
|
|
1316
|
-
const blocks = [];
|
|
1317
1466
|
const messageLines = renderMessage(message, width);
|
|
1318
|
-
if (messageLines.length > 0)
|
|
1467
|
+
if (messageLines.length > 0) {
|
|
1468
|
+
closeGroup();
|
|
1469
|
+
blocks.push({ id: `message:${messageId}`, lines: messageLines });
|
|
1470
|
+
}
|
|
1319
1471
|
for (const content of message.content) {
|
|
1320
1472
|
if (content.kind !== "tool-call") continue;
|
|
1473
|
+
const path = isCampUiExploredTool(content.toolName) ? campUiExploredReadPath(content.arguments) : void 0;
|
|
1474
|
+
if (path !== void 0) {
|
|
1475
|
+
group.push(exploredRead(content, path, results.get(content.toolCallId)));
|
|
1476
|
+
continue;
|
|
1477
|
+
}
|
|
1478
|
+
closeGroup();
|
|
1321
1479
|
const blockId = `tool-call:${content.toolCallId}`;
|
|
1322
1480
|
blocks.push({
|
|
1323
1481
|
id: blockId,
|
|
@@ -1330,8 +1488,9 @@ var renderTranscript = (transcript, width, expandedDetailBlockIds) => {
|
|
|
1330
1488
|
toggleable: results.has(content.toolCallId)
|
|
1331
1489
|
});
|
|
1332
1490
|
}
|
|
1333
|
-
return blocks;
|
|
1334
1491
|
});
|
|
1492
|
+
closeGroup();
|
|
1493
|
+
return blocks;
|
|
1335
1494
|
};
|
|
1336
1495
|
var campUiTranscriptBlockRenderer = {
|
|
1337
1496
|
id: "transcript",
|
|
@@ -1361,7 +1520,7 @@ var makeCampUiDetailComponent = (context, registry = defaultCampUiDetailBlockRen
|
|
|
1361
1520
|
renderedRanges = [];
|
|
1362
1521
|
visibleRanges = [];
|
|
1363
1522
|
const model = context.readModel();
|
|
1364
|
-
const selectTheme =
|
|
1523
|
+
const selectTheme = getSelectListTheme8();
|
|
1365
1524
|
const workerId = model.state.selectedWorkerId;
|
|
1366
1525
|
if (workerId === void 0) return [selectTheme.description("No worker selected")];
|
|
1367
1526
|
const worker = findCampUiWorker(model.snapshot, workerId);
|
|
@@ -1464,11 +1623,11 @@ var makeCampUiDetailComponent = (context, registry = defaultCampUiDetailBlockRen
|
|
|
1464
1623
|
};
|
|
1465
1624
|
|
|
1466
1625
|
// packages/host-ui/src/pi/layout/campUiChrome.ts
|
|
1467
|
-
import { getSelectListTheme as
|
|
1626
|
+
import { getSelectListTheme as getSelectListTheme9 } from "@earendil-works/pi-coding-agent";
|
|
1468
1627
|
var makeCampUiCampHeader = (context) => ({
|
|
1469
1628
|
render: (viewport) => {
|
|
1470
1629
|
const snapshot = context.readModel().snapshot;
|
|
1471
|
-
const theme =
|
|
1630
|
+
const theme = getSelectListTheme9();
|
|
1472
1631
|
const mode = snapshot.placement === "external" ? "agentless" : "foreman";
|
|
1473
1632
|
return [
|
|
1474
1633
|
fitCampUiLine(theme.description(snapshot.displayName), viewport.width),
|
|
@@ -1482,7 +1641,7 @@ var makeCampUiCampHeader = (context) => ({
|
|
|
1482
1641
|
var makeCampUiSeat = (context) => ({
|
|
1483
1642
|
render: (viewport) => {
|
|
1484
1643
|
const snapshot = context.readModel().snapshot;
|
|
1485
|
-
const theme =
|
|
1644
|
+
const theme = getSelectListTheme9();
|
|
1486
1645
|
const external = snapshot.placement === "external";
|
|
1487
1646
|
const controller = snapshot.controllerConnected ? renderCampUiStatus("live", CampUiTone.success, CampUiGlyph.live) : renderCampUiStatus("lost", CampUiTone.error);
|
|
1488
1647
|
return [
|
|
@@ -1497,7 +1656,7 @@ var makeCampUiRoster = (context) => ({
|
|
|
1497
1656
|
focusable: true,
|
|
1498
1657
|
render: (viewport) => {
|
|
1499
1658
|
const model = context.readModel();
|
|
1500
|
-
const theme =
|
|
1659
|
+
const theme = getSelectListTheme9();
|
|
1501
1660
|
const focused = model.state.focusedSlotId === CampUiSlot.roster;
|
|
1502
1661
|
if (model.snapshot.workers.length === 0) {
|
|
1503
1662
|
return [theme.description("No workers")];
|
|
@@ -1538,7 +1697,7 @@ var makeCampUiRoster = (context) => ({
|
|
|
1538
1697
|
var makeCampUiSessionHeader = (context) => ({
|
|
1539
1698
|
render: (viewport) => {
|
|
1540
1699
|
const model = context.readModel();
|
|
1541
|
-
const theme =
|
|
1700
|
+
const theme = getSelectListTheme9();
|
|
1542
1701
|
const workerId = model.state.selectedWorkerId;
|
|
1543
1702
|
if (workerId === void 0) {
|
|
1544
1703
|
return [fitCampUiLine(theme.description("Select a worker"), viewport.width)];
|
|
@@ -1558,7 +1717,7 @@ var makeCampUiSessionHeader = (context) => ({
|
|
|
1558
1717
|
});
|
|
1559
1718
|
|
|
1560
1719
|
// packages/host-ui/src/pi/layout/campUiFooter.ts
|
|
1561
|
-
import { getMarkdownTheme as getMarkdownTheme8, getSelectListTheme as
|
|
1720
|
+
import { getMarkdownTheme as getMarkdownTheme8, getSelectListTheme as getSelectListTheme10 } from "@earendil-works/pi-coding-agent";
|
|
1562
1721
|
var aggregateCampUsage = (workers) => {
|
|
1563
1722
|
const usages = workers.flatMap(
|
|
1564
1723
|
(worker) => worker.snapshot.session?.usage === void 0 ? [] : [worker.snapshot.session.usage]
|
|
@@ -1591,7 +1750,7 @@ var diagnosticText = (value) => {
|
|
|
1591
1750
|
var makeCampUiCampFooter = (context) => ({
|
|
1592
1751
|
render: (viewport) => {
|
|
1593
1752
|
const model = context.readModel();
|
|
1594
|
-
const theme =
|
|
1753
|
+
const theme = getSelectListTheme10();
|
|
1595
1754
|
const health = model.snapshot.health;
|
|
1596
1755
|
const usage = aggregateUsageText(aggregateCampUsage(model.snapshot.workers));
|
|
1597
1756
|
const actionError = diagnosticText(model.state.lastActionError);
|
|
@@ -1610,7 +1769,7 @@ var makeCampUiCampFooter = (context) => ({
|
|
|
1610
1769
|
var makeCampUiSessionFooter = (context) => ({
|
|
1611
1770
|
render: (viewport) => {
|
|
1612
1771
|
const model = context.readModel();
|
|
1613
|
-
const theme =
|
|
1772
|
+
const theme = getSelectListTheme10();
|
|
1614
1773
|
const workerId = model.state.selectedWorkerId;
|
|
1615
1774
|
const worker = workerId === void 0 ? void 0 : findCampUiWorker(model.snapshot, workerId);
|
|
1616
1775
|
const usage = worker?.snapshot.session?.usage;
|
|
@@ -1635,9 +1794,9 @@ var makeCampUiSessionFooter = (context) => ({
|
|
|
1635
1794
|
});
|
|
1636
1795
|
|
|
1637
1796
|
// packages/host-ui/src/pi/layout/campUiResources.ts
|
|
1638
|
-
import { getSelectListTheme as
|
|
1797
|
+
import { getSelectListTheme as getSelectListTheme11 } from "@earendil-works/pi-coding-agent";
|
|
1639
1798
|
var renderResourceTree = (label, value, tone, width) => {
|
|
1640
|
-
const theme =
|
|
1799
|
+
const theme = getSelectListTheme11();
|
|
1641
1800
|
const lines = [
|
|
1642
1801
|
theme.description(label),
|
|
1643
1802
|
`${theme.description("\u2514\u2500")} ${renderCampUiStatus(value, tone)}`
|
|
@@ -1752,11 +1911,11 @@ var makeDefaultCampUiContributions = (tui, detailBlocks) => [
|
|
|
1752
1911
|
];
|
|
1753
1912
|
|
|
1754
1913
|
// packages/host-ui/src/pi/layout/campUiSection.ts
|
|
1755
|
-
import { getMarkdownTheme as getMarkdownTheme9, getSelectListTheme as
|
|
1914
|
+
import { getMarkdownTheme as getMarkdownTheme9, getSelectListTheme as getSelectListTheme12 } from "@earendil-works/pi-coding-agent";
|
|
1756
1915
|
import { visibleWidth as visibleWidth3 } from "@earendil-works/pi-tui";
|
|
1757
1916
|
var renderHeader = (header, width) => {
|
|
1758
1917
|
const theme = getMarkdownTheme9();
|
|
1759
|
-
const selectTheme =
|
|
1918
|
+
const selectTheme = getSelectListTheme12();
|
|
1760
1919
|
const rule2 = header.focused === true ? selectTheme.selectedPrefix : theme.codeBlockBorder;
|
|
1761
1920
|
const title = header.focused === true ? selectTheme.selectedText : theme.heading;
|
|
1762
1921
|
const ruleCharacter = header.focused === true ? "\u2501" : "\u2500";
|
|
@@ -2366,7 +2525,7 @@ var mountPiCampUi = (options) => Effect_exports.gen(function* () {
|
|
|
2366
2525
|
});
|
|
2367
2526
|
|
|
2368
2527
|
// packages/host-ui/src/run-selector/campRunSelector.ts
|
|
2369
|
-
import { getMarkdownTheme as getMarkdownTheme11, getSelectListTheme as
|
|
2528
|
+
import { getMarkdownTheme as getMarkdownTheme11, getSelectListTheme as getSelectListTheme13, initTheme as initTheme2 } from "@earendil-works/pi-coding-agent";
|
|
2370
2529
|
import {
|
|
2371
2530
|
Key as Key4,
|
|
2372
2531
|
matchesKey as matchesKey4,
|
|
@@ -2389,7 +2548,7 @@ var PiCampRunSelectorRoot = class {
|
|
|
2389
2548
|
const height = Math.max(0, this.getHeight());
|
|
2390
2549
|
const viewportWidth = Math.max(0, width - 1);
|
|
2391
2550
|
const markdown = getMarkdownTheme11();
|
|
2392
|
-
const selection =
|
|
2551
|
+
const selection = getSelectListTheme13();
|
|
2393
2552
|
const header = `${markdown.codeBlockBorder("\u2500\u2500")} ${markdown.heading("Resume camp")} ${markdown.codeBlockBorder("\u2500".repeat(Math.max(0, viewportWidth - 16)))}`;
|
|
2394
2553
|
const available = Math.max(0, height - 2);
|
|
2395
2554
|
const capacity = Math.max(1, Math.floor(available / 2));
|
|
@@ -2524,6 +2683,13 @@ export {
|
|
|
2524
2683
|
makeCampUiComposerComponent,
|
|
2525
2684
|
campUiEquipmentBlockRenderer,
|
|
2526
2685
|
renderCampUiPanel,
|
|
2686
|
+
CAMP_UI_EXPLORED_TOOL_NAMES,
|
|
2687
|
+
CAMP_UI_EXPLORED_COLLAPSED_PATHS,
|
|
2688
|
+
CampUiExploredStatus,
|
|
2689
|
+
isCampUiExploredTool,
|
|
2690
|
+
campUiExploredReadPath,
|
|
2691
|
+
campUiExploredReadRange,
|
|
2692
|
+
renderCampUiExploredGroup,
|
|
2527
2693
|
CAMP_UI_DEFAULT_TOOL_PREVIEW_LINES,
|
|
2528
2694
|
CAMP_UI_BASH_PREVIEW_LINES,
|
|
2529
2695
|
renderCampUiToolResult,
|
|
@@ -8,20 +8,22 @@ import {
|
|
|
8
8
|
makeDoctorReport,
|
|
9
9
|
resolveCampSurface,
|
|
10
10
|
withCampRpc
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-XI3HWC7Q.js";
|
|
12
12
|
import {
|
|
13
13
|
PI_RUNTIME_VERSION,
|
|
14
14
|
PiModelCatalogIssueCode,
|
|
15
15
|
inspectPiModelCatalog,
|
|
16
16
|
makePiOperatorResources
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-44I2RCT5.js";
|
|
18
18
|
import {
|
|
19
19
|
CampHealthComponentStatus,
|
|
20
20
|
CampHealthOverallStatus,
|
|
21
|
+
CampHealthVersionError,
|
|
21
22
|
CampHostReadiness,
|
|
22
23
|
CampLifecycle,
|
|
23
24
|
CampManifestInvalidError,
|
|
24
25
|
CampManifestVersionError,
|
|
26
|
+
DirectToolSandboxKind,
|
|
25
27
|
FileSystem_exports,
|
|
26
28
|
PRIIISK_HOST_VERSION,
|
|
27
29
|
PRIIISK_PROTOCOL_PACKAGE_VERSION,
|
|
@@ -32,6 +34,8 @@ import {
|
|
|
32
34
|
campManifestHostGeneration,
|
|
33
35
|
campProjectPaths,
|
|
34
36
|
campRecoveryDiagnosticFromCause,
|
|
37
|
+
currentDirectToolSandbox,
|
|
38
|
+
describeDirectToolSandbox,
|
|
35
39
|
describeProjectConfigOverrides,
|
|
36
40
|
findCampControllerHealthFailure,
|
|
37
41
|
findCampRecoveryHealthComponent,
|
|
@@ -44,7 +48,7 @@ import {
|
|
|
44
48
|
resolveCredentialsPath,
|
|
45
49
|
resolveProjectScope,
|
|
46
50
|
resolveWorkerConfigPath
|
|
47
|
-
} from "./chunk-
|
|
51
|
+
} from "./chunk-QX5EESCS.js";
|
|
48
52
|
import {
|
|
49
53
|
Clock_exports,
|
|
50
54
|
Effect_exports,
|
|
@@ -74,6 +78,20 @@ var checkRuntime = () => {
|
|
|
74
78
|
}
|
|
75
79
|
);
|
|
76
80
|
};
|
|
81
|
+
var checkDirectToolSandbox = () => {
|
|
82
|
+
const sandbox = currentDirectToolSandbox();
|
|
83
|
+
const active = sandbox.kind !== DirectToolSandboxKind.none;
|
|
84
|
+
return doctorCheck(
|
|
85
|
+
"tools.sandbox",
|
|
86
|
+
active ? DoctorCheckStatus.pass : DoctorCheckStatus.warning,
|
|
87
|
+
describeDirectToolSandbox(sandbox),
|
|
88
|
+
{
|
|
89
|
+
mechanism: sandbox.kind,
|
|
90
|
+
...sandbox.absence === void 0 ? {} : { absence: sandbox.absence },
|
|
91
|
+
...sandbox.detail === void 0 ? {} : { detail: sandbox.detail }
|
|
92
|
+
}
|
|
93
|
+
);
|
|
94
|
+
};
|
|
77
95
|
var projectConfigDetails = (fs) => resolveProjectScope.pipe(
|
|
78
96
|
Effect_exports.flatMap(
|
|
79
97
|
(scope) => loadProjectWorkerConfig(fs, scope.cwd).pipe(
|
|
@@ -337,7 +355,25 @@ var durableHealthFallback = (fs, paths, project, manifest, expectedLive) => Effe
|
|
|
337
355
|
),
|
|
338
356
|
Effect_exports.catchAll(
|
|
339
357
|
(cause) => Effect_exports.succeed(
|
|
340
|
-
|
|
358
|
+
/*
|
|
359
|
+
* A file left by an earlier runtime version is outdated evidence, not a
|
|
360
|
+
* broken camp: the next `camp up` replaces it. Calling it invalid turned
|
|
361
|
+
* every upgrade into a red doctor report (priiisk-nss.6.18). Damage and a
|
|
362
|
+
* mismatch under the current version stay failures.
|
|
363
|
+
*/
|
|
364
|
+
cause instanceof CampHealthVersionError ? doctorCheck(
|
|
365
|
+
"health.durable",
|
|
366
|
+
expectedLive ? DoctorCheckStatus.warning : DoctorCheckStatus.skipped,
|
|
367
|
+
"Durable health snapshot was written by an earlier runtime version",
|
|
368
|
+
{
|
|
369
|
+
path: paths.healthPath,
|
|
370
|
+
stale: true,
|
|
371
|
+
errorCode: "unsupported_version",
|
|
372
|
+
expectedVersion: cause.expectedVersion,
|
|
373
|
+
receivedVersion: cause.receivedVersion,
|
|
374
|
+
recoveryAction: "camp_up_fresh"
|
|
375
|
+
}
|
|
376
|
+
) : doctorCheck(
|
|
341
377
|
"health.durable",
|
|
342
378
|
DoctorCheckStatus.failure,
|
|
343
379
|
"Durable health snapshot is invalid",
|
|
@@ -574,6 +610,7 @@ var checkSurface = (manifest) => (manifest !== void 0 && manifest.lifecycle !==
|
|
|
574
610
|
var runDoctor = Effect_exports.gen(function* () {
|
|
575
611
|
const fs = yield* FileSystem_exports.FileSystem;
|
|
576
612
|
const runtime = checkRuntime();
|
|
613
|
+
const sandbox = checkDirectToolSandbox();
|
|
577
614
|
const config = yield* checkConfig(fs);
|
|
578
615
|
const piModels = yield* checkPiModels(fs);
|
|
579
616
|
const projectResult = yield* Effect_exports.either(resolveProjectScope);
|
|
@@ -595,6 +632,7 @@ var runDoctor = Effect_exports.gen(function* () {
|
|
|
595
632
|
runtime,
|
|
596
633
|
config,
|
|
597
634
|
...piModels,
|
|
635
|
+
sandbox,
|
|
598
636
|
surface2,
|
|
599
637
|
...skipped
|
|
600
638
|
],
|
|
@@ -614,6 +652,7 @@ var runDoctor = Effect_exports.gen(function* () {
|
|
|
614
652
|
runtime,
|
|
615
653
|
config,
|
|
616
654
|
...piModels,
|
|
655
|
+
sandbox,
|
|
617
656
|
storage,
|
|
618
657
|
manifestResult.check,
|
|
619
658
|
surface,
|
|
@@ -3,6 +3,8 @@ const require = __priiiskCreateRequire(import.meta.url);
|
|
|
3
3
|
import {
|
|
4
4
|
CAMP_UI_BASH_PREVIEW_LINES,
|
|
5
5
|
CAMP_UI_DEFAULT_TOOL_PREVIEW_LINES,
|
|
6
|
+
CAMP_UI_EXPLORED_COLLAPSED_PATHS,
|
|
7
|
+
CAMP_UI_EXPLORED_TOOL_NAMES,
|
|
6
8
|
CAMP_UI_SUBSCRIPTION_BASE_DELAY_MS,
|
|
7
9
|
CAMP_UI_SUBSCRIPTION_MAX_RETRIES,
|
|
8
10
|
CampUiAssistantMessage,
|
|
@@ -11,6 +13,7 @@ import {
|
|
|
11
13
|
CampUiCompositionError,
|
|
12
14
|
CampUiContributionStrategy,
|
|
13
15
|
CampUiControllerError,
|
|
16
|
+
CampUiExploredStatus,
|
|
14
17
|
CampUiFocusDirection,
|
|
15
18
|
CampUiGlyph,
|
|
16
19
|
CampUiHealthStatus,
|
|
@@ -29,6 +32,8 @@ import {
|
|
|
29
32
|
allocateCampUiSectionRows,
|
|
30
33
|
campUiAskBlockId,
|
|
31
34
|
campUiEquipmentBlockRenderer,
|
|
35
|
+
campUiExploredReadPath,
|
|
36
|
+
campUiExploredReadRange,
|
|
32
37
|
campUiPendingAskBlockRenderer,
|
|
33
38
|
campUiPendingAskTargets,
|
|
34
39
|
campUiSubscriptionRetryDelay,
|
|
@@ -48,6 +53,7 @@ import {
|
|
|
48
53
|
formatCampUiDuration,
|
|
49
54
|
hasCampUiTextContent,
|
|
50
55
|
hasPendingCampUiAsk,
|
|
56
|
+
isCampUiExploredTool,
|
|
51
57
|
joinCampUiColumns,
|
|
52
58
|
jsonText,
|
|
53
59
|
makeCampUiComponentGroup,
|
|
@@ -66,6 +72,7 @@ import {
|
|
|
66
72
|
renderCampUiDetailBlockLayout,
|
|
67
73
|
renderCampUiDetailBlocks,
|
|
68
74
|
renderCampUiDirectedBlock,
|
|
75
|
+
renderCampUiExploredGroup,
|
|
69
76
|
renderCampUiPanel,
|
|
70
77
|
renderCampUiState,
|
|
71
78
|
renderCampUiStatus,
|
|
@@ -77,11 +84,13 @@ import {
|
|
|
77
84
|
selectCampRun,
|
|
78
85
|
styleCampUiTone,
|
|
79
86
|
uniqueCampUiNames
|
|
80
|
-
} from "./chunk-
|
|
87
|
+
} from "./chunk-62BTCFUO.js";
|
|
81
88
|
import "./chunk-KFSFN6L5.js";
|
|
82
89
|
export {
|
|
83
90
|
CAMP_UI_BASH_PREVIEW_LINES,
|
|
84
91
|
CAMP_UI_DEFAULT_TOOL_PREVIEW_LINES,
|
|
92
|
+
CAMP_UI_EXPLORED_COLLAPSED_PATHS,
|
|
93
|
+
CAMP_UI_EXPLORED_TOOL_NAMES,
|
|
85
94
|
CAMP_UI_SUBSCRIPTION_BASE_DELAY_MS,
|
|
86
95
|
CAMP_UI_SUBSCRIPTION_MAX_RETRIES,
|
|
87
96
|
CampUiAssistantMessage,
|
|
@@ -90,6 +99,7 @@ export {
|
|
|
90
99
|
CampUiCompositionError,
|
|
91
100
|
CampUiContributionStrategy,
|
|
92
101
|
CampUiControllerError,
|
|
102
|
+
CampUiExploredStatus,
|
|
93
103
|
CampUiFocusDirection,
|
|
94
104
|
CampUiGlyph,
|
|
95
105
|
CampUiHealthStatus,
|
|
@@ -108,6 +118,8 @@ export {
|
|
|
108
118
|
allocateCampUiSectionRows,
|
|
109
119
|
campUiAskBlockId,
|
|
110
120
|
campUiEquipmentBlockRenderer,
|
|
121
|
+
campUiExploredReadPath,
|
|
122
|
+
campUiExploredReadRange,
|
|
111
123
|
campUiPendingAskBlockRenderer,
|
|
112
124
|
campUiPendingAskTargets,
|
|
113
125
|
campUiSubscriptionRetryDelay,
|
|
@@ -127,6 +139,7 @@ export {
|
|
|
127
139
|
formatCampUiDuration,
|
|
128
140
|
hasCampUiTextContent,
|
|
129
141
|
hasPendingCampUiAsk,
|
|
142
|
+
isCampUiExploredTool,
|
|
130
143
|
joinCampUiColumns,
|
|
131
144
|
jsonText,
|
|
132
145
|
makeCampUiComponentGroup,
|
|
@@ -145,6 +158,7 @@ export {
|
|
|
145
158
|
renderCampUiDetailBlockLayout,
|
|
146
159
|
renderCampUiDetailBlocks,
|
|
147
160
|
renderCampUiDirectedBlock,
|
|
161
|
+
renderCampUiExploredGroup,
|
|
148
162
|
renderCampUiPanel,
|
|
149
163
|
renderCampUiState,
|
|
150
164
|
renderCampUiStatus,
|
|
@@ -3545,12 +3545,12 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
3545
3545
|
resolve,
|
|
3546
3546
|
normalize(path) {
|
|
3547
3547
|
if (path.length === 0) return ".";
|
|
3548
|
-
const
|
|
3548
|
+
const isAbsolute2 = path.charCodeAt(0) === 47;
|
|
3549
3549
|
const trailingSeparator = path.charCodeAt(path.length - 1) === 47;
|
|
3550
|
-
path = normalizeStringPosix(path, !
|
|
3551
|
-
if (path.length === 0 && !
|
|
3550
|
+
path = normalizeStringPosix(path, !isAbsolute2);
|
|
3551
|
+
if (path.length === 0 && !isAbsolute2) path = ".";
|
|
3552
3552
|
if (path.length > 0 && trailingSeparator) path += "/";
|
|
3553
|
-
if (
|
|
3553
|
+
if (isAbsolute2) return "/" + path;
|
|
3554
3554
|
return path;
|
|
3555
3555
|
},
|
|
3556
3556
|
isAbsolute(path) {
|
|
@@ -3770,9 +3770,9 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
3770
3770
|
};
|
|
3771
3771
|
if (path.length === 0) return ret;
|
|
3772
3772
|
let code = path.charCodeAt(0);
|
|
3773
|
-
const
|
|
3773
|
+
const isAbsolute2 = code === 47;
|
|
3774
3774
|
let start3;
|
|
3775
|
-
if (
|
|
3775
|
+
if (isAbsolute2) {
|
|
3776
3776
|
ret.root = "/";
|
|
3777
3777
|
start3 = 1;
|
|
3778
3778
|
} else {
|
|
@@ -3808,11 +3808,11 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
3808
3808
|
preDotState === 0 || // The (right-most) trimmed path component is exactly '..'
|
|
3809
3809
|
preDotState === 1 && startDot === end - 1 && startDot === startPart + 1) {
|
|
3810
3810
|
if (end !== -1) {
|
|
3811
|
-
if (startPart === 0 &&
|
|
3811
|
+
if (startPart === 0 && isAbsolute2) ret.base = ret.name = path.slice(1, end);
|
|
3812
3812
|
else ret.base = ret.name = path.slice(startPart, end);
|
|
3813
3813
|
}
|
|
3814
3814
|
} else {
|
|
3815
|
-
if (startPart === 0 &&
|
|
3815
|
+
if (startPart === 0 && isAbsolute2) {
|
|
3816
3816
|
ret.name = path.slice(1, startDot);
|
|
3817
3817
|
ret.base = path.slice(1, end);
|
|
3818
3818
|
} else {
|
|
@@ -3822,7 +3822,7 @@ var posixImpl = /* @__PURE__ */ Path.of({
|
|
|
3822
3822
|
ret.ext = path.slice(startDot, end);
|
|
3823
3823
|
}
|
|
3824
3824
|
if (startPart > 0) ret.dir = path.slice(0, startPart - 1);
|
|
3825
|
-
else if (
|
|
3825
|
+
else if (isAbsolute2) ret.dir = "/";
|
|
3826
3826
|
return ret;
|
|
3827
3827
|
},
|
|
3828
3828
|
sep: "/",
|
|
@@ -10163,8 +10163,8 @@ var findAssetRoot = (moduleUrl, directoryName) => {
|
|
|
10163
10163
|
};
|
|
10164
10164
|
var assetRoots = /* @__PURE__ */ new Map();
|
|
10165
10165
|
var resolveRuntimeAssetRoot = (moduleUrl, directoryName) => {
|
|
10166
|
-
const
|
|
10167
|
-
if (
|
|
10166
|
+
const cached3 = assetRoots.get(directoryName);
|
|
10167
|
+
if (cached3 !== void 0) return cached3;
|
|
10168
10168
|
const resolved = findAssetRoot(moduleUrl, directoryName);
|
|
10169
10169
|
assetRoots.set(directoryName, resolved);
|
|
10170
10170
|
return resolved;
|
|
@@ -10551,9 +10551,108 @@ var listWorkerModelCatalogEntries = (config) => {
|
|
|
10551
10551
|
})).sort((left, right) => left.alias.localeCompare(right.alias));
|
|
10552
10552
|
};
|
|
10553
10553
|
|
|
10554
|
+
// packages/config/src/sandbox/directToolSandbox.ts
|
|
10555
|
+
import { execFileSync } from "node:child_process";
|
|
10556
|
+
import { accessSync, constants } from "node:fs";
|
|
10557
|
+
import { delimiter, isAbsolute, join as join8 } from "node:path";
|
|
10558
|
+
var DirectToolSandboxKind = {
|
|
10559
|
+
bubblewrap: "bubblewrap",
|
|
10560
|
+
none: "none"
|
|
10561
|
+
};
|
|
10562
|
+
var DirectToolSandboxAbsence = {
|
|
10563
|
+
unsupportedPlatform: "unsupported_platform",
|
|
10564
|
+
binaryMissing: "binary_missing",
|
|
10565
|
+
probeFailed: "probe_failed",
|
|
10566
|
+
disabled: "disabled"
|
|
10567
|
+
};
|
|
10568
|
+
var DIRECT_TOOL_SANDBOX_ENV = "PRIIISK_DIRECT_TOOL_SANDBOX";
|
|
10569
|
+
var resolveExecutablePath = (bin, environment = process.env) => {
|
|
10570
|
+
const executable = (candidate) => {
|
|
10571
|
+
try {
|
|
10572
|
+
accessSync(candidate, constants.X_OK);
|
|
10573
|
+
return true;
|
|
10574
|
+
} catch {
|
|
10575
|
+
return false;
|
|
10576
|
+
}
|
|
10577
|
+
};
|
|
10578
|
+
if (bin.includes("/")) return isAbsolute(bin) && executable(bin) ? bin : void 0;
|
|
10579
|
+
for (const directory of (environment.PATH ?? "").split(delimiter)) {
|
|
10580
|
+
if (directory === "") continue;
|
|
10581
|
+
const candidate = join8(directory, bin);
|
|
10582
|
+
if (executable(candidate)) return candidate;
|
|
10583
|
+
}
|
|
10584
|
+
return void 0;
|
|
10585
|
+
};
|
|
10586
|
+
var sandboxArguments = (cwd, writable) => [
|
|
10587
|
+
"--unshare-all",
|
|
10588
|
+
"--ro-bind",
|
|
10589
|
+
"/",
|
|
10590
|
+
"/",
|
|
10591
|
+
"--dev",
|
|
10592
|
+
"/dev",
|
|
10593
|
+
"--proc",
|
|
10594
|
+
"/proc",
|
|
10595
|
+
"--tmpfs",
|
|
10596
|
+
"/tmp",
|
|
10597
|
+
...writable ? ["--bind", cwd, cwd] : [],
|
|
10598
|
+
"--chdir",
|
|
10599
|
+
cwd,
|
|
10600
|
+
"--die-with-parent",
|
|
10601
|
+
"--new-session",
|
|
10602
|
+
"--"
|
|
10603
|
+
];
|
|
10604
|
+
var probeBubblewrap = (command) => {
|
|
10605
|
+
try {
|
|
10606
|
+
execFileSync(command, [...sandboxArguments("/", false), "/bin/true"], {
|
|
10607
|
+
stdio: "ignore",
|
|
10608
|
+
timeout: 5e3
|
|
10609
|
+
});
|
|
10610
|
+
return void 0;
|
|
10611
|
+
} catch (cause) {
|
|
10612
|
+
return cause instanceof Error ? cause.message : String(cause);
|
|
10613
|
+
}
|
|
10614
|
+
};
|
|
10615
|
+
var cached2;
|
|
10616
|
+
var detectDirectToolSandbox = (environment = process.env, platform = process.platform) => {
|
|
10617
|
+
if (environment[DIRECT_TOOL_SANDBOX_ENV] === "0") {
|
|
10618
|
+
return { kind: DirectToolSandboxKind.none, absence: DirectToolSandboxAbsence.disabled };
|
|
10619
|
+
}
|
|
10620
|
+
if (platform !== "linux") {
|
|
10621
|
+
return {
|
|
10622
|
+
kind: DirectToolSandboxKind.none,
|
|
10623
|
+
absence: DirectToolSandboxAbsence.unsupportedPlatform,
|
|
10624
|
+
detail: platform
|
|
10625
|
+
};
|
|
10626
|
+
}
|
|
10627
|
+
const command = resolveExecutablePath("bwrap", environment);
|
|
10628
|
+
if (command === void 0) {
|
|
10629
|
+
return {
|
|
10630
|
+
kind: DirectToolSandboxKind.none,
|
|
10631
|
+
absence: DirectToolSandboxAbsence.binaryMissing,
|
|
10632
|
+
detail: "bwrap"
|
|
10633
|
+
};
|
|
10634
|
+
}
|
|
10635
|
+
const failure = probeBubblewrap(command);
|
|
10636
|
+
return failure === void 0 ? { kind: DirectToolSandboxKind.bubblewrap, command } : {
|
|
10637
|
+
kind: DirectToolSandboxKind.none,
|
|
10638
|
+
absence: DirectToolSandboxAbsence.probeFailed,
|
|
10639
|
+
detail: failure
|
|
10640
|
+
};
|
|
10641
|
+
};
|
|
10642
|
+
var currentDirectToolSandbox = () => {
|
|
10643
|
+
cached2 ??= detectDirectToolSandbox();
|
|
10644
|
+
return cached2;
|
|
10645
|
+
};
|
|
10646
|
+
var directToolSandboxCommand = (sandbox2, executablePath, args, options4) => sandbox2.kind === DirectToolSandboxKind.bubblewrap && sandbox2.command !== void 0 ? {
|
|
10647
|
+
command: sandbox2.command,
|
|
10648
|
+
args: [...sandboxArguments(options4.cwd, true), executablePath, ...args]
|
|
10649
|
+
} : { command: executablePath, args };
|
|
10650
|
+
var isDirectToolSandboxFailure = (stderr3) => stderr3.startsWith("bwrap:");
|
|
10651
|
+
var describeDirectToolSandbox = (sandbox2) => sandbox2.kind === DirectToolSandboxKind.bubblewrap ? "External binaries run in a bubblewrap sandbox: read-only filesystem, writable worker directory, no network" : sandbox2.absence === DirectToolSandboxAbsence.disabled ? `External binaries run without an OS sandbox: disabled by ${DIRECT_TOOL_SANDBOX_ENV}` : sandbox2.absence === DirectToolSandboxAbsence.unsupportedPlatform ? `External binaries run without an OS sandbox: no supported mechanism on ${sandbox2.detail ?? "this platform"}` : sandbox2.absence === DirectToolSandboxAbsence.binaryMissing ? "External binaries run without an OS sandbox: bubblewrap (bwrap) is not installed" : "External binaries run without an OS sandbox: bubblewrap is present but cannot start";
|
|
10652
|
+
|
|
10554
10653
|
// packages/protocol/src/domain/protocolVersion.ts
|
|
10555
10654
|
var PRIIISK_PROTOCOL_VERSION = "11";
|
|
10556
|
-
var PRIIISK_PROTOCOL_PACKAGE_VERSION = "0.1.
|
|
10655
|
+
var PRIIISK_PROTOCOL_PACKAGE_VERSION = "0.1.4";
|
|
10557
10656
|
var ProtocolVersionSchema = Schema_exports.String.pipe(Schema_exports.minLength(1));
|
|
10558
10657
|
|
|
10559
10658
|
// packages/protocol/src/domain/protocolIdentifiers.ts
|
|
@@ -13428,7 +13527,7 @@ var CampProtocol = class extends RpcGroup_exports.make(
|
|
|
13428
13527
|
};
|
|
13429
13528
|
|
|
13430
13529
|
// packages/camp-state/src/bootstrap/campHostVersion.ts
|
|
13431
|
-
var PRIIISK_HOST_VERSION = "0.1.
|
|
13530
|
+
var PRIIISK_HOST_VERSION = "0.1.4";
|
|
13432
13531
|
|
|
13433
13532
|
// packages/surface/src/domain/surfaceModel.ts
|
|
13434
13533
|
var NonEmptyString7 = Schema_exports.String.pipe(Schema_exports.minLength(1));
|
|
@@ -14069,42 +14168,47 @@ var campHealthLiveness = (snapshot, now, staleAfterMs = CAMP_HEALTH_STALE_AFTER_
|
|
|
14069
14168
|
import { randomUUID as randomUUID3 } from "node:crypto";
|
|
14070
14169
|
var CampHealthPersistenceError = class extends Data_exports.TaggedError("CampHealthPersistenceError") {
|
|
14071
14170
|
};
|
|
14171
|
+
var CampHealthVersionError = class extends Data_exports.TaggedError("CampHealthVersionError") {
|
|
14172
|
+
};
|
|
14072
14173
|
var decodeHealth = Schema_exports.decodeUnknown(CampHealthSnapshotSchema, {
|
|
14073
14174
|
onExcessProperty: "error"
|
|
14074
14175
|
});
|
|
14176
|
+
var readError = (path, message, cause) => new CampHealthPersistenceError({ operation: "read", path, message, cause });
|
|
14177
|
+
var decodeCampHealth = (path, value) => {
|
|
14178
|
+
if (typeof value === "object" && value !== null && "schemaVersion" in value && typeof value.schemaVersion === "number" && Number.isSafeInteger(value.schemaVersion) && value.schemaVersion !== CAMP_HEALTH_SCHEMA_VERSION) {
|
|
14179
|
+
return Effect_exports.fail(
|
|
14180
|
+
new CampHealthVersionError({
|
|
14181
|
+
path,
|
|
14182
|
+
expectedVersion: CAMP_HEALTH_SCHEMA_VERSION,
|
|
14183
|
+
receivedVersion: value.schemaVersion,
|
|
14184
|
+
message: `health snapshot schemaVersion ${String(value.schemaVersion)} was written by another runtime version; this runtime writes ${String(CAMP_HEALTH_SCHEMA_VERSION)}`
|
|
14185
|
+
})
|
|
14186
|
+
);
|
|
14187
|
+
}
|
|
14188
|
+
return decodeHealth(value).pipe(
|
|
14189
|
+
Effect_exports.mapError(
|
|
14190
|
+
(cause) => readError(path, `health snapshot does not match schema: ${String(cause)}`, cause)
|
|
14191
|
+
)
|
|
14192
|
+
);
|
|
14193
|
+
};
|
|
14075
14194
|
var loadCampHealth = (fs, path) => fs.exists(path).pipe(
|
|
14195
|
+
Effect_exports.mapError(
|
|
14196
|
+
(cause) => readError(path, `health snapshot is unavailable: ${String(cause)}`, cause)
|
|
14197
|
+
),
|
|
14076
14198
|
Effect_exports.flatMap(
|
|
14077
14199
|
(exists) => exists ? fs.readFileString(path).pipe(
|
|
14200
|
+
Effect_exports.mapError(
|
|
14201
|
+
(cause) => readError(path, `health snapshot is unavailable: ${String(cause)}`, cause)
|
|
14202
|
+
),
|
|
14078
14203
|
Effect_exports.flatMap(
|
|
14079
14204
|
(contents) => Effect_exports.try({
|
|
14080
14205
|
try: () => JSON.parse(contents),
|
|
14081
|
-
catch: (cause) =>
|
|
14082
|
-
operation: "read",
|
|
14083
|
-
path,
|
|
14084
|
-
message: `health snapshot contains invalid JSON: ${String(cause)}`,
|
|
14085
|
-
cause
|
|
14086
|
-
})
|
|
14087
|
-
})
|
|
14088
|
-
),
|
|
14089
|
-
Effect_exports.flatMap(decodeHealth),
|
|
14090
|
-
Effect_exports.mapError(
|
|
14091
|
-
(cause) => cause instanceof CampHealthPersistenceError ? cause : new CampHealthPersistenceError({
|
|
14092
|
-
operation: "read",
|
|
14093
|
-
path,
|
|
14094
|
-
message: `health snapshot is unavailable: ${String(cause)}`,
|
|
14095
|
-
cause
|
|
14206
|
+
catch: (cause) => readError(path, `health snapshot contains invalid JSON: ${String(cause)}`, cause)
|
|
14096
14207
|
})
|
|
14097
14208
|
),
|
|
14209
|
+
Effect_exports.flatMap((value) => decodeCampHealth(path, value)),
|
|
14098
14210
|
Effect_exports.map(Option_exports.some)
|
|
14099
14211
|
) : Effect_exports.succeed(Option_exports.none())
|
|
14100
|
-
),
|
|
14101
|
-
Effect_exports.mapError(
|
|
14102
|
-
(cause) => cause instanceof CampHealthPersistenceError ? cause : new CampHealthPersistenceError({
|
|
14103
|
-
operation: "read",
|
|
14104
|
-
path,
|
|
14105
|
-
message: `health snapshot is unavailable: ${String(cause)}`,
|
|
14106
|
-
cause
|
|
14107
|
-
})
|
|
14108
14212
|
)
|
|
14109
14213
|
);
|
|
14110
14214
|
var saveCampHealth = (fs, path, snapshot) => {
|
|
@@ -14224,7 +14328,7 @@ var launchCampPrepared = (surface, request, persistIntent, handshake, persist) =
|
|
|
14224
14328
|
|
|
14225
14329
|
// packages/camp-state/src/history/campLegacyState.ts
|
|
14226
14330
|
import { randomUUID as randomUUID4 } from "node:crypto";
|
|
14227
|
-
import { join as
|
|
14331
|
+
import { join as join9 } from "node:path";
|
|
14228
14332
|
var LEGACY_CAMP_MANIFEST_VERSION = 1;
|
|
14229
14333
|
var CampLegacyStateErrorCode = {
|
|
14230
14334
|
invalidManifest: "legacy_manifest_invalid",
|
|
@@ -14289,7 +14393,7 @@ var moveStateFile = (fs, source, destination, message) => fs.rename(source, dest
|
|
|
14289
14393
|
);
|
|
14290
14394
|
var quarantineLegacyCampState = (fs, paths) => Effect_exports.gen(function* () {
|
|
14291
14395
|
const timestamp = yield* Clock_exports.currentTimeMillis;
|
|
14292
|
-
const directory =
|
|
14396
|
+
const directory = join9(
|
|
14293
14397
|
paths.quarantineDir,
|
|
14294
14398
|
`legacy-v${String(LEGACY_CAMP_MANIFEST_VERSION)}-${String(timestamp)}-${randomUUID4()}`
|
|
14295
14399
|
);
|
|
@@ -14303,8 +14407,8 @@ var quarantineLegacyCampState = (fs, paths) => Effect_exports.gen(function* () {
|
|
|
14303
14407
|
)
|
|
14304
14408
|
)
|
|
14305
14409
|
);
|
|
14306
|
-
const manifestPath =
|
|
14307
|
-
const healthPath =
|
|
14410
|
+
const manifestPath = join9(directory, "camp.json");
|
|
14411
|
+
const healthPath = join9(directory, "health.json");
|
|
14308
14412
|
const hasHealth = yield* fs.exists(paths.healthPath).pipe(
|
|
14309
14413
|
Effect_exports.mapError(
|
|
14310
14414
|
(cause) => legacyError(
|
|
@@ -14357,7 +14461,7 @@ var quarantineLegacyCampState = (fs, paths) => Effect_exports.gen(function* () {
|
|
|
14357
14461
|
});
|
|
14358
14462
|
|
|
14359
14463
|
// packages/camp-state/src/history/campRunCatalog.ts
|
|
14360
|
-
import { join as
|
|
14464
|
+
import { join as join10 } from "node:path";
|
|
14361
14465
|
|
|
14362
14466
|
// packages/camp-state/src/history/campRunCatalogModel.ts
|
|
14363
14467
|
var CampRunCatalogErrorCode = {
|
|
@@ -14447,7 +14551,7 @@ var listCampRuns = (fs, project, paths) => Effect_exports.gen(function* () {
|
|
|
14447
14551
|
);
|
|
14448
14552
|
const historical = yield* Effect_exports.forEach(
|
|
14449
14553
|
entries,
|
|
14450
|
-
(entry) => loadCampManifest(fs,
|
|
14554
|
+
(entry) => loadCampManifest(fs, join10(paths.runsDir, entry, "camp.json")).pipe(
|
|
14451
14555
|
Effect_exports.mapError(
|
|
14452
14556
|
(cause) => catalogError(
|
|
14453
14557
|
"list",
|
|
@@ -14459,7 +14563,7 @@ var listCampRuns = (fs, project, paths) => Effect_exports.gen(function* () {
|
|
|
14459
14563
|
Effect_exports.flatMap(
|
|
14460
14564
|
Option_exports.match({
|
|
14461
14565
|
onNone: () => Effect_exports.succeed(void 0),
|
|
14462
|
-
onSome: (manifest) => campRunPaths(paths, manifest.runId).manifestPath !==
|
|
14566
|
+
onSome: (manifest) => campRunPaths(paths, manifest.runId).manifestPath !== join10(paths.runsDir, entry, "camp.json") ? Effect_exports.fail(
|
|
14463
14567
|
catalogError(
|
|
14464
14568
|
"list",
|
|
14465
14569
|
CampRunCatalogErrorCode.nonCanonicalRun,
|
|
@@ -14801,6 +14905,12 @@ export {
|
|
|
14801
14905
|
resolveRolePreset,
|
|
14802
14906
|
resolveHirePreset,
|
|
14803
14907
|
listWorkerModelCatalogEntries,
|
|
14908
|
+
DirectToolSandboxKind,
|
|
14909
|
+
resolveExecutablePath,
|
|
14910
|
+
currentDirectToolSandbox,
|
|
14911
|
+
directToolSandboxCommand,
|
|
14912
|
+
isDirectToolSandboxFailure,
|
|
14913
|
+
describeDirectToolSandbox,
|
|
14804
14914
|
NetSocket,
|
|
14805
14915
|
fromDuplex,
|
|
14806
14916
|
layerNet,
|
|
@@ -14839,6 +14949,7 @@ export {
|
|
|
14839
14949
|
findCampRecoveryHealthComponent,
|
|
14840
14950
|
CAMP_HEALTH_HEARTBEAT_PERSIST_INTERVAL_MS,
|
|
14841
14951
|
campHealthLiveness,
|
|
14952
|
+
CampHealthVersionError,
|
|
14842
14953
|
loadCampHealth,
|
|
14843
14954
|
saveCampHealth,
|
|
14844
14955
|
LEGACY_CAMP_MANIFEST_VERSION,
|
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
layerNet,
|
|
21
21
|
makeCampSurfaceName,
|
|
22
22
|
resolveProjectScopeSync
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-QX5EESCS.js";
|
|
24
24
|
import {
|
|
25
25
|
Clock_exports,
|
|
26
26
|
Config_exports,
|
|
@@ -111,7 +111,7 @@ var CliSurfaceSelectionError = class extends Data_exports.TaggedError("CliSurfac
|
|
|
111
111
|
import { randomUUID } from "node:crypto";
|
|
112
112
|
|
|
113
113
|
// packages/cli/src/domain/cliVersion.ts
|
|
114
|
-
var PRIIISK_CLI_VERSION = "0.1.
|
|
114
|
+
var PRIIISK_CLI_VERSION = "0.1.4";
|
|
115
115
|
|
|
116
116
|
// packages/cli/src/client/campRpcConnection.ts
|
|
117
117
|
var PRIIISK_CONTROLLER_ID_ENV = "PRIIISK_CONTROLLER_ID";
|
package/dist/priiisk-host.js
CHANGED
|
@@ -4,14 +4,14 @@ const require = __priiiskCreateRequire(import.meta.url);
|
|
|
4
4
|
import {
|
|
5
5
|
NodeContext_exports,
|
|
6
6
|
NodeRuntime_exports
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-GLWKYPVL.js";
|
|
8
8
|
import {
|
|
9
9
|
CampUiBackendError,
|
|
10
10
|
CampUiHealthStatus,
|
|
11
11
|
CampUiPlacement,
|
|
12
12
|
CampUiRuntimeStatus,
|
|
13
13
|
mountPiCampUi
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-62BTCFUO.js";
|
|
15
15
|
import {
|
|
16
16
|
PiTransport,
|
|
17
17
|
makePiOperatorResources,
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
makePiTransportLayer,
|
|
20
20
|
requirePiModelCatalog,
|
|
21
21
|
require_undici
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-44I2RCT5.js";
|
|
23
23
|
import {
|
|
24
24
|
AgentRole,
|
|
25
25
|
AgentRoleSchema,
|
|
@@ -66,11 +66,14 @@ import {
|
|
|
66
66
|
campProjectPaths,
|
|
67
67
|
campRecoveryDiagnosticFromCause,
|
|
68
68
|
campRunPaths,
|
|
69
|
+
currentDirectToolSandbox,
|
|
69
70
|
directToolName,
|
|
71
|
+
directToolSandboxCommand,
|
|
70
72
|
findCampRecoveryHealthComponent,
|
|
71
73
|
fromDuplex,
|
|
72
74
|
fromWebSocket,
|
|
73
75
|
hostStoppedCampManifest,
|
|
76
|
+
isDirectToolSandboxFailure,
|
|
74
77
|
listWorkerModelCatalogEntries,
|
|
75
78
|
loadCampManifest,
|
|
76
79
|
loadReferencedMcpCredentials,
|
|
@@ -82,6 +85,7 @@ import {
|
|
|
82
85
|
resolveCampMcpUnion,
|
|
83
86
|
resolveDefaultPreset,
|
|
84
87
|
resolveDirectTools,
|
|
88
|
+
resolveExecutablePath,
|
|
85
89
|
resolveHirePreset,
|
|
86
90
|
resolveMcpSecretEnv,
|
|
87
91
|
resolveMcpServers,
|
|
@@ -96,7 +100,7 @@ import {
|
|
|
96
100
|
runningCampManifest,
|
|
97
101
|
saveCampHealth,
|
|
98
102
|
saveCampManifest
|
|
99
|
-
} from "./chunk-
|
|
103
|
+
} from "./chunk-QX5EESCS.js";
|
|
100
104
|
import {
|
|
101
105
|
CampAskRouter,
|
|
102
106
|
CampCancellationCode,
|
|
@@ -22412,7 +22416,7 @@ var Client = class extends Protocol {
|
|
|
22412
22416
|
};
|
|
22413
22417
|
|
|
22414
22418
|
// packages/mcp-backend/src/connections/clientIdentity.ts
|
|
22415
|
-
var backendVersion = "0.1.
|
|
22419
|
+
var backendVersion = "0.1.4";
|
|
22416
22420
|
|
|
22417
22421
|
// packages/mcp-backend/src/connections/mcpFailure.ts
|
|
22418
22422
|
var McpFailure = class extends Data_exports.TaggedError("McpFailure") {
|
|
@@ -26419,39 +26423,42 @@ var truncate = (value, limit) => {
|
|
|
26419
26423
|
return encoded.byteLength <= limit ? { text: value, truncated: false } : { text: encoded.subarray(0, limit).toString("utf8"), truncated: true };
|
|
26420
26424
|
};
|
|
26421
26425
|
var binaryCandidates = (bin) => bin === "fd" ? ["fd", "fdfind"] : [bin];
|
|
26422
|
-
var runBinary = (
|
|
26423
|
-
const
|
|
26424
|
-
|
|
26425
|
-
|
|
26426
|
-
|
|
26427
|
-
|
|
26428
|
-
|
|
26429
|
-
|
|
26430
|
-
|
|
26431
|
-
|
|
26432
|
-
|
|
26433
|
-
|
|
26434
|
-
|
|
26435
|
-
|
|
26436
|
-
|
|
26437
|
-
|
|
26426
|
+
var runBinary = (executablePath, args, options, environment, signal) => {
|
|
26427
|
+
const sandbox = options.sandbox ?? currentDirectToolSandbox();
|
|
26428
|
+
const launch = directToolSandboxCommand(sandbox, executablePath, args, { cwd: options.cwd });
|
|
26429
|
+
return new Promise((resolve) => {
|
|
26430
|
+
const child = execFile(
|
|
26431
|
+
launch.command,
|
|
26432
|
+
[...launch.args],
|
|
26433
|
+
{
|
|
26434
|
+
cwd: options.cwd,
|
|
26435
|
+
env: environment,
|
|
26436
|
+
timeout: options.timeoutMs ?? DEFAULT_TIMEOUT_MS,
|
|
26437
|
+
maxBuffer: MAX_BUFFER_BYTES,
|
|
26438
|
+
...signal === void 0 ? {} : { signal }
|
|
26439
|
+
},
|
|
26440
|
+
(error2, stdout, stderr) => {
|
|
26441
|
+
const failure = error2;
|
|
26442
|
+
const sandboxed = launch.command !== executablePath;
|
|
26443
|
+
resolve({
|
|
26444
|
+
stdout,
|
|
26445
|
+
stderr,
|
|
26446
|
+
exitCode: typeof failure?.code === "number" ? failure.code : failure === null ? 0 : 1,
|
|
26447
|
+
signal: child.signalCode ?? void 0,
|
|
26448
|
+
timedOut: failure?.killed === true,
|
|
26449
|
+
...sandboxed && isDirectToolSandboxFailure(stderr) ? { sandboxFailed: true } : {},
|
|
26450
|
+
...typeof failure?.code === "string" && failure.code !== "" ? { launchError: `${failure.code}: ${failure.message}` } : {}
|
|
26451
|
+
});
|
|
26438
26452
|
}
|
|
26439
|
-
|
|
26440
|
-
|
|
26441
|
-
|
|
26442
|
-
exitCode: typeof failure?.code === "number" ? failure.code : failure === null ? 0 : 1,
|
|
26443
|
-
signal: child.signalCode ?? void 0,
|
|
26444
|
-
timedOut: failure?.killed === true
|
|
26445
|
-
});
|
|
26446
|
-
}
|
|
26447
|
-
);
|
|
26448
|
-
});
|
|
26453
|
+
);
|
|
26454
|
+
});
|
|
26455
|
+
};
|
|
26449
26456
|
var runWithFallback = async (policy, args, options, signal) => {
|
|
26457
|
+
const environment = directToolEnvironment(options.environment ?? process.env);
|
|
26450
26458
|
for (const candidate of binaryCandidates(policy.bin)) {
|
|
26451
|
-
|
|
26452
|
-
|
|
26453
|
-
|
|
26454
|
-
}
|
|
26459
|
+
const executablePath = resolveExecutablePath(candidate, environment);
|
|
26460
|
+
if (executablePath === void 0) continue;
|
|
26461
|
+
return await runBinary(executablePath, args, options, environment, signal);
|
|
26455
26462
|
}
|
|
26456
26463
|
return void 0;
|
|
26457
26464
|
};
|
|
@@ -26523,7 +26530,19 @@ var makeDirectTool = (declared, options) => ({
|
|
|
26523
26530
|
return refusal(detail);
|
|
26524
26531
|
}
|
|
26525
26532
|
const run = await runWithFallback(policy, args, options, signal);
|
|
26526
|
-
|
|
26533
|
+
if (run === void 0) {
|
|
26534
|
+
return refusal(`\`${policy.bin}\` is not available on this machine.`);
|
|
26535
|
+
}
|
|
26536
|
+
if (run.sandboxFailed === true) {
|
|
26537
|
+
return refusal(
|
|
26538
|
+
`\`${policy.bin}\` was not run: the OS sandbox refused to start it.
|
|
26539
|
+
${run.stderr.trim()}`
|
|
26540
|
+
);
|
|
26541
|
+
}
|
|
26542
|
+
if (run.launchError !== void 0) {
|
|
26543
|
+
return refusal(`\`${policy.bin}\` could not be started: ${run.launchError}`);
|
|
26544
|
+
}
|
|
26545
|
+
return resultOf(policy, run, options.maxOutputBytes ?? DEFAULT_MAX_OUTPUT_BYTES);
|
|
26527
26546
|
}
|
|
26528
26547
|
});
|
|
26529
26548
|
var makeDirectTools = (declared, options) => declared.map(
|
package/dist/priiisk.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
fromReadable,
|
|
6
6
|
layer,
|
|
7
7
|
runMain
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-GLWKYPVL.js";
|
|
9
9
|
import {
|
|
10
10
|
CliCampLifecycleError,
|
|
11
11
|
CliEquipmentConflict,
|
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
resolveCampSurface,
|
|
24
24
|
withCampRpc,
|
|
25
25
|
withCampRpcSession
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-XI3HWC7Q.js";
|
|
27
27
|
import {
|
|
28
28
|
CampCommandFailure,
|
|
29
29
|
CampHostReadiness,
|
|
@@ -58,7 +58,7 @@ import {
|
|
|
58
58
|
resolveProjectScopeSync,
|
|
59
59
|
saveCampManifest,
|
|
60
60
|
startingCampManifest
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-QX5EESCS.js";
|
|
62
62
|
import {
|
|
63
63
|
Cause_exports,
|
|
64
64
|
CommitPrototype,
|
|
@@ -19903,7 +19903,7 @@ var campResumeListCommand = Command_exports.make(
|
|
|
19903
19903
|
)
|
|
19904
19904
|
).pipe(Command_exports.withDescription("Lists saved runs of this project that resume can restore."));
|
|
19905
19905
|
var runIdArgument = Args_exports.text({ name: "runId" }).pipe(Args_exports.optional);
|
|
19906
|
-
var selectCampRunOnDemand = (items) => Effect_exports.promise(() => import("./chunk-
|
|
19906
|
+
var selectCampRunOnDemand = (items) => Effect_exports.promise(() => import("./chunk-JFAW425C.js")).pipe(
|
|
19907
19907
|
Effect_exports.flatMap((ui) => ui.selectCampRun({ items }))
|
|
19908
19908
|
);
|
|
19909
19909
|
var selectAndResume = (json) => {
|
|
@@ -19976,7 +19976,7 @@ var rootCommand = Command_exports.make(
|
|
|
19976
19976
|
).pipe(Command_exports.withDescription("Runs and observes a camp of collaborating workers."));
|
|
19977
19977
|
|
|
19978
19978
|
// packages/cli/src/commands/doctorCommand.ts
|
|
19979
|
-
var runDoctorOnDemand = Effect_exports.promise(() => import("./chunk-
|
|
19979
|
+
var runDoctorOnDemand = Effect_exports.promise(() => import("./chunk-GZTHKLSX.js")).pipe(
|
|
19980
19980
|
Effect_exports.flatMap((doctor) => doctor.runDoctor)
|
|
19981
19981
|
);
|
|
19982
19982
|
var statusLabel = {
|
|
@@ -20672,7 +20672,7 @@ var command = rootCommand.pipe(
|
|
|
20672
20672
|
);
|
|
20673
20673
|
var cli = Command_exports.run(command, {
|
|
20674
20674
|
name: "priiisk camp control",
|
|
20675
|
-
version: "0.1.
|
|
20675
|
+
version: "0.1.4"
|
|
20676
20676
|
});
|
|
20677
20677
|
var runCliCommand = (argumentsList) => cli(argumentsList).pipe(
|
|
20678
20678
|
Effect_exports.matchEffect({
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "priiisk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "CLI for running and observing a camp of collaborating agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"priiisk": "./dist/priiisk.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist/chunk-
|
|
11
|
-
"dist/chunk-
|
|
12
|
-
"dist/chunk-
|
|
13
|
-
"dist/chunk-
|
|
10
|
+
"dist/chunk-44I2RCT5.js",
|
|
11
|
+
"dist/chunk-44I2RCT5.js.LEGAL.txt",
|
|
12
|
+
"dist/chunk-62BTCFUO.js",
|
|
13
|
+
"dist/chunk-GLWKYPVL.js",
|
|
14
|
+
"dist/chunk-GZTHKLSX.js",
|
|
15
|
+
"dist/chunk-JFAW425C.js",
|
|
14
16
|
"dist/chunk-KFSFN6L5.js",
|
|
15
|
-
"dist/chunk-
|
|
16
|
-
"dist/chunk-
|
|
17
|
-
"dist/chunk-
|
|
18
|
-
"dist/chunk-VHGA3U67.js",
|
|
19
|
-
"dist/chunk-Z64QXV3O.js",
|
|
17
|
+
"dist/chunk-QX5EESCS.js",
|
|
18
|
+
"dist/chunk-QX5EESCS.js.LEGAL.txt",
|
|
19
|
+
"dist/chunk-XI3HWC7Q.js",
|
|
20
20
|
"dist/priiisk-host.js",
|
|
21
21
|
"dist/priiisk.js",
|
|
22
22
|
"profiles",
|
|
File without changes
|
|
File without changes
|