proagents 1.0.11 → 1.0.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.
@@ -2,70 +2,30 @@
2
2
 
3
3
  This project uses ProAgents workflow framework.
4
4
 
5
- ## Command Recognition
5
+ ## Essential Commands
6
6
 
7
- Recognize commands starting with `pa:` prefix:
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
- **Initialization**
10
- - `pa:init` - Initialize ProAgents in project
11
- - `pa:help` - Show all commands
12
- - `pa:status` - Show current progress
17
+ ## Full Command Reference
13
18
 
14
- **Feature Development**
15
- - `pa:feature "name"` - Start feature workflow (see ./proagents/WORKFLOW.md)
16
- - `pa:feature-start "name"` - Start new feature
17
- - `pa:feature-status` - Check feature status
18
- - `pa:feature-list` - List all features
19
- - `pa:feature-complete` - Mark feature complete
20
- - `pa:fix "bug"` - Bug fix mode (see ./proagents/workflow-modes/entry-modes.md)
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
21
20
 
22
- **Documentation**
23
- - `pa:doc` - Documentation options
24
- - `pa:doc-full` - Generate full documentation (see ./proagents/prompts/07-documentation.md)
25
- - `pa:doc-moderate` - Balanced documentation
26
- - `pa:doc-lite` - Quick reference
27
- - `pa:doc-module [name]` - Document specific module
28
- - `pa:doc-file [path]` - Document specific file
29
- - `pa:doc-api` - Generate API documentation
30
- - `pa:readme` - Generate/update README
31
- - `pa:changelog` - Update CHANGELOG.md
32
- - `pa:release` - Generate release notes
21
+ ## On `pa:` Command
33
22
 
