proagents 1.0.11 → 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/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
@@ -1,85 +1,31 @@
1
1
  # ProAgents Commands for Claude
2
2
 
3
- This project uses ProAgents. Recognize `pa:` commands:
3
+ This project uses ProAgents - an AI-agnostic development workflow framework.
4
4
 
5
- ## Commands
5
+ ## Essential Commands
6
6
 
7
- ### Initialization
8
- ```
9
- pa:init → Initialize ProAgents in project
10
- pa:help → Show all commands
11
- pa:status → Show current progress
12
- ```
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 |
13
16
 
14
- ### Feature Development
15
- ```
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
21
- pa:fix "bug" → Bug fix mode (read ./proagents/workflow-modes/entry-modes.md)
22
- ```
17
+ ## Full Command Reference
23
18
 
24
- ### Documentation
25
- ```
26
- pa:doc → Documentation options
27
- pa:doc-full → Full docs (read ./proagents/prompts/07-documentation.md)
28
- pa:doc-moderate → Balanced docs
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
- ```
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
38
20
 
39
- ### Quality & Testing
40
- ```
41
- pa:qa → Quality checks (read ./proagents/checklists/code-quality.md)
42
- pa:test → Test workflow (read ./proagents/prompts/06-testing.md)
43
- pa:review → Code review workflow
44
- ```
21
+ ## On `pa:` Command
45
22
 
46
- ### Deployment
47
- ```
48
- pa:deploy → Deployment (read ./proagents/prompts/08-deployment.md)
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
73
- ```
74
-
75
- ## On `pa:` command
76
-
77
- 1. Read the corresponding file in `./proagents/prompts/` or `./proagents/workflow-modes/`
23
+ 1. Read the corresponding file from `./proagents/prompts/` or `./proagents/workflow-modes/`
78
24
  2. Follow the workflow instructions
79
25
  3. Use project config from `./proagents/proagents.config.yaml`
80
26
 
81
27
  ## Key Files
82
28
 
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
83
30
  - `./proagents/WORKFLOW.md` - Full 10-phase workflow
84
- - `./proagents/PROAGENTS.md` - Quick command reference
85
31
  - `./proagents/prompts/` - Phase-specific prompts
@@ -2,101 +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
- ## Initialization
10
- ```
11
- pa:init → Initialize ProAgents in project
12
- pa:help → Show all available commands
13
- pa:status → Show current progress
14
- ```
17
+ ## Full Command Reference
15
18
 
16
- ## Feature Development
17
- ```
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
23
- pa:fix "description" → Quick bug fix mode
24
- ```
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
25
20
 
26
- ## Documentation Commands
27
- ```
28
- pa:doc → Show documentation options
29
- pa:doc-full → Generate full project documentation
30
- pa:doc-moderate → Generate balanced documentation
31
- pa:doc-lite → Generate quick reference
32
- pa:doc-module [name] → Document specific module
33
- pa:doc-file [path] → Document specific file
34
- pa:doc-api → Generate API documentation
35
- pa:readme → Generate/update README
36
- pa:changelog → Update CHANGELOG.md
37
- pa:release → Generate release notes
38
- pa:release [version] → Version-specific release notes
39
- ```
21
+ ## On `pa:` Command
40
22
 
41
- ## Quality & Testing
42
- ```
43
- pa:qa → Run quality assurance checks
44
- pa:test → Run test workflow
45
- pa:review → Code review workflow
46
- ```
47
-
48
- ## Deployment
49
- ```
50
- pa:deploy → Deployment preparation
51
- pa:rollback → Rollback procedures
52
- ```
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
-
77
- ## How to Execute
78
-
79
- When user types a `pa:` command:
80
-
81
- 1. Read the corresponding prompt file from `./proagents/prompts/`
82
- 2. Follow the workflow instructions in that file
83
- 3. Use project configuration from `./proagents/proagents.config.yaml`
84
-
85
- ## Prompt File Mapping
86
-
87
- | Command | Prompt File |
88
- |---------|-------------|
89
- | `pa:feature` | `./proagents/prompts/00-init.md` + `./proagents/WORKFLOW.md` |
90
- | `pa:fix` | `./proagents/workflow-modes/entry-modes.md` (Bug Fix section) |
91
- | `pa:doc*` | `./proagents/prompts/07-documentation.md` |
92
- | `pa:qa` | `./proagents/checklists/code-quality.md` |
93
- | `pa:test` | `./proagents/prompts/06-testing.md` |
94
- | `pa:deploy` | `./proagents/prompts/08-deployment.md` |
95
- | `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`
96
26
 
97
27
  ## Key Files
98
28
 
99
- - `./proagents/WORKFLOW.md` - Full 10-phase workflow documentation
100
- - `./proagents/PROAGENTS.md` - Quick command reference
101
- - `./proagents/prompts/` - Phase-specific AI prompts
102
- - `./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,103 +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
- ```
13
- pa:init → Initialize ProAgents in project
14
- pa:help → Show all available commands
15
- pa:status → Show current progress
16
- ```
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
17
20
 
18
- ### Feature Development
19
- ```
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
25
- pa:fix "description" → Quick bug fix mode
26
- ```
21
+ ## On `pa:` Command
27
22
 
28
- ### Documentation Commands
29
- ```
30
- pa:doc → Show documentation options
31
- pa:doc-full → Generate full project documentation
32
- pa:doc-moderate → Generate balanced documentation
33
- pa:doc-lite → Generate quick reference
34
- pa:doc-module [name] → Document specific module
35
- pa:doc-file [path] → Document specific file
36
- pa:doc-api → Generate API documentation
37
- pa:readme → Generate/update README
38
- pa:changelog → Update CHANGELOG.md
39
- pa:release → Generate release notes
40
- pa:release [version] → Version-specific release notes
41
- ```
42
-
43
- ### Quality & Testing
44
- ```
45
- pa:qa → Run quality assurance checks
46
- pa:test → Run test workflow
47
- pa:review → Code review workflow
48
- ```
49
-
50
- ### Deployment
51
- ```
52
- pa:deploy → Deployment preparation
53
- pa:rollback → Rollback procedures
54
- ```
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
-
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 instructions in that file
85
- 3. Use project configuration from `./proagents/proagents.config.yaml`
86
-
87
- ## Prompt File Mapping
88
-
89
- | Command | Read This File |
90
- |---------|----------------|
91
- | `pa:feature` | `./proagents/prompts/00-init.md` + `./proagents/WORKFLOW.md` |
92
- | `pa:fix` | `./proagents/workflow-modes/entry-modes.md` |
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
27
  ## Key Files
100
28
 
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
101
30
  - `./proagents/WORKFLOW.md` - Full 10-phase workflow
102
- - `./proagents/PROAGENTS.md` - Quick command reference
103
- - `./proagents/prompts/` - Phase-specific AI prompts
104
- - `./proagents/proagents.config.yaml` - Project configuration
31
+ - `./proagents/prompts/` - Phase-specific prompts