proagents 1.6.10 → 1.6.12

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,27 @@ 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
+ | **Auto Context Loading** | AI automatically loads context on first command |
84
+ | **Auto Change Logging** | Every code change logged automatically |
85
+ | **Feature Changelogs** | Per-feature change history |
86
+ | **Module Changelogs** | Per-module change history |
87
+ | **Conflict Detection** | Warns if files modified by other AI |
83
88
  | **Activity Log** | Track what each AI does with model name |
84
- | **Lock File** | Prevent conflicts during major work |
85
- | **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
+ # Just start working - context loads automatically!
92
+ pa:feature "add login" # AI auto-loads context, then works
93
+ pa:fix "bug in auth" # AI auto-loads context, then fixes
94
+
95
+ # No manual pa:sync needed - it's automatic
96
+ # No manual pa:session-end needed - changes logged automatically
97
+ ```
88
98
 
89
99
  ### Project Templates
90
100
 
@@ -222,15 +232,21 @@ Type these in any AI assistant (Claude, ChatGPT, Gemini, Cursor, etc.):
222
232
  | `pa:qa` | Run quality assurance checks |
223
233
  | `pa:rollback` | Rollback procedures |
224
234
 
225
- ### Multi-AI Collaboration
235
+ ### Cross-AI Continuity
226
236
  | Command | Description |
227
237
  |---------|-------------|
238
+ | `pa:sync` | **Run first** - Load project context |
239
+ | `pa:resume` | Quick resume - shows last session + next action |
240
+ | `pa:session-start` | Begin new work session |
241
+ | `pa:session-end` | Finalize session, update logs |
242
+ | `pa:conflict-check` | Check if files modified by other AI |
243
+ | `pa:changelog` | Update all changelogs |
244
+ | `pa:changelog --from-git` | Auto-populate from git commits |
245
+ | `pa:changelog-feature X` | View feature changelog |
246
+ | `pa:changelog-module X` | View module changelog |
247
+ | `pa:history` | View command history |
228
248
  | `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 |
249
+ | `pa:handoff` | Create handoff notes |
234
250
 
235
251
  ### Learning & Tracking
236
252
  | Command | Description |
@@ -511,7 +527,13 @@ your-project/
511
527
  │ ├── errors.md # Error tracker
512
528
  │ ├── handoff.md # Handoff notes
513
529
  │ ├── custom-commands.yaml # Custom pa: commands
514
- │ ├── sessions/ # Session summaries
530
+ │ ├── worklog/ # Cross-AI session tracking
531
+ │ │ ├── _context.md # Quick context for any AI
532
+ │ │ └── YYYY-MM-DD-ai-*.md # Session logs
533
+ │ ├── changelog/ # Detailed changelogs
534
+ │ │ ├── _recent.md # Last 10 changes
535
+ │ │ ├── features/ # Per-feature changelogs
536
+ │ │ └── modules/ # Per-module changelogs
515
537
  │ ├── active-features/ # Feature tracking
516
538
  │ ├── prompts/ # Workflow prompts
517
539
  │ ├── 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.12",
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",