antigravity-atomic-swarms 2.1.3 → 2.1.4

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.
@@ -1,11 +1,9 @@
1
- # Phase 1.5 Checklist: Feature Extraction (Deep Dive)
1
+ # Phase 1.5 Checklist: Feature Extraction (Collaborative)
2
2
 
3
- - [ ] **SCoT Analysis**: Used Structured Chain of Thought to decompose the user's prompt (Mental Process visible).
4
- - [ ] **Atomic Decomposition**: Broken down "Big Concepts" into atomic, buildable features.
5
- - [ ] **Tech Stack Identified**: Languages, Frameworks, and Databases explicitly listed or asked about.
6
- - [ ] **Library Audit**: Specific libraries (e.g., Axios vs Fetch, Zod) identified or asked about.
7
- - [ ] **Form & Function**: Every feature has a defined Look (Form) and Logic (Function).
8
- - [ ] **Clarification Loop**: Asked user about ambiguous terms ("Fast", "Modern", "Secure").
9
- - [ ] **User Verification**: Presented the full inventory to the user and received "YES".
10
- - [ ] **Documentation Created**: `docs/feature_inventory.md` exists and is deeply populated.
11
- - [ ] **Zero Ambiguity**: No "TBD" items left in the inventory.
3
+ - [ ] **Context Hydrated**: Read Vision from `PROJECT_STATE.md` at start.
4
+ - [ ] **Recursive Loop**: Engaged in at least one cycle of "Suggest -> Confirm".
5
+ - [ ] **Proactive Suggestions**: Agent suggested features/libs the user didn't explicitly mention.
6
+ - [ ] **Real-Time Updates**: `feature_inventory.md` was updated (or drafted) during the loop.
7
+ - [ ] **Granularity Check**: Features are decomposed (Function + Form + Tech).
8
+ - [ ] **"Anything Else?"**: Asked the user if they had more ideas before closing the loop.
9
+ - [ ] **Final Approval**: User explicitly approved the "Locked Feature Inventory".
@@ -1,73 +1,63 @@
1
- # Phase 1.5: Feature Extraction & Specification (The Microscope)
1
+ # Phase 1.5: Feature Extraction & Specification (The Collaborative Loop)
2
2
 
3
3
  > **Parent Workflow**: 00-Solicitation
4
4
  > **Phase Number**: 1.5
5
- > **Objective**: Extract, catalog, and refine *every* feature, library, and requirement using **SCoT**.
5
+ > **Objective**: collaboratively extract, suggest, and refine *every* feature in a recursive loop until the user is satisfied.
6
6
 
7
7
  ---
8
8
 
9
9
  ## Prerequisites
10
10
  **MUST be completed before this phase**:
11
- - ✅ Phase 1: The Vision Statement
11
+ - ✅ Phase 1: The Vision Statement (or existing `PROJECT_STATE.md`)
12
12
 
13
13
  ---
14
14
 
15
15
  ## Instructions
16
16
 
17
- ### Step 1: Deep Extraction (SCoT Protocol)
18
- **Action**: You MUST use **Structured Chain of Thought (SCoT)** to parse the user's input.
19
- **Constraint**: Do NOT assume anything. If they said "Auth", you need to know "Which provider?".
20
- **Internal Process**:
21
- 1. *Analyze*: Read every word of the user's prompt.
22
- 2. *Decompose*: Break high-level terms (e.g., "Dashboard") into atomic components (e.g., "Sidebar", "Charts", "Data Fetching").
23
- 3. *Tech Scan*: Identify implied technologies (e.g., "Real-time" -> WebSockets/Socket.io? "3D" -> Three.js?).
24
-
25
- ### Step 2: The "Microscope" (Granular Interrogation)
26
- **Action**: For every extracted item, ask clarification questions if any detail is fuzzy.
27
- **Focus Areas**:
28
- - **Features**: "What exactly does this do?"
29
- - **UI/UX**: "Dark mode? Animations? Mobile responsive?"
30
- - **Tech Stack**: "React or Vue? Node or Python? SQL or NoSQL?"
31
- - **Libraries**: "Any specific preferences? (e.g., Tailwind vs MUI, Zod vs Yup)"
32
-
33
- ### Step 3: Verification Loop (The Mirror)
34
- **Action**: Present the **Feature Inventory** to the user.
17
+ ### Step 0: Context Hydration
18
+ **Action**: Read `memory/PROJECT_STATE.md`.
19
+ **Internal Thought**: "What is the high-level goal? I need to know this to make suggestions."
20
+
21
+ ### Step 1: The Recursive Extraction Loop (REPEAT UNTIL DONE)
22
+ **Action**: Enter a loop of extraction, suggestion, and verification.
23
+
24
+ #### 1.1: Analyze & Suggest
25
+ - **Read**: The user's latest input.
26
+ - **Extract**: Identify features, tech, and constraints using SCoT.
27
+ - **Suggest**: "Based on [User Input], you might also need [Suggestion A] and [Suggestion B]. Should I add these?"
28
+ - **Clarify**: "For [Feature X], did you mean [Option A] or [Option B]?"
29
+
30
+ #### 1.2: Update Inventory (Real-Time)
31
+ - **Action**: Update `docs/feature_inventory.md` with *confirmed* items.
32
+ - **Display**: Show the current "Draft Inventory" in the chat.
33
+ ```markdown
34
+ **Current Inventory**:
35
+ 1. [Feature 1]
36
+ 2. [Feature 2]
37
+ ...
38
+ ```
39
+
40
+ #### 1.3: The "Anything Else?" Gate
41
+ - **Ask**: "Is there anything else you can think of? Or any other features I should suggest?"
42
+ - **If User says 'More'**: Repeat Step 1.1.
43
+ - **If User says 'Done'**: Proceed to Step 2.
44
+
45
+ ### Step 2: Final Verification (The Mirror)
46
+ **Action**: Present the **Final Feature Inventory** to the user.
35
47
  **Prompt**:
