@saasontools/strauss-kb 0.1.7 → 0.1.9
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/ARCHITECTURE.md +89 -0
- package/README.md +132 -5
- package/dist/{chunk-GKCG4P3L.js → chunk-KVEEISYQ.js} +24 -10
- package/dist/chunk-KVEEISYQ.js.map +1 -0
- package/dist/{chunk-LCQKARFK.js → chunk-MWWDD23L.js} +2 -2
- package/dist/{chunk-GKUQOJEK.js → chunk-OFDWRMY6.js} +622 -154
- package/dist/chunk-OFDWRMY6.js.map +1 -0
- package/dist/cli-main.cjs +663 -197
- package/dist/cli-main.cjs.map +1 -1
- package/dist/cli-main.js +2 -2
- package/dist/index.cjs +559 -74
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +120 -3
- package/dist/index.d.ts +120 -3
- package/dist/index.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp-main.cjs +641 -189
- package/dist/mcp-main.cjs.map +1 -1
- package/dist/mcp-main.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-GKCG4P3L.js.map +0 -1
- package/dist/chunk-GKUQOJEK.js.map +0 -1
- /package/dist/{chunk-LCQKARFK.js.map → chunk-MWWDD23L.js.map} +0 -0
package/dist/cli-main.cjs
CHANGED
|
@@ -1055,14 +1055,460 @@ var contextCommand = define({
|
|
|
1055
1055
|
}
|
|
1056
1056
|
});
|
|
1057
1057
|
|
|
1058
|
-
// src/commands/
|
|
1058
|
+
// src/commands/doctor.ts
|
|
1059
1059
|
var import_zod8 = require("zod");
|
|
1060
|
+
|
|
1061
|
+
// src/kb-edges.ts
|
|
1062
|
+
var KB_EDGE_KINDS = [
|
|
1063
|
+
"body-link",
|
|
1064
|
+
"supersession",
|
|
1065
|
+
"anchor",
|
|
1066
|
+
"source"
|
|
1067
|
+
];
|
|
1068
|
+
var BODY_LINK_TARGET = new RegExp(
|
|
1069
|
+
`\\]\\((${KB_CONCEPT_ID_PATTERN.source.replace(/^\^|\$$/g, "")})\\.md\\)`,
|
|
1070
|
+
"g"
|
|
1071
|
+
);
|
|
1072
|
+
function neighbours(from, bundle, kinds = KB_EDGE_KINDS) {
|
|
1073
|
+
const found = /* @__PURE__ */ new Map();
|
|
1074
|
+
for (const kind of kinds) {
|
|
1075
|
+
for (const record of edgeNeighbours(from, bundle, kind)) {
|
|
1076
|
+
const existing = found.get(record.conceptId);
|
|
1077
|
+
if (existing) {
|
|
1078
|
+
if (!existing.via.includes(kind)) existing.via.push(kind);
|
|
1079
|
+
continue;
|
|
1080
|
+
}
|
|
1081
|
+
found.set(record.conceptId, { record, via: [kind] });
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
return [...found.values()];
|
|
1085
|
+
}
|
|
1086
|
+
function edgeNeighbours(from, bundle, kind) {
|
|
1087
|
+
switch (kind) {
|
|
1088
|
+
// A link whose target is not in the bundle is legal per compose.ts —
|
|
1089
|
+
// records are routinely written before the ones they point at exist — so
|
|
1090
|
+
// missing targets are skipped, never an error.
|
|
1091
|
+
case "body-link": {
|
|
1092
|
+
const targets = new Set(
|
|
1093
|
+
[...from.body.matchAll(BODY_LINK_TARGET)].map((match) => match[1])
|
|
1094
|
+
);
|
|
1095
|
+
if (!targets.size) return [];
|
|
1096
|
+
return bundle.filter(
|
|
1097
|
+
(candidate) => candidate.conceptId !== from.conceptId && targets.has(candidate.conceptId)
|
|
1098
|
+
);
|
|
1099
|
+
}
|
|
1100
|
+
// Both directions and both pointers: `supersede()` writes the pair, but a
|
|
1101
|
+
// hand-edit can leave one side behind, and a walk trusting one pointer
|
|
1102
|
+
// would miss a replacement the bundle openly declares.
|
|
1103
|
+
case "supersession":
|
|
1104
|
+
return bundle.filter(
|
|
1105
|
+
(candidate) => candidate.conceptId !== from.conceptId && (candidate.conceptId === from.frontmatter.strauss_superseded_by || from.frontmatter.strauss_supersedes?.includes(
|
|
1106
|
+
candidate.conceptId
|
|
1107
|
+
) || candidate.frontmatter.strauss_superseded_by === from.conceptId || candidate.frontmatter.strauss_supersedes?.includes(from.conceptId))
|
|
1108
|
+
);
|
|
1109
|
+
// The edge that answers "why is this code shaped this way": every record
|
|
1110
|
+
// attached to the same file or symbol, whatever its standing.
|
|
1111
|
+
case "anchor": {
|
|
1112
|
+
const mine = from.frontmatter.strauss_anchors ?? [];
|
|
1113
|
+
if (!mine.length) return [];
|
|
1114
|
+
return bundle.filter(
|
|
1115
|
+
(candidate) => candidate.conceptId !== from.conceptId && (candidate.frontmatter.strauss_anchors ?? []).some(
|
|
1116
|
+
(theirs) => mine.some((ours) => anchorsTouch(ours, theirs))
|
|
1117
|
+
)
|
|
1118
|
+
);
|
|
1119
|
+
}
|
|
1120
|
+
case "source": {
|
|
1121
|
+
const mine = new Set((from.frontmatter.sources ?? []).map((s) => s.id));
|
|
1122
|
+
if (!mine.size) return [];
|
|
1123
|
+
return bundle.filter(
|
|
1124
|
+
(candidate) => candidate.conceptId !== from.conceptId && (candidate.frontmatter.sources ?? []).some(
|
|
1125
|
+
(source) => mine.has(source.id)
|
|
1126
|
+
)
|
|
1127
|
+
);
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
function anchorsTouch(left, right) {
|
|
1132
|
+
if (left.file !== right.file) return false;
|
|
1133
|
+
if (!left.symbol || !right.symbol) return true;
|
|
1134
|
+
return left.symbol === right.symbol;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
// src/validate.ts
|
|
1138
|
+
function validateBundle(records) {
|
|
1139
|
+
const byId = new Map(records.map((record) => [record.conceptId, record]));
|
|
1140
|
+
const problems = [];
|
|
1141
|
+
const report = (check, conceptId2, note) => problems.push({ check, conceptId: conceptId2, note });
|
|
1142
|
+
for (const record of records) {
|
|
1143
|
+
const { conceptId: conceptId2, frontmatter: fm } = record;
|
|
1144
|
+
if (!isKbRecordType(fm.type)) {
|
|
1145
|
+
report("type", conceptId2, `unrecognised type "${fm.type}"`);
|
|
1146
|
+
}
|
|
1147
|
+
if (fm.strauss_status === "superseded") {
|
|
1148
|
+
const by = fm.strauss_superseded_by;
|
|
1149
|
+
if (!by) {
|
|
1150
|
+
report("superseded_by", conceptId2, "superseded with no replacement");
|
|
1151
|
+
} else if (!byId.has(by)) {
|
|
1152
|
+
report("superseded_by", conceptId2, `replacement ${by} is missing`);
|
|
1153
|
+
} else if (!byId.get(by)?.frontmatter.strauss_supersedes?.includes(conceptId2)) {
|
|
1154
|
+
report("backlink", by, `does not list ${conceptId2} in supersedes`);
|
|
1155
|
+
}
|
|
1156
|
+
}
|
|
1157
|
+
for (const old of fm.strauss_supersedes ?? []) {
|
|
1158
|
+
const previous = byId.get(old);
|
|
1159
|
+
if (!previous) {
|
|
1160
|
+
report("supersedes", conceptId2, `target ${old} is missing`);
|
|
1161
|
+
} else if (previous.frontmatter.strauss_status !== "superseded") {
|
|
1162
|
+
report("supersedes", conceptId2, `${old} is not marked superseded`);
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
if (fm.strauss_assumption && fm.sources?.length) {
|
|
1166
|
+
report("assumption", conceptId2, "marked an assumption but cites sources");
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
return problems;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
// src/doctor.ts
|
|
1173
|
+
var DEFAULT_EXPIRING_DAYS = 30;
|
|
1174
|
+
var DEFAULT_UNVERIFIED_DAYS = 90;
|
|
1175
|
+
var DEFAULT_AGING_DAYS = 90;
|
|
1176
|
+
var CHECK_HEADLINES = {
|
|
1177
|
+
expired: "past its stale_after date",
|
|
1178
|
+
expiring: "stale_after falls within the window",
|
|
1179
|
+
unverified: "nobody has ever confirmed it, and it is old enough to matter",
|
|
1180
|
+
aging: "still open or still proposed long after it was written",
|
|
1181
|
+
orphaned: "no other record links to it",
|
|
1182
|
+
"broken-supersession": "the supersession pointers do not resolve",
|
|
1183
|
+
"superseded-but-cited": "a live record's body links to one that no longer holds"
|
|
1184
|
+
};
|
|
1185
|
+
var DAY_MS = 864e5;
|
|
1186
|
+
function doctor(bundle, options = {}) {
|
|
1187
|
+
const thresholds = {
|
|
1188
|
+
expiringDays: options.expiringDays ?? DEFAULT_EXPIRING_DAYS,
|
|
1189
|
+
unverifiedDays: options.unverifiedDays ?? DEFAULT_UNVERIFIED_DAYS,
|
|
1190
|
+
agingDays: options.agingDays ?? DEFAULT_AGING_DAYS
|
|
1191
|
+
};
|
|
1192
|
+
const now = options.now ?? /* @__PURE__ */ new Date();
|
|
1193
|
+
const adjudicated = adjudicate(bundle, bundle, now);
|
|
1194
|
+
const standings = new Map(
|
|
1195
|
+
adjudicated.map((hit) => [hit.record.conceptId, hit.standing])
|
|
1196
|
+
);
|
|
1197
|
+
const inForce = adjudicated.filter(
|
|
1198
|
+
(hit) => hit.standing !== "superseded" && hit.standing !== "rejected"
|
|
1199
|
+
);
|
|
1200
|
+
const groups = [
|
|
1201
|
+
group("expired", expired(inForce, now)),
|
|
1202
|
+
group("expiring", expiring(inForce, now, thresholds.expiringDays)),
|
|
1203
|
+
group("unverified", unverified(inForce, now, thresholds.unverifiedDays)),
|
|
1204
|
+
group("aging", aging(inForce, now, thresholds.agingDays)),
|
|
1205
|
+
group("orphaned", orphaned(bundle)),
|
|
1206
|
+
group("broken-supersession", brokenSupersession(bundle, adjudicated)),
|
|
1207
|
+
group("superseded-but-cited", supersededButCited(bundle, standings))
|
|
1208
|
+
];
|
|
1209
|
+
const counts = Object.fromEntries(
|
|
1210
|
+
groups.map((entry) => [entry.check, entry.count])
|
|
1211
|
+
);
|
|
1212
|
+
const findingCount = groups.reduce((total, entry) => total + entry.count, 0);
|
|
1213
|
+
return {
|
|
1214
|
+
recordCount: bundle.length,
|
|
1215
|
+
thresholds,
|
|
1216
|
+
counts,
|
|
1217
|
+
groups,
|
|
1218
|
+
findingCount,
|
|
1219
|
+
healthy: findingCount === 0
|
|
1220
|
+
};
|
|
1221
|
+
}
|
|
1222
|
+
function group(check, findings) {
|
|
1223
|
+
return {
|
|
1224
|
+
check,
|
|
1225
|
+
headline: CHECK_HEADLINES[check],
|
|
1226
|
+
count: findings.length,
|
|
1227
|
+
findings
|
|
1228
|
+
};
|
|
1229
|
+
}
|
|
1230
|
+
function expired(hits, now) {
|
|
1231
|
+
const findings = [];
|
|
1232
|
+
for (const hit of hits) {
|
|
1233
|
+
const raw = hit.record.frontmatter.stale_after;
|
|
1234
|
+
if (!raw) continue;
|
|
1235
|
+
const at = Date.parse(raw);
|
|
1236
|
+
if (Number.isNaN(at)) {
|
|
1237
|
+
findings.push(
|
|
1238
|
+
finding(hit.record, `stale_after "${raw}" is not a readable date`)
|
|
1239
|
+
);
|
|
1240
|
+
continue;
|
|
1241
|
+
}
|
|
1242
|
+
if (at < now.getTime()) {
|
|
1243
|
+
findings.push(
|
|
1244
|
+
finding(
|
|
1245
|
+
hit.record,
|
|
1246
|
+
`stale since ${raw} (${daysBetween(at, now.getTime())} days ago)`
|
|
1247
|
+
)
|
|
1248
|
+
);
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
return findings;
|
|
1252
|
+
}
|
|
1253
|
+
function expiring(hits, now, withinDays) {
|
|
1254
|
+
const horizon = now.getTime() + withinDays * DAY_MS;
|
|
1255
|
+
const findings = [];
|
|
1256
|
+
for (const hit of hits) {
|
|
1257
|
+
const raw = hit.record.frontmatter.stale_after;
|
|
1258
|
+
if (!raw) continue;
|
|
1259
|
+
const at = Date.parse(raw);
|
|
1260
|
+
if (Number.isNaN(at) || at < now.getTime() || at > horizon) continue;
|
|
1261
|
+
findings.push(
|
|
1262
|
+
finding(
|
|
1263
|
+
hit.record,
|
|
1264
|
+
`goes stale ${raw} (in ${daysBetween(now.getTime(), at)} days)`
|
|
1265
|
+
)
|
|
1266
|
+
);
|
|
1267
|
+
}
|
|
1268
|
+
return findings;
|
|
1269
|
+
}
|
|
1270
|
+
function unverified(hits, now, olderThanDays) {
|
|
1271
|
+
const findings = [];
|
|
1272
|
+
for (const hit of hits) {
|
|
1273
|
+
if (hit.record.frontmatter.verified?.length) continue;
|
|
1274
|
+
const age = ageInDays(hit.record, now);
|
|
1275
|
+
if (age === null || age <= olderThanDays) continue;
|
|
1276
|
+
findings.push(
|
|
1277
|
+
finding(hit.record, `never verified, written ${age} days ago`)
|
|
1278
|
+
);
|
|
1279
|
+
}
|
|
1280
|
+
return findings;
|
|
1281
|
+
}
|
|
1282
|
+
function aging(hits, now, olderThanDays) {
|
|
1283
|
+
const findings = [];
|
|
1284
|
+
for (const hit of hits) {
|
|
1285
|
+
const status = hit.record.frontmatter.strauss_status;
|
|
1286
|
+
if (status !== "open" && status !== "proposed") continue;
|
|
1287
|
+
const age = ageInDays(hit.record, now);
|
|
1288
|
+
if (age === null || age <= olderThanDays) continue;
|
|
1289
|
+
findings.push(
|
|
1290
|
+
finding(
|
|
1291
|
+
hit.record,
|
|
1292
|
+
status === "open" ? `open for ${age} days` : `proposed ${age} days ago and still unsettled`
|
|
1293
|
+
)
|
|
1294
|
+
);
|
|
1295
|
+
}
|
|
1296
|
+
return findings.sort(
|
|
1297
|
+
(left, right) => left.conceptId.localeCompare(right.conceptId)
|
|
1298
|
+
);
|
|
1299
|
+
}
|
|
1300
|
+
function orphaned(bundle) {
|
|
1301
|
+
const present = new Set(bundle.map((record) => record.conceptId));
|
|
1302
|
+
const referenced = /* @__PURE__ */ new Set();
|
|
1303
|
+
for (const record of bundle) {
|
|
1304
|
+
for (const neighbour of edgeNeighbours(record, bundle, "body-link")) {
|
|
1305
|
+
referenced.add(neighbour.conceptId);
|
|
1306
|
+
}
|
|
1307
|
+
for (const replaced of record.frontmatter.strauss_supersedes ?? []) {
|
|
1308
|
+
referenced.add(replaced);
|
|
1309
|
+
}
|
|
1310
|
+
const replacement = record.frontmatter.strauss_superseded_by;
|
|
1311
|
+
if (replacement && present.has(replacement)) {
|
|
1312
|
+
referenced.add(record.conceptId);
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
return bundle.filter((record) => !referenced.has(record.conceptId)).map((record) => finding(record, "no other record links to it"));
|
|
1316
|
+
}
|
|
1317
|
+
var SUPERSESSION_CHECKS = /* @__PURE__ */ new Set([
|
|
1318
|
+
"superseded_by",
|
|
1319
|
+
"supersedes",
|
|
1320
|
+
"backlink"
|
|
1321
|
+
]);
|
|
1322
|
+
function brokenSupersession(bundle, adjudicated) {
|
|
1323
|
+
const byId = new Map(bundle.map((record) => [record.conceptId, record]));
|
|
1324
|
+
const findings = [];
|
|
1325
|
+
const seen = /* @__PURE__ */ new Set();
|
|
1326
|
+
const add = (record, note) => {
|
|
1327
|
+
const key = `${record.conceptId}\0${note}`;
|
|
1328
|
+
if (seen.has(key)) return;
|
|
1329
|
+
seen.add(key);
|
|
1330
|
+
findings.push(finding(record, note));
|
|
1331
|
+
};
|
|
1332
|
+
for (const problem of validateBundle(bundle)) {
|
|
1333
|
+
if (!SUPERSESSION_CHECKS.has(problem.check)) continue;
|
|
1334
|
+
const record = byId.get(problem.conceptId);
|
|
1335
|
+
if (record) add(record, problem.note);
|
|
1336
|
+
}
|
|
1337
|
+
for (const record of bundle) {
|
|
1338
|
+
const replacement = record.frontmatter.strauss_superseded_by;
|
|
1339
|
+
if (!replacement) continue;
|
|
1340
|
+
if (!byId.has(replacement)) {
|
|
1341
|
+
add(record, `replacement ${replacement} is missing`);
|
|
1342
|
+
} else if (record.frontmatter.strauss_status !== "superseded") {
|
|
1343
|
+
add(
|
|
1344
|
+
record,
|
|
1345
|
+
`names ${replacement} as its replacement but is not marked superseded`
|
|
1346
|
+
);
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
for (const hit of adjudicated) {
|
|
1350
|
+
for (const warning of hit.warnings) {
|
|
1351
|
+
if (warning.kind === "broken-chain") {
|
|
1352
|
+
add(hit.record, `replacement ${warning.missing} is missing`);
|
|
1353
|
+
} else if (warning.kind === "chain-cycle") {
|
|
1354
|
+
add(
|
|
1355
|
+
hit.record,
|
|
1356
|
+
`supersession chain cycles through ${warning.through.join(" \u2192 ")}`
|
|
1357
|
+
);
|
|
1358
|
+
} else if (warning.kind === "forked-chain") {
|
|
1359
|
+
add(
|
|
1360
|
+
hit.record,
|
|
1361
|
+
`two records claim to replace it: ${warning.heads.join(", ")}`
|
|
1362
|
+
);
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
return findings.sort(
|
|
1367
|
+
(left, right) => left.conceptId.localeCompare(right.conceptId)
|
|
1368
|
+
);
|
|
1369
|
+
}
|
|
1370
|
+
function supersededButCited(bundle, standings) {
|
|
1371
|
+
const byId = new Map(bundle.map((record) => [record.conceptId, record]));
|
|
1372
|
+
const findings = [];
|
|
1373
|
+
for (const record of bundle) {
|
|
1374
|
+
const standing = standings.get(record.conceptId);
|
|
1375
|
+
if (standing === "superseded" || standing === "rejected") continue;
|
|
1376
|
+
for (const target of edgeNeighbours(record, bundle, "body-link")) {
|
|
1377
|
+
const targetStanding = standings.get(target.conceptId);
|
|
1378
|
+
if (targetStanding !== "superseded" && targetStanding !== "rejected") {
|
|
1379
|
+
continue;
|
|
1380
|
+
}
|
|
1381
|
+
if (replaces(record, target)) continue;
|
|
1382
|
+
const replacement = target.frontmatter.strauss_superseded_by;
|
|
1383
|
+
findings.push(
|
|
1384
|
+
finding(
|
|
1385
|
+
record,
|
|
1386
|
+
`cites ${targetStanding} ${target.conceptId}${targetStanding === "superseded" && replacement && byId.has(replacement) ? ` \u2014 replaced by ${replacement}` : ""}`
|
|
1387
|
+
)
|
|
1388
|
+
);
|
|
1389
|
+
}
|
|
1390
|
+
}
|
|
1391
|
+
return findings;
|
|
1392
|
+
}
|
|
1393
|
+
function replaces(later, earlier) {
|
|
1394
|
+
return (later.frontmatter.strauss_supersedes ?? []).includes(earlier.conceptId) || earlier.frontmatter.strauss_superseded_by === later.conceptId;
|
|
1395
|
+
}
|
|
1396
|
+
function finding(record, note) {
|
|
1397
|
+
return {
|
|
1398
|
+
conceptId: record.conceptId,
|
|
1399
|
+
title: record.frontmatter.title ?? null,
|
|
1400
|
+
status: record.frontmatter.strauss_status,
|
|
1401
|
+
note
|
|
1402
|
+
};
|
|
1403
|
+
}
|
|
1404
|
+
function daysBetween(from, to) {
|
|
1405
|
+
return Math.max(0, Math.floor((to - from) / DAY_MS));
|
|
1406
|
+
}
|
|
1407
|
+
function ageInDays(record, now) {
|
|
1408
|
+
const at = record.frontmatter.generated?.at;
|
|
1409
|
+
if (!at) return null;
|
|
1410
|
+
const written = Date.parse(at);
|
|
1411
|
+
if (Number.isNaN(written)) return null;
|
|
1412
|
+
return daysBetween(written, now.getTime());
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
// src/commands/doctor.ts
|
|
1416
|
+
var days = (what, fallback) => import_zod8.z.number().int().positive().optional().describe(`${what} Defaults to ${fallback}.`);
|
|
1417
|
+
var doctorCommand = define({
|
|
1418
|
+
name: "doctor",
|
|
1419
|
+
tool: "kb_doctor",
|
|
1420
|
+
usage: "doctor [--expiring-days N] [--unverified-days N] [--aging-days N] [--strict]",
|
|
1421
|
+
description: "A health sweep over a whole base: what the calendar has already retired, what nobody ever confirmed, what has been open or proposed long enough that the status is now the answer, and what the graph has dropped on the floor. Read-only \u2014 it never writes, never supersedes, and never re-dates anything; every finding names a record for a person to repair. Seven checks, grouped and counted: expired (past `stale_after`), expiring (inside the window), unverified (an empty `verified[]` on a record old enough to matter), aging (still `open` or `proposed`), orphaned (no other record links to it), broken supersession (a chain that does not resolve), and superseded-but-cited (a live record whose body links to a record that no longer holds). Every group is reported even when empty, because a check that found nothing and a check that never ran look identical in a report that only lists findings.\n\nThis is the question no reader thinks to ask, which is why it needs a command: decay is invisible from inside a single record \u2014 a stale one reads exactly like a live one, and a question nobody answered reads exactly like one nobody asked. Reach for it when picking up a base someone else kept, before trusting a base you have not touched in months, or on a schedule; kb_validate is the narrower neighbour, checking only whether pointers between records agree.",
|
|
1422
|
+
input: import_zod8.z.object({
|
|
1423
|
+
bundlePath,
|
|
1424
|
+
expiringDays: days(
|
|
1425
|
+
"How far ahead `expiring` looks, in days.",
|
|
1426
|
+
DEFAULT_EXPIRING_DAYS
|
|
1427
|
+
),
|
|
1428
|
+
unverifiedDays: days(
|
|
1429
|
+
"How old an unconfirmed record must be before `unverified` reports it, in days.",
|
|
1430
|
+
DEFAULT_UNVERIFIED_DAYS
|
|
1431
|
+
),
|
|
1432
|
+
agingDays: days(
|
|
1433
|
+
"How long a record may stay `open` or `proposed` before `aging` reports it, in days.",
|
|
1434
|
+
DEFAULT_AGING_DAYS
|
|
1435
|
+
),
|
|
1436
|
+
strict: import_zod8.z.boolean().optional().describe(
|
|
1437
|
+
"Turn an expired record into a non-zero exit for the CLI. No effect on the report itself."
|
|
1438
|
+
)
|
|
1439
|
+
}),
|
|
1440
|
+
// Presence, not truthiness: `--expiring-days ""` is a caller who meant
|
|
1441
|
+
// something and mistyped it, and a falsy test would answer by quietly
|
|
1442
|
+
// sweeping at the default. Passed through as given, the schema rejects it
|
|
1443
|
+
// and says which field.
|
|
1444
|
+
fromArgv: (argv, path) => {
|
|
1445
|
+
const expiring2 = argvFlag(argv, "--expiring-days");
|
|
1446
|
+
const unverified2 = argvFlag(argv, "--unverified-days");
|
|
1447
|
+
const agingDays = argvFlag(argv, "--aging-days");
|
|
1448
|
+
return {
|
|
1449
|
+
bundlePath: path,
|
|
1450
|
+
...expiring2 !== void 0 ? { expiringDays: Number(expiring2) } : {},
|
|
1451
|
+
...unverified2 !== void 0 ? { unverifiedDays: Number(unverified2) } : {},
|
|
1452
|
+
...agingDays !== void 0 ? { agingDays: Number(agingDays) } : {},
|
|
1453
|
+
...argv.includes("--strict") ? { strict: true } : {}
|
|
1454
|
+
};
|
|
1455
|
+
},
|
|
1456
|
+
run: async ({ store, now }, { bundlePath: path, expiringDays, unverifiedDays, agingDays }) => {
|
|
1457
|
+
const checkedAt = now();
|
|
1458
|
+
const report = doctor(await store.list(path), {
|
|
1459
|
+
...expiringDays !== void 0 ? { expiringDays } : {},
|
|
1460
|
+
...unverifiedDays !== void 0 ? { unverifiedDays } : {},
|
|
1461
|
+
...agingDays !== void 0 ? { agingDays } : {},
|
|
1462
|
+
now: new Date(checkedAt)
|
|
1463
|
+
});
|
|
1464
|
+
return { bundlePath: path, checkedAt, ...report };
|
|
1465
|
+
},
|
|
1466
|
+
render: (result) => render(result),
|
|
1467
|
+
// Only expiry, and only under --strict. The other six checks report debt a
|
|
1468
|
+
// reader decides about; an expired record is the base asserting something it
|
|
1469
|
+
// already said it would stop standing behind, which is the one finding a
|
|
1470
|
+
// pipeline can act on without a judgment call.
|
|
1471
|
+
failsWhen: (result, input) => input.strict === true && result.counts.expired > 0
|
|
1472
|
+
});
|
|
1473
|
+
function render(result) {
|
|
1474
|
+
const { thresholds } = result;
|
|
1475
|
+
const lines = [
|
|
1476
|
+
`# KB Doctor \u2014 ${result.bundlePath}`,
|
|
1477
|
+
`records: ${result.recordCount}`,
|
|
1478
|
+
`thresholds: expiring within ${thresholds.expiringDays}d, unverified over ${thresholds.unverifiedDays}d, aging over ${thresholds.agingDays}d`,
|
|
1479
|
+
`checked: ${result.checkedAt}`,
|
|
1480
|
+
""
|
|
1481
|
+
];
|
|
1482
|
+
const width = Math.max(...result.groups.map((group2) => group2.check.length));
|
|
1483
|
+
for (const group2 of result.groups) {
|
|
1484
|
+
lines.push(
|
|
1485
|
+
` ${group2.check.padEnd(width)} ${String(group2.count).padStart(3)} ${group2.headline}`
|
|
1486
|
+
);
|
|
1487
|
+
}
|
|
1488
|
+
for (const group2 of result.groups) {
|
|
1489
|
+
if (!group2.count) continue;
|
|
1490
|
+
lines.push("", `## ${group2.check} (${group2.count})`);
|
|
1491
|
+
for (const found of group2.findings) {
|
|
1492
|
+
lines.push(
|
|
1493
|
+
`- ${found.conceptId}${found.title ? ` \u2014 ${found.title}` : ""}: ${found.note}`
|
|
1494
|
+
);
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1497
|
+
lines.push(
|
|
1498
|
+
"",
|
|
1499
|
+
result.healthy ? "Nothing to repair." : `${result.findingCount} finding${result.findingCount === 1 ? "" : "s"} across ${result.groups.filter((group2) => group2.count).length} of ${result.groups.length} checks.`
|
|
1500
|
+
);
|
|
1501
|
+
return lines.join("\n");
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
// src/commands/list.ts
|
|
1505
|
+
var import_zod9 = require("zod");
|
|
1060
1506
|
var listCommand = define({
|
|
1061
1507
|
name: "list",
|
|
1062
1508
|
tool: "kb_list",
|
|
1063
1509
|
usage: "list [type]",
|
|
1064
1510
|
description: "Every record, optionally narrowed to one type. Use kb_query when you have a question; this is for enumerating.",
|
|
1065
|
-
input:
|
|
1511
|
+
input: import_zod9.z.object({ bundlePath, type: import_zod9.z.enum(KB_RECORD_TYPES).optional() }),
|
|
1066
1512
|
fromArgv: (argv, path) => ({ bundlePath: path, type: argv[1] }),
|
|
1067
1513
|
run: async ({ store }, { bundlePath: path, type }) => (await store.list(path, type)).map((record) => ({
|
|
1068
1514
|
conceptId: record.conceptId,
|
|
@@ -1074,17 +1520,17 @@ var listCommand = define({
|
|
|
1074
1520
|
});
|
|
1075
1521
|
|
|
1076
1522
|
// src/commands/load.ts
|
|
1077
|
-
var
|
|
1523
|
+
var import_zod10 = require("zod");
|
|
1078
1524
|
var loadCommand = define({
|
|
1079
1525
|
name: "load",
|
|
1080
1526
|
tool: "kb_load",
|
|
1081
1527
|
usage: "load [type] [--budget N | --all]",
|
|
1082
1528
|
description: "Load the whole knowledge base at once, each record with its standing. Prefer this over searching: these bases run to a few thousand tokens, and a reader holding all of it has perfect recall and knows why it is asking, which no ranker does. Superseded records arrive under `superseded` as name, replacement and date only \u2014 their bodies no longer hold, and reading one later in a long session is the mistake this prevents; pass the id to kb_trace when you need the history. Rejected and unresolved records arrive whole: what was turned down, and what is still open, is the part a diff cannot show you. Refuses with a count rather than truncating when the base is too large \u2014 a truncated base is indistinguishable from a complete one, and would have you conclude something was never decided from a slice you did not know was a slice. Call at the point of use, not once per session: a base loaded early is summarised away by compaction, so if the visible context holds no records from this base and the question at hand is one it might govern, load before answering \u2014 never conclude nothing was decided from a context with no KB content in it. This tool (with kb_query and kb_trace) is the only supported way to read a base; a raw file read bypasses supersession resolution and returns replaced records as if current.\n\nThat refusal is the default guardrail, meant for an agent that would otherwise burn its whole context on one call. `all` bypasses it and loads everything regardless of size: a deliberate operator with the budget to spend, not something to reach for automatically. It is mutually exclusive with `budgetTokens`. When the reader does not need everything, kb_query or a narrower `type` filter is the better fit than either.",
|
|
1083
|
-
input:
|
|
1529
|
+
input: import_zod10.z.object({
|
|
1084
1530
|
bundlePath,
|
|
1085
|
-
type:
|
|
1086
|
-
budgetTokens:
|
|
1087
|
-
all:
|
|
1531
|
+
type: import_zod10.z.enum(KB_RECORD_TYPES).optional(),
|
|
1532
|
+
budgetTokens: import_zod10.z.number().int().positive().optional().describe("Approximate token ceiling. Defaults to 25000."),
|
|
1533
|
+
all: import_zod10.z.boolean().optional().describe(
|
|
1088
1534
|
"Load the entire base regardless of size. The deliberate-operator escape hatch; mutually exclusive with budgetTokens."
|
|
1089
1535
|
)
|
|
1090
1536
|
}).refine((value) => !(value.all && value.budgetTokens !== void 0), {
|
|
@@ -1122,25 +1568,25 @@ var loadCommand = define({
|
|
|
1122
1568
|
});
|
|
1123
1569
|
|
|
1124
1570
|
// src/commands/log.ts
|
|
1125
|
-
var
|
|
1571
|
+
var import_zod11 = require("zod");
|
|
1126
1572
|
var logCommand = define({
|
|
1127
1573
|
name: "log",
|
|
1128
1574
|
tool: "kb_log",
|
|
1129
1575
|
usage: "log",
|
|
1130
1576
|
description: "What touched what, and when. The only artifact here that cannot be reconstructed from the records, so malformed lines are reported rather than repaired.",
|
|
1131
|
-
input:
|
|
1577
|
+
input: import_zod11.z.object({ bundlePath }),
|
|
1132
1578
|
fromArgv: (_argv, path) => ({ bundlePath: path }),
|
|
1133
1579
|
run: ({ store }, { bundlePath: path }) => store.readLog(path)
|
|
1134
1580
|
});
|
|
1135
1581
|
|
|
1136
1582
|
// src/commands/no-decision.ts
|
|
1137
|
-
var
|
|
1583
|
+
var import_zod12 = require("zod");
|
|
1138
1584
|
var noDecisionCommand = define({
|
|
1139
1585
|
name: "no-decision",
|
|
1140
1586
|
tool: "kb_no_decision",
|
|
1141
1587
|
usage: "no-decision <reason...>",
|
|
1142
1588
|
description: 'Claim in one sentence that there was nothing to decide. Gating on "did you write a decision?" rewards writing a junk one; gating on "did you answer?" does not, so silence has to be expressible. Idempotent \u2014 restating it is not a collision.',
|
|
1143
|
-
input:
|
|
1589
|
+
input: import_zod12.z.object({ bundlePath, reason: import_zod12.z.string().min(1) }),
|
|
1144
1590
|
fromArgv: (argv, path) => ({
|
|
1145
1591
|
bundlePath: path,
|
|
1146
1592
|
reason: argv.slice(1).join(" ").trim()
|
|
@@ -1157,20 +1603,20 @@ var noDecisionCommand = define({
|
|
|
1157
1603
|
});
|
|
1158
1604
|
|
|
1159
1605
|
// src/commands/pack.ts
|
|
1160
|
-
var
|
|
1606
|
+
var import_zod13 = require("zod");
|
|
1161
1607
|
var packCommand = define({
|
|
1162
1608
|
name: "pack",
|
|
1163
1609
|
tool: "kb_pack",
|
|
1164
1610
|
usage: "pack <conceptId> [--hops N] [--max-nodes N] [--budget N]",
|
|
1165
1611
|
description: "The bounded neighbourhood around one record: everything within `hops` of the root, ranked and cut to `maxNodes`, with every cut record named under Excluded \u2014 a named gap is knowable, a silent one is not. Prefer this over kb_load when the base is too large to hold whole and the work centres on one record; prefer it over kb_query when the question needs the governed neighbourhood \u2014 what was settled and what binds near this record \u2014 rather than a lookup by wording. Superseded records arrive as name, replacement and date stubs exactly as kb_load emits them: their bodies no longer hold, and kb_trace has the history. Refuses outright rather than truncating when the pack would exceed its token budget \u2014 a partial pack is indistinguishable from a complete one \u2014 reporting the record count and every already-cut id so the caller can lower hops or maxNodes, or raise the budget. The header carries the bundle, root, budget and a timestamp; everything below the header is byte-identical across runs over an unchanged base, so two packs can be diffed and a changed byte means changed knowledge. This tool (with kb_load, kb_query and kb_trace) is the only supported way to read a base; a raw file read bypasses supersession resolution and returns replaced records as if current.",
|
|
1166
|
-
input:
|
|
1612
|
+
input: import_zod13.z.object({
|
|
1167
1613
|
bundlePath,
|
|
1168
1614
|
conceptId,
|
|
1169
|
-
hops:
|
|
1170
|
-
maxNodes:
|
|
1615
|
+
hops: import_zod13.z.number().int().positive().optional().describe("How far from the root the walk may reach. Defaults to 2."),
|
|
1616
|
+
maxNodes: import_zod13.z.number().int().positive().optional().describe(
|
|
1171
1617
|
"How many records the pack may hold, root included. Defaults to 20."
|
|
1172
1618
|
),
|
|
1173
|
-
budgetTokens:
|
|
1619
|
+
budgetTokens: import_zod13.z.number().int().positive().optional().describe(
|
|
1174
1620
|
"Approximate token ceiling over what is actually emitted. Defaults to 25000."
|
|
1175
1621
|
)
|
|
1176
1622
|
}),
|
|
@@ -1192,10 +1638,10 @@ var packCommand = define({
|
|
|
1192
1638
|
...maxNodes !== void 0 ? { maxNodes } : {},
|
|
1193
1639
|
...budgetTokens !== void 0 ? { budgetTokens } : {}
|
|
1194
1640
|
});
|
|
1195
|
-
return
|
|
1641
|
+
return render2(result, path, now());
|
|
1196
1642
|
}
|
|
1197
1643
|
});
|
|
1198
|
-
function
|
|
1644
|
+
function render2(result, bundle, at) {
|
|
1199
1645
|
const lines = [
|
|
1200
1646
|
`# KB Pack \u2014 ${result.root}`,
|
|
1201
1647
|
`bundle: ${bundle}`,
|
|
@@ -1257,22 +1703,22 @@ function warningLabel(warning) {
|
|
|
1257
1703
|
}
|
|
1258
1704
|
|
|
1259
1705
|
// src/commands/pin.ts
|
|
1260
|
-
var
|
|
1706
|
+
var import_zod14 = require("zod");
|
|
1261
1707
|
var pinCommand = define({
|
|
1262
1708
|
name: "pin",
|
|
1263
1709
|
tool: "kb_pin",
|
|
1264
1710
|
usage: "pin [bundle-path] [--mode full|index] [--profiles a,b] [--local|--user] [--frozen|--unfreeze]",
|
|
1265
1711
|
description: "Pin a base into a workspace pin manifest, so `context` surfaces it at every context birth. Three layers, nearest wins: the committed project manifest (.strauss/kb-pins.json, the default), `--local` (.strauss/kb-pins.local.json, personal and gitignored), and `--user` (~/.strauss/kb-pins.json, every workspace). Idempotent \u2014 re-pinning changes nothing unless --mode, --profiles, or --frozen/--unfreeze are given, which update just those fields. `--mode full` preloads the whole base into the block regardless of the full-under threshold; `--mode index` never upgrades. `--profiles` scopes the pin to named context profiles. `--frozen` marks the base concluded: write commands against it refuse and `context` labels it read-only. A path with no records yet succeeds with a warning; bases are routinely pinned before they are populated. Pins are workspace state: the pinned base itself is never touched.",
|
|
1266
|
-
input:
|
|
1712
|
+
input: import_zod14.z.object({
|
|
1267
1713
|
bundlePath,
|
|
1268
|
-
mode:
|
|
1714
|
+
mode: import_zod14.z.enum(["full", "index"]).optional().describe(
|
|
1269
1715
|
"full: always emit this base's records whole (still under the block budget); index: never upgrade. Absent: the profile's full-under threshold decides."
|
|
1270
1716
|
),
|
|
1271
|
-
profiles:
|
|
1272
|
-
layer:
|
|
1717
|
+
profiles: import_zod14.z.array(import_zod14.z.string()).optional().describe("Context profiles this pin surfaces in. Absent: all of them."),
|
|
1718
|
+
layer: import_zod14.z.enum(["project", "local", "user"]).optional().describe(
|
|
1273
1719
|
"Which manifest to write: project (committed, default), local (personal, gitignored), user (~/.strauss, every workspace)."
|
|
1274
1720
|
),
|
|
1275
|
-
frozen:
|
|
1721
|
+
frozen: import_zod14.z.boolean().optional().describe(
|
|
1276
1722
|
"true: the base is concluded \u2014 writes against it refuse while pinned. false: lift a freeze."
|
|
1277
1723
|
)
|
|
1278
1724
|
}),
|
|
@@ -1301,29 +1747,29 @@ var pinCommand = define({
|
|
|
1301
1747
|
});
|
|
1302
1748
|
|
|
1303
1749
|
// src/commands/pins.ts
|
|
1304
|
-
var
|
|
1750
|
+
var import_zod15 = require("zod");
|
|
1305
1751
|
var pinsCommand = define({
|
|
1306
1752
|
name: "pins",
|
|
1307
1753
|
tool: "kb_pins",
|
|
1308
1754
|
usage: "pins",
|
|
1309
1755
|
description: "Every pinned base across the manifest layers, each with its layer and whether it currently resolves to readable records. Reads the workspace manifests rather than any one base, like kb_context.",
|
|
1310
|
-
input:
|
|
1756
|
+
input: import_zod15.z.object({}),
|
|
1311
1757
|
fromArgv: () => ({}),
|
|
1312
1758
|
run: ({ store }) => listPins(store, process.cwd())
|
|
1313
1759
|
});
|
|
1314
1760
|
|
|
1315
1761
|
// src/commands/query.ts
|
|
1316
|
-
var
|
|
1762
|
+
var import_zod16 = require("zod");
|
|
1317
1763
|
var queryCommand = define({
|
|
1318
1764
|
name: "query",
|
|
1319
1765
|
tool: "kb_query",
|
|
1320
1766
|
usage: "query <text...>",
|
|
1321
1767
|
description: "Search and return each match with its standing. Results are flagged, never filtered: a superseded record comes back alongside whatever replaced it, and a rejected one is marked as something explicitly not adopted. Prefer kb_load when the base fits its budget: on this package's measurements, a reader holding the whole base answered eight of nine questions whose wording appears in no record, where embedding search answered four. Never read record files directly \u2014 this tool (with kb_load and kb_trace) is the only supported way to read a base; a file read bypasses supersession resolution and returns replaced records as if current.",
|
|
1322
|
-
input:
|
|
1768
|
+
input: import_zod16.z.object({
|
|
1323
1769
|
bundlePath,
|
|
1324
|
-
text:
|
|
1325
|
-
type:
|
|
1326
|
-
includeNonCurrent:
|
|
1770
|
+
text: import_zod16.z.string().optional(),
|
|
1771
|
+
type: import_zod16.z.enum(KB_RECORD_TYPES).optional(),
|
|
1772
|
+
includeNonCurrent: import_zod16.z.boolean().optional()
|
|
1327
1773
|
}),
|
|
1328
1774
|
fromArgv: (argv, path) => ({
|
|
1329
1775
|
bundlePath: path,
|
|
@@ -1345,33 +1791,41 @@ var queryCommand = define({
|
|
|
1345
1791
|
});
|
|
1346
1792
|
|
|
1347
1793
|
// src/commands/read-index.ts
|
|
1348
|
-
var
|
|
1794
|
+
var import_zod17 = require("zod");
|
|
1349
1795
|
var readIndexCommand = define({
|
|
1350
1796
|
name: "index",
|
|
1351
1797
|
tool: "kb_index",
|
|
1352
1798
|
usage: "index",
|
|
1353
1799
|
description: "The index, rebuilt if it disagrees with the records. One call gives the whole shape of the base: title, type, status, and description per record. The cheap re-orientation call after compaction or deep in a long session \u2014 a few hundred tokens; call it (or kb_context, when bases are pinned) first, then kb_load or fetch by concept id.",
|
|
1354
|
-
input:
|
|
1800
|
+
input: import_zod17.z.object({ bundlePath }),
|
|
1355
1801
|
fromArgv: (_argv, path) => ({ bundlePath: path }),
|
|
1356
1802
|
run: ({ store }, { bundlePath: path }) => store.readIndex(path)
|
|
1357
1803
|
});
|
|
1358
1804
|
|
|
1359
1805
|
// src/commands/schema.ts
|
|
1360
|
-
var
|
|
1806
|
+
var import_zod20 = require("zod");
|
|
1361
1807
|
|
|
1362
1808
|
// src/json-schema.ts
|
|
1363
|
-
var
|
|
1809
|
+
var import_zod19 = require("zod");
|
|
1364
1810
|
|
|
1365
1811
|
// src/kb-log.ts
|
|
1366
|
-
var
|
|
1812
|
+
var import_zod18 = require("zod");
|
|
1367
1813
|
var LOG_FILE = "log.jsonl";
|
|
1368
|
-
var kbLogEntrySchema =
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1814
|
+
var kbLogEntrySchema = import_zod18.z.object({
|
|
1815
|
+
// Validated, not just `min(1)`: `at` is a sort key (see `parseLog`
|
|
1816
|
+
// below), and a value that isn't actually chronological — a Unix
|
|
1817
|
+
// timestamp, a human-typed date, garbage — would sort wrong without
|
|
1818
|
+
// ever failing to parse. `z.iso.datetime()` accepts exactly what
|
|
1819
|
+
// `record()` writes (`Date#toISOString()`: full precision, `Z` offset)
|
|
1820
|
+
// and rejects everything else, including a non-`Z` offset — so a
|
|
1821
|
+
// malformed `at` is reported the same way a malformed line already is,
|
|
1822
|
+
// rather than silently sorting into the wrong place.
|
|
1823
|
+
at: import_zod18.z.iso.datetime(),
|
|
1824
|
+
by: import_zod18.z.string().min(1),
|
|
1825
|
+
operation: import_zod18.z.string().min(1),
|
|
1826
|
+
conceptId: import_zod18.z.string().min(1),
|
|
1373
1827
|
/** Second concept id, where the operation relates two — supersession. */
|
|
1374
|
-
target:
|
|
1828
|
+
target: import_zod18.z.string().min(1).optional()
|
|
1375
1829
|
}).strict();
|
|
1376
1830
|
function renderLogEntry(entry) {
|
|
1377
1831
|
return `${JSON.stringify(kbLogEntrySchema.parse(entry))}
|
|
@@ -1380,6 +1834,7 @@ function renderLogEntry(entry) {
|
|
|
1380
1834
|
function parseLog(raw) {
|
|
1381
1835
|
const entries = [];
|
|
1382
1836
|
const malformed = [];
|
|
1837
|
+
const seen = /* @__PURE__ */ new Set();
|
|
1383
1838
|
raw.split("\n").forEach((text, index) => {
|
|
1384
1839
|
if (!text.trim()) return;
|
|
1385
1840
|
let value;
|
|
@@ -1394,19 +1849,25 @@ function parseLog(raw) {
|
|
|
1394
1849
|
malformed.push({ line: index + 1, text });
|
|
1395
1850
|
return;
|
|
1396
1851
|
}
|
|
1852
|
+
const key = JSON.stringify(parsed.data);
|
|
1853
|
+
if (seen.has(key)) return;
|
|
1854
|
+
seen.add(key);
|
|
1397
1855
|
entries.push(parsed.data);
|
|
1398
1856
|
});
|
|
1857
|
+
entries.sort(
|
|
1858
|
+
(left, right) => left.at < right.at ? -1 : left.at > right.at ? 1 : 0
|
|
1859
|
+
);
|
|
1399
1860
|
return { entries, malformed };
|
|
1400
1861
|
}
|
|
1401
1862
|
|
|
1402
1863
|
// src/json-schema.ts
|
|
1403
1864
|
function kbJsonSchemas() {
|
|
1404
1865
|
return {
|
|
1405
|
-
recordFrontmatter:
|
|
1866
|
+
recordFrontmatter: import_zod19.z.toJSONSchema(kbRecordFrontmatterSchema, {
|
|
1406
1867
|
io: "input"
|
|
1407
1868
|
}),
|
|
1408
|
-
composeInput:
|
|
1409
|
-
logEntry:
|
|
1869
|
+
composeInput: import_zod19.z.toJSONSchema(composeInputSchema, { io: "input" }),
|
|
1870
|
+
logEntry: import_zod19.z.toJSONSchema(kbLogEntrySchema, { io: "input" })
|
|
1410
1871
|
};
|
|
1411
1872
|
}
|
|
1412
1873
|
|
|
@@ -1416,22 +1877,22 @@ var schemaCommand = define({
|
|
|
1416
1877
|
tool: "kb_schema",
|
|
1417
1878
|
usage: "schema",
|
|
1418
1879
|
description: "JSON Schema for the frontmatter, the write input, and log entries \u2014 generated from the code that enforces them, so it cannot drift from what a write will accept.",
|
|
1419
|
-
input:
|
|
1880
|
+
input: import_zod20.z.object({}),
|
|
1420
1881
|
fromArgv: () => ({}),
|
|
1421
1882
|
run: () => Promise.resolve(kbJsonSchemas())
|
|
1422
1883
|
});
|
|
1423
1884
|
|
|
1424
1885
|
// src/commands/status.ts
|
|
1425
|
-
var
|
|
1886
|
+
var import_zod21 = require("zod");
|
|
1426
1887
|
var statusCommand = define({
|
|
1427
1888
|
name: "status",
|
|
1428
1889
|
tool: "kb_status",
|
|
1429
1890
|
usage: "status <concept-id> <status>",
|
|
1430
1891
|
description: "Move a record's status, leaving everything else alone. Uses a compare-and-swap, so a concurrent change fails loudly rather than being overwritten.",
|
|
1431
|
-
input:
|
|
1892
|
+
input: import_zod21.z.object({
|
|
1432
1893
|
bundlePath,
|
|
1433
1894
|
conceptId,
|
|
1434
|
-
status:
|
|
1895
|
+
status: import_zod21.z.enum(KB_RECORD_STATUSES)
|
|
1435
1896
|
}),
|
|
1436
1897
|
fromArgv: (argv, path) => ({
|
|
1437
1898
|
bundlePath: path,
|
|
@@ -1446,13 +1907,13 @@ var statusCommand = define({
|
|
|
1446
1907
|
});
|
|
1447
1908
|
|
|
1448
1909
|
// src/commands/supersede.ts
|
|
1449
|
-
var
|
|
1910
|
+
var import_zod22 = require("zod");
|
|
1450
1911
|
var supersedeCommand = define({
|
|
1451
1912
|
name: "supersede",
|
|
1452
1913
|
tool: "kb_supersede",
|
|
1453
1914
|
usage: "supersede <concept-id> <replacement-id>",
|
|
1454
1915
|
description: "Mark a record superseded by another, linking both directions. Use this rather than editing a record whose meaning changed \u2014 a record that quietly becomes something else invalidates every reference to it, and the earlier understanding is what a later trace needs.",
|
|
1455
|
-
input:
|
|
1916
|
+
input: import_zod22.z.object({ bundlePath, conceptId, replacementId: conceptId }),
|
|
1456
1917
|
fromArgv: (argv, path) => ({
|
|
1457
1918
|
bundlePath: path,
|
|
1458
1919
|
conceptId: argv[1],
|
|
@@ -1466,16 +1927,16 @@ var supersedeCommand = define({
|
|
|
1466
1927
|
});
|
|
1467
1928
|
|
|
1468
1929
|
// src/commands/sync-instructions.ts
|
|
1469
|
-
var
|
|
1930
|
+
var import_zod23 = require("zod");
|
|
1470
1931
|
var syncInstructionsCommand = define({
|
|
1471
1932
|
name: "sync-instructions",
|
|
1472
1933
|
usage: "sync-instructions <file> [--profile NAME] [--budget N] [--full-under N]",
|
|
1473
1934
|
description: "Idempotently plant the `context` block between sentinel comments in an instruction file (AGENTS.md, CLAUDE.md), creating the block when absent and leaving everything outside the sentinels alone. CLI-only: this is file plumbing for runtimes whose instruction files are re-read where their conversations are not, not an agent capability \u2014 the capability is kb_context.",
|
|
1474
|
-
input:
|
|
1475
|
-
file:
|
|
1476
|
-
budgetTokens:
|
|
1477
|
-
fullUnderTokens:
|
|
1478
|
-
profile:
|
|
1935
|
+
input: import_zod23.z.object({
|
|
1936
|
+
file: import_zod23.z.string().min(1).describe("The instruction file to edit in place."),
|
|
1937
|
+
budgetTokens: import_zod23.z.number().int().positive().optional(),
|
|
1938
|
+
fullUnderTokens: import_zod23.z.number().int().positive().optional(),
|
|
1939
|
+
profile: import_zod23.z.string().optional()
|
|
1479
1940
|
}),
|
|
1480
1941
|
fromArgv: (argv) => {
|
|
1481
1942
|
const budget = argvFlag(argv, "--budget");
|
|
@@ -1501,83 +1962,7 @@ var syncInstructionsCommand = define({
|
|
|
1501
1962
|
});
|
|
1502
1963
|
|
|
1503
1964
|
// src/commands/trace.ts
|
|
1504
|
-
var
|
|
1505
|
-
|
|
1506
|
-
// src/kb-edges.ts
|
|
1507
|
-
var KB_EDGE_KINDS = [
|
|
1508
|
-
"body-link",
|
|
1509
|
-
"supersession",
|
|
1510
|
-
"anchor",
|
|
1511
|
-
"source"
|
|
1512
|
-
];
|
|
1513
|
-
var BODY_LINK_TARGET = new RegExp(
|
|
1514
|
-
`\\]\\((${KB_CONCEPT_ID_PATTERN.source.replace(/^\^|\$$/g, "")})\\.md\\)`,
|
|
1515
|
-
"g"
|
|
1516
|
-
);
|
|
1517
|
-
function neighbours(from, bundle, kinds = KB_EDGE_KINDS) {
|
|
1518
|
-
const found = /* @__PURE__ */ new Map();
|
|
1519
|
-
for (const kind of kinds) {
|
|
1520
|
-
for (const record of edgeNeighbours(from, bundle, kind)) {
|
|
1521
|
-
const existing = found.get(record.conceptId);
|
|
1522
|
-
if (existing) {
|
|
1523
|
-
if (!existing.via.includes(kind)) existing.via.push(kind);
|
|
1524
|
-
continue;
|
|
1525
|
-
}
|
|
1526
|
-
found.set(record.conceptId, { record, via: [kind] });
|
|
1527
|
-
}
|
|
1528
|
-
}
|
|
1529
|
-
return [...found.values()];
|
|
1530
|
-
}
|
|
1531
|
-
function edgeNeighbours(from, bundle, kind) {
|
|
1532
|
-
switch (kind) {
|
|
1533
|
-
// A link whose target is not in the bundle is legal per compose.ts —
|
|
1534
|
-
// records are routinely written before the ones they point at exist — so
|
|
1535
|
-
// missing targets are skipped, never an error.
|
|
1536
|
-
case "body-link": {
|
|
1537
|
-
const targets = new Set(
|
|
1538
|
-
[...from.body.matchAll(BODY_LINK_TARGET)].map((match) => match[1])
|
|
1539
|
-
);
|
|
1540
|
-
if (!targets.size) return [];
|
|
1541
|
-
return bundle.filter(
|
|
1542
|
-
(candidate) => candidate.conceptId !== from.conceptId && targets.has(candidate.conceptId)
|
|
1543
|
-
);
|
|
1544
|
-
}
|
|
1545
|
-
// Both directions and both pointers: `supersede()` writes the pair, but a
|
|
1546
|
-
// hand-edit can leave one side behind, and a walk trusting one pointer
|
|
1547
|
-
// would miss a replacement the bundle openly declares.
|
|
1548
|
-
case "supersession":
|
|
1549
|
-
return bundle.filter(
|
|
1550
|
-
(candidate) => candidate.conceptId !== from.conceptId && (candidate.conceptId === from.frontmatter.strauss_superseded_by || from.frontmatter.strauss_supersedes?.includes(
|
|
1551
|
-
candidate.conceptId
|
|
1552
|
-
) || candidate.frontmatter.strauss_superseded_by === from.conceptId || candidate.frontmatter.strauss_supersedes?.includes(from.conceptId))
|
|
1553
|
-
);
|
|
1554
|
-
// The edge that answers "why is this code shaped this way": every record
|
|
1555
|
-
// attached to the same file or symbol, whatever its standing.
|
|
1556
|
-
case "anchor": {
|
|
1557
|
-
const mine = from.frontmatter.strauss_anchors ?? [];
|
|
1558
|
-
if (!mine.length) return [];
|
|
1559
|
-
return bundle.filter(
|
|
1560
|
-
(candidate) => candidate.conceptId !== from.conceptId && (candidate.frontmatter.strauss_anchors ?? []).some(
|
|
1561
|
-
(theirs) => mine.some((ours) => anchorsTouch(ours, theirs))
|
|
1562
|
-
)
|
|
1563
|
-
);
|
|
1564
|
-
}
|
|
1565
|
-
case "source": {
|
|
1566
|
-
const mine = new Set((from.frontmatter.sources ?? []).map((s) => s.id));
|
|
1567
|
-
if (!mine.size) return [];
|
|
1568
|
-
return bundle.filter(
|
|
1569
|
-
(candidate) => candidate.conceptId !== from.conceptId && (candidate.frontmatter.sources ?? []).some(
|
|
1570
|
-
(source) => mine.has(source.id)
|
|
1571
|
-
)
|
|
1572
|
-
);
|
|
1573
|
-
}
|
|
1574
|
-
}
|
|
1575
|
-
}
|
|
1576
|
-
function anchorsTouch(left, right) {
|
|
1577
|
-
if (left.file !== right.file) return false;
|
|
1578
|
-
if (!left.symbol || !right.symbol) return true;
|
|
1579
|
-
return left.symbol === right.symbol;
|
|
1580
|
-
}
|
|
1965
|
+
var import_zod24 = require("zod");
|
|
1581
1966
|
|
|
1582
1967
|
// src/trace.ts
|
|
1583
1968
|
var TRACE_EDGES = ["supersession", "anchor", "source"];
|
|
@@ -1623,11 +2008,11 @@ var traceCommand = define({
|
|
|
1623
2008
|
tool: "kb_trace",
|
|
1624
2009
|
usage: "trace <concept-id> [edges...]",
|
|
1625
2010
|
description: 'How a position was arrived at, as a timeline ordered by when each record was written. Deliberately includes rejected, draft, and superseded records \u2014 in a history those are the content, not noise. Follows supersession, shared code anchors, and shared sources. Use when the question is "why is this the way it is" rather than "what do we hold now". This tool (with kb_load and kb_query) is the only supported way to read a base; a raw file read bypasses supersession resolution and returns replaced records as if current.',
|
|
1626
|
-
input:
|
|
2011
|
+
input: import_zod24.z.object({
|
|
1627
2012
|
bundlePath,
|
|
1628
2013
|
conceptId,
|
|
1629
|
-
edges:
|
|
1630
|
-
depth:
|
|
2014
|
+
edges: import_zod24.z.array(import_zod24.z.enum(TRACE_EDGES)).optional(),
|
|
2015
|
+
depth: import_zod24.z.number().int().positive().optional()
|
|
1631
2016
|
}),
|
|
1632
2017
|
fromArgv: (argv, path) => ({
|
|
1633
2018
|
bundlePath: path,
|
|
@@ -1649,90 +2034,53 @@ var traceCommand = define({
|
|
|
1649
2034
|
});
|
|
1650
2035
|
|
|
1651
2036
|
// src/commands/types.ts
|
|
1652
|
-
var
|
|
2037
|
+
var import_zod25 = require("zod");
|
|
1653
2038
|
var typesCommand = define({
|
|
1654
2039
|
name: "types",
|
|
1655
2040
|
tool: "kb_types",
|
|
1656
2041
|
usage: "types",
|
|
1657
2042
|
description: "The twelve record types with their purpose, body sections, and starting status. Read this before writing rather than guessing headings \u2014 a section the type does not define is rejected.",
|
|
1658
|
-
input:
|
|
2043
|
+
input: import_zod25.z.object({}),
|
|
1659
2044
|
fromArgv: () => ({}),
|
|
1660
2045
|
run: () => Promise.resolve(RECORD_TYPES)
|
|
1661
2046
|
});
|
|
1662
2047
|
|
|
1663
2048
|
// src/commands/unpin.ts
|
|
1664
|
-
var
|
|
2049
|
+
var import_zod26 = require("zod");
|
|
1665
2050
|
var unpinCommand = define({
|
|
1666
2051
|
name: "unpin",
|
|
1667
2052
|
tool: "kb_unpin",
|
|
1668
2053
|
usage: "unpin [bundle-path]",
|
|
1669
2054
|
description: "Remove a base from every pin manifest layer that holds it \u2014 project, local, and user \u2014 because unpinned means gone, not still injected from another file. Reports which layers were touched.",
|
|
1670
|
-
input:
|
|
2055
|
+
input: import_zod26.z.object({ bundlePath }),
|
|
1671
2056
|
fromArgv: (argv, path) => ({ bundlePath: argv[1] ?? path }),
|
|
1672
2057
|
run: (_ctx, { bundlePath: path }) => unpinBase(process.cwd(), path)
|
|
1673
2058
|
});
|
|
1674
2059
|
|
|
1675
2060
|
// src/commands/validate.ts
|
|
1676
|
-
var
|
|
1677
|
-
|
|
1678
|
-
// src/validate.ts
|
|
1679
|
-
function validateBundle(records) {
|
|
1680
|
-
const byId = new Map(records.map((record) => [record.conceptId, record]));
|
|
1681
|
-
const problems = [];
|
|
1682
|
-
const report = (check, conceptId2, note) => problems.push({ check, conceptId: conceptId2, note });
|
|
1683
|
-
for (const record of records) {
|
|
1684
|
-
const { conceptId: conceptId2, frontmatter: fm } = record;
|
|
1685
|
-
if (!isKbRecordType(fm.type)) {
|
|
1686
|
-
report("type", conceptId2, `unrecognised type "${fm.type}"`);
|
|
1687
|
-
}
|
|
1688
|
-
if (fm.strauss_status === "superseded") {
|
|
1689
|
-
const by = fm.strauss_superseded_by;
|
|
1690
|
-
if (!by) {
|
|
1691
|
-
report("superseded_by", conceptId2, "superseded with no replacement");
|
|
1692
|
-
} else if (!byId.has(by)) {
|
|
1693
|
-
report("superseded_by", conceptId2, `replacement ${by} is missing`);
|
|
1694
|
-
} else if (!byId.get(by)?.frontmatter.strauss_supersedes?.includes(conceptId2)) {
|
|
1695
|
-
report("backlink", by, `does not list ${conceptId2} in supersedes`);
|
|
1696
|
-
}
|
|
1697
|
-
}
|
|
1698
|
-
for (const old of fm.strauss_supersedes ?? []) {
|
|
1699
|
-
const previous = byId.get(old);
|
|
1700
|
-
if (!previous) {
|
|
1701
|
-
report("supersedes", conceptId2, `target ${old} is missing`);
|
|
1702
|
-
} else if (previous.frontmatter.strauss_status !== "superseded") {
|
|
1703
|
-
report("supersedes", conceptId2, `${old} is not marked superseded`);
|
|
1704
|
-
}
|
|
1705
|
-
}
|
|
1706
|
-
if (fm.strauss_assumption && fm.sources?.length) {
|
|
1707
|
-
report("assumption", conceptId2, "marked an assumption but cites sources");
|
|
1708
|
-
}
|
|
1709
|
-
}
|
|
1710
|
-
return problems;
|
|
1711
|
-
}
|
|
1712
|
-
|
|
1713
|
-
// src/commands/validate.ts
|
|
2061
|
+
var import_zod27 = require("zod");
|
|
1714
2062
|
var validateCommand = define({
|
|
1715
2063
|
name: "validate",
|
|
1716
2064
|
tool: "kb_validate",
|
|
1717
2065
|
usage: "validate",
|
|
1718
2066
|
description: "Check pointers no single record can see: supersession links that disagree between the two records, and assumptions that cite sources. Per-record shape is enforced on every read, so a problem here means someone edited a file by hand.",
|
|
1719
|
-
input:
|
|
2067
|
+
input: import_zod27.z.object({ bundlePath }),
|
|
1720
2068
|
fromArgv: (_argv, path) => ({ bundlePath: path }),
|
|
1721
2069
|
run: async ({ store }, { bundlePath: path }) => validateBundle(await store.list(path)),
|
|
1722
2070
|
failsWhen: (result) => Array.isArray(result) && result.length > 0
|
|
1723
2071
|
});
|
|
1724
2072
|
|
|
1725
2073
|
// src/commands/verify.ts
|
|
1726
|
-
var
|
|
2074
|
+
var import_zod28 = require("zod");
|
|
1727
2075
|
var verifyCommand = define({
|
|
1728
2076
|
name: "verify",
|
|
1729
2077
|
tool: "kb_verify",
|
|
1730
2078
|
usage: "verify <concept-id> --note <text>",
|
|
1731
2079
|
description: "Append one verified[] event \u2014 who checked the record, when, and what the check found. Appends only; prior events are never rewritten. A record's own generator is refused unless the actor is human: re-reading your own output is not an independent check.",
|
|
1732
|
-
input:
|
|
2080
|
+
input: import_zod28.z.object({
|
|
1733
2081
|
bundlePath,
|
|
1734
2082
|
conceptId,
|
|
1735
|
-
note:
|
|
2083
|
+
note: import_zod28.z.string().refine((s) => s.trim().length > 0, {
|
|
1736
2084
|
message: "note must say what the check found"
|
|
1737
2085
|
})
|
|
1738
2086
|
}),
|
|
@@ -1752,7 +2100,7 @@ var verifyCommand = define({
|
|
|
1752
2100
|
});
|
|
1753
2101
|
|
|
1754
2102
|
// src/commands/write.ts
|
|
1755
|
-
var
|
|
2103
|
+
var import_zod29 = require("zod");
|
|
1756
2104
|
var writeCommand = define({
|
|
1757
2105
|
name: "write",
|
|
1758
2106
|
tool: "kb_write",
|
|
@@ -1766,9 +2114,9 @@ var writeCommand = define({
|
|
|
1766
2114
|
"- Prefer a new record over overloading an existing one, and keep each short. A record nobody finishes reading is not durable memory.",
|
|
1767
2115
|
"- Records are never deleted; supersede instead, so the earlier reasoning stays inspectable."
|
|
1768
2116
|
].join("\n"),
|
|
1769
|
-
input:
|
|
2117
|
+
input: import_zod29.z.object({
|
|
1770
2118
|
bundlePath,
|
|
1771
|
-
type:
|
|
2119
|
+
type: import_zod29.z.enum(KB_RECORD_TYPES),
|
|
1772
2120
|
input: composeInputSchema
|
|
1773
2121
|
}),
|
|
1774
2122
|
fromArgv: async (argv, path, stdin) => ({
|
|
@@ -1792,7 +2140,7 @@ var writeCommand = define({
|
|
|
1792
2140
|
});
|
|
1793
2141
|
|
|
1794
2142
|
// src/commands/write-decision.ts
|
|
1795
|
-
var
|
|
2143
|
+
var import_zod30 = require("zod");
|
|
1796
2144
|
var writeDecisionCommand = define({
|
|
1797
2145
|
name: "write-decision",
|
|
1798
2146
|
tool: "kb_write_decision",
|
|
@@ -1805,7 +2153,7 @@ var writeDecisionCommand = define({
|
|
|
1805
2153
|
"- `alternative` is what you turned down and why, not a list of everything considered.",
|
|
1806
2154
|
"- A reference to material you read goes in `sources`; a reference to code goes in `anchors`; a reference to another record goes in `relatedConceptIds`."
|
|
1807
2155
|
].join("\n"),
|
|
1808
|
-
input:
|
|
2156
|
+
input: import_zod30.z.object({ bundlePath, input: decisionInputSchema }),
|
|
1809
2157
|
fromArgv: async (_argv, path, stdin) => ({
|
|
1810
2158
|
bundlePath: path,
|
|
1811
2159
|
input: JSON.parse(await stdin())
|
|
@@ -1842,6 +2190,7 @@ var KB_COMMANDS = [
|
|
|
1842
2190
|
readIndexCommand,
|
|
1843
2191
|
logCommand,
|
|
1844
2192
|
validateCommand,
|
|
2193
|
+
doctorCommand,
|
|
1845
2194
|
schemaCommand,
|
|
1846
2195
|
pinCommand,
|
|
1847
2196
|
unpinCommand,
|
|
@@ -2174,6 +2523,30 @@ function typeRank(record) {
|
|
|
2174
2523
|
return index === -1 ? TYPE_PRIORITY.length : index;
|
|
2175
2524
|
}
|
|
2176
2525
|
|
|
2526
|
+
// src/kb-gitattributes.ts
|
|
2527
|
+
var GITATTRIBUTES_FILE = ".gitattributes";
|
|
2528
|
+
var UNION_MERGE_LINE = `${LOG_FILE} text eol=lf merge=union`;
|
|
2529
|
+
function parseLine(line) {
|
|
2530
|
+
const trimmed = line.trim();
|
|
2531
|
+
if (!trimmed || trimmed.startsWith("#")) return null;
|
|
2532
|
+
const [pattern, ...attrs] = trimmed.split(/\s+/);
|
|
2533
|
+
return pattern === void 0 ? null : { pattern, attrs };
|
|
2534
|
+
}
|
|
2535
|
+
function hasMergeDeclaration(contents) {
|
|
2536
|
+
return contents.split("\n").some((line) => {
|
|
2537
|
+
const parsed = parseLine(line);
|
|
2538
|
+
if (!parsed || parsed.pattern !== LOG_FILE) return false;
|
|
2539
|
+
return parsed.attrs.some(
|
|
2540
|
+
(attr) => attr === "merge" || attr === "-merge" || attr.startsWith("merge=")
|
|
2541
|
+
);
|
|
2542
|
+
});
|
|
2543
|
+
}
|
|
2544
|
+
function appendUnionMergeLine(contents) {
|
|
2545
|
+
const separator = contents.length === 0 || contents.endsWith("\n") ? "" : "\n";
|
|
2546
|
+
return `${separator}${UNION_MERGE_LINE}
|
|
2547
|
+
`;
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2177
2550
|
// src/kb-store.ts
|
|
2178
2551
|
var KB_DIR = (0, import_node_path6.join)(".strauss", "kb");
|
|
2179
2552
|
var STORE_OWNED = /* @__PURE__ */ new Set([INDEX_FILE, LOG_FILE, SEARCH_INDEX_FILE]);
|
|
@@ -2599,8 +2972,87 @@ ${answer}
|
|
|
2599
2972
|
await (0, import_promises4.unlink)(staging).catch(() => void 0);
|
|
2600
2973
|
}
|
|
2601
2974
|
}
|
|
2975
|
+
/**
|
|
2976
|
+
* Declares union merge for the log, so two worktrees writing the same
|
|
2977
|
+
* bundle interleave their `log.jsonl` lines on merge rather than one
|
|
2978
|
+
* side's appends silently losing to git's ordinary line-level merge.
|
|
2979
|
+
*
|
|
2980
|
+
* Called from `record` — every path that appends a log line, not just
|
|
2981
|
+
* `write` — so a bundle only ever mutated through `setStatus`/`verify`/
|
|
2982
|
+
* `supersede` still gets it. There is no cheaper reliable signal for
|
|
2983
|
+
* "first write" than checking the file itself, and after the first call
|
|
2984
|
+
* the check is a no-op `readFile`.
|
|
2985
|
+
*
|
|
2986
|
+
* A missing `.gitattributes` is created outright, with `wx` (exclusive
|
|
2987
|
+
* create) rather than a plain write: if another process's `write()` won a
|
|
2988
|
+
* race and created the file between the `readFile` below and this call,
|
|
2989
|
+
* `wx` fails instead of truncating what that writer just wrote, and the
|
|
2990
|
+
* failure is swallowed by the catch below same as any other best-effort
|
|
2991
|
+
* miss. A file that exists but declares no merge strategy for the log
|
|
2992
|
+
* gets the line appended, never a wholesale rewrite; one that already
|
|
2993
|
+
* declares any merge strategy — this one or a user's own — is left alone
|
|
2994
|
+
* entirely (see `hasMergeDeclaration`).
|
|
2995
|
+
*
|
|
2996
|
+
* `readFile` failing is `existing === null` only for `ENOENT` — genuinely
|
|
2997
|
+
* missing. Any other error (a permission problem, a transient `EMFILE`,
|
|
2998
|
+
* the path being a directory) is *not* "missing" and must not fall into
|
|
2999
|
+
* the create branch, which would truncate whatever is actually there with
|
|
3000
|
+
* just the union-merge line: that is the file-destroying bug this
|
|
3001
|
+
* function exists to avoid, not commit. An unreadable existing file is
|
|
3002
|
+
* therefore left untouched and reported as a failure like any other.
|
|
3003
|
+
*
|
|
3004
|
+
* Two processes racing the append branch — both read a file without the
|
|
3005
|
+
* line, both append it — is possible and left unguarded: `appendFile` is
|
|
3006
|
+
* `O_APPEND`, so the result is two copies of the same line rather than a
|
|
3007
|
+
* torn write, and `hasMergeDeclaration` sees a duplicate declaration as
|
|
3008
|
+
* "already declared" on the next call. A cheap-to-detect, harmless-to-
|
|
3009
|
+
* leave residue, not a reason to add a cross-process lock (see
|
|
3010
|
+
* `ARCHITECTURE.md`'s rejection of one for the same trade on records).
|
|
3011
|
+
*
|
|
3012
|
+
* Best-effort, like the log append it precedes: failing to write this
|
|
3013
|
+
* file must not fail the mutation it guards.
|
|
3014
|
+
*/
|
|
3015
|
+
async ensureGitattributes(root) {
|
|
3016
|
+
const target = (0, import_node_path6.join)(root, GITATTRIBUTES_FILE);
|
|
3017
|
+
try {
|
|
3018
|
+
let existing;
|
|
3019
|
+
try {
|
|
3020
|
+
existing = await (0, import_promises4.readFile)(target, "utf8");
|
|
3021
|
+
} catch (error) {
|
|
3022
|
+
if (error.code !== "ENOENT") throw error;
|
|
3023
|
+
existing = null;
|
|
3024
|
+
}
|
|
3025
|
+
if (existing === null) {
|
|
3026
|
+
await (0, import_promises4.writeFile)(target, appendUnionMergeLine(""), {
|
|
3027
|
+
encoding: "utf8",
|
|
3028
|
+
flag: "wx"
|
|
3029
|
+
});
|
|
3030
|
+
this.logger.info?.({
|
|
3031
|
+
operation: "kb.gitattributes.ensure",
|
|
3032
|
+
bundlePath: root,
|
|
3033
|
+
outcome: "created"
|
|
3034
|
+
});
|
|
3035
|
+
return;
|
|
3036
|
+
}
|
|
3037
|
+
if (!hasMergeDeclaration(existing)) {
|
|
3038
|
+
await (0, import_promises4.appendFile)(target, appendUnionMergeLine(existing), "utf8");
|
|
3039
|
+
this.logger.info?.({
|
|
3040
|
+
operation: "kb.gitattributes.ensure",
|
|
3041
|
+
bundlePath: root,
|
|
3042
|
+
outcome: "appended"
|
|
3043
|
+
});
|
|
3044
|
+
}
|
|
3045
|
+
} catch (error) {
|
|
3046
|
+
this.logger.warn?.({
|
|
3047
|
+
operation: "kb.gitattributes.ensure",
|
|
3048
|
+
outcome: "failed",
|
|
3049
|
+
error: error instanceof Error ? error.message : "unknown"
|
|
3050
|
+
});
|
|
3051
|
+
}
|
|
3052
|
+
}
|
|
2602
3053
|
/** Appends one log line. Failing to log must not fail the mutation. */
|
|
2603
3054
|
async record(root, entry) {
|
|
3055
|
+
await this.ensureGitattributes(root);
|
|
2604
3056
|
const line = renderLogEntry({ at: (/* @__PURE__ */ new Date()).toISOString(), ...entry });
|
|
2605
3057
|
await (0, import_promises4.appendFile)((0, import_node_path6.join)(root, LOG_FILE), line, "utf8").catch((error) => {
|
|
2606
3058
|
this.logger.warn?.({
|
|
@@ -2674,12 +3126,13 @@ function digest(contents) {
|
|
|
2674
3126
|
}
|
|
2675
3127
|
|
|
2676
3128
|
// src/version.ts
|
|
2677
|
-
var VERSION = true ? "0.1.
|
|
3129
|
+
var VERSION = true ? "0.1.9" : "0.0.0-dev";
|
|
2678
3130
|
|
|
2679
3131
|
// src/cli.ts
|
|
2680
3132
|
async function runKbCli(argv) {
|
|
2681
|
-
const {
|
|
2682
|
-
const
|
|
3133
|
+
const { flags, literal } = takeLiteral(argv);
|
|
3134
|
+
const { bundle, rest: withFlags } = takeBundle(flags);
|
|
3135
|
+
const name = withFlags[0] ?? "";
|
|
2683
3136
|
if (!name || name === "-h" || name === "--help") {
|
|
2684
3137
|
process.stdout.write(usage());
|
|
2685
3138
|
return;
|
|
@@ -2691,6 +3144,14 @@ async function runKbCli(argv) {
|
|
|
2691
3144
|
}
|
|
2692
3145
|
const command = KB_COMMANDS_BY_NAME.get(name);
|
|
2693
3146
|
if (!command) die(`unknown command ${name}`);
|
|
3147
|
+
const json = withFlags.includes("--json");
|
|
3148
|
+
if (json && !command.render) {
|
|
3149
|
+
die(`${name} takes no --json: its result is already the machine shape`);
|
|
3150
|
+
}
|
|
3151
|
+
const rest = [
|
|
3152
|
+
...json ? withFlags.filter((argument) => argument !== "--json") : withFlags,
|
|
3153
|
+
...literal
|
|
3154
|
+
];
|
|
2694
3155
|
const raw = await command.fromArgv(rest, bundle, readStdin);
|
|
2695
3156
|
const parsed = command.input.safeParse(raw);
|
|
2696
3157
|
if (!parsed.success) {
|
|
@@ -2710,13 +3171,16 @@ async function runKbCli(argv) {
|
|
|
2710
3171
|
},
|
|
2711
3172
|
parsed.data
|
|
2712
3173
|
);
|
|
2713
|
-
if (command.failsWhen?.(result)) process.exitCode = 1;
|
|
3174
|
+
if (command.failsWhen?.(result, parsed.data)) process.exitCode = 1;
|
|
2714
3175
|
if (result === "") return;
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
`
|
|
2718
|
-
|
|
2719
|
-
|
|
3176
|
+
const text = command.render && !json ? command.render(result) : typeof result === "string" ? result : JSON.stringify(result, null, 2);
|
|
3177
|
+
process.stdout.write(text.endsWith("\n") ? text : `${text}
|
|
3178
|
+
`);
|
|
3179
|
+
}
|
|
3180
|
+
function takeLiteral(argv) {
|
|
3181
|
+
const at = argv.indexOf("--");
|
|
3182
|
+
if (at === -1) return { flags: argv, literal: [] };
|
|
3183
|
+
return { flags: argv.slice(0, at), literal: argv.slice(at + 1) };
|
|
2720
3184
|
}
|
|
2721
3185
|
function takeBundle(argv) {
|
|
2722
3186
|
const at = argv.indexOf("--bundle");
|
|
@@ -2758,6 +3222,8 @@ function usage() {
|
|
|
2758
3222
|
),
|
|
2759
3223
|
"",
|
|
2760
3224
|
` --bundle PATH defaults to ./${KB_DIR}`,
|
|
3225
|
+
" --json the machine shape, where a command prints a table",
|
|
3226
|
+
" -- everything after it is text, not flags",
|
|
2761
3227
|
" --version the installed package version",
|
|
2762
3228
|
" STRAUSS_KB_ACTOR names the writer in the log",
|
|
2763
3229
|
""
|