cfsa-antigravity 2.18.1 → 2.18.2

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.1",
3
+ "version": "2.18.2",
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: 9434b89a7d1ad33b85d8b5556f80795366c96bde
5
- last_synced_at: 2026-03-25T04:15:18Z
6
- kit_version: 2.18.1
4
+ last_synced_commit: 4c7ad72ad1a4e9bf8468c669dbae52c6fe216cab
5
+ last_synced_at: 2026-03-25T04:37:54Z
6
+ kit_version: 2.18.2
@@ -102,6 +102,6 @@ docs/plans/ia/
102
102
 
103
103
  docs/plans/desktop/be/ ← per-surface BE specs
104
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
+ docs/plans/be/ ← shared BE specs (pre-scaffolded, serves as shared surface)
106
+ docs/plans/fe/ ← shared FE specs (pre-scaffolded, serves as shared surface)
107
107
  ```
@@ -211,7 +211,7 @@ Create or update `docs/plans/index.md`:
211
211
 
212
212
  | Surface | BE Index | FE Index | Description |
213
213
  |---------|----------|----------|-------------|
214
- | **Shared** | [shared/be/index.md](shared/be/index.md) | | Cross-surface contracts |
214
+ | **Shared** | [be/index.md](be/index.md) | [fe/index.md](fe/index.md) | Cross-surface contracts (pre-scaffolded dirs) |
215
215
  | **[Surface 1]** | [surface-1/be/index.md](surface-1/be/index.md) | [surface-1/fe/index.md](surface-1/fe/index.md) | [description] |
216
216
  | **[Surface 2]** | [surface-2/be/index.md](surface-2/be/index.md) | [surface-2/fe/index.md](surface-2/fe/index.md) | [description] |
217
217
 
@@ -45,8 +45,6 @@ Grep the entire `docs/plans/` tree for the parent shard number using these patte
45
45
  | `docs/plans/ia/` | Always |
46
46
  | `docs/plans/be/` | If exists |
47
47
  | `docs/plans/fe/` | If exists |
48
- | `docs/plans/shared/be/` | If exists |
49
- | `docs/plans/shared/fe/` | If exists |
50
48
  | `docs/plans/web/be/` | If exists |
51
49
  | `docs/plans/web/fe/` | If exists |
52
50
  | `docs/plans/desktop/be/` | If exists |
@@ -34,9 +34,9 @@ Create directory structure, shard skeleton files, and all layer indexes.
34
34
 
35
35
  IA shards are **shared across all surfaces** — they live in the flat `docs/plans/ia/` directory regardless of project type. IA describes domains, not surfaces.
36
36
 
37
- For each surface identified in the architecture design, plus a `shared/` surface, create per-surface BE and FE subdirectories only (e.g., `docs/plans/shared/be/`, `docs/plans/web/be/`, `docs/plans/web/fe/`, `docs/plans/mobile/fe/`, etc.). Each new directory must include a `.gitkeep` file and a `README.md`.
37
+ For each surface identified in the architecture design, create per-surface BE and FE subdirectories only (e.g., `docs/plans/web/be/`, `docs/plans/web/fe/`, `docs/plans/mobile/fe/`, etc.). Each new directory must include a `.gitkeep` file and a `README.md`. **Do NOT create `shared/be/` or `shared/fe/`** — the pre-scaffolded `docs/plans/be/` and `docs/plans/fe/` directories serve as the shared surface for cross-surface contracts.
38
38
 
39
- Per-surface BE/FE directories hold surface-specific backend and frontend specs. The `shared/` surface contains cross-surface contracts that multiple surfaces depend on.
39
+ Per-surface BE/FE directories hold surface-specific backend and frontend specs. The pre-scaffolded `docs/plans/be/` and `docs/plans/fe/` hold shared cross-surface contracts (downstream workflows already resolve flat `docs/plans/be/` as surface `shared`).
40
40
 
41
41
  ### Mandatory: 00-infrastructure shard (all project types)
42
42