@forwardimpact/libcoaligned 0.1.13 → 0.1.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/libcoaligned",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Co-Aligned architecture checks — enforce instruction-layer length caps, JTBD invariants, and the repo's own declarative invariant rule modules.",
5
5
  "keywords": [
6
6
  "coaligned",
@@ -184,13 +184,17 @@ async function buildLayers(root, fs) {
184
184
  {
185
185
  id: "L4",
186
186
  name: "memory-protocol agent reference",
187
- // Larger than the L4 default to absorb the boot-digest routing
188
- // contract this one reference is the sole home for: the materialized
189
- // agent-experiments surface (provenance fields + last-successful-sync
190
- // freshness bound) and the verbatim standing-carries digest field.
191
- // Sized to the current content, not open-ended.
192
- maxLines: 212,
193
- maxWords: 1472,
187
+ // Larger than the L4 default to absorb the two durable surfaces this
188
+ // one reference is the sole home for: the boot-digest routing contract
189
+ // (materialized agent-experiments surface with provenance fields and a
190
+ // last-successful-sync freshness bound, plus the verbatim
191
+ // standing-carries digest field) and the canonical Carry Surface
192
+ // section (a durable per-Assess obligation surface kept off the summary
193
+ // budget, beside the On-Boot Read Set it extends). Both are load-bearing
194
+ // memory-protocol concepts. Sized to the current content, not
195
+ // open-ended.
196
+ maxLines: 216,
197
+ maxWords: 1588,
194
198
  files: (await findAgentReferences(root, claudeDirs, fs)).filter((p) =>
195
199
  p.endsWith("/agents/references/memory-protocol.md"),
196
200
  ),