34
- **Quality & Testing**
35
- - `pa:qa` - Quality checks (see ./proagents/checklists/code-quality.md)
36
- - `pa:test` - Test workflow (see ./proagents/prompts/06-testing.md)
37
- - `pa:review` - Code review workflow
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`
38
26
 
39
- **Deployment**
40
- - `pa:deploy` - Deployment workflow (see ./proagents/prompts/08-deployment.md)
41
- - `pa:rollback` - Rollback procedures
27
+ ## Key Files
42
28
 
43
- **AI Platform Management**
44
- - `pa:ai-list` - List installed AI platforms
45
- - `pa:ai-add` - Add more AI platforms
46
- - `pa:ai-remove` - Remove AI platforms from config
47
-
48
- **Configuration**
49
- - `pa:config` - Show current configuration
50
- - `pa:config-list` - List all configurable options
51
- - `pa:config-show` - Show current config values
52
- - `pa:config-set K V` - Set a config value
53
- - `pa:config-get K` - Get a config value
54
- - `pa:config-setup` - Interactive config wizard
55
- - `pa:config-customize` - Copy templates to customize
56
-
57
- **Utilities**
58
- - `pa:uninstall` - Remove ProAgents from project
59
-
60
- ## Workflow
61
-
62
- When user types `pa:` command:
63
- 1. Read corresponding prompt from ./proagents/prompts/
64
- 2. Follow the defined workflow
65
- 3. Respect settings in ./proagents/proagents.config.yaml
66
-
67
- ## Key References
68
-
69
- - Workflow: ./proagents/WORKFLOW.md
70
- - Commands: ./proagents/PROAGENTS.md
71
- - Prompts: ./proagents/prompts/
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
30
+ - `./proagents/WORKFLOW.md` - Full 10-phase workflow
31
+ - `./proagents/prompts/` - Phase-specific prompts
@@ -1,69 +1,31 @@
1
1
  # ProAgents Commands for GitHub Copilot
2
2
 
3
- This project uses ProAgents workflow framework. Recognize `pa:` prefix commands.
3
+ This project uses ProAgents workflow framework.
4
4
 
5
- ## Commands
5
+ ## Essential Commands
6
6
 
7
- ### Initialization
8
- - `pa:init` - Initialize ProAgents in project
9
- - `pa:help` - Show all commands
10
- - `pa:status` - Show progress
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 |
11
16
 
12
- ### Feature Development
13
- - `pa:feature "name"` - Start feature (read ./proagents/WORKFLOW.md)
14
- - `pa:feature-start "name"` - Start new feature
15
- - `pa:feature-status` - Check feature status
16
- - `pa:feature-list` - List all features
17
- - `pa:feature-complete` - Mark feature complete
18
- - `pa:fix "bug"` - Bug fix mode (read ./proagents/workflow-modes/entry-modes.md)
17
+ ## Full Command Reference
19
18
 
20
- ### Documentation
21
- - `pa:doc` - Documentation options
22
- - `pa:doc-full` - Full docs (read ./proagents/prompts/07-documentation.md)
23
- - `pa:doc-moderate` - Balanced docs
24
- - `pa:doc-lite` - Quick reference
25
- - `pa:doc-module [name]` - Document module
26
- - `pa:doc-file [path]` - Document file
27
- - `pa:doc-api` - API documentation
28
- - `pa:readme` - Generate README
29
- - `pa:changelog` - Update CHANGELOG
30
- - `pa:release` - Release notes
31
- - `pa:release [ver]` - Version-specific notes
32
-
33
- ### Quality & Testing
34
- - `pa:qa` - Quality checks (read ./proagents/checklists/code-quality.md)
35
- - `pa:test` - Test workflow (read ./proagents/prompts/06-testing.md)
36
- - `pa:review` - Code review
37
-
38
- ### Deployment
39
- - `pa:deploy` - Deployment (read ./proagents/prompts/08-deployment.md)
40
- - `pa:rollback` - Rollback procedures
41
-
42
- ### AI Platform Management
43
- - `pa:ai-list` - List installed AI platforms
44
- - `pa:ai-add` - Add more AI platforms
45
- - `pa:ai-remove` - Remove AI platforms from config
46
-
47
- ### Configuration
48
- - `pa:config` - Show current configuration
49
- - `pa:config-list` - List all configurable options
50
- - `pa:config-show` - Show current config values
51
- - `pa:config-set K V` - Set a config value
52
- - `pa:config-get K` - Get a config value
53
- - `pa:config-setup` - Interactive config wizard
54
- - `pa:config-customize` - Copy templates to customize
55
-
56
- ### Utilities
57
- - `pa:uninstall` - Remove ProAgents from project
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
58
20
 
59
21
  ## On `pa:` Command
60
22
 
61
- 1. Read corresponding file in `./proagents/prompts/` or `./proagents/workflow-modes/`
23
+ 1. Read the corresponding file from `./proagents/prompts/` or `./proagents/workflow-modes/`
62
24
  2. Follow the workflow instructions
63
- 3. Use config from `./proagents/proagents.config.yaml`
25
+ 3. Use project config from `./proagents/proagents.config.yaml`
64
26
 
65
27
  ## Key Files
66
28
 
67
- - `./proagents/WORKFLOW.md` - Full workflow
68
- - `./proagents/PROAGENTS.md` - Command reference
69
- - `./proagents/prompts/` - Phase prompts
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
30
+ - `./proagents/WORKFLOW.md` - Full 10-phase workflow
31
+ - `./proagents/prompts/` - Phase-specific prompts
@@ -2,73 +2,30 @@
2
2
 
3
3
  This project uses ProAgents - an AI-agnostic development workflow framework.
4
4
 
5
- ## Command Recognition
5
+ ## Essential Commands
6
6
 
7
- Recognize commands with `pa:` prefix and execute the corresponding workflow.
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
- ## Available Commands
17
+ ## Full Command Reference
10
18
 
11
- ### Initialization
12
- - `pa:init` - Initialize ProAgents in project
13
- - `pa:help` - Show all available commands
14
- - `pa:status` - Show current progress
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
15
20
 
16
- ### Feature Development
17
- - `pa:feature "name"` - Start new feature (read ./proagents/WORKFLOW.md)
18
- - `pa:feature-start "name"` - Start new feature
19
- - `pa:feature-status` - Check feature status
20
- - `pa:feature-list` - List all features
21
- - `pa:feature-complete` - Mark feature complete
22
- - `pa:fix "description"` - Quick bug fix mode (read ./proagents/workflow-modes/entry-modes.md)
21
+ ## On `pa:` Command
23
22
 
24
- ### Documentation Commands
25
- - `pa:doc` - Show documentation options
26
- - `pa:doc-full` - Generate full documentation (read ./proagents/prompts/07-documentation.md)
27
- - `pa:doc-moderate` - Generate balanced documentation
28
- - `pa:doc-lite` - Generate quick reference
29
- - `pa:doc-module [name]` - Document specific module
30
- - `pa:doc-file [path]` - Document specific file
31
- - `pa:doc-api` - Generate API documentation
32
- - `pa:readme` - Generate/update README
33
- - `pa:changelog` - Update CHANGELOG.md
34
- - `pa:release` - Generate release notes
35
- - `pa:release [version]` - Version-specific release notes
36
-
37
- ### Quality & Testing
38
- - `pa:qa` - Run quality checks (read ./proagents/checklists/code-quality.md)
39
- - `pa:test` - Run test workflow (read ./proagents/prompts/06-testing.md)
40
- - `pa:review` - Code review workflow
41
-
42
- ### Deployment
43
- - `pa:deploy` - Deployment preparation (read ./proagents/prompts/08-deployment.md)
44
- - `pa:rollback` - Rollback procedures
45
-
46
- ### AI Platform Management
47
- - `pa:ai-list` - List installed AI platforms
48
- - `pa:ai-add` - Add more AI platforms
49
- - `pa:ai-remove` - Remove AI platforms from config
50
-
51
- ### Configuration
52
- - `pa:config` - Show current configuration
53
- - `pa:config-list` - List all configurable options
54
- - `pa:config-show` - Show current config values
55
- - `pa:config-set K V` - Set a config value
56
- - `pa:config-get K` - Get a config value
57
- - `pa:config-setup` - Interactive config wizard
58
- - `pa:config-customize` - Copy templates to customize
59
-
60
- ### Utilities
61
- - `pa:uninstall` - Remove ProAgents from project
62
-
63
- ## Execution Instructions
64
-
65
- When user types a `pa:` command:
66
- 1. Read the corresponding prompt file from `./proagents/prompts/`
67
- 2. Follow the workflow instructions in that file
68
- 3. Use project configuration from `./proagents/proagents.config.yaml`
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`
69
26
 
