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