proagents 1.0.10 → 1.0.11

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.
@@ -0,0 +1,114 @@
1
+ # ProAgents Commands for Antigravity IDE
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
+ ### 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
+ |---------|-------------|
21
+ | `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 |
47
+ | `pa:test` | Run test workflow |
48
+ | `pa:review` | Code review workflow |
49
+
50
+ ### Deployment
51
+ | Command | Description |
52
+ |---------|-------------|
53
+ | `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
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`
86
+
87
+ ## Prompt File Mapping
88
+
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) |
98
+
99
+ ## Key Reference Files
100
+
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 |
107
+
108
+ ## Important Notes
109
+
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
package/proagents/BOLT.md CHANGED
@@ -8,11 +8,18 @@ When user types commands starting with `pa:`, recognize and execute them:
8
8
 
9
9
  ## Available Commands
10
10
 
11
- ### Core Commands
11
+ ### Initialization
12
+ - `pa:init` - Initialize ProAgents in project
12
13
  - `pa:help` - Show all available commands
14
+ - `pa:status` - Show current progress
15
+
16
+ ### Feature Development
13
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
14
22
  - `pa:fix "description"` - Quick bug fix mode
15
- - `pa:status` - Show current progress
16
23
 
17
24
  ### Documentation Commands
18
25
  - `pa:doc` - Show documentation options
@@ -26,15 +33,32 @@ When user types commands starting with `pa:`, recognize and execute them:
26
33
  - `pa:changelog` - Update CHANGELOG.md
27
34
  - `pa:release` - Generate release notes
28
35
 
29
- ### Quality Commands
36
+ ### Quality & Testing
30
37
  - `pa:qa` - Run quality assurance checks
31
38
  - `pa:test` - Run test workflow
32
39
  - `pa:review` - Code review workflow
33
40
 
34
- ### Deployment Commands
41
+ ### Deployment
35
42
  - `pa:deploy` - Deployment preparation
36
43
  - `pa:rollback` - Rollback procedures
37
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
+
38
62
  ## Execution Instructions
39
63
 
40
64
  When user types a `pa:` command:
@@ -8,13 +8,22 @@ When user types commands starting with `pa:`, recognize and execute them:
8
8
 
9
9
  ## Available Commands
10
10
 
11
- ### Core Commands
11
+ ### Initialization
12
12
  | Command | Action |
13
13
  |---------|--------|
14
+ | `pa:init` | Initialize ProAgents in project |
14
15
  | `pa:help` | Show all available commands |
16
+ | `pa:status` | Show current progress |
17
+
18
+ ### Feature Development
19
+ | Command | Action |
20
+ |---------|--------|
15
21
  | `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 |
16
26
  | `pa:fix "description"` | Quick bug fix mode |
17
- | `pa:status` | Show current progress |
18
27
 
19
28
  ### Documentation Commands
20
29
  | Command | Action |
@@ -31,19 +40,42 @@ When user types commands starting with `pa:`, recognize and execute them:
31
40
  | `pa:release` | Generate release notes |
32
41
  | `pa:release [version]` | Version-specific release notes |
33
42
 
34
- ### Quality Commands
43
+ ### Quality & Testing
35
44
  | Command | Action |
36
45
  |---------|--------|
37
46
  | `pa:qa` | Run quality assurance checks |
38
47
  | `pa:test` | Run test workflow |
39
48
  | `pa:review` | Code review workflow |
40
49
 
41
- ### Deployment Commands
50
+ ### Deployment
42
51
  | Command | Action |
43
52
  |---------|--------|
44
53
  | `pa:deploy` | Deployment preparation |
45
54
  | `pa:rollback` | Rollback procedures |
46
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
+
47
79
  ## Execution Instructions
48
80
 
49
81
  When user types a `pa:` command:
@@ -4,20 +4,72 @@ This project uses ProAgents. Recognize `pa:` commands:
4
4
 
5
5
  ## Commands
6
6
 
