proagents 1.6.19 → 1.6.20
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/.claude/settings.local.json +13 -1
- package/.proagents/.cursorrules +25 -10
- package/.proagents/.windsurfrules +25 -10
- package/.proagents/AGENTS.md +30 -11
- package/.proagents/AI_INSTRUCTIONS.md +86 -30
- package/.proagents/BOLT.md +25 -10
- package/.proagents/CLAUDE.md +25 -10
- package/.proagents/GEMINI.md +25 -10
- package/.proagents/KIRO.md +25 -10
- package/.proagents/LOVABLE.md +25 -10
- package/.proagents/PROAGENTS.md +96 -343
- package/.proagents/REPLIT.md +25 -10
- package/.proagents/activity.log +1 -0
- package/.proagents/platforms.yaml +66 -0
- package/.proagents/prompts/ai-add.md +80 -0
- package/.proagents/prompts/ai-list.md +41 -0
- package/.proagents/prompts/ai-remove.md +112 -0
- package/.proagents/prompts/ai-sync.md +96 -0
- package/lib/commands/ai.js +100 -48
- package/lib/commands/init.js +32 -14
- package/package.json +1 -1
- package/.proagents/ANTIGRAVITY.md +0 -61
- package/.proagents/CHATGPT.md +0 -57
- package/.proagents/GROQ.md +0 -57
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
# ProAgents Commands for Antigravity IDE
|
|
2
|
-
|
|
3
|
-
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
-
|
|
5
|
-
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
|
-
|
|
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:**
|
|
22
|
-
|
|
23
|
-
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
24
|
-
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
|
25
|
-
3. `.proagents/worklog/_context.md` - Update current state
|
|
26
|
-
|
|
27
|
-
Module detection: `src/api/*`→api, `src/auth/*`→auth, `src/components/*`→ui
|
|
28
|
-
|
|
29
|
-
## Essential Commands
|
|
30
|
-
|
|
31
|
-
| Command | Action |
|
|
32
|
-
|---------|--------|
|
|
33
|
-
| `pa:feature "name"` | Start new feature workflow |
|
|
34
|
-
| `pa:fix "bug"` | Quick bug fix mode |
|
|
35
|
-
| `pa:project-setup` | Interactive project setup wizard |
|
|
36
|
-
| `pa:rnd` | Research & Development workflow |
|
|
37
|
-
| `pa:doc` | Documentation options |
|
|
38
|
-
| `pa:qa` | Quality assurance checks |
|
|
39
|
-
| `pa:test` | Run test workflow |
|
|
40
|
-
| `pa:deploy` | Deployment preparation |
|
|
41
|
-
| `pa:status` | Show current progress |
|
|
42
|
-
|
|
43
|
-
## Full Command Reference
|
|
44
|
-
|
|
45
|
-
For complete command list, see: `./.proagents/AI_INSTRUCTIONS.md`
|
|
46
|
-
|
|
47
|
-
## On `pa:` Command
|
|
48
|
-
|
|
49
|
-
1. Read the corresponding file from `./.proagents/prompts/` or `./.proagents/workflow-modes/`
|
|
50
|
-
2. Follow the workflow instructions
|
|
51
|
-
3. Use project config from `./.proagents/proagents.config.yaml`
|
|
52
|
-
|
|
53
|
-
## Key Files
|
|
54
|
-
|
|
55
|
-
- `./.proagents/AI_INSTRUCTIONS.md` - Complete command reference
|
|
56
|
-
- `./.proagents/WORKFLOW.md` - Full 10-phase workflow
|
|
57
|
-
- `./.proagents/prompts/` - Phase-specific prompts
|
|
58
|
-
|
|
59
|
-
## Note
|
|
60
|
-
|
|
61
|
-
Works with both Gemini and Claude models in Antigravity.
|
package/.proagents/CHATGPT.md
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
# ProAgents Commands for ChatGPT / Codex
|
|
2
|
-
|
|
3
|
-
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
-
|
|
5
|
-
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
|
-
|
|
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:**
|
|
22
|
-
|
|
23
|
-
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
24
|
-
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
|
25
|
-
3. `.proagents/worklog/_context.md` - Update current state
|
|
26
|
-
|
|
27
|
-
Module detection: `src/api/*`→api, `src/auth/*`→auth, `src/components/*`→ui
|
|
28
|
-
|
|
29
|
-
## Essential Commands
|
|
30
|
-
|
|
31
|
-
| Command | Action |
|
|
32
|
-
|---------|--------|
|
|
33
|
-
| `pa:feature "name"` | Start new feature workflow |
|
|
34
|
-
| `pa:fix "bug"` | Quick bug fix mode |
|
|
35
|
-
| `pa:project-setup` | Interactive project setup wizard |
|
|
36
|
-
| `pa:rnd` | Research & Development workflow |
|
|
37
|
-
| `pa:doc` | Documentation options |
|
|
38
|
-
| `pa:qa` | Quality assurance checks |
|
|
39
|
-
| `pa:test` | Run test workflow |
|
|
40
|
-
| `pa:deploy` | Deployment preparation |
|
|
41
|
-
| `pa:status` | Show current progress |
|
|
42
|
-
|
|
43
|
-
## Full Command Reference
|
|
44
|
-
|
|
45
|
-
For complete command list, see: `./.proagents/AI_INSTRUCTIONS.md`
|
|
46
|
-
|
|
47
|
-
## On `pa:` Command
|
|
48
|
-
|
|
49
|
-
1. Read the corresponding file from `./.proagents/prompts/` or `./.proagents/workflow-modes/`
|
|
50
|
-
2. Follow the workflow instructions
|
|
51
|
-
3. Use project config from `./.proagents/proagents.config.yaml`
|
|
52
|
-
|
|
53
|
-
## Key Files
|
|
54
|
-
|
|
55
|
-
- `./.proagents/AI_INSTRUCTIONS.md` - Complete command reference
|
|
56
|
-
- `./.proagents/WORKFLOW.md` - Full 10-phase workflow
|
|
57
|
-
- `./.proagents/prompts/` - Phase-specific prompts
|
package/.proagents/GROQ.md
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
# ProAgents Commands for Groq
|
|
2
|
-
|
|
3
|
-
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
-
|
|
5
|
-
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
|
-
|
|
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:**
|
|
22
|
-
|
|
23
|
-
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
24
|
-
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
|
25
|
-
3. `.proagents/worklog/_context.md` - Update current state
|
|
26
|
-
|
|
27
|
-
Module detection: `src/api/*`→api, `src/auth/*`→auth, `src/components/*`→ui
|
|
28
|
-
|
|
29
|
-
## Essential Commands
|
|
30
|
-
|
|
31
|
-
| Command | Action |
|
|
32
|
-
|---------|--------|
|
|
33
|
-
| `pa:feature "name"` | Start new feature workflow |
|
|
34
|
-
| `pa:fix "bug"` | Quick bug fix mode |
|
|
35
|
-
| `pa:project-setup` | Interactive project setup wizard |
|
|
36
|
-
| `pa:rnd` | Research & Development workflow |
|
|
37
|
-
| `pa:doc` | Documentation options |
|
|
38
|
-
| `pa:qa` | Quality assurance checks |
|
|
39
|
-
| `pa:test` | Run test workflow |
|
|
40
|
-
| `pa:deploy` | Deployment preparation |
|
|
41
|
-
| `pa:status` | Show current progress |
|
|
42
|
-
|
|
43
|
-
## Full Command Reference
|
|
44
|
-
|
|
45
|
-
For complete command list, see: `./.proagents/AI_INSTRUCTIONS.md`
|
|
46
|
-
|
|
47
|
-
## On `pa:` Command
|
|
48
|
-
|
|
49
|
-
1. Read the corresponding file from `./.proagents/prompts/` or `./.proagents/workflow-modes/`
|
|
50
|
-
2. Follow the workflow instructions
|
|
51
|
-
3. Use project config from `./.proagents/proagents.config.yaml`
|
|
52
|
-
|
|
53
|
-
## Key Files
|
|
54
|
-
|
|
55
|
-
- `./.proagents/AI_INSTRUCTIONS.md` - Complete command reference
|
|
56
|
-
- `./.proagents/WORKFLOW.md` - Full 10-phase workflow
|
|
57
|
-
- `./.proagents/prompts/` - Phase-specific prompts
|