70
27
  ## Key Files
71
28
 
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
72
30
  - `./proagents/WORKFLOW.md` - Full 10-phase workflow
73
- - `./proagents/PROAGENTS.md` - Quick command reference
74
- - `./proagents/prompts/` - Phase-specific AI prompts
31
+ - `./proagents/prompts/` - Phase-specific prompts
@@ -2,113 +2,34 @@
2
2
 
3
3
  This project uses ProAgents - an AI-agnostic development workflow framework.
4
4
 
5
- ## Command Recognition
5
+ ## Essential Commands
6
6
 
7
- When user types commands starting with `pa:`, recognize and execute them:
8
-
9
- ## Available Commands
10
-
11
- ### Initialization
12
- | Command | Description |
13
- |---------|-------------|
14
- | `pa:init` | Initialize ProAgents in project |
15
- | `pa:help` | Show all available commands |
16
- | `pa:status` | Show current progress |
17
-
18
- ### Feature Development
19
- | Command | Description |
20
- |---------|-------------|
7
+ | Command | Action |
8
+ |---------|--------|
21
9
  | `pa:feature "name"` | Start new feature workflow |
22
- | `pa:feature-start "name"` | Start new feature |
23
- | `pa:feature-status` | Check feature status |
24
- | `pa:feature-list` | List all features |
25
- | `pa:feature-complete` | Mark feature complete |
26
- | `pa:fix "description"` | Quick bug fix mode |
27
-
28
- ### Documentation Commands
29
- | Command | Description |
30
- |---------|-------------|
31
- | `pa:doc` | Show documentation options |
32
- | `pa:doc-full` | Generate full project documentation |
33
- | `pa:doc-moderate` | Generate balanced documentation |
34
- | `pa:doc-lite` | Generate quick reference |
35
- | `pa:doc-module [name]` | Document specific module |
36
- | `pa:doc-file [path]` | Document specific file |
37
- | `pa:doc-api` | Generate API documentation |
38
- | `pa:readme` | Generate/update README |
39
- | `pa:changelog` | Update CHANGELOG.md |
40
- | `pa:release` | Generate release notes |
41
- | `pa:release [version]` | Version-specific release notes |
42
-
43
- ### Quality & Testing
44
- | Command | Description |
45
- |---------|-------------|
46
- | `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 |
47
13
  | `pa:test` | Run test workflow |
48
- | `pa:review` | Code review workflow |
49
-
50
- ### Deployment
51
- | Command | Description |
52
- |---------|-------------|
53
14
  | `pa:deploy` | Deployment preparation |
54
- | `pa:rollback` | Rollback procedures |
55
-
56
- ### AI Platform Management
57
- | Command | Description |
58
- |---------|-------------|
59
- | `pa:ai-list` | List installed AI platforms |
60
- | `pa:ai-add` | Add more AI platforms |
61
- | `pa:ai-remove` | Remove AI platforms from config |
62
-
63
- ### Configuration
64
- | Command | Description |
65
- |---------|-------------|
66
- | `pa:config` | Show current configuration |
67
- | `pa:config-list` | List all configurable options |
68
- | `pa:config-show` | Show current config values |
69
- | `pa:config-set K V` | Set a config value |
70
- | `pa:config-get K` | Get a config value |
71
- | `pa:config-setup` | Interactive config wizard |
72
- | `pa:config-customize` | Copy templates to customize |
73
-
74
- ### Utilities
75
- | Command | Description |
76
- |---------|-------------|
77
- | `pa:uninstall` | Remove ProAgents from project |
78
-
79
- ## Execution Instructions
15
+ | `pa:status` | Show current progress |
80
16
 
81
- When user types a `pa:` command:
17
+ ## Full Command Reference
82
18
 
83
- 1. **Read the corresponding prompt file** from `./proagents/prompts/`
84
- 2. **Follow the workflow** defined in that prompt
85
- 3. **Use project config** from `./proagents/proagents.config.yaml`
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
86
20
 
87
- ## Prompt File Mapping
21
+ ## On `pa:` Command
88
22
 
89
- | Command | Prompt File |
90
- |---------|-------------|
91
- | `pa:feature` | `./proagents/prompts/00-init.md` + `./proagents/WORKFLOW.md` |
92
- | `pa:fix` | `./proagents/workflow-modes/entry-modes.md` (Bug Fix section) |
93
- | `pa:doc*` | `./proagents/prompts/07-documentation.md` |
94
- | `pa:qa` | `./proagents/checklists/code-quality.md` |
95
- | `pa:test` | `./proagents/prompts/06-testing.md` |
96
- | `pa:deploy` | `./proagents/prompts/08-deployment.md` |
97
- | `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`
98
26
 
99
- ## Key Reference Files
27
+ ## Key Files
100
28
 
101
- | File | Purpose |
102
- |------|---------|
103
- | `./proagents/WORKFLOW.md` | Full 10-phase workflow documentation |
104
- | `./proagents/PROAGENTS.md` | Quick command reference |
105
- | `./proagents/prompts/` | Phase-specific AI prompts |
106
- | `./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
107
32
 
