proagents 1.6.10 → 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
 
@@ -222,15 +233,21 @@ Type these in any AI assistant (Claude, ChatGPT, Gemini, Cursor, etc.):
222
233
  | `pa:qa` | Run quality assurance checks |
223
234
  | `pa:rollback` | Rollback procedures |
224
235
 
225
- ### Multi-AI Collaboration
236
+ ### Cross-AI Continuity
226
237
  | Command | Description |
227
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 |
228
249
  | `pa:activity` | Show recent AI activity |
229
- | `pa:lock` | Show/check lock status |
230
- | `pa:lock-release` | Release your lock |
231
- | `pa:handoff` | Create handoff notes for next AI |
232
- | `pa:handoff-read` | Read handoff notes |
233
- | `pa:session-end` | Generate session summary |
250
+ | `pa:handoff` | Create handoff notes |
234
251
 
235
252
  ### Learning & Tracking
236
253
  | Command | Description |
@@ -511,7 +528,13 @@ your-project/
511
528
  │ ├── errors.md # Error tracker
512
529
  │ ├── handoff.md # Handoff notes
513
530
  │ ├── custom-commands.yaml # Custom pa: commands
514
- │ ├── 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
515
538
  │ ├── active-features/ # Feature tracking
516
539
  │ ├── prompts/ # Workflow prompts
517
540
  │ ├── templates/ # Document templates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proagents",
3
- "version": "1.6.10",
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",