proagents 1.0.9 → 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,111 @@
1
+ # ProAgents Commands for Lovable
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
+ - `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)
96
+
97
+ ## Key Reference Files
98
+
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 |
105
+
106
+ ## Important Notes
107
+
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
@@ -0,0 +1,108 @@
1
+ # ProAgents Commands for Replit AI
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
+ ## Initialization
10
+
11
+ ```
12
+ pa:init → Initialize ProAgents in project
13
+ pa:help → Show all available commands
14
+ pa:status → Show current progress
15
+ ```
16
+
17
+ ## Feature Development
18
+
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` |
103
+
104
+ ## Key Files
105
+
106
+ - `./proagents/WORKFLOW.md` - Full 10-phase workflow
107
+ - `./proagents/PROAGENTS.md` - Quick command reference
108
+ - `./proagents/prompts/` - Phase-specific AI prompts