proagents 1.6.9 → 1.6.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.
package/README.md CHANGED
@@ -74,17 +74,28 @@ Implementation → Testing → Review → Documentation → Deployment
74
74
 
75
75
  ## Features
76
76
 
77
- ### Multi-AI Collaboration
77
+ ### Multi-AI Collaboration & Cross-AI Continuity
78
78
 
79
- Multiple AIs can work on the same project without conflicts:
79
+ Multiple AIs can work on the same project with full context sharing:
80
80
 
81
81
  | Feature | Description |
82
82
  |---------|-------------|
83
+ | **Session Tracking** | Each AI logs detailed work sessions |
84
+ | **Context Sync** | `pa:sync` loads full project context instantly |
85
+ | **Feature Changelogs** | Per-feature change history |
86
+ | **Module Changelogs** | Per-module change history |
83
87
  | **Activity Log** | Track what each AI does with model name |
84
- | **Lock File** | Prevent conflicts during major work |
85
88
  | **Handoff Notes** | Pass context between AI sessions |
86
- | **Conflict Detection** | Warn before overwriting another AI's changes |
87
- | **Session Summaries** | Auto-generate summary at session end |
89
+
90
+ ```bash
91
+ # Start work on any AI platform
92
+ pa:sync # Load context from other AIs
93
+ pa:session-start # Begin tracking your work
94
+
95
+ # Do work...
96
+
97
+ pa:session-end # Save context for next AI
98
+ ```
88
99
 
89
100
  ### Project Templates
90
101
 
@@ -184,6 +195,9 @@ Type these in any AI assistant (Claude, ChatGPT, Gemini, Cursor, etc.):
184
195
  | `pa:r` | `pa:requirements` |
185
196
  | `pa:p` | `pa:plan` |
186
197
  | `pa:i` | `pa:implement` |
198
+ | `pa:rev` | `pa:review` |
199
+ | `pa:dbg` | `pa:debug` |
200
+ | `pa:l` | `pa:logs` |
187
201
 
188
202
  ### Core Commands
189
203
  | Command | Description |
@@ -219,15 +233,21 @@ Type these in any AI assistant (Claude, ChatGPT, Gemini, Cursor, etc.):
219
233
  | `pa:qa` | Run quality assurance checks |
220
234
  | `pa:rollback` | Rollback procedures |
221
235
 
222
- ### Multi-AI Collaboration
236
+ ### Cross-AI Continuity
223
237
  | Command | Description |
224
238
  |---------|-------------|
239
+ | `pa:sync` | **Run first** - Load project context |
240
+ | `pa:resume` | Quick resume - shows last session + next action |
241
+ | `pa:session-start` | Begin new work session |
242
+ | `pa:session-end` | Finalize session, update logs |
243
+ | `pa:conflict-check` | Check if files modified by other AI |
244
+ | `pa:changelog` | Update all changelogs |
245
+ | `pa:changelog --from-git` | Auto-populate from git commits |
246
+ | `pa:changelog-feature X` | View feature changelog |
247
+ | `pa:changelog-module X` | View module changelog |
248
+ | `pa:history` | View command history |
225
249
  | `pa:activity` | Show recent AI activity |
226
- | `pa:lock` | Show/check lock status |
227
- | `pa:lock-release` | Release your lock |
228
- | `pa:handoff` | Create handoff notes for next AI |
229
- | `pa:handoff-read` | Read handoff notes |
230
- | `pa:session-end` | Generate session summary |
250
+ | `pa:handoff` | Create handoff notes |
231
251
 
232
252
  ### Learning & Tracking
233
253
  | Command | Description |
@@ -366,6 +386,25 @@ Type these in any AI assistant (Claude, ChatGPT, Gemini, Cursor, etc.):
366
386
  | `pa:duplication` | Find duplicate code blocks |
367
387
  | `pa:hotspots` | Find frequently changed files |
368
388
 
389
+ ### Debug & Logs
390
+ | Command | Description |
391
+ |---------|-------------|
392
+ | `pa:debug` | Start debug session |
393
+ | `pa:debug-add` | Add debug logs to code |
394
+ | `pa:debug-add "file"` | Add logs to specific file |
395
+ | `pa:debug-trace "func"` | Add entry/exit logs to function |
396
+ | `pa:debug-var "var"` | Track variable changes |
397
+ | `pa:debug-api` | Add API request/response logging |
398
+ | `pa:debug-state` | Add state change logging |
399
+ | `pa:debug-error` | Add error boundary logging |
400
+ | `pa:debug-web` | Web console debugging |
401
+ | `pa:debug-rn` | React Native debugging |
402
+ | `pa:debug-android` | Android native (logcat) |
403
+ | `pa:debug-ios` | iOS native debugging |
404
+ | `pa:logs` | View recent logs |
405
+ | `pa:logs-filter "term"` | Filter logs by term |
406
+ | `pa:debug-clean` | Remove all debug statements |
407
+
369
408
  ### Testing Advanced
370
409
  | Command | Description |
371
410
  |---------|-------------|
@@ -489,7 +528,13 @@ your-project/
489
528
  │ ├── errors.md # Error tracker
490
529
  │ ├── handoff.md # Handoff notes
491
530
  │ ├── custom-commands.yaml # Custom pa: commands
492
- │ ├── sessions/ # Session summaries
531
+ │ ├── worklog/ # Cross-AI session tracking
532
+ │ │ ├── _context.md # Quick context for any AI
533
+ │ │ └── YYYY-MM-DD-ai-*.md # Session logs
534
+ │ ├── changelog/ # Detailed changelogs
535
+ │ │ ├── _recent.md # Last 10 changes
536
+ │ │ ├── features/ # Per-feature changelogs
537
+ │ │ └── modules/ # Per-module changelogs
493
538
  │ ├── active-features/ # Feature tracking
494
539
  │ ├── prompts/ # Workflow prompts
495
540
  │ ├── templates/ # Document templates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proagents",
3
- "version": "1.6.9",
3
+ "version": "1.6.11",
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",