@quolu/lattice 0.12.27 → 0.12.28

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/README.md CHANGED
@@ -3,6 +3,14 @@
3
3
  Latticeは、codebaseの境界を観測・変換し、multi-agent開発の並列TODO graphを生成する
4
4
  schedulability compilerです。
5
5
 
6
+ ## 開発工場での位置づけ
7
+
8
+ Latticeは[dotagents開発工場](https://github.com/kitepon-rgb/dotagents)が管理する
9
+ 自作コア10製品の一つです。本repoはplan/ToDo/run store、sensor、schema、migration、
10
+ release、diagnosticsを所有し、dotagentsは製品横断の工程利用・導入・host統合を所有します。
11
+ 廃止済みの前身sensorは独立製品として配線せず、Lattice sensorだけを現役面とします。
12
+ MarkItDownは別区分の第三者CLIです。
13
+
6
14
  現在の工程状態と完了証拠の正本は、このrepoのLattice storeです。文書の役割と現行導線は
7
15
  [docs/README.md](docs/README.md)、製品思想は[PLAN.md](PLAN.md)、公開contractは
8
16
  [docs/00_product-contract.md](docs/00_product-contract.md)を参照してください。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quolu/lattice",
3
- "version": "0.12.27",
3
+ "version": "0.12.28",
4
4
  "description": "Lattice — phase-aware TODO graph compiler and conflict-aware orchestration runtime",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -3143,6 +3143,8 @@ export async function applyTodoRevision(options = {}) {
3143
3143
  journal_ref: journalRef, snapshot_ref: snapshotRef,
3144
3144
  topology_digest: revision.desired_plan.topology_digest,
3145
3145
  journal_head_digest: genesis.event_digest,
3146
+ ...(currentManifest.schema === 'lattice.todo_manifest.v2'
3147
+ ? { active_revision_digest: revision.revision_digest } : {}),
3146
3148
  });
3147
3149
  currentManifest.manifest_digest = todoSelfDigest(currentManifest, 'manifest_digest');
3148
3150
  await atomicWrite(path.resolve(repoRoot, MANIFEST_REF), canonicalLine(currentManifest));