proagents 1.0.8 → 1.0.10
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/lib/commands/init.js +19 -1
- package/package.json +1 -1
- package/proagents/.windsurfrules +50 -0
- package/proagents/BOLT.md +63 -0
- package/proagents/GROQ.md +72 -0
- package/proagents/KIRO.md +72 -0
- package/proagents/LOVABLE.md +79 -0
- package/proagents/REPLIT.md +72 -0
package/lib/commands/init.js
CHANGED
|
@@ -88,9 +88,15 @@ const FRAMEWORK_FILES = [
|
|
|
88
88
|
'slash-commands.json',
|
|
89
89
|
'CLAUDE.md',
|
|
90
90
|
'.cursorrules',
|
|
91
|
+
'.windsurfrules',
|
|
91
92
|
'AI_INSTRUCTIONS.md',
|
|
92
93
|
'GEMINI.md',
|
|
93
94
|
'CHATGPT.md',
|
|
95
|
+
'KIRO.md',
|
|
96
|
+
'REPLIT.md',
|
|
97
|
+
'BOLT.md',
|
|
98
|
+
'LOVABLE.md',
|
|
99
|
+
'GROQ.md',
|
|
94
100
|
];
|
|
95
101
|
|
|
96
102
|
/**
|
|
@@ -262,8 +268,14 @@ For detailed commands, see \`./proagents/PROAGENTS.md\`
|
|
|
262
268
|
const aiFiles = [
|
|
263
269
|
{ src: 'CLAUDE.md', target: 'CLAUDE.md', desc: 'Claude AI' },
|
|
264
270
|
{ src: '.cursorrules', target: '.cursorrules', desc: 'Cursor AI' },
|
|
271
|
+
{ src: '.windsurfrules', target: '.windsurfrules', desc: 'Windsurf' },
|
|
265
272
|
{ src: 'GEMINI.md', target: 'GEMINI.md', desc: 'Gemini AI' },
|
|
266
273
|
{ src: 'CHATGPT.md', target: 'CHATGPT.md', desc: 'ChatGPT/Codex' },
|
|
274
|
+
{ src: 'KIRO.md', target: 'KIRO.md', desc: 'AWS Kiro' },
|
|
275
|
+
{ src: 'REPLIT.md', target: 'REPLIT.md', desc: 'Replit AI' },
|
|
276
|
+
{ src: 'BOLT.md', target: 'BOLT.md', desc: 'Bolt.new' },
|
|
277
|
+
{ src: 'LOVABLE.md', target: 'LOVABLE.md', desc: 'Lovable' },
|
|
278
|
+
{ src: 'GROQ.md', target: 'GROQ.md', desc: 'Groq' },
|
|
267
279
|
];
|
|
268
280
|
|
|
269
281
|
for (const file of aiFiles) {
|
|
@@ -403,9 +415,15 @@ async function smartUpdate(sourceDir, targetDir) {
|
|
|
403
415
|
const aiFiles = [
|
|
404
416
|
'CLAUDE.md',
|
|
405
417
|
'.cursorrules',
|
|
418
|
+
'.windsurfrules',
|
|
406
419
|
'AI_INSTRUCTIONS.md',
|
|
407
420
|
'GEMINI.md',
|
|
408
421
|
'CHATGPT.md',
|
|
422
|
+
'KIRO.md',
|
|
423
|
+
'REPLIT.md',
|
|
424
|
+
'BOLT.md',
|
|
425
|
+
'LOVABLE.md',
|
|
426
|
+
'GROQ.md',
|
|
409
427
|
];
|
|
410
428
|
let aiFilesUpdated = 0;
|
|
411
429
|
|
|
@@ -434,7 +452,7 @@ async function smartUpdate(sourceDir, targetDir) {
|
|
|
434
452
|
|
|
435
453
|
if (aiFilesUpdated > 0) {
|
|
436
454
|
console.log(chalk.green(`✓ Updated ${aiFilesUpdated} AI instruction files`));
|
|
437
|
-
console.log(chalk.gray(' (
|
|
455
|
+
console.log(chalk.gray(' (Claude, Cursor, Windsurf, Gemini, ChatGPT, Kiro, Replit, Bolt, Lovable, Groq, Copilot)'));
|
|
438
456
|
}
|
|
439
457
|
}
|
|
440
458
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# ProAgents Commands for Windsurf
|
|
2
|
+
|
|
3
|
+
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
+
|
|
5
|
+
## Command Recognition
|
|
6
|
+
|
|
7
|
+
Recognize commands with `pa:` prefix and execute the corresponding workflow.
|
|
8
|
+
|
|
9
|
+
## Available Commands
|
|
10
|
+
|
|
11
|
+
### Core Commands
|
|
12
|
+
- `pa:help` - Show all available commands
|
|
13
|
+
- `pa:feature "name"` - Start new feature (read ./proagents/WORKFLOW.md)
|
|
14
|
+
- `pa:fix "description"` - Quick bug fix mode (read ./proagents/workflow-modes/entry-modes.md)
|
|
15
|
+
- `pa:status` - Show current progress
|
|
16
|
+
|
|
17
|
+
### Documentation Commands
|
|
18
|
+
- `pa:doc` - Show documentation options
|
|
19
|
+
- `pa:doc-full` - Generate full documentation (read ./proagents/prompts/07-documentation.md)
|
|
20
|
+
- `pa:doc-moderate` - Generate balanced documentation
|
|
21
|
+
- `pa:doc-lite` - Generate quick reference
|
|
22
|
+
- `pa:doc-module [name]` - Document specific module
|
|
23
|
+
- `pa:doc-file [path]` - Document specific file
|
|
24
|
+
- `pa:doc-api` - Generate API documentation
|
|
25
|
+
- `pa:readme` - Generate/update README
|
|
26
|
+
- `pa:changelog` - Update CHANGELOG.md
|
|
27
|
+
- `pa:release` - Generate release notes
|
|
28
|
+
- `pa:release [version]` - Version-specific release notes
|
|
29
|
+
|
|
30
|
+
### Quality Commands
|
|
31
|
+
- `pa:qa` - Run quality checks (read ./proagents/checklists/code-quality.md)
|
|
32
|
+
- `pa:test` - Run test workflow (read ./proagents/prompts/06-testing.md)
|
|
33
|
+
- `pa:review` - Code review workflow
|
|
34
|
+
|
|
35
|
+
### Deployment Commands
|
|
36
|
+
- `pa:deploy` - Deployment preparation (read ./proagents/prompts/08-deployment.md)
|
|
37
|
+
- `pa:rollback` - Rollback procedures
|
|
38
|
+
|
|
39
|
+
## Execution Instructions
|
|
40
|
+
|
|
41
|
+
When user types a `pa:` command:
|
|
42
|
+
1. Read the corresponding prompt file from `./proagents/prompts/`
|
|
43
|
+
2. Follow the workflow instructions in that file
|
|
44
|
+
3. Use project configuration from `./proagents/proagents.config.yaml`
|
|
45
|
+
|
|
46
|
+
## Key Files
|
|
47
|
+
|
|
48
|
+
- `./proagents/WORKFLOW.md` - Full 10-phase workflow
|
|
49
|
+
- `./proagents/PROAGENTS.md` - Quick command reference
|
|
50
|
+
- `./proagents/prompts/` - Phase-specific AI prompts
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# ProAgents Commands for Bolt.new
|
|
2
|
+
|
|
3
|
+
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
+
|
|
5
|
+
## Command Recognition
|
|
6
|
+
|
|
7
|
+
When user types commands starting with `pa:`, recognize and execute them:
|
|
8
|
+
|
|
9
|
+
## Available Commands
|
|
10
|
+
|
|
11
|
+
### Core Commands
|
|
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
|
+
|
|
17
|
+
### Documentation Commands
|
|
18
|
+
- `pa:doc` - Show documentation options
|
|
19
|
+
- `pa:doc-full` - Generate full project documentation
|
|
20
|
+
- `pa:doc-moderate` - Generate balanced documentation
|
|
21
|
+
- `pa:doc-lite` - Generate quick reference
|
|
22
|
+
- `pa:doc-module [name]` - Document specific module
|
|
23
|
+
- `pa:doc-file [path]` - Document specific file
|
|
24
|
+
- `pa:doc-api` - Generate API documentation
|
|
25
|
+
- `pa:readme` - Generate/update README
|
|
26
|
+
- `pa:changelog` - Update CHANGELOG.md
|
|
27
|
+
- `pa:release` - Generate release notes
|
|
28
|
+
|
|
29
|
+
### Quality Commands
|
|
30
|
+
- `pa:qa` - Run quality assurance checks
|
|
31
|
+
- `pa:test` - Run test workflow
|
|
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
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# ProAgents Commands for Groq
|
|
2
|
+
|
|
3
|
+
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
+
|
|
5
|
+
## Command Recognition
|
|
6
|
+
|
|
7
|
+
When user types commands starting with `pa:`, recognize and execute them:
|
|
8
|
+
|
|
9
|
+
## Available Commands
|
|
10
|
+
|
|
11
|
+
### Core Commands
|
|
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
|
+
```
|
|
18
|
+
|
|
19
|
+
### Documentation Commands
|
|
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
|
+
```
|
|
33
|
+
|
|
34
|
+
### Quality & Testing Commands
|
|
35
|
+
```
|
|
36
|
+
pa:qa → Run quality assurance checks
|
|
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) |
|
|
66
|
+
|
|
67
|
+
## Key Files
|
|
68
|
+
|
|
69
|
+
- `./proagents/WORKFLOW.md` - Full 10-phase workflow
|
|
70
|
+
- `./proagents/PROAGENTS.md` - Quick command reference
|
|
71
|
+
- `./proagents/prompts/` - Phase-specific AI prompts
|
|
72
|
+
- `./proagents/proagents.config.yaml` - Project configuration
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# ProAgents Commands for AWS Kiro
|
|
2
|
+
|
|
3
|
+
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
+
|
|
5
|
+
## Command Recognition
|
|
6
|
+
|
|
7
|
+
When user types commands starting with `pa:`, recognize and execute them:
|
|
8
|
+
|
|
9
|
+
## Available Commands
|
|
10
|
+
|
|
11
|
+
### Core Commands
|
|
12
|
+
| Command | Action |
|
|
13
|
+
|---------|--------|
|
|
14
|
+
| `pa:help` | Show all available commands |
|
|
15
|
+
| `pa:feature "name"` | Start new feature workflow |
|
|
16
|
+
| `pa:fix "description"` | Quick bug fix mode |
|
|
17
|
+
| `pa:status` | Show current progress |
|
|
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 |
|
|
38
|
+
| `pa:test` | Run test workflow |
|
|
39
|
+
| `pa:review` | Code review workflow |
|
|
40
|
+
|
|
41
|
+
### Deployment Commands
|
|
42
|
+
| Command | Action |
|
|
43
|
+
|---------|--------|
|
|
44
|
+
| `pa:deploy` | Deployment preparation |
|
|
45
|
+
| `pa:rollback` | Rollback procedures |
|
|
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`
|
|
54
|
+
|
|
55
|
+
## Prompt File Mapping
|
|
56
|
+
|
|
57
|
+
- `pa:feature` → Read `./proagents/prompts/00-init.md` and `./proagents/WORKFLOW.md`
|
|
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)
|
|
64
|
+
|
|
65
|
+
## Key Reference Files
|
|
66
|
+
|
|
67
|
+
| File | Purpose |
|
|
68
|
+
|------|---------|
|
|
69
|
+
| `./proagents/WORKFLOW.md` | Full 10-phase workflow documentation |
|
|
70
|
+
| `./proagents/PROAGENTS.md` | Quick command reference |
|
|
71
|
+
| `./proagents/prompts/` | Phase-specific AI prompts |
|
|
72
|
+
| `./proagents/proagents.config.yaml` | Project configuration |
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# ProAgents Commands for Lovable
|
|
2
|
+
|
|
3
|
+
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
+
|
|
5
|
+
## Command Recognition
|
|
6
|
+
|
|
7
|
+
When user types commands starting with `pa:`, recognize and execute them:
|
|
8
|
+
|
|
9
|
+
## Available Commands
|
|
10
|
+
|
|
11
|
+
### Core Commands
|
|
12
|
+
| Command | Description |
|
|
13
|
+
|---------|-------------|
|
|
14
|
+
| `pa:help` | Show all available commands |
|
|
15
|
+
| `pa:feature "name"` | Start new feature workflow |
|
|
16
|
+
| `pa:fix "description"` | Quick bug fix mode |
|
|
17
|
+
| `pa:status` | Show current progress |
|
|
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 |
|
|
38
|
+
| `pa:test` | Run test workflow |
|
|
39
|
+
| `pa:review` | Code review workflow |
|
|
40
|
+
|
|
41
|
+
### Deployment Commands
|
|
42
|
+
| Command | Description |
|
|
43
|
+
|---------|-------------|
|
|
44
|
+
| `pa:deploy` | Deployment preparation |
|
|
45
|
+
| `pa:rollback` | Rollback procedures |
|
|
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`
|
|
54
|
+
|
|
55
|
+
## Prompt File Mapping
|
|
56
|
+
|
|
57
|
+
- `pa:feature` → Read `./proagents/prompts/00-init.md` and `./proagents/WORKFLOW.md`
|
|
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)
|
|
64
|
+
|
|
65
|
+
## Key Reference Files
|
|
66
|
+
|
|
67
|
+
| File | Purpose |
|
|
68
|
+
|------|---------|
|
|
69
|
+
| `./proagents/WORKFLOW.md` | Full 10-phase workflow documentation |
|
|
70
|
+
| `./proagents/PROAGENTS.md` | Quick command reference |
|
|
71
|
+
| `./proagents/prompts/` | Phase-specific AI prompts |
|
|
72
|
+
| `./proagents/proagents.config.yaml` | Project configuration |
|
|
73
|
+
|
|
74
|
+
## Important Notes
|
|
75
|
+
|
|
76
|
+
- Always check `./proagents/` folder for project-specific configurations
|
|
77
|
+
- Preserve user's `proagents.config.yaml` settings
|
|
78
|
+
- Follow existing code patterns found in the project
|
|
79
|
+
- Use the checklists in `./proagents/checklists/` for quality gates
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# ProAgents Commands for Replit AI
|
|
2
|
+
|
|
3
|
+
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
|
+
|
|
5
|
+
## Command Recognition
|
|
6
|
+
|
|
7
|
+
When user types commands starting with `pa:`, recognize and execute them:
|
|
8
|
+
|
|
9
|
+
## Core Commands
|
|
10
|
+
|
|
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
|
+
```
|
|
17
|
+
|
|
18
|
+
## Documentation Commands
|
|
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
|
+
```
|
|
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` |
|
|
67
|
+
|
|
68
|
+
## Key Files
|
|
69
|
+
|
|
70
|
+
- `./proagents/WORKFLOW.md` - Full 10-phase workflow
|
|
71
|
+
- `./proagents/PROAGENTS.md` - Quick command reference
|
|
72
|
+
- `./proagents/prompts/` - Phase-specific AI prompts
|