36
48
  ```
37
- ┌─────────────────── FEATURE INVENTORY (DRAFT) ───────────────────┐
38
- | 1. [Feature]: [Description] (Tech: [Implied Stack]) |
39
- | 2. [Feature]: [Description] (Tech: [Implied Stack]) |
40
- | 3. [Feature]: [Description] (Tech: [Implied Stack]) |
41
- └─────────────────────────────────────────────────────────────────┘
42
- I have used SCoT to break this down.
43
- - Am I missing any features?
44
- - Are these the correct libraries/languages?
45
- - Is there anything else?
49
+ ┌─────────────────── LOCKED FEATURE INVENTORY ───────────────────┐
50
+ | [Full List of Features, Tech Stack, and Libraries] |
51
+ └────────────────────────────────────────────────────────────────┘
52
+ Are we ready to lock this in and move to Hindsight Visioning?
53
+ 1. YES: Proceed.
54
+ 2. NO: Back to Loop.
46
55
  ```
47
56
 
48
- ### Step 4: Documentation (The Source of Truth)
49
- **Action**: Save the final approved list to `docs/feature_inventory.md`.
50
- **Format**:
51
- ```markdown
52
- # Feature Inventory
53
- ## Core Features
54
- 1. [Feature Name]
55
- - **Function**: [What it does]
56
- - **Form**: [How it looks]
57
- - **Tech**: [Library/Language]
58
-
59
- ## Technical Stack (Preliminary)
60
- - **Language**: [e.g., TypeScript]
61
- - **Frontend**: [e.g., React, Tailwind]
62
- - **Backend**: [e.g., Node, Express]
63
- - **Database**: [e.g., PostgreSQL]
64
-
65
- ## Libraries & Tools
66
- - [Lib 1]
67
- - [Lib 2]
68
- ```
57
+ ### Step 3: Documentation
58
+ **Action**: Ensure `docs/feature_inventory.md` is complete and saved.
69
59
 
70
- ### Step 5: Phase Checklist
60
+ ### Step 4: Phase Checklist
71
61
  **Action**: Open `.agent/checklists/00-solicitation/phase-1.5-feature-extraction-checklist.md`.
72
62
  **Instruction**: Verify every item is checked.
73
63
 
@@ -75,11 +65,9 @@ I have used SCoT to break this down.
75
65
 
76
66
  ## Exit Criteria
77
67
  **This phase is complete when ALL of the following are true**:
78
- - ✅ SCoT analysis performed on input.
79
- - ✅ Granular features defined (Function + Form + Tech).
80
- - ✅ Libraries and Languages explicitly listed.
81
- - ✅ User has explicitly confirmed the Inventory is complete.
82
- - ✅ `docs/feature_inventory.md` created.
68
+ - ✅ Recursive loop continued until user said "Done".
69
+ - ✅ Agent proactively made suggestions.
70
+ - ✅ `docs/feature_inventory.md` created and approved.
83
71
  - ✅ Checklist verified.
84
72
 
85
73
  ---
@@ -32,6 +32,7 @@
32
32
 
33
33
  ### Phase 1: The Vision Statement
34
34
  > **📖 READ AND EXECUTE**: `.agent/rules/00-solicitation/phase-1-vision-statement.md`
35
+ **Smart Skip**: If `memory/PROJECT_STATE.md` already contains a high-level goal, SKIP this phase and jump to Phase 1.5.
35
36
  **Quick Summary**: Define high-level goal.
36
37
  **Exit Criteria**: Goal recorded.
37
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antigravity-atomic-swarms",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "The Antigravity Atomic Swarms workflow system for agentic coding.",
5
5
  "main": "index.js",
6
6
  "bin": {