proagents 1.0.14 → 1.0.15

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.14",
3
+ "version": "1.0.15",
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",
@@ -62,17 +62,43 @@ When the user types commands starting with `pa:`, recognize and execute them:
62
62
 
63
63
  For `pa:ai-list`:
64
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.)
65
+ - Show which AI instruction files exist in project root
66
66
 
67
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.)
68
+ 1. Show available platforms to user:
69
+ | Platform | File Created |
70
+ |----------|--------------|
71
+ | Claude Code | CLAUDE.md |
72
+ | Cursor | .cursorrules |
73
+ | Windsurf | .windsurfrules |
74
+ | GitHub Copilot | .github/copilot-instructions.md |
75
+ | ChatGPT | CHATGPT.md |
76
+ | Gemini | GEMINI.md |
77
+ | Bolt | BOLT.md |
78
+ | Lovable | LOVABLE.md |
79
+ | Replit | REPLIT.md |
80
+ | Kiro | KIRO.md |
81
+ | Groq | GROQ.md |
82
+ | AntiGravity | ANTIGRAVITY.md |
83
+
84
+ 2. Ask user which platforms to add
85
+ 3. For each selected platform:
86
+ - Copy content from `./proagents/{PLATFORM}.md` (e.g., `./proagents/CLAUDE.md`)
87
+ - If target file exists, wrap new content with markers and append:
88
+ ```
89
+ <!-- PROAGENTS:START -->
90
+ {content from proagents folder}
91
+ <!-- PROAGENTS:END -->
92
+ ```
93
+ - If target file doesn't exist, create it with the content wrapped in markers
94
+ 4. Update `./proagents/proagents.config.yaml` to add platform to `platforms` array
71
95
 
72
96
  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
97
+ 1. Read `./proagents/proagents.config.yaml` to get current platforms
98
+ 2. Show list and ask which to remove
99
+ 3. For each selected:
100
+ - Remove the PROAGENTS section (between markers) from the file, OR delete the file if it only contains ProAgents content
101
+ - Update config to remove from `platforms` array
76
102
 
77
103
  ### Configuration
78
104
  | Command | Action |
@@ -15,9 +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
+ | `pa:ai-list` | Read config, show installed AI platforms |
19
+ | `pa:ai-add` | Show platform options, create AI instruction files |
20
+ | `pa:ai-remove` | Show installed platforms, remove selected files |
21
21
 
22
22
  ## Feature Workflow
23
23