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/.proagents/.active-files +4 -0
- package/.proagents/.cursorrules +10 -0
- package/.proagents/.windsurfrules +10 -0
- package/.proagents/AI_INSTRUCTIONS.md +250 -1
- 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 +26 -3
- 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 +516 -0
- package/.proagents/worklog/README.md +114 -0
- package/.proagents/worklog/_context.md +43 -0
- package/README.md +35 -13
- package/package.json +1 -1
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
|
|
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
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
-
###
|
|
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:
|
|
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
|
-
│ ├──
|
|
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
|