proagents 1.6.18 → 1.6.19
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/.proagents/AGENTS.md +2 -0
- package/.proagents/AI_INSTRUCTIONS.md +13 -0
- package/.proagents/ANTIGRAVITY.md +2 -0
- package/.proagents/BOLT.md +2 -0
- package/.proagents/CHATGPT.md +2 -0
- package/.proagents/CLAUDE.md +2 -0
- package/.proagents/GEMINI.md +2 -0
- package/.proagents/GROQ.md +2 -0
- package/.proagents/KIRO.md +2 -0
- package/.proagents/LOVABLE.md +2 -0
- package/.proagents/PROAGENTS.md +2 -0
- package/.proagents/REPLIT.md +2 -0
- package/.proagents/prompts/00-project-setup.md +878 -0
- package/.proagents/prompts/04-planning.md +38 -0
- package/.proagents/prompts/12-rnd.md +957 -0
- package/.proagents/workflow-modes/entry-modes.md +27 -0
- package/.proagents/worklog/_context.template.md +47 -0
- package/COMMANDS.md +59 -0
- package/README.md +3 -1
- package/package.json +1 -1
|
@@ -12,6 +12,44 @@ pa:plan
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
+
## Flow Context Integration
|
|
16
|
+
|
|
17
|
+
Before planning, check `.proagents/worklog/_context.md` for Flow Context:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
📋 Checking for prior context...
|
|
21
|
+
|
|
22
|
+
If Flow Context exists from pa:feature:
|
|
23
|
+
┌─────────────────────────────────────────────────────────┐
|
|
24
|
+
│ 📋 Feature Context Available │
|
|
25
|
+
│ │
|
|
26
|
+
│ Feature: Cart State Management │
|
|
27
|
+
│ Tech Decision: Zustand (from pa:rnd) │
|
|
28
|
+
│ Research: docs/research/comparisons/state-mgmt.md │
|
|
29
|
+
│ Requirements: .proagents/active-features/cart-state/ │
|
|
30
|
+
│ │
|
|
31
|
+
│ Include in planning? (yes/no) │
|
|
32
|
+
└─────────────────────────────────────────────────────────┘
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### After Planning Complete
|
|
36
|
+
|
|
37
|
+
Update Flow Context for next phase:
|
|
38
|
+
|
|
39
|
+
```markdown
|
|
40
|
+
## Flow Context
|
|
41
|
+
```
|
|
42
|
+
Current Flow: rnd → feature → plan
|
|
43
|
+
Last Command: pa:plan
|
|
44
|
+
Decision: Implementation plan created
|
|
45
|
+
Context: [feature name] with [X] tasks
|
|
46
|
+
Next Suggested: pa:implement
|
|
47
|
+
Data: {"feature": "[name]", "tasks": [...], "plan_doc": "[path]"}
|
|
48
|
+
```
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
15
53
|
## Planning Flow
|
|
16
54
|
|
|
17
55
|
### Create Implementation Plan
|