proagents 1.0.16 → 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.16",
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:
@@ -61,13 +80,6 @@ When the user types commands starting with `pa:`, recognize and execute them:
61
80
 
62
81
  **How to execute AI Platform commands:**
63
82
 
64
- **IMPORTANT - Multi-AI Environment:**
65
- When multiple AI tools work on the same project, they don't share context. Before executing ANY `pa:ai-*` command:
66
- 1. ALWAYS read fresh state from files (don't rely on cached/previous knowledge)
67
- 2. Read `./proagents/proagents.config.yaml` for current config
68
- 3. Check which files actually exist in project root
69
- 4. If you detect mismatches, inform user and suggest `pa:ai-sync`
70
-
71
83
  For `pa:ai-list`:
72
84
  - Read `./proagents/proagents.config.yaml` and show the `platforms` array
73
85
  - Show which AI instruction files exist in project root
@@ -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 |