@forwardimpact/libcoaligned 0.1.0 → 0.1.1

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.0",
3
+ "version": "0.1.1",
4
4
  "description": "Co-Aligned architecture checks — enforce instruction-layer length caps and JTBD invariants across the repo.",
5
5
  "keywords": [
6
6
  "coaligned",
@@ -123,7 +123,8 @@ async function buildLayers(root) {
123
123
  id: "L2",
124
124
  name: "JTBD.md",
125
125
  maxLines: 320,
126
- maxWords: 1408,
126
+ // Bumped from 1408 in spec 1010 to absorb a fifth persona block.
127
+ maxWords: 1664,
127
128
  files: ["JTBD.md"],
128
129
  },
129
130
  {
package/src/jtbd.js CHANGED
@@ -6,6 +6,7 @@ const VALID_USERS = [
6
6
  "Engineering Leaders",
7
7
  "Empowered Engineers",
8
8
  "Platform Builders",
9
+ "Teams Using Agents",
9
10
  ];
10
11
 
11
12
  const USER_ORDER = new Map(VALID_USERS.map((u, i) => [u, i]));