108
- ## Important Notes
33
+ ## Note
109
34
 
110
- - Works with both Gemini and Claude models in Antigravity
111
- - Always check `./proagents/` folder for project-specific configurations
112
- - Preserve user's `proagents.config.yaml` settings
113
- - Follow existing code patterns found in the project
114
- - Use the checklists in `./proagents/checklists/` for quality gates
35
+ Works with both Gemini and Claude models in Antigravity.
package/proagents/BOLT.md CHANGED
@@ -2,86 +2,30 @@
2
2
 
3
3
  This project uses ProAgents - an AI-agnostic development workflow framework.
4
4
 
5
- ## Command Recognition
5
+ ## Essential Commands
6
6
 
7
- When user types commands starting with `pa:`, recognize and execute them:
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
- ## Available Commands
17
+ ## Full Command Reference
10
18
 
11
- ### Initialization
12
- - `pa:init` - Initialize ProAgents in project
13
- - `pa:help` - Show all available commands
14
- - `pa:status` - Show current progress
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
15
20
 
16
- ### Feature Development
17
- - `pa:feature "name"` - Start new feature workflow
18
- - `pa:feature-start "name"` - Start new feature
19
- - `pa:feature-status` - Check feature status
20
- - `pa:feature-list` - List all features
21
- - `pa:feature-complete` - Mark feature complete
22
- - `pa:fix "description"` - Quick bug fix mode
21
+ ## On `pa:` Command
23
22
 
