@mean-weasel/lineage 0.1.15 → 0.1.16
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 +6 -0
- package/README.md +23 -2
- package/dist/cli/lineage-dev.js +728 -40
- package/dist/cli/lineage-dev.js.map +4 -4
- package/dist/cli/lineage-preview.js +728 -40
- package/dist/cli/lineage-preview.js.map +4 -4
- package/dist/cli/lineage.js +728 -40
- package/dist/cli/lineage.js.map +4 -4
- package/dist/runtime-build.json +4 -4
- package/dist/server.js +841 -81
- package/dist/server.js.map +4 -4
- package/dist/web/assets/{app-CDxSvoD3.css → app-DwTFac4u.css} +1 -1
- package/dist/web/assets/app-JYTx_Sd4.js +16 -0
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/dist/web/assets/app-CYUgf6rX.js +0 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.16
|
|
4
|
+
|
|
5
|
+
- Add editable one- or two-word lineage edge summaries with agent/human provenance, optimistic concurrency protection, accessible keyboard editing, and consistent labels across every graph orientation.
|
|
6
|
+
- Add a versioned generation-output manifest that binds each new output to its selected parent and required edge summary while preserving completion of already-planned legacy jobs.
|
|
7
|
+
- Upgrade the node inspector with uncropped media, Branch, Re-roll, and Details actions, focus-scoped B/R/D shortcuts, and modal-safe dismissal in place of the redundant fixed Inspecting card.
|
|
8
|
+
|
|
3
9
|
## 0.1.15
|
|
4
10
|
|
|
5
11
|
- Add a subtle root marker that makes the starting point of each lineage tree immediately recognizable.
|
package/README.md
CHANGED
|
@@ -287,12 +287,33 @@ Keep the claim fresh and pass it to mutating commands:
|
|
|
287
287
|
|
|
288
288
|
```bash
|
|
289
289
|
lineage agent heartbeat --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
290
|
-
lineage link-child --project demo-project --root <root-asset-id> --child <child-asset-id> --claim-token "$LINEAGE_CLAIM_TOKEN" --confirm-write --json
|
|
290
|
+
lineage link-child --project demo-project --root <root-asset-id> --child <child-asset-id> --summary "Cleaner type" --claim-token "$LINEAGE_CLAIM_TOKEN" --confirm-write --json
|
|
291
291
|
lineage agent release --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
292
292
|
```
|
|
293
293
|
|
|
294
294
|
`lineage link-child` creates a new visible descendant in the lineage graph. Do
|
|
295
|
-
not use it for re-rolls.
|
|
295
|
+
not use it for re-rolls. The coordinating agent must supply `--summary` with a
|
|
296
|
+
one- or two-word description of the change from parent to child.
|
|
297
|
+
|
|
298
|
+
For a coordinated multi-output generation job, plan from the selected lineage
|
|
299
|
+
bases, copy `job.handoff.output_manifest` from the JSON response into a manifest
|
|
300
|
+
file, and fill every output's `file_path` and distinct one- or two-word
|
|
301
|
+
`edge_summary` before import:
|
|
302
|
+
|
|
303
|
+
```bash
|
|
304
|
+
lineage generate image plan --project demo-project --prompt "Create two variations" --from-lineage-selection --count 2 --json
|
|
305
|
+
lineage generate image inspect --project demo-project --job-id <job-id> --json
|
|
306
|
+
lineage generate image import --project demo-project --job-id <job-id> --manifest .asset-scratch/generation-output-manifest.json --confirm-write --json
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
Newly planned selection jobs require the versioned manifest and reject mixed
|
|
310
|
+
`--manifest`, `--files`, or `--parent-files` input. Jobs already planned with
|
|
311
|
+
the legacy adapter may still finish with `--files` or `--parent-files`; those
|
|
312
|
+
legacy child edges remain unlabeled. Manifest retries are idempotent only while
|
|
313
|
+
the output mapping, original summary, and current agent provenance still match.
|
|
314
|
+
Asset indexing precedes the receipt transaction, so a later transactional
|
|
315
|
+
failure can leave an indexed asset even though outputs, edges, receipt, job
|
|
316
|
+
status, and selection reset roll back together.
|
|
296
317
|
|
|
297
318
|
For re-roll work, mark the target, have the agent plan/import one replacement
|
|
298
319
|
attempt, and cancel only when the request should be abandoned:
|