@mean-weasel/lineage 0.1.6 → 0.1.7
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/CHANGELOG.md +7 -0
- package/README.md +20 -0
- package/dist/cli/lineage-dev.js +1006 -41
- package/dist/cli/lineage-dev.js.map +4 -4
- package/dist/cli/lineage.js +1006 -41
- package/dist/cli/lineage.js.map +4 -4
- package/dist/server.js +1493 -540
- package/dist/server.js.map +4 -4
- package/dist/web/assets/{index-EfT3Ues-.css → index-38XlcMya.css} +1 -1
- package/dist/web/assets/index-CtsYIUyG.js +23 -0
- package/dist/web/index.html +2 -2
- package/package.json +3 -1
- package/dist/web/assets/index-NDba9I2v.js +0 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.7
|
|
4
|
+
|
|
5
|
+
- Add a claim-aware lineage task queue for per-image iteration and re-roll work, including task instructions, comments, cancellation, and human override controls.
|
|
6
|
+
- Add visible agent/task state in the lineage canvas and side panel so humans can see when a task is pending, locked, or actively claimed.
|
|
7
|
+
- Add QA seed guardrails that distinguish basic SVG placeholder media from the Swissifier rich PNG demo seed.
|
|
8
|
+
- Add deterministic rich-seed verification and browser coverage to fail when QA is pointed at the wrong seed or invisible placeholder previews.
|
|
9
|
+
|
|
3
10
|
## 0.1.6
|
|
4
11
|
|
|
5
12
|
- Add per-image re-roll attempt history with stack inspection, previous-attempt selection, and promotion back to the current/top attempt.
|
package/README.md
CHANGED
|
@@ -68,6 +68,9 @@ lineage link-child --project demo-project --root <root-asset-id> --child <child-
|
|
|
68
68
|
lineage agent release --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
+
`lineage link-child` creates a new visible descendant in the lineage graph. Do
|
|
72
|
+
not use it for re-rolls.
|
|
73
|
+
|
|
71
74
|
For re-roll work, mark the target, have the agent plan/import one replacement
|
|
72
75
|
attempt, and cancel only when the request should be abandoned:
|
|
73
76
|
|
|
@@ -79,6 +82,23 @@ lineage reroll import --project demo-project --job-id <job-id> --file <.asset-sc
|
|
|
79
82
|
lineage reroll cancel --project demo-project --root <root-asset-id> --target <target-asset-id> --confirm-write --json
|
|
80
83
|
```
|
|
81
84
|
|
|
85
|
+
`lineage reroll import` updates the target node's current attempt and should
|
|
86
|
+
not add a visible child edge.
|
|
87
|
+
|
|
88
|
+
Lineage task queue commands expose the same work as explicit tasks that agents
|
|
89
|
+
can inspect, claim, start, comment on, and cancel:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
lineage tasks list --project demo-project --root <root-asset-id> --json
|
|
93
|
+
lineage tasks inspect --project demo-project --task <task-id> --json
|
|
94
|
+
lineage tasks claim --project demo-project --task <task-id> --agent-name "Task worker" --json
|
|
95
|
+
lineage tasks start --project demo-project --task <task-id> --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
96
|
+
lineage tasks comment --project demo-project --task <task-id> --message "Blocked on source art review." --json
|
|
97
|
+
lineage tasks cancel --project demo-project --task <task-id> --confirm-write --override --json
|
|
98
|
+
lineage tasks instructions --project demo-project --task <task-id> --instructions "Preserve palette; replace unreadable text." --json
|
|
99
|
+
lineage tasks override --project demo-project --task <task-id> --reason "Human is reassigning the work." --instructions "Use the updated brief." --json
|
|
100
|
+
```
|
|
101
|
+
|
|
82
102
|
The app-created claim-aware handoff packet includes the same token export,
|
|
83
103
|
heartbeat, inspect, and write commands. Raw claim tokens are not shown in the
|
|
84
104
|
read-only Agents view.
|