7
+ ### Initialization
7
8
  ```
9
+ pa:init → Initialize ProAgents in project
8
10
  pa:help → Show all commands
11
+ pa:status → Show current progress
12
+ ```
13
+
14
+ ### Feature Development
15
+ ```
9
16
  pa:feature "name" → Start feature (read ./proagents/WORKFLOW.md)
17
+ pa:feature-start → Start new feature
18
+ pa:feature-status → Check feature status
19
+ pa:feature-list → List all features
20
+ pa:feature-complete → Mark feature complete
10
21
  pa:fix "bug" → Bug fix mode (read ./proagents/workflow-modes/entry-modes.md)
11
- pa:status → Show progress
22
+ ```
23
+
24
+ ### Documentation
25
+ ```
12
26
  pa:doc → Documentation options
13
27
  pa:doc-full → Full docs (read ./proagents/prompts/07-documentation.md)
14
28
  pa:doc-moderate → Balanced docs
15
29
  pa:doc-lite → Quick reference
30
+ pa:doc-module [name] → Document specific module
31
+ pa:doc-file [path] → Document specific file
32
+ pa:doc-api → Generate API documentation
33
+ pa:readme → Generate/update README
34
+ pa:changelog → Update CHANGELOG.md
35
+ pa:release → Generate release notes
36
+ pa:release [ver] → Version-specific notes
37
+ ```
38
+
39
+ ### Quality & Testing
40
+ ```
16
41
  pa:qa → Quality checks (read ./proagents/checklists/code-quality.md)
17
42
  pa:test → Test workflow (read ./proagents/prompts/06-testing.md)
43
+ pa:review → Code review workflow
44
+ ```
45
+
46
+ ### Deployment
47
+ ```
18
48
  pa:deploy → Deployment (read ./proagents/prompts/08-deployment.md)
19
- pa:release Release notes
20
- pa:release [ver] → Version-specific notes
49
+ pa:rollback Rollback procedures
50
+ ```
51
+
52
+ ### AI Platform Management
53
+ ```
54
+ pa:ai-list → List installed AI platforms
55
+ pa:ai-add → Add more AI platforms
56
+ pa:ai-remove → Remove AI platforms from config
57
+ ```
58
+
59
+ ### Configuration
60
+ ```
61
+ pa:config → Show current configuration
62
+ pa:config-list → List all configurable options
63
+ pa:config-show → Show current config values
64
+ pa:config-set K V → Set a config value
65
+ pa:config-get K → Get a config value
66
+ pa:config-setup → Interactive config wizard
67
+ pa:config-customize → Copy templates to customize
68
+ ```
69
+
70
+ ### Utilities
71
+ ```
72
+ pa:uninstall → Remove ProAgents from project
21
73
  ```
22
74
 
23
75
  ## On `pa:` command
@@ -6,12 +6,21 @@ This project uses ProAgents - an AI-agnostic development workflow framework.
6
6
 
7
7
  When user types commands starting with `pa:`, recognize and execute them:
8
8
 
9
- ## Core Commands
9
+ ## Initialization
10
10
  ```
11
+ pa:init → Initialize ProAgents in project
11
12
  pa:help → Show all available commands
13
+ pa:status → Show current progress
14
+ ```
15
+
16
+ ## Feature Development
17
+ ```
12
18
  pa:feature "name" → Start new feature workflow
19
+ pa:feature-start → Start new feature
20
+ pa:feature-status → Check feature status
21
+ pa:feature-list → List all features
22
+ pa:feature-complete → Mark feature complete
13
23
  pa:fix "description" → Quick bug fix mode
14
- pa:status → Show current progress
15
24
  ```
16
25
 
17
26
  ## Documentation Commands
@@ -29,19 +38,42 @@ pa:release → Generate release notes
29
38
  pa:release [version] → Version-specific release notes
30
39
  ```
31
40
 
32
- ## Quality & Testing Commands
41
+ ## Quality & Testing
33
42
  ```
34
43
  pa:qa → Run quality assurance checks
35
44
  pa:test → Run test workflow
36
45
  pa:review → Code review workflow
37
46
  ```
38
47
 
39
- ## Deployment Commands
48
+ ## Deployment
40
49
  ```
41
50
  pa:deploy → Deployment preparation
42
51
  pa:rollback → Rollback procedures
