proagents 1.0.10 → 1.0.12
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/bin/proagents.js +70 -0
- package/lib/commands/ai.js +454 -0
- package/lib/commands/config.js +596 -0
- package/lib/commands/help.js +56 -8
- package/lib/commands/init.js +34 -82
- package/lib/commands/uninstall.js +178 -0
- package/package.json +1 -1
- package/proagents/.cursorrules +27 -29
- package/proagents/.github/copilot-instructions.md +22 -36
- package/proagents/.windsurfrules +23 -42
- package/proagents/AI_INSTRUCTIONS.md +36 -4
- package/proagents/ANTIGRAVITY.md +35 -0
- package/proagents/BOLT.md +27 -59
- package/proagents/CHATGPT.md +15 -63
- package/proagents/CLAUDE.md +22 -24
- package/proagents/GEMINI.md +19 -58
- package/proagents/GROQ.md +18 -59
- package/proagents/KIRO.md +15 -56
- package/proagents/LOVABLE.md +17 -65
- package/proagents/REPLIT.md +18 -59
package/proagents/REPLIT.md
CHANGED
|
@@ -2,71 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Essential Commands
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
| Command | Action |
|
|
8
|
+
|---------|--------|
|
|
9
|
+
| `pa:feature "name"` | Start new feature workflow |
|
|
10
|
+
| `pa:fix "bug"` | Quick bug fix mode |
|
|
11
|
+
| `pa:doc` | Documentation options |
|
|
12
|
+
| `pa:qa` | Quality assurance checks |
|
|
13
|
+
| `pa:test` | Run test workflow |
|
|
14
|
+
| `pa:deploy` | Deployment preparation |
|
|
15
|
+
| `pa:status` | Show current progress |
|
|
8
16
|
|
|
9
|
-
##
|
|
17
|
+
## Full Command Reference
|
|
10
18
|
|
|
11
|
-
|
|
12
|
-
pa:help → Show all available commands
|
|
13
|
-
pa:feature "name" → Start new feature workflow
|
|
14
|
-
pa:fix "description" → Quick bug fix mode
|
|
15
|
-
pa:status → Show current progress
|
|
16
|
-
```
|
|
19
|
+
For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
|
|
17
20
|
|
|
18
|
-
##
|
|
21
|
+
## On `pa:` Command
|
|
19
22
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
pa:doc-moderate → Generate balanced documentation
|
|
24
|
-
pa:doc-lite → Generate quick reference
|
|
25
|
-
pa:doc-module [name] → Document specific module
|
|
26
|
-
pa:doc-file [path] → Document specific file
|
|
27
|
-
pa:doc-api → Generate API documentation
|
|
28
|
-
pa:readme → Generate/update README
|
|
29
|
-
pa:changelog → Update CHANGELOG.md
|
|
30
|
-
pa:release → Generate release notes
|
|
31
|
-
pa:release [version] → Version-specific release notes
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Quality & Testing Commands
|
|
35
|
-
|
|
36
|
-
```
|
|
37
|
-
pa:qa → Run quality assurance checks
|
|
38
|
-
pa:test → Run test workflow
|
|
39
|
-
pa:review → Code review workflow
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## Deployment Commands
|
|
43
|
-
|
|
44
|
-
```
|
|
45
|
-
pa:deploy → Deployment preparation
|
|
46
|
-
pa:rollback → Rollback procedures
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
## How to Execute Commands
|
|
50
|
-
|
|
51
|
-
When user types a `pa:` command:
|
|
52
|
-
|
|
53
|
-
1. Read the corresponding prompt file from `./proagents/prompts/`
|
|
54
|
-
2. Follow the workflow instructions in that file
|
|
55
|
-
3. Use project configuration from `./proagents/proagents.config.yaml`
|
|
56
|
-
|
|
57
|
-
## Prompt File Mapping
|
|
58
|
-
|
|
59
|
-
| Command | Read This File |
|
|
60
|
-
|---------|----------------|
|
|
61
|
-
| `pa:feature` | `./proagents/prompts/00-init.md` + `./proagents/WORKFLOW.md` |
|
|
62
|
-
| `pa:fix` | `./proagents/workflow-modes/entry-modes.md` |
|
|
63
|
-
| `pa:doc*` | `./proagents/prompts/07-documentation.md` |
|
|
64
|
-
| `pa:qa` | `./proagents/checklists/code-quality.md` |
|
|
65
|
-
| `pa:test` | `./proagents/prompts/06-testing.md` |
|
|
66
|
-
| `pa:deploy` | `./proagents/prompts/08-deployment.md` |
|
|
23
|
+
1. Read the corresponding file from `./proagents/prompts/` or `./proagents/workflow-modes/`
|
|
24
|
+
2. Follow the workflow instructions
|
|
25
|
+
3. Use project config from `./proagents/proagents.config.yaml`
|
|
67
26
|
|
|
68
27
|
## Key Files
|
|
69
28
|
|
|
29
|
+
- `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
|
|
70
30
|
- `./proagents/WORKFLOW.md` - Full 10-phase workflow
|
|
71
|
-
- `./proagents/
|
|
72
|
-
- `./proagents/prompts/` - Phase-specific AI prompts
|
|
31
|
+
- `./proagents/prompts/` - Phase-specific prompts
|