proagents 1.0.10 → 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,62 +2,30 @@
2
2
 
3
3
  This project uses ProAgents - an AI-agnostic development workflow framework.
4
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
5
+ ## Essential Commands
6
+
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 |
16
+
17
+ ## Full Command Reference
18
+
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
20
+
21
+ ## On `pa:` Command
22
+
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`
26
+
27
+ ## Key Files
28
+
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
30
+ - `./proagents/WORKFLOW.md` - Full 10-phase workflow
31
+ - `./proagents/prompts/` - Phase-specific prompts
@@ -2,78 +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
- ### Core Commands
12
7
  | Command | Action |
13
8
  |---------|--------|
14
- | `pa:help` | Show all available commands |
15
9
  | `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 |
10
+ | `pa:fix "bug"` | Quick bug fix mode |
11
+ | `pa:doc` | Documentation options |
12
+ | `pa:qa` | Quality assurance checks |
38
13
  | `pa:test` | Run test workflow |
39
- | `pa:review` | Code review workflow |
40
-
41
- ### Deployment Commands
42
- | Command | Action |
43
- |---------|--------|
44
14
  | `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`
15
+ | `pa:status` | Show current progress |
54
16
 
55
- ## Prompt File Mapping
17
+ ## Full Command Reference
56
18
 
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)
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
64
20
 
65
- ## Key Reference Files
21
+ ## On `pa:` Command
66
22
 
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 |
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`
73
26
 
74
- ## Important Notes
27
+ ## Key Files
75
28
 
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
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
30
+ - `./proagents/WORKFLOW.md` - Full 10-phase workflow
31
+ - `./proagents/prompts/` - Phase-specific prompts
@@ -1,33 +1,31 @@
1
1
  # ProAgents Commands for Claude
2
2
 
3
- This project uses ProAgents. Recognize `pa:` commands:
4
-
5
- ## Commands
6
-
7
- ```
8
- pa:help → Show all commands
9
- pa:feature "name" Start feature (read ./proagents/WORKFLOW.md)
10
- pa:fix "bug" Bug fix mode (read ./proagents/workflow-modes/entry-modes.md)
11
- pa:status → Show progress
12
- pa:doc → Documentation options
13
- pa:doc-full → Full docs (read ./proagents/prompts/07-documentation.md)
14
- pa:doc-moderate → Balanced docs
15
- pa:doc-lite → Quick reference
16
- pa:qa → Quality checks (read ./proagents/checklists/code-quality.md)
17
- pa:test → Test workflow (read ./proagents/prompts/06-testing.md)
18
- pa:deploy → Deployment (read ./proagents/prompts/08-deployment.md)
19
- pa:release → Release notes
20
- pa:release [ver] → Version-specific notes
21
- ```
22
-
23
- ## On `pa:` command
24
-
25
- 1. Read the corresponding file in `./proagents/prompts/` or `./proagents/workflow-modes/`
3
+ This project uses ProAgents - an AI-agnostic development workflow framework.
4
+
5
+ ## Essential Commands
6
+
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 |
16
+
17
+ ## Full Command Reference
18
+
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
20
+
21
+ ## On `pa:` Command
22
+
23
+ 1. Read the corresponding file from `./proagents/prompts/` or `./proagents/workflow-modes/`
26
24
  2. Follow the workflow instructions
27
25
  3. Use project config from `./proagents/proagents.config.yaml`
28
26
 
29
27
  ## Key Files
30
28
 
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
31
30
  - `./proagents/WORKFLOW.md` - Full 10-phase workflow
32
- - `./proagents/PROAGENTS.md` - Quick command reference
33
31
  - `./proagents/prompts/` - Phase-specific prompts
@@ -2,69 +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
- ## Core Commands
10
- ```
11
- pa:help → Show all available commands
12
- pa:feature "name" → Start new feature workflow
13
- pa:fix "description" → Quick bug fix mode
14
- pa:status → Show current progress
15
- ```
17
+ ## Full Command Reference
16
18
 
17
- ## Documentation Commands
18
- ```
19
- pa:doc → Show documentation options
20
- pa:doc-full → Generate full project documentation
21
- pa:doc-moderate → Generate balanced documentation
22
- pa:doc-lite → Generate quick reference
23
- pa:doc-module [name] → Document specific module
24
- pa:doc-file [path] → Document specific file
25
- pa:doc-api → Generate API documentation
26
- pa:readme → Generate/update README
27
- pa:changelog → Update CHANGELOG.md
28
- pa:release → Generate release notes
29
- pa:release [version] → Version-specific release notes
30
- ```
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
31
20
 
32
- ## Quality & Testing Commands
33
- ```
34
- pa:qa → Run quality assurance checks
35
- pa:test → Run test workflow
36
- pa:review → Code review workflow
37
- ```
21
+ ## On `pa:` Command
38
22
 
39
- ## Deployment Commands
40
- ```
41
- pa:deploy → Deployment preparation
42
- pa:rollback → Rollback procedures
43
- ```
44
-
45
- ## How to Execute
46
-
47
- When user types a `pa:` command:
48
-
49
- 1. Read the corresponding prompt file from `./proagents/prompts/`
50
- 2. Follow the workflow instructions in that file
51
- 3. Use project configuration from `./proagents/proagents.config.yaml`
52
-
53
- ## Prompt File Mapping
54
-
55
- | Command | Prompt File |
56
- |---------|-------------|
57
- | `pa:feature` | `./proagents/prompts/00-init.md` + `./proagents/WORKFLOW.md` |
58
- | `pa:fix` | `./proagents/workflow-modes/entry-modes.md` (Bug Fix section) |
59
- | `pa:doc*` | `./proagents/prompts/07-documentation.md` |
60
- | `pa:qa` | `./proagents/checklists/code-quality.md` |
61
- | `pa:test` | `./proagents/prompts/06-testing.md` |
62
- | `pa:deploy` | `./proagents/prompts/08-deployment.md` |
63
- | `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`
64
26
 
65
27
  ## Key Files
66
28
 
67
- - `./proagents/WORKFLOW.md` - Full 10-phase workflow documentation
68
- - `./proagents/PROAGENTS.md` - Quick command reference
69
- - `./proagents/prompts/` - Phase-specific AI prompts
70
- - `./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,71 +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
- ### 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
- ```
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
18
20
 
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
- ```
21
+ ## On `pa:` Command
33
22
 
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) |
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`
66
26
 
67
27
  ## Key Files
68
28
 
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
69
30
  - `./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
