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/KIRO.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:
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
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
- - `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)
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
- ## Key Reference Files
27
+ ## Key Files
98
28
 
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 |
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 | 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
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
@@ -2,107 +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
17
+ ## Full Command Reference
10
18
 
11
- ```
12
- pa:init → Initialize ProAgents in project
13
- pa:help → Show all available commands
14
- pa:status → Show current progress
15
- ```
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
16
20
 
17
- ## Feature Development
21
+ ## On `pa:` Command
18
22
 
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
- ```
27
-
28
- ## Documentation Commands
29
-
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
-
44
- ## Quality & Testing
45
-
46
- ```
47
- pa:qa → Run quality assurance checks
48
- pa:test → Run test workflow
49
- pa:review → Code review workflow
50
- ```
51
-
52
- ## Deployment
53
-
54
- ```
55
- pa:deploy → Deployment preparation
56
- pa:rollback → Rollback procedures
57
- ```
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
-
85
- ## How to Execute Commands
86
-
87
- When user types a `pa:` command:
88
-
89
- 1. Read the corresponding prompt file from `./proagents/prompts/`
90
- 2. Follow the workflow instructions in that file
91
- 3. Use project configuration from `./proagents/proagents.config.yaml`
92
-
93
- ## Prompt File Mapping
94
-
95
- | Command | Read This File |
96
- |---------|----------------|
97
- | `pa:feature` | `./proagents/prompts/00-init.md` + `./proagents/WORKFLOW.md` |
98
- | `pa:fix` | `./proagents/workflow-modes/entry-modes.md` |
99
- | `pa:doc*` | `./proagents/prompts/07-documentation.md` |
100
- | `pa:qa` | `./proagents/checklists/code-quality.md` |
101
- | `pa:test` | `./proagents/prompts/06-testing.md` |
102
- | `pa:deploy` | `./proagents/prompts/08-deployment.md` |
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`
103
26
 
104
27
  ## Key Files
105
28
 
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
106
30
  - `./proagents/WORKFLOW.md` - Full 10-phase workflow
107
- - `./proagents/PROAGENTS.md` - Quick command reference
108
- - `./proagents/prompts/` - Phase-specific AI prompts
31
+ - `./proagents/prompts/` - Phase-specific prompts