@mean-weasel/lineage 0.1.14 → 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 +12 -0
- package/README.md +60 -5
- package/dist/cli/lineage-dev.js +889 -55
- package/dist/cli/lineage-dev.js.map +4 -4
- package/dist/cli/lineage-preview.js +889 -55
- package/dist/cli/lineage-preview.js.map +4 -4
- package/dist/cli/lineage.js +889 -55
- package/dist/cli/lineage.js.map +4 -4
- package/dist/runtime-build.json +4 -4
- package/dist/server.js +854 -88
- package/dist/server.js.map +4 -4
- package/dist/web/assets/{index-3uJbXqPS.css → app-DwTFac4u.css} +1 -1
- package/dist/web/assets/app-JYTx_Sd4.js +16 -0
- package/dist/web/assets/jsx-runtime-_Rdg6et1.js +8 -0
- package/dist/web/assets/landing-D3Y679_B.css +1 -0
- package/dist/web/assets/landing-ii8AH_DG.js +1 -0
- package/dist/web/index.html +3 -2
- package/dist/web/landing/index.html +19 -0
- package/package.json +2 -1
- package/dist/web/assets/index-DJ5UR_oa.js +0 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
9
|
+
## 0.1.15
|
|
10
|
+
|
|
11
|
+
- Add a subtle root marker that makes the starting point of each lineage tree immediately recognizable.
|
|
12
|
+
- Add full-asset previews on node hover and keyboard focus while preserving double-click for full details and attempt history.
|
|
13
|
+
- Add a browser-local setting to disable hover previews, plus refresh-state safeguards that keep dismissed previews closed during background updates.
|
|
14
|
+
|
|
3
15
|
## 0.1.14
|
|
4
16
|
|
|
5
17
|
- Fix isolated channel installs against npm clients that return registry integrity as a flat `dist.integrity` field, while rejecting missing or conflicting identity metadata.
|
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ lineage-channel install preview
|
|
|
19
19
|
|
|
20
20
|
By default the installer writes immutable version/integrity roots beneath
|
|
21
21
|
`~/Library/Application Support/Lineage/runtimes`, plus channel-qualified
|
|
22
|
-
launchers
|
|
22
|
+
launchers under `~/.local/bin`. Every launcher is pinned to an absolute
|
|
23
23
|
package root and install receipt; it does not select code from `PATH` at runtime.
|
|
24
24
|
|
|
25
25
|
The three exact channel meanings are:
|
|
@@ -131,6 +131,30 @@ matching legacy identity, but refuses a conflicting identity. An unprofiled
|
|
|
131
131
|
CLI or service is `legacy-unbound` and read-only; mutating CLI commands and HTTP
|
|
132
132
|
methods fail with a profile-required error instead of creating a database.
|
|
133
133
|
|
|
134
|
+
Checkout fingerprints intentionally change as tracked or untracked source
|
|
135
|
+
changes. To repin an existing development profile, first stop its managed
|
|
136
|
+
service, then run the guarded checkout-only workflow:
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
make repin-dev LINEAGE_DEV_PROFILE=team-development
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
The underlying explicit command is:
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
npm run lineage:dev -- profile repin-runtime \
|
|
146
|
+
--profile team-development --checkout-root "$PWD" --confirm-write --json
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Repin accepts only a verified dev checkout whose canonical root equals
|
|
150
|
+
`--checkout-root`, an owner-only development manifest already pinned to
|
|
151
|
+
dev/checkout, and an available profile writer lease. It atomically replaces
|
|
152
|
+
only `expected_runtime`; profile/database identity, paths, environment,
|
|
153
|
+
service origin, and migrations stay unchanged. Production, preview, package,
|
|
154
|
+
wrong-root, unsafe-manifest, unconfirmed, and active-service cases fail closed.
|
|
155
|
+
The command may prepare a new structurally valid development manifest before
|
|
156
|
+
its database and asset root are cloned.
|
|
157
|
+
|
|
134
158
|
To create a realistic preview or development database without copying a live
|
|
135
159
|
SQLite file directly, define a new non-production target profile whose database
|
|
136
160
|
does not exist, then run:
|
|
@@ -263,12 +287,33 @@ Keep the claim fresh and pass it to mutating commands:
|
|
|
263
287
|
|
|
264
288
|
```bash
|
|
265
289
|
lineage agent heartbeat --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
266
|
-
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
|
|
267
291
|
lineage agent release --claim-token "$LINEAGE_CLAIM_TOKEN" --json
|
|
268
292
|
```
|
|
269
293
|
|
|
270
294
|
`lineage link-child` creates a new visible descendant in the lineage graph. Do
|
|
271
|
-
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.
|
|
272
317
|
|
|
273
318
|
For re-roll work, mark the target, have the agent plan/import one replacement
|
|
274
319
|
attempt, and cancel only when the request should be abandoned:
|
|
@@ -321,8 +366,12 @@ npx @mean-weasel/lineage-plugin-installer install --channel latest
|
|
|
321
366
|
|
|
322
367
|
The installer verifies the plugin artifact checksum and rejects plugin manifests
|
|
323
368
|
whose version or `lineage.version` does not exactly match the resolved Lineage
|
|
324
|
-
package version.
|
|
325
|
-
|
|
369
|
+
package version. It then creates a dedicated marketplace under the active
|
|
370
|
+
`CODEX_HOME`, registers that marketplace with supported `codex plugin`
|
|
371
|
+
commands, installs the plugin, and verifies that Codex reports the exact version
|
|
372
|
+
as installed and enabled. Use `--target-dir <path>` for a files-only install or
|
|
373
|
+
`--dry-run` for a non-mutating activation plan. The plugin artifact and installer
|
|
374
|
+
package are released from this public repository.
|
|
326
375
|
|
|
327
376
|
Every Lineage release preflights the current operator skill, packs and checksums
|
|
328
377
|
the exact matching plugin, installs that artifact into a temporary Codex plugin
|
|
@@ -331,6 +380,12 @@ or dist-tag mutation is allowed. Release status reports the local version lock
|
|
|
331
380
|
and GitHub assets. The installed skill requires isolated channel launchers,
|
|
332
381
|
named profiles, managed service identity status, and profile-only writes.
|
|
333
382
|
|
|
383
|
+
The checkout also exposes `.agents/plugins/marketplace.json`, which points only
|
|
384
|
+
at the checkout plugin and marks it installed by default for new development
|
|
385
|
+
tasks. That repo marketplace is separate from the installer-managed marketplace
|
|
386
|
+
under `CODEX_HOME`; restart Codex and use a brand-new task when validating either
|
|
387
|
+
activation path.
|
|
388
|
+
|
|
334
389
|
## Local Development
|
|
335
390
|
|
|
336
391
|
```bash
|