proagents 1.6.9 → 1.6.11
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/.active-files +4 -0
- package/.proagents/.cursorrules +10 -0
- package/.proagents/.windsurfrules +10 -0
- package/.proagents/AI_INSTRUCTIONS.md +391 -3246
- package/.proagents/ANTIGRAVITY.md +10 -0
- package/.proagents/BOLT.md +10 -0
- package/.proagents/CHATGPT.md +10 -0
- package/.proagents/CLAUDE.md +10 -0
- package/.proagents/GEMINI.md +10 -0
- package/.proagents/GROQ.md +10 -0
- package/.proagents/KIRO.md +10 -0
- package/.proagents/LOVABLE.md +10 -0
- package/.proagents/PROAGENTS.md +16 -2
- package/.proagents/REPLIT.md +10 -0
- package/.proagents/changelog/_recent.md +24 -0
- package/.proagents/changelog/features/README.md +68 -0
- package/.proagents/changelog/modules/README.md +62 -0
- package/.proagents/docs/README.md +27 -0
- package/.proagents/docs/command-details.md +1115 -0
- package/.proagents/docs/testing.md +241 -0
- package/.proagents/prompts/06-testing.md +172 -0
- package/.proagents/prompts/07-documentation.md +166 -0
- package/.proagents/prompts/10-debug-logs.md +1130 -0
- package/.proagents/prompts/11-session-tracking.md +510 -0
- package/.proagents/worklog/README.md +114 -0
- package/.proagents/worklog/_context.md +43 -0
- package/README.md +57 -12
- package/package.json +1 -1
package/.proagents/.cursorrules
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents workflow framework.
|
|
4
4
|
|
|
5
|
+
## CRITICAL: Auto-Log Every Code Change
|
|
6
|
+
|
|
7
|
+
**After EVERY file edit, IMMEDIATELY update these files (no user prompt needed):**
|
|
8
|
+
|
|
9
|
+
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
|
+
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
|
11
|
+
3. `.proagents/worklog/_context.md` - Update current state
|
|
12
|
+
|
|
13
|
+
Module detection: `src/api/*`→api, `src/auth/*`→auth, `src/components/*`→ui
|
|
14
|
+
|
|
5
15
|
## Essential Commands
|
|
6
16
|
|
|
7
17
|
| Command | Action |
|
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
+
## CRITICAL: Auto-Log Every Code Change
|
|
6
|
+
|
|
7
|
+
**After EVERY file edit, IMMEDIATELY update these files (no user prompt needed):**
|
|
8
|
+
|
|
9
|
+
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
|
+
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
|
11
|
+
3. `.proagents/worklog/_context.md` - Update current state
|
|
12
|
+
|
|
13
|
+
Module detection: `src/api/*`→api, `src/auth/*`→auth, `src/components/*`→ui
|
|
14
|
+
|
|
5
15
|
## Essential Commands
|
|
6
16
|
|
|
7
17
|
| Command | Action |
|