@mean-weasel/lineage 0.1.6 → 0.1.8
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 +14 -0
- package/README.md +34 -0
- package/dist/cli/lineage-dev.js +1313 -45
- package/dist/cli/lineage-dev.js.map +4 -4
- package/dist/cli/lineage.js +1313 -45
- 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-BplMjJB9.css +1 -0
- package/dist/web/assets/index-ClSbabxx.js +23 -0
- package/dist/web/index.html +2 -2
- package/package.json +3 -1
- package/dist/web/assets/index-EfT3Ues-.css +0 -1
- package/dist/web/assets/index-NDba9I2v.js +0 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.8
|
|
4
|
+
|
|
5
|
+
- Add durable selection packet export so agents can hand selected Lineage assets to GrowthOps without scraping UI state or copying local paths.
|
|
6
|
+
- Add Agent OS adoption guidance for Lineage agents and operators.
|
|
7
|
+
- Improve popover media previews, node actions, and image expansion controls for faster asset inspection.
|
|
8
|
+
- Clean up the Lineage shell navigation, toolbar, and side-panel layout for a more focused workspace.
|
|
9
|
+
|
|
10
|
+
## 0.1.7
|
|
11
|
+
|
|
12
|
+
- Add a claim-aware lineage task queue for per-image iteration and re-roll work, including task instructions, comments, cancellation, and human override controls.
|
|
13
|
+
- 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.
|
|
14
|
+
- Add QA seed guardrails that distinguish basic SVG placeholder media from the Swissifier rich PNG demo seed.
|
|
15
|
+
- Add deterministic rich-seed verification and browser coverage to fail when QA is pointed at the wrong seed or invisible placeholder previews.
|
|
16
|
+
|
|
3
17
|
## 0.1.6
|
|
4
18
|
|
|
5
19
|
- 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
|
@@ -60,6 +60,20 @@ Agents can inspect the current lineage graph without a claim:
|
|
|
60
60
|
lineage agent graph --project demo-project --root <root-asset-id> --json
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
+
Agents can also export the current active workspace selection as a durable JSON
|
|
64
|
+
packet for downstream tools such as GrowthOps:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
lineage selection packet --project demo-project --channel linkedin --campaign 2026-07-launch --out ./lineage-selection-packet.json --json
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
The packet is schema-versioned as `lineage.selection_packet.v1` and includes the
|
|
71
|
+
workspace/root binding, selected asset IDs, local media paths when known, S3 key
|
|
72
|
+
metadata when known, context labels/notes, warnings, and a stable `packet_id`.
|
|
73
|
+
Lineage only exports the packet. GrowthOps or another downstream tool remains
|
|
74
|
+
responsible for importing it, creating posts, checking media readiness, preparing
|
|
75
|
+
public URLs, scheduling, and recording placement receipts.
|
|
76
|
+
|
|
63
77
|
Keep the claim fresh and pass it to mutating commands:
|
|
64
78
|
|
|
65
79
|
```bash
|
|
@@ -68,6 +82,9 @@ lineage link-child --project demo-project --root <root-asset-id> --child <child-
|
|
|
68
82
|
lineage agent release --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
69
83
|
```
|
|
70
84
|
|
|
85
|
+
`lineage link-child` creates a new visible descendant in the lineage graph. Do
|
|
86
|
+
not use it for re-rolls.
|
|
87
|
+
|
|
71
88
|
For re-roll work, mark the target, have the agent plan/import one replacement
|
|
72
89
|
attempt, and cancel only when the request should be abandoned:
|
|
73
90
|
|
|
@@ -79,6 +96,23 @@ lineage reroll import --project demo-project --job-id <job-id> --file <.asset-sc
|
|
|
79
96
|
lineage reroll cancel --project demo-project --root <root-asset-id> --target <target-asset-id> --confirm-write --json
|
|
80
97
|
```
|
|
81
98
|
|
|
99
|
+
`lineage reroll import` updates the target node's current attempt and should
|
|
100
|
+
not add a visible child edge.
|
|
101
|
+
|
|
102
|
+
Lineage task queue commands expose the same work as explicit tasks that agents
|
|
103
|
+
can inspect, claim, start, comment on, and cancel:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
lineage tasks list --project demo-project --root <root-asset-id> --json
|
|
107
|
+
lineage tasks inspect --project demo-project --task <task-id> --json
|
|
108
|
+
lineage tasks claim --project demo-project --task <task-id> --agent-name "Task worker" --json
|
|
109
|
+
lineage tasks start --project demo-project --task <task-id> --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
110
|
+
lineage tasks comment --project demo-project --task <task-id> --message "Blocked on source art review." --json
|
|
111
|
+
lineage tasks cancel --project demo-project --task <task-id> --confirm-write --override --json
|
|
112
|
+
lineage tasks instructions --project demo-project --task <task-id> --instructions "Preserve palette; replace unreadable text." --json
|
|
113
|
+
lineage tasks override --project demo-project --task <task-id> --reason "Human is reassigning the work." --instructions "Use the updated brief." --json
|
|
114
|
+
```
|
|
115
|
+
|
|
82
116
|
The app-created claim-aware handoff packet includes the same token export,
|
|
83
117
|
heartbeat, inspect, and write commands. Raw claim tokens are not shown in the
|
|
84
118
|
read-only Agents view.
|