@appchy/jarvis 0.1.82 → 0.1.84
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/bin.js +6 -2
- package/dist/bin.js.map +1 -1
- package/dist/ui/app.js +31 -31
- package/harness/harness/architecture.py +2 -2
- package/harness/harness/autonomy.py +3 -3
- package/harness/harness/gate.py +3 -3
- package/harness/harness/kickoff.py +2 -2
- package/harness/harness/model.py +84 -5
- package/harness/harness/shift.py +2 -2
- package/harness/harness/task.py +19 -13
- package/harness/test_work.py +85 -0
- package/package.json +7 -7
package/dist/bin.js
CHANGED
|
@@ -4623,6 +4623,7 @@ function toWorkItem(req) {
|
|
|
4623
4623
|
const name = parts.at(-2);
|
|
4624
4624
|
if (!name) return null;
|
|
4625
4625
|
const backlog = parts[1] === "backlog";
|
|
4626
|
+
const filed = parts[1] === "complete" || parts[1] === "archive";
|
|
4626
4627
|
const bucket = backlog ? "queue" : parts.at(-3);
|
|
4627
4628
|
const status2 = !backlog && BUCKETS.includes(bucket) ? bucket : "queue";
|
|
4628
4629
|
const text = req.text ?? "";
|
|
@@ -4638,7 +4639,7 @@ function toWorkItem(req) {
|
|
|
4638
4639
|
covers: asList(front.covers),
|
|
4639
4640
|
dependsOn: asList(front.depends_on),
|
|
4640
4641
|
epic: backlog ? parts[2] ?? "" : parts.at(-4) ?? "",
|
|
4641
|
-
version: backlog ? "backlog" : parts[1] ?? "",
|
|
4642
|
+
version: backlog ? "backlog" : filed ? parts[2] ?? "" : parts[1] ?? "",
|
|
4642
4643
|
path: req.path,
|
|
4643
4644
|
holders: [],
|
|
4644
4645
|
updatedAt: asString(front.updated) ?? req.changedAt
|
|
@@ -4877,10 +4878,13 @@ function scanTree(root) {
|
|
|
4877
4878
|
return scan2;
|
|
4878
4879
|
}
|
|
4879
4880
|
var scanning = /* @__PURE__ */ new Map();
|
|
4881
|
+
var LEFT_THE_BOARD = ["complete", "archive"];
|
|
4880
4882
|
async function readTree(root) {
|
|
4881
4883
|
const work = join4(root, "work");
|
|
4882
4884
|
const items = [];
|
|
4883
4885
|
for (const file of await walk(join4(work, "versions"))) {
|
|
4886
|
+
const path22 = pathIn(work, file);
|
|
4887
|
+
if (LEFT_THE_BOARD.some((home) => path22.startsWith(`versions/${home}/`))) continue;
|
|
4884
4888
|
const item2 = await readItem(work, file);
|
|
4885
4889
|
if (item2) items.push(item2);
|
|
4886
4890
|
}
|
|
@@ -10110,7 +10114,7 @@ import { createRequire as createRequire2 } from "module";
|
|
|
10110
10114
|
var _require = createRequire2(import.meta.url);
|
|
10111
10115
|
var VERSION2 = _require("../package.json").version ?? "0.0.0";
|
|
10112
10116
|
var IS_DEV = String(_require("../package.json").name ?? "").endsWith("-dev");
|
|
10113
|
-
var SHA = "
|
|
10117
|
+
var SHA = "797d33f";
|
|
10114
10118
|
var BUILT = "2026-09-11";
|
|
10115
10119
|
var BUILD = SHA ?? "source";
|
|
10116
10120
|
var BUILD_LABEL = `${SHA ? `${VERSION2} (${SHA}${BUILT ? ` ${BUILT}` : ""})` : `${VERSION2} (source)`}${IS_DEV ? " \u2014 development build" : ""}`;
|