cfsa-antigravity 2.18.0 → 2.18.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": "cfsa-antigravity",
3
- "version": "2.18.0",
3
+ "version": "2.18.1",
4
4
  "description": "CFSA Pipeline — Constraint-First Specification Architecture for AI agents. Production-grade from line one.",
5
5
  "scripts": {
6
6
  "changeset": "changeset",
@@ -1,6 +1,6 @@
1
1
  # Kit Sync State
2
2
 
3
3
  upstream: https://github.com/RepairYourTech/cfsa-antigravity
4
- last_synced_commit: a42ee2fd17830430d03da6a4a543039c37bb9213
5
- last_synced_at: 2026-03-25T02:08:41Z
6
- kit_version: 2.18.0
4
+ last_synced_commit: 9434b89a7d1ad33b85d8b5556f80795366c96bde
5
+ last_synced_at: 2026-03-25T04:15:18Z
6
+ kit_version: 2.18.1
@@ -82,7 +82,7 @@ At the validation step, the user must confirm whether to:
82
82
 
83
83
  ### Directory Example
84
84
 
85
- Seeded skeletons live in the `docs/plans/ia/` directory (or per-surface directories for multi-product):
85
+ Seeded skeletons always live in the flat `docs/plans/ia/` directory IA is shared across all surfaces. Multi-product projects add per-surface BE and FE directories only:
86
86
 
87
87
  **Single-surface:**
88
88
  ```
@@ -93,13 +93,15 @@ docs/plans/ia/
93
93
  ├── ...
94
94
  ```
95
95
 
96
- **Multi-product:**
96
+ **Multi-product** (IA stays flat — only BE/FE get per-surface directories):
97
97
  ```
98
- docs/plans/desktop/ia/
98
+ docs/plans/ia/
99
99
  ├── 00-infrastructure.md
100
100
  ├── 01-operations.md ← ## Features seeded from ideation/surfaces/desktop/01-operations/ (index + feature files)
101
- ├── 02-inventory.md ← ## Features seeded from ideation/surfaces/desktop/02-inventory/ (index + feature files)
101
+ ├── 02-device-history.md ← ## Features seeded from ideation/domains/02-device-history/ (index + feature files)
102
102
 
103
- docs/plans/shared/ia/
104
- ├── 01-device-history.md ← ## Features seeded from ideation/domains/01-device-history/ (index + feature files)
103
+ docs/plans/desktop/be/ ← per-surface BE specs
104
+ docs/plans/desktop/fe/ ← per-surface FE specs
105
+ docs/plans/shared/be/ ← shared BE specs
106
+ docs/plans/shared/fe/ ← shared FE specs
105
107
  ```
@@ -43,10 +43,6 @@ Grep the entire `docs/plans/` tree for the parent shard number using these patte
43
43
  | Directory | Required |
44
44
  |-----------|----------|
45
45
  | `docs/plans/ia/` | Always |
46
- | `docs/plans/shared/ia/` | If exists |
47
- | `docs/plans/web/ia/` | If exists |
48
- | `docs/plans/desktop/ia/` | If exists |
49
- | `docs/plans/mobile/ia/` | If exists |
50
46
  | `docs/plans/be/` | If exists |
51
47
  | `docs/plans/fe/` | If exists |
52
48
  | `docs/plans/shared/be/` | If exists |
@@ -77,7 +77,7 @@ Grep `docs/plans/` recursively for all references to the parent shard number. Th
77
77
  | Parenthetical inline refs | `(see shard 00)` |
78
78
  | Cross-shard links | `[00-infrastructure.md]` |
79
79
 
80
- **Scope**: All directories under `docs/plans/` — `ia/`, `shared/ia/`, `web/ia/`, `desktop/ia/`, `mobile/ia/`, `be/`, `fe/`, and any other surface-specific spec directories.
80
+ **Scope**: All directories under `docs/plans/` — `ia/`, `be/`, `fe/`, and any per-surface BE/FE directories (e.g., `shared/be/`, `web/fe/`, `desktop/be/`).
81
81
 
82
82
  **Exclusion**: Skip the parent stub file itself (it's already marked SPLIT).
83
83