31
+ - `./proagents/prompts/` - Phase-specific prompts
package/proagents/KIRO.md CHANGED
@@ -2,71 +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
- ### Core Commands
12
7
  | Command | Action |
13
8
  |---------|--------|
14
- | `pa:help` | Show all available commands |
15
9
  | `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 |
10
+ | `pa:fix "bug"` | Quick bug fix mode |
11
+ | `pa:doc` | Documentation options |
12
+ | `pa:qa` | Quality assurance checks |
38
13
  | `pa:test` | Run test workflow |
39
- | `pa:review` | Code review workflow |
40
-
41
- ### Deployment Commands
42
- | Command | Action |
43
- |---------|--------|
44
14
  | `pa:deploy` | Deployment preparation |
45
- | `pa:rollback` | Rollback procedures |
46
-
47
- ## Execution Instructions
15
+ | `pa:status` | Show current progress |
48
16
 
49
- When user types a `pa:` command:
17
+ ## Full Command Reference
50
18
 
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`
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
54
20
 
55
- ## Prompt File Mapping
21
+ ## On `pa:` Command
56
22
 
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)
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`
64
26
 
65
- ## Key Reference Files
27
+ ## Key Files
66
28
 
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 |
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
30
+ - `./proagents/WORKFLOW.md` - Full 10-phase workflow
31
+ - `./proagents/prompts/` - Phase-specific prompts
@@ -2,78 +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
- ### Core Commands
12
- | Command | Description |
13
- |---------|-------------|
14
- | `pa:help` | Show all available commands |
7
+ | Command | Action |
8
+ |---------|--------|
15
9
  | `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 |
10
+ | `pa:fix "bug"` | Quick bug fix mode |
11
+ | `pa:doc` | Documentation options |
12
+ | `pa:qa` | Quality assurance checks |
38
13
  | `pa:test` | Run test workflow |
39
- | `pa:review` | Code review workflow |
40
-
41
- ### Deployment Commands
42
- | Command | Description |
43
- |---------|-------------|
44
14
  | `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`
15
+ | `pa:status` | Show current progress |
54
16
 
55
- ## Prompt File Mapping
17
+ ## Full Command Reference
56
18
 
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)
19
+ For complete command list, see: `./proagents/AI_INSTRUCTIONS.md`
64
20
 
65
- ## Key Reference Files
21
+ ## On `pa:` Command
66
22
 
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 |
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`
73
26
 
74
- ## Important Notes
27
+ ## Key Files
75
28
 
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
29
+ - `./proagents/AI_INSTRUCTIONS.md` - Complete command reference
30
+ - `./proagents/WORKFLOW.md` - Full 10-phase workflow
31
+ - `./proagents/prompts/` - Phase-specific prompts