proagents 1.6.12 → 1.6.13
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/.cursorrules +16 -2
- package/.proagents/.windsurfrules +16 -2
- package/.proagents/AI_INSTRUCTIONS.md +1219 -53
- package/.proagents/ANTIGRAVITY.md +16 -2
- package/.proagents/BOLT.md +16 -2
- package/.proagents/CHATGPT.md +16 -2
- package/.proagents/CLAUDE.md +16 -2
- package/.proagents/GEMINI.md +16 -2
- package/.proagents/GROQ.md +16 -2
- package/.proagents/KIRO.md +16 -2
- package/.proagents/LOVABLE.md +16 -2
- package/.proagents/PROAGENTS.md +52 -26
- package/.proagents/REPLIT.md +16 -2
- package/.proagents/docs/command-details.md +985 -82
- package/.proagents/worklog/_context.md +31 -1
- package/.proagents/worklog/ai-stats.json +19 -0
- package/README.md +85 -1
- package/bin/proagents.js +132 -1
- package/lib/commands/changelog.js +389 -0
- package/lib/commands/completion.js +413 -0
- package/lib/commands/config.js +248 -0
- package/lib/commands/doctor.js +222 -25
- package/lib/commands/help.js +22 -2
- package/lib/commands/init.js +2 -1
- package/lib/commands/open.js +188 -0
- package/lib/commands/release.js +1007 -0
- package/lib/commands/restore.js +150 -0
- package/lib/commands/stats.js +320 -0
- package/lib/commands/uninstall.js +98 -4
- package/lib/commands/upgrade.js +102 -10
- package/lib/commands/version.js +140 -0
- package/package.json +1 -1
package/.proagents/.cursorrules
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|