cfsa-antigravity 2.14.0 → 2.15.0
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/template/.agent/kit-sync.md +3 -3
- package/template/.agent/workflows/create-prd-architecture.md +19 -0
- package/template/.agent/workflows/create-prd-compile.md +10 -0
- package/template/.agent/workflows/create-prd-design-system.md +8 -0
- package/template/.agent/workflows/create-prd-security.md +19 -0
- package/template/.agent/workflows/create-prd-stack.md +15 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Kit Sync State
|
|
2
2
|
|
|
3
3
|
upstream: https://github.com/RepairYourTech/cfsa-antigravity
|
|
4
|
-
last_synced_commit:
|
|
5
|
-
last_synced_at: 2026-03-
|
|
6
|
-
kit_version: 2.
|
|
4
|
+
last_synced_commit: 7c5b0504d422958d0c36cf83768a7b12d3a6ab2a
|
|
5
|
+
last_synced_at: 2026-03-20T18:30:16Z
|
|
6
|
+
kit_version: 2.15.0
|
|
@@ -38,6 +38,25 @@ Read the engagement tier protocol (`.agent/skills/prd-templates/references/engag
|
|
|
38
38
|
|
|
39
39
|
---
|
|
40
40
|
|
|
41
|
+
## 0.5. Ideation context reload
|
|
42
|
+
|
|
43
|
+
> **This step is mandatory.** Shards run in separate conversations — ideation context from the orchestrator is lost. Reload it here.
|
|
44
|
+
|
|
45
|
+
1. Read `docs/plans/ideation/ideation-index.md` — extract: Structure Map (domain list + paths), MoSCoW Summary (full feature inventory), Engagement Tier, persona list
|
|
46
|
+
2. Read `docs/plans/ideation/meta/constraints.md` — extract: Project Surfaces, compliance constraints, hard/soft constraints
|
|
47
|
+
3. Read `docs/plans/ideation/ideation-cx.md` (global cross-cuts) — extract: cross-domain data dependencies, trigger chains, shared entity ownership. Then read each domain-level `{domain}-cx.md` listed in the Structure Map
|
|
48
|
+
4. If `## Ideation Digest` exists in `docs/plans/architecture-draft.md` → use it as the structured feature inventory. Otherwise, read domain index files (`{domain}/{domain}-index.md`) directly per the deep ideation loading protocol (`.agent/skills/prd-templates/references/deep-ideation-loading-protocol.md`)
|
|
49
|
+
|
|
50
|
+
**How this context feeds downstream steps:**
|
|
51
|
+
- Component diagram (4.1) ← domain boundaries from domain indexes, trigger chains from CX files
|
|
52
|
+
- Data flow (4.2) ← cross-domain dependencies from CX files, persona access from role matrices
|
|
53
|
+
- Data strategy (5) ← key entities from domain children tables, shared entities from CX
|
|
54
|
+
- Data placement (5.1) ← surface constraints from constraints.md
|
|
55
|
+
|
|
56
|
+
> ❌ Do NOT proceed to Step 4 until all ideation context is loaded. Do NOT rely solely on architecture-draft.md — it is the agent's prior output, not the user's ideation.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
41
60
|
## 4. System architecture
|
|
42
61
|
|
|
43
62
|
Read `.agent/skills/api-design-principles/SKILL.md` for API surface design.
|
|
@@ -57,6 +57,16 @@ Document the agreed approach:
|
|
|
57
57
|
|
|
58
58
|
Write the completed `## Development Methodology` section to `docs/plans/architecture-draft.md` immediately after user confirmation. Follow the write verification protocol (`.agent/skills/prd-templates/references/write-verification-protocol.md`).
|
|
59
59
|
|
|
60
|
+
## 8.5. Ideation context reload for phasing
|
|
61
|
+
|
|
62
|
+
> **Mandatory.** Phase complexity sizing from the digest alone loses depth information. A "12-feature domain" could be 12 flat features or 12 features with 3 levels of sub-domain nesting — very different phase capacity.
|
|
63
|
+
|
|
64
|
+
1. Read `docs/plans/ideation/ideation-index.md` — extract: full MoSCoW Summary with per-domain feature counts, Structure Map with domain depths
|
|
65
|
+
2. For each **Must Have domain**: read `{domain}/{domain}-index.md` — extract Children table depth, sub-domain count, and dependency markers
|
|
66
|
+
3. Read CX files — extract cross-domain dependencies that constrain phase ordering (e.g., domain A must be implemented before domain B if B depends on A's data)
|
|
67
|
+
|
|
68
|
+
Use this context alongside the Ideation Digest (if it exists in architecture-draft.md) when sizing phases below.
|
|
69
|
+
|
|
60
70
|
## 9. Phasing strategy
|
|
61
71
|
|
|
62
72
|
Load the CI/CD skill(s) from the cross-cutting section per the skill loading protocol.
|
|
@@ -40,6 +40,14 @@ Read the engagement tier protocol (`.agent/skills/prd-templates/references/engag
|
|
|
40
40
|
5. Read `.agent/skills/prd-templates/references/design-system-decisions.md` — all decision option menus and the output template for `docs/plans/design-system.md`.
|
|
41
41
|
6. Note which surfaces are in scope from `## Project Surfaces`.
|
|
42
42
|
|
|
43
|
+
### Ideation workflow context
|
|
44
|
+
|
|
45
|
+
> **Mandatory.** Navigation paradigms and page archetypes must be driven by actual user workflows, not abstract feature lists.
|
|
46
|
+
|
|
47
|
+
7. Read the `## Structure Map` in `ideation-index.md` — identify the **3 heaviest domains** (highest feature count / deepest nesting)
|
|
48
|
+
8. For each heavy domain: read `{domain}/{domain}-index.md` — extract the Children table to understand the user-facing workflows (what screens exist, what data users interact with, what actions they take)
|
|
49
|
+
9. If any heavy domain has deep dives → read them for workflow complexity that affects navigation and archetype decisions
|
|
50
|
+
|
|
43
51
|
---
|
|
44
52
|
|
|
45
53
|
## 2. Decision 1 — Navigation paradigm
|
|
@@ -39,6 +39,25 @@ Read the engagement tier protocol (`.agent/skills/prd-templates/references/engag
|
|
|
39
39
|
|
|
40
40
|
---
|
|
41
41
|
|
|
42
|
+
## 0.5. Ideation context reload
|
|
43
|
+
|
|
44
|
+
> **This step is mandatory.** Shards run in separate conversations — ideation context from the orchestrator is lost.
|
|
45
|
+
|
|
46
|
+
1. Read `docs/plans/ideation/ideation-index.md` — extract: persona list (all roles), MoSCoW Summary, Engagement Tier
|
|
47
|
+
2. Read `docs/plans/ideation/meta/constraints.md` — extract: compliance constraints (COPPA/PCI/HIPAA triggers), regulatory requirements, age-related constraints
|
|
48
|
+
3. Read domain-level index files for **every domain that has Must Have features** — extract the **Role Matrix** from each. The role matrix shows which personas access which domain at which permission level (Full / Config / Read-only / None). This is the primary input for access control design in Step 6.
|
|
49
|
+
4. Read CX files (`ideation-cx.md` + domain-level `{domain}-cx.md`) — extract trust boundaries: which domains share data across different permission levels, cross-domain escalation paths
|
|
50
|
+
|
|
51
|
+
**How this context feeds downstream steps:**
|
|
52
|
+
- Auth design (6.1-2) ← persona list + role matrices determine RBAC scope
|
|
53
|
+
- Compliance escalation (6) ← constraints.md compliance flags trigger mandatory sections
|
|
54
|
+
- Trust boundaries (6.5) ← CX cross-domain dependencies reveal attack surface
|
|
55
|
+
- Integration security (7) ← ideation integration references inform threat model
|
|
56
|
+
|
|
57
|
+
> ❌ Do NOT proceed to Step 6 until ideation context is loaded. "Scan the ideation output" is NOT sufficient — read the specific files listed above.
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
42
61
|
## 6. Security model
|
|
43
62
|
|
|
44
63
|
Read .agent/skills/security-scanning-security-hardening/SKILL.md and follow its defense-in-depth methodology.
|
|
@@ -44,6 +44,21 @@ Present the constraints map to the user before starting tech decisions *(Interac
|
|
|
44
44
|
|
|
45
45
|
Read `.agent/skills/tech-stack-catalog/references/constraint-questions.md` for the per-axis constraint questions to ask before presenting options.
|
|
46
46
|
|
|
47
|
+
## 2.7. Domain context loading for tech decisions
|
|
48
|
+
|
|
49
|
+
> **This step is mandatory.** Reading `ideation-index.md` + `constraints.md` gives feature names, not feature architecture. Tech stack decisions require understanding *what the features actually do*.
|
|
50
|
+
|
|
51
|
+
Before starting tech decisions, load domain context:
|
|
52
|
+
|
|
53
|
+
1. Read the `## Structure Map` in `ideation-index.md` — identify all domain folders
|
|
54
|
+
2. For each **Must Have domain**: read `{domain}/{domain}-index.md` to extract the Children table (sub-features, depth, complexity)
|
|
55
|
+
3. For domains with **deep dives** (status `[DEEP]` or `[EXHAUSTED]`): read the deep dive files. These contain the architectural detail (multi-agent patterns, graph engines, sync protocols, embedded databases) that determines which tech stack is appropriate
|
|
56
|
+
4. Read CX files (`ideation-cx.md` + domain CX files) — extract cross-domain dependencies that affect framework choices (e.g., shared AI orchestration across surfaces)
|
|
57
|
+
|
|
58
|
+
**Per-axis context rule**: Before presenting tech options for any axis, identify which domain deep dives are relevant to that axis and confirm you have read them. Example: before an AI/ML framework decision, you must have read every domain file that describes AI-powered features — not just the MoSCoW bullet saying "AI diagnostics."
|
|
59
|
+
|
|
60
|
+
> ❌ If a tech axis involves features with deep dives that you haven't read → **STOP** and read them before presenting options. A MoSCoW summary line is never sufficient context for a tech stack decision.
|
|
61
|
+
|
|
47
62
|
## 3. Tech stack decisions
|
|
48
63
|
|
|
49
64
|
Read the **Project Surfaces** section from `docs/plans/ideation/meta/constraints.md` to determine which decision axes apply.
|