24
- ### Documentation Commands
25
- - `pa:doc` - Show documentation options
26
- - `pa:doc-full` - Generate full project documentation
27
- - `pa:doc-moderate` - Generate balanced documentation
28
- - `pa:doc-lite` - Generate quick reference
29
- - `pa:doc-module [name]` - Document specific module
30
- - `pa:doc-file [path]` - Document specific file
31
- - `pa:doc-api` - Generate API documentation
32
- - `pa:readme` - Generate/update README
33
- - `pa:changelog` - Update CHANGELOG.md
34
- - `pa:release` - Generate release notes
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`
35
26
 
36
- ### Quality & Testing
37
- - `pa:qa` - Run quality assurance checks
38
- - `pa:test` - Run test workflow
39
- - `pa:review` - Code review workflow
27
+ ## Key Files
40
28
 
41
- ### Deployment
42
- - `pa:deploy` - Deployment preparation
43
- - `pa:rollback` - Rollback procedures
44
-
45
- ### AI Platform Management
46
- - `pa:ai-list` - List installed AI platforms
47
- - `pa:ai-add` - Add more AI platforms
48
- - `pa:ai-remove` - Remove AI platforms from config
49
-
50
- ### Configuration
51
- - `pa:config` - Show current configuration
52
- - `pa:config-list` - List all configurable options
53
- - `pa:config-show` - Show current config values
54
- - `pa:config-set K V` - Set a config value
55
- - `pa:config-get K` - Get a config value
56
- - `pa:config-setup` - Interactive config wizard
57
- - `pa:config-customize` - Copy templates to customize
58
-
59
- ### Utilities
60
- - `pa:uninstall` - Remove ProAgents from project
61
-
62
- ## Execution Instructions
63
-
64
- When user types a `pa:` command:
65
-
66
- 1. **Read the corresponding prompt file** from `./proagents/prompts/`
67
- 2. **Follow the workflow** defined in that prompt
68
- 3. **Use project config** from `./proagents/proagents.config.yaml`
69
-
70
- ## Command to File Mapping
71
-
72
- | Command | Prompt File |
73
- |---------|-------------|
74
- | `pa:feature` | `./proagents/prompts/00-init.md` + `./proagents/WORKFLOW.md` |
75
- | `pa:fix` | `./proagents/workflow-modes/entry-modes.md` (Bug Fix section) |
76
- | `pa:doc*` | `./proagents/prompts/07-documentation.md` |
77
- | `pa:qa` | `./proagents/checklists/code-quality.md` |
78
- | `pa:test` | `./proagents/prompts/06-testing.md` |
79
- | `pa:deploy` | `./proagents/prompts/08-deployment.md` |
80
- | `pa:release` | `./proagents/prompts/07-documentation.md` (Release Notes section) |
81
-
82
- ## Key Reference Files
83
-
84
- - `./proagents/WORKFLOW.md` - Full 10-phase workflow documentation
85
- - `./proagents/PROAGENTS.md` - Quick command reference
86
- - `./proagents/prompts/` - Phase-specific AI prompts
87
- - `./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
@@ -2,110 +2,30 @@
2
2
 
3
3
  This project uses ProAgents - an AI-agnostic development workflow framework.
4
4
 
5
- ## Command Recognition
5
+ ## Essential Commands
6
6
 
7
- When user types commands starting with `pa:`, recognize and execute them:
8
-
9
- ## Available Commands
10
-
11
- ### Initialization
12
- | Command | Action |
13
- |---------|--------|
14
- | `pa:init` | Initialize ProAgents in project |
15
- | `pa:help` | Show all available commands |
16
- | `pa:status` | Show current progress |
17
-
18
- ### Feature Development
19
7
  | Command | Action |
20
8
  |---------|--------|
21
9
  | `pa:feature "name"` | Start new feature workflow |
