proagents 1.0.13 → 1.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proagents",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "AI-agnostic development workflow framework that automates the full software development lifecycle",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -58,6 +58,22 @@ When the user types commands starting with `pa:`, recognize and execute them:
58
58
  | `pa:ai-add` | Add more AI platforms |
59
59
  | `pa:ai-remove` | Remove AI platforms from config |
60
60
 
61
+ **How to execute AI Platform commands:**
62
+
63
+ For `pa:ai-list`:
64
+ - Read `./proagents/proagents.config.yaml` and show the `platforms` array
65
+ - Show which AI instruction files exist in project root (CLAUDE.md, GEMINI.md, etc.)
66
+
67
+ For `pa:ai-add`:
68
+ - Tell user to run: `npx proagents ai add`
69
+ - This will show an interactive prompt to select additional AI platforms
70
+ - The command will create the appropriate AI instruction files (.cursorrules, GEMINI.md, etc.)
71
+
72
+ For `pa:ai-remove`:
73
+ - Tell user to run: `npx proagents ai remove`
74
+ - This will show which platforms can be removed
75
+ - The command will remove the AI instruction files and update config
76
+
61
77
  ### Configuration
62
78
  | Command | Action |
63
79
  |---------|--------|
@@ -15,6 +15,9 @@ Execute these commands when user types them (prefix: `pa:`):
15
15
  | `pa:doc` | Generate documentation |
16
16
  | `pa:release` | Generate release notes → `./RELEASE_NOTES.md` |
17
17
  | `pa:changelog` | Update `./CHANGELOG.md` |
18
+ | `pa:ai-list` | Show configured AI platforms from config |
19
+ | `pa:ai-add` | Tell user to run `npx proagents ai add` |
20
+ | `pa:ai-remove` | Tell user to run `npx proagents ai remove` |
18
21
 
19
22
  ## Feature Workflow
20
23