@forwardimpact/libcoaligned 0.1.12 → 0.1.13
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 +1 -1
- package/src/instructions.js +35 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forwardimpact/libcoaligned",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
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",
|
package/src/instructions.js
CHANGED
|
@@ -177,14 +177,47 @@ async function buildLayers(root, fs) {
|
|
|
177
177
|
name: "agent reference",
|
|
178
178
|
maxLines: 192,
|
|
179
179
|
maxWords: 1280,
|
|
180
|
-
files: await findAgentReferences(root, claudeDirs, fs)
|
|
180
|
+
files: (await findAgentReferences(root, claudeDirs, fs)).filter(
|
|
181
|
+
(p) => !p.endsWith("/agents/references/memory-protocol.md"),
|
|
182
|
+
),
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
id: "L4",
|
|
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,
|
|
194
|
+
files: (await findAgentReferences(root, claudeDirs, fs)).filter((p) =>
|
|
195
|
+
p.endsWith("/agents/references/memory-protocol.md"),
|
|
196
|
+
),
|
|
181
197
|
},
|
|
182
198
|
{
|
|
183
199
|
id: "L5",
|
|
184
200
|
name: "skill procedure",
|
|
185
201
|
maxLines: 192,
|
|
186
202
|
maxWords: 1280,
|
|
187
|
-
files: skillDirs
|
|
203
|
+
files: skillDirs
|
|
204
|
+
.map((d) => `${d}/SKILL.md`)
|
|
205
|
+
.filter((p) => !p.endsWith("/kata-release-merge/SKILL.md")),
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
id: "L5",
|
|
209
|
+
name: "kata-release-merge skill procedure",
|
|
210
|
+
// Larger than the L5 default to absorb four consolidated merge-gate
|
|
211
|
+
// rule sets that govern adjacent corners of one gate: phase-PR review
|
|
212
|
+
// transfer (pin-based head coverage), post-panel coverage (folded into
|
|
213
|
+
// the pin mechanism rather than duplicated), the spec-less
|
|
214
|
+
// experiment-PR approval path, and the block-comment re-ping cadence.
|
|
215
|
+
// Sized to the consolidated content, not open-ended.
|
|
216
|
+
maxLines: 320,
|
|
217
|
+
maxWords: 2304,
|
|
218
|
+
files: skillDirs
|
|
219
|
+
.map((d) => `${d}/SKILL.md`)
|
|
220
|
+
.filter((p) => p.endsWith("/kata-release-merge/SKILL.md")),
|
|
188
221
|
},
|
|
189
222
|
{
|
|
190
223
|
id: "L6",
|