22
- | `pa:feature-start "name"` | Start new feature |
23
- | `pa:feature-status` | Check feature status |
24
- | `pa:feature-list` | List all features |
25
- | `pa:feature-complete` | Mark feature complete |
26
- | `pa:fix "description"` | Quick bug fix mode |
27
-
28
- ### Documentation Commands
29
- | Command | Action |
30
- |---------|--------|
31
- | `pa:doc` | Show documentation options |
32
- | `pa:doc-full` | Generate full project documentation |
33
- | `pa:doc-moderate` | Generate balanced documentation |
34
- | `pa:doc-lite` | Generate quick reference |
35
- | `pa:doc-module [name]` | Document specific module |
36
- | `pa:doc-file [path]` | Document specific file |
37
- | `pa:doc-api` | Generate API documentation |
38
- | `pa:readme` | Generate/update README |
39
- | `pa:changelog` | Update CHANGELOG.md |
40
- | `pa:release` | Generate release notes |
41
- | `pa:release [version]` | Version-specific release notes |
42
-
43
- ### Quality & Testing
44
- | Command | Action |
45
- |---------|--------|
46
- | `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 |
47
13
  | `pa:test` | Run test workflow |
48
- | `pa:review` | Code review workflow |
49
-
50
- ### Deployment
51
- | Command | Action |
52
- |---------|--------|
53
14
  | `pa:deploy` | Deployment preparation |
54
- | `pa:rollback` | Rollback procedures |
55
-
56
- ### AI Platform Management
57
- | Command | Action |
58
- |---------|--------|
59
- | `pa:ai-list` | List installed AI platforms |
60
- | `pa:ai-add` | Add more AI platforms |
61
- | `pa:ai-remove` | Remove AI platforms from config |
62
-
63
- ### Configuration
64
- | Command | Action |
65
- |---------|--------|
66
- | `pa:config` | Show current configuration |
67
- | `pa:config-list` | List all configurable options |
68
- | `pa:config-show` | Show current config values |
69
- | `pa:config-set K V` | Set a config value |
70
- | `pa:config-get K` | Get a config value |
71
- | `pa:config-setup` | Interactive config wizard |
72
- | `pa:config-customize` | Copy templates to customize |
73
-
74
- ### Utilities
75
- | Command | Action |
76
- |---------|--------|
77
- | `pa:uninstall` | Remove ProAgents from project |
78
-
79
- ## Execution Instructions
80
-
81
- When user types a `pa:` command:
82
-
83
- 1. **Read the corresponding prompt file** from `./proagents/prompts/`
84
- 2. **Follow the workflow** defined in that prompt
85
- 3. **Use project config** from `./proagents/proagents.config.yaml`
15
+ | `pa:status` | Show current progress |
86
16
 
87
- ## Prompt File Mapping
17
+ ## Full Command Reference
88
18
 
89
- - `pa:feature` Read `./proagents/prompts/00-init.md` and `./proagents/WORKFLOW.md`
90
- - `pa:fix` → Read `./proagents/workflow-modes/entry-modes.md` (Bug Fix Fast Track section)
91
- - `pa:doc*` → Read `./proagents/prompts/07-documentation.md`
92
- - `pa:qa` → Read `./proagents/checklists/code-quality.md`
93
- - `pa:test` → Read `./proagents/prompts/06-testing.md`
94
- - `pa:deploy` → Read `./proagents/prompts/08-deployment.md`
95
- - `pa:release` → Read `./proagents/prompts/07-documentation.md` (Release Notes section)
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
96
20
 
97
- ## Key Reference Files
21
+ ## On `pa:` Command
98
22
 
99
- | File | Purpose |
100
- |------|---------|
101
- | `./proagents/WORKFLOW.md` | Full 10-phase workflow documentation |
102
- | `./proagents/PROAGENTS.md` | Quick command reference |
103
- | `./proagents/prompts/` | Phase-specific AI prompts |
104
- | `./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`
105
26
 
106
- ## Important Notes
27
+ ## Key Files
107
28
 
108
- - Always check `./proagents/` folder for project-specific configurations
109
- - Preserve user's `proagents.config.yaml` settings
110
- - Follow existing code patterns found in the project
111
- - 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