proagents 1.0.15 → 1.0.17

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.15",
3
+ "version": "1.0.17",
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",
@@ -2,6 +2,25 @@
2
2
 
3
3
  This project uses ProAgents - an AI-agnostic development workflow framework.
4
4
 
5
+ ## CRITICAL: Multi-AI Environment
6
+
7
+ **Multiple AI tools may work on this project simultaneously (Claude, Cursor, Gemini, Copilot, etc.). They do NOT share context.**
8
+
9
+ Before executing ANY `pa:` command:
10
+
11
+ 1. **ALWAYS read fresh state from files** - Never rely on previous knowledge or cached data
12
+ 2. **Key files to check:**
13
+ - `./proagents/proagents.config.yaml` - Project and platform config
14
+ - `./proagents/active-features/` - Active feature status
15
+ - `./CHANGELOG.md` - Recent changes
16
+ - `./RELEASE_NOTES.md` - Release history
17
+ 3. **If you detect conflicts or outdated state:**
18
+ - Inform the user: "I notice [X] may have changed since my last context. Let me refresh..."
19
+ - Re-read the relevant files before proceeding
20
+ 4. **After making changes:**
21
+ - Always update the relevant tracking files (status.json, config, etc.)
22
+ - Other AIs will read these files to stay in sync
23
+
5
24
  ## Command Recognition
6
25
 
7
26
  When the user types commands starting with `pa:`, recognize and execute them:
@@ -57,6 +76,7 @@ When the user types commands starting with `pa:`, recognize and execute them:
57
76
  | `pa:ai-list` | List installed AI platforms |
58
77
  | `pa:ai-add` | Add more AI platforms |
59
78
  | `pa:ai-remove` | Remove AI platforms from config |
79
+ | `pa:ai-sync` | Sync config with existing files |
60
80
 
61
81
  **How to execute AI Platform commands:**
62
82
 
@@ -100,6 +120,31 @@ For `pa:ai-remove`:
100
120
  - Remove the PROAGENTS section (between markers) from the file, OR delete the file if it only contains ProAgents content
101
121
  - Update config to remove from `platforms` array
102
122
 
123
+ For `pa:ai-sync`:
124
+ 1. Scan project root for AI instruction files
125
+ 2. Read current config from `./proagents/proagents.config.yaml`
126
+ 3. Compare and show differences:
127
+ - Files that exist but not in config
128
+ - Config entries that don't have matching files
129
+ 4. Ask user: "Add missing files to config?" or "Remove orphan config entries?"
130
+ 5. Update config to match actual files
131
+
132
+ **Platform ID to File Mapping:**
133
+ | Platform ID | File |
134
+ |-------------|------|
135
+ | claude | CLAUDE.md |
136
+ | cursor | .cursorrules |
137
+ | windsurf | .windsurfrules |
138
+ | copilot | .github/copilot-instructions.md |
139
+ | chatgpt | CHATGPT.md |
140
+ | gemini | GEMINI.md |
141
+ | bolt | BOLT.md |
142
+ | lovable | LOVABLE.md |
143
+ | replit | REPLIT.md |
144
+ | kiro | KIRO.md |
145
+ | groq | GROQ.md |
146
+ | antigravity | ANTIGRAVITY.md |
147
+
103
148
  ### Configuration
104
149
  | Command | Action |
105
150
  |---------|--------|
@@ -2,6 +2,8 @@
2
2
 
3
3
  Execute these commands when user types them (prefix: `pa:`):
4
4
 
5
+ > **Multi-AI Note:** Multiple AIs may work on this project. Always read fresh state from files before executing commands. See `./proagents/AI_INSTRUCTIONS.md` for details.
6
+
5
7
  ## Commands
6
8
 
7
9
  | Command | What to Do |
@@ -18,6 +20,7 @@ Execute these commands when user types them (prefix: `pa:`):
18
20
  | `pa:ai-list` | Read config, show installed AI platforms |
19
21
  | `pa:ai-add` | Show platform options, create AI instruction files |
20
22
  | `pa:ai-remove` | Show installed platforms, remove selected files |
23
+ | `pa:ai-sync` | Sync config with existing files (fix mismatches) |
21
24
 
22
25
  ## Feature Workflow
23
26