43
52
  ```
44
53
 
54
+ ## AI Platform Management
55
+ ```
56
+ pa:ai-list → List installed AI platforms
57
+ pa:ai-add → Add more AI platforms
58
+ pa:ai-remove → Remove AI platforms from config
59
+ ```
60
+
61
+ ## Configuration
62
+ ```
63
+ pa:config → Show current configuration
64
+ pa:config-list → List all configurable options
65
+ pa:config-show → Show current config values
66
+ pa:config-set K V → Set a config value
67
+ pa:config-get K → Get a config value
68
+ pa:config-setup → Interactive config wizard
69
+ pa:config-customize → Copy templates to customize
70
+ ```
71
+
72
+ ## Utilities
73
+ ```
74
+ pa:uninstall → Remove ProAgents from project
75
+ ```
76
+
45
77
  ## How to Execute
46
78
 
47
79
  When user types a `pa:` command:
package/proagents/GROQ.md CHANGED
@@ -8,12 +8,21 @@ When user types commands starting with `pa:`, recognize and execute them:
8
8
 
9
9
  ## Available Commands
10
10
 
11
- ### Core Commands
11
+ ### Initialization
12
12
  ```
13
+ pa:init → Initialize ProAgents in project
13
14
  pa:help → Show all available commands
15
+ pa:status → Show current progress
16
+ ```
17
+
18
+ ### Feature Development
19
+ ```
14
20
  pa:feature "name" → Start new feature workflow
21
+ pa:feature-start → Start new feature
22
+ pa:feature-status → Check feature status
23
+ pa:feature-list → List all features
24
+ pa:feature-complete → Mark feature complete
15
25
  pa:fix "description" → Quick bug fix mode
16
- pa:status → Show current progress
17
26
  ```
18
27
 
19
28
  ### Documentation Commands
@@ -31,19 +40,42 @@ pa:release → Generate release notes
31
40
  pa:release [version] → Version-specific release notes
32
41
  ```
33
42
 
34
- ### Quality & Testing Commands
43
+ ### Quality & Testing
35
44
  ```
36
45
  pa:qa → Run quality assurance checks
37
46
  pa:test → Run test workflow
38
47
  pa:review → Code review workflow
39
48
  ```
40
49
 
41
- ### Deployment Commands
50
+ ### Deployment
42
51
  ```
43
52
  pa:deploy → Deployment preparation
44
53
  pa:rollback → Rollback procedures
45
54
  ```
46
55
 
56
+ ### AI Platform Management
57
+ ```
58
+ pa:ai-list → List installed AI platforms
59
+ pa:ai-add → Add more AI platforms
60
+ pa:ai-remove → Remove AI platforms from config
61
+ ```
62
+
63
+ ### Configuration
64
+ ```
65
+ pa:config → Show current configuration
66
+ pa:config-list → List all configurable options
67
+ pa:config-show → Show current config values
68
+ pa:config-set K V → Set a config value
69
+ pa:config-get K → Get a config value
70
+ pa:config-setup → Interactive config wizard
71
+ pa:config-customize → Copy templates to customize
72
+ ```
73
+
74
+ ### Utilities
75
+ ```
76
+ pa:uninstall → Remove ProAgents from project
77
+ ```
78
+
47
79
  ## Execution Instructions
48
80
 
49
81
  When user types a `pa:` command:
package/proagents/KIRO.md CHANGED
@@ -8,13 +8,22 @@ When user types commands starting with `pa:`, recognize and execute them:
8
8
 
9
9
  ## Available Commands
10
10
 
11
- ### Core Commands
11
+ ### Initialization
12
12
  | Command | Action |
13
13
  |---------|--------|
14
+ | `pa:init` | Initialize ProAgents in project |
14
15
  | `pa:help` | Show all available commands |
16
+ | `pa:status` | Show current progress |
17
+
18
+ ### Feature Development
19
+ | Command | Action |
20
+ |---------|--------|
15
21
  | `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 |
16
26
  | `pa:fix "description"` | Quick bug fix mode |
17
- | `pa:status` | Show current progress |
18
27
 
19
28
  ### Documentation Commands
20
29
  | Command | Action |
@@ -31,19 +40,42 @@ When user types commands starting with `pa:`, recognize and execute them:
31
40
  | `pa:release` | Generate release notes |
32
41
  | `pa:release [version]` | Version-specific release notes |
33
42
 
34
- ### Quality Commands
43
+ ### Quality & Testing
35
44
  | Command | Action |
36
45
  |---------|--------|
37
46
  | `pa:qa` | Run quality assurance checks |
38
47
  | `pa:test` | Run test workflow |
39
48
  | `pa:review` | Code review workflow |
40
49
 
41
- ### Deployment Commands
50
+ ### Deployment
42
51
  | Command | Action |
43
52
  |---------|--------|
44
53
  | `pa:deploy` | Deployment preparation |
45
54
  | `pa:rollback` | Rollback procedures |
46
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
+
47
79
  ## Execution Instructions
48
80
 
49
81
  When user types a `pa:` command:
@@ -8,13 +8,22 @@ When user types commands starting with `pa:`, recognize and execute them:
8
8
 
9
9
  ## Available Commands
10
10
 
11
- ### Core Commands
11
+ ### Initialization
12
12
  | Command | Description |
13
13
  |---------|-------------|
14
+ | `pa:init` | Initialize ProAgents in project |
14
15
  | `pa:help` | Show all available commands |
16
+ | `pa:status` | Show current progress |
17
+
18
+ ### Feature Development
19
+ | Command | Description |
20
+ |---------|-------------|
15
21
  | `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 |
16
26
  | `pa:fix "description"` | Quick bug fix mode |
17
- | `pa:status` | Show current progress |
18
27
 
19
28
  ### Documentation Commands
20
29
  | Command | Description |
@@ -31,19 +40,42 @@ When user types commands starting with `pa:`, recognize and execute them:
31
40
  | `pa:release` | Generate release notes |
32
41
  | `pa:release [version]` | Version-specific release notes |
33
42
 
34
- ### Quality Commands
43
+ ### Quality & Testing
35
44
  | Command | Description |
36
45
  |---------|-------------|
37
46
  | `pa:qa` | Run quality assurance checks |
38
47
  | `pa:test` | Run test workflow |
39
48
  | `pa:review` | Code review workflow |
40
49
 
41
- ### Deployment Commands
50
+ ### Deployment
42
51
  | Command | Description |
43
52
  |---------|-------------|
44
53
  | `pa:deploy` | Deployment preparation |
45
54
  | `pa:rollback` | Rollback procedures |
46
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
+
47
79
  ## Execution Instructions
48
80
 
49
81
  When user types a `pa:` command:
@@ -6,13 +6,23 @@ This project uses ProAgents - an AI-agnostic development workflow framework.
6
6
 
7
7
  When user types commands starting with `pa:`, recognize and execute them:
8
8
 
9
- ## Core Commands
9
+ ## Initialization
10
10
 
11
11
  ```
12
+ pa:init → Initialize ProAgents in project
12
13
  pa:help → Show all available commands
14
+ pa:status → Show current progress
15
+ ```
16
+
17
+ ## Feature Development
18
+
19
+ ```
13
20
  pa:feature "name" → Start new feature workflow
21
+ pa:feature-start → Start new feature
22
+ pa:feature-status → Check feature status
23
+ pa:feature-list → List all features
24
+ pa:feature-complete → Mark feature complete
14
25
  pa:fix "description" → Quick bug fix mode
15
- pa:status → Show current progress
16
26
  ```
17
27
 
18
28
  ## Documentation Commands
@@ -31,7 +41,7 @@ pa:release → Generate release notes
31
41
  pa:release [version] → Version-specific release notes
32
42
  ```
33
43
 
34
- ## Quality & Testing Commands
44
+ ## Quality & Testing
35
45
 
36
46
  ```
37
47
  pa:qa → Run quality assurance checks
@@ -39,13 +49,39 @@ pa:test → Run test workflow
39
49
  pa:review → Code review workflow
40
50
  ```
41
51
 
42
- ## Deployment Commands
52
+ ## Deployment
43
53
 
44
54
  ```
45
55
  pa:deploy → Deployment preparation
46
56
  pa:rollback → Rollback procedures
47
57
  ```
48
58
 
59
+ ## AI Platform Management
60
+
61
+ ```
62
+ pa:ai-list → List installed AI platforms
63
+ pa:ai-add → Add more AI platforms
64
+ pa:ai-remove → Remove AI platforms from config
65
+ ```
66
+
67
+ ## Configuration
68
+
69
+ ```
70
+ pa:config → Show current configuration
71
+ pa:config-list → List all configurable options
72
+ pa:config-show → Show current config values
73
+ pa:config-set K V → Set a config value
74
+ pa:config-get K → Get a config value
75
+ pa:config-setup → Interactive config wizard
76
+ pa:config-customize → Copy templates to customize
77
+ ```
78
+
79
+ ## Utilities
80
+
81
+ ```
82
+ pa:uninstall → Remove ProAgents from project
83
+ ```
84
+
49
85
  ## How to Execute Commands
50
86
 
51
87
  When user types a `pa:` command: