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/.proagents/.active-files +4 -0
- package/.proagents/.cursorrules +10 -0
- package/.proagents/.windsurfrules +10 -0
- package/.proagents/AI_INSTRUCTIONS.md +220 -0
- package/.proagents/ANTIGRAVITY.md +10 -0
- package/.proagents/BOLT.md +10 -0
- package/.proagents/CHATGPT.md +10 -0
- package/.proagents/CLAUDE.md +10 -0
- package/.proagents/GEMINI.md +10 -0
- package/.proagents/GROQ.md +10 -0
- package/.proagents/KIRO.md +10 -0
- package/.proagents/LOVABLE.md +10 -0
- package/.proagents/PROAGENTS.md +16 -2
- package/.proagents/REPLIT.md +10 -0
- package/.proagents/changelog/_recent.md +24 -0
- package/.proagents/changelog/features/README.md +68 -0
- package/.proagents/changelog/modules/README.md +62 -0
- package/.proagents/docs/command-details.md +306 -4
- package/.proagents/prompts/07-documentation.md +104 -0
- package/.proagents/prompts/11-session-tracking.md +510 -0
- package/.proagents/worklog/README.md +114 -0
- package/.proagents/worklog/_context.md +43 -0
- package/README.md +35 -12
- package/package.json +1 -1
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
|
|
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
|
-
|
|
87
|
-
|
|
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
|
-
###
|
|
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:
|
|
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
|
-
│ ├──
|
|
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
|