proagents 1.6.12 → 1.6.13
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/.cursorrules +16 -2
- package/.proagents/.windsurfrules +16 -2
- package/.proagents/AI_INSTRUCTIONS.md +1219 -53
- package/.proagents/ANTIGRAVITY.md +16 -2
- package/.proagents/BOLT.md +16 -2
- package/.proagents/CHATGPT.md +16 -2
- package/.proagents/CLAUDE.md +16 -2
- package/.proagents/GEMINI.md +16 -2
- package/.proagents/GROQ.md +16 -2
- package/.proagents/KIRO.md +16 -2
- package/.proagents/LOVABLE.md +16 -2
- package/.proagents/PROAGENTS.md +52 -26
- package/.proagents/REPLIT.md +16 -2
- package/.proagents/docs/command-details.md +985 -82
- package/.proagents/worklog/_context.md +31 -1
- package/.proagents/worklog/ai-stats.json +19 -0
- package/README.md +85 -1
- package/bin/proagents.js +132 -1
- package/lib/commands/changelog.js +389 -0
- package/lib/commands/completion.js +413 -0
- package/lib/commands/config.js +248 -0
- package/lib/commands/doctor.js +222 -25
- package/lib/commands/help.js +22 -2
- package/lib/commands/init.js +2 -1
- package/lib/commands/open.js +188 -0
- package/lib/commands/release.js +1007 -0
- package/lib/commands/restore.js +150 -0
- package/lib/commands/stats.js +320 -0
- package/lib/commands/uninstall.js +98 -4
- package/lib/commands/upgrade.js +102 -10
- package/lib/commands/version.js +140 -0
- package/package.json +1 -1
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/BOLT.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/CHATGPT.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/CLAUDE.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/GEMINI.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/GROQ.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/KIRO.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/LOVABLE.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|
package/.proagents/PROAGENTS.md
CHANGED
|
@@ -7,32 +7,52 @@ Execute these commands when user types them (prefix: `pa:`):
|
|
|
7
7
|
|
|
8
8
|
> **Multi-AI Note:** Multiple AIs may work on this project. Context loading and logging is AUTOMATIC.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
---
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
1. Reads `.proagents/worklog/_context.md` (context)
|
|
14
|
-
2. Reads `.proagents/changelog/_recent.md` (recent changes)
|
|
15
|
-
3. Checks `.proagents/.active-files` (file locks)
|
|
12
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
16
13
|
|
|
17
|
-
|
|
14
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
18
15
|
|
|
19
|
-
|
|
16
|
+
**AI MUST read these files FIRST before doing anything:**
|
|
20
17
|
|
|
21
|
-
|
|
18
|
+
```bash
|
|
19
|
+
cat .proagents/worklog/_context.md # Current state
|
|
20
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
21
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
25
|
+
|
|
26
|
+
### AFTER Any pa: Command That Changes Files
|
|
27
|
+
|
|
28
|
+
**AI MUST update these files IMMEDIATELY after any code change:**
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
1. .proagents/changelog/_recent.md ← Prepend change summary
|
|
32
|
+
2. .proagents/worklog/_context.md ← Update Quick Summary
|
|
33
|
+
3. .proagents/changelog/modules/X.md ← Based on file path
|
|
34
|
+
4. .proagents/activity.log ← Log the command
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Example: pa:fix "login bug"
|
|
22
38
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
39
|
+
```
|
|
40
|
+
STEP 1: Read _context.md, _recent.md, activity.log ← SYNC FIRST
|
|
41
|
+
STEP 2: Find and fix the bug ← DO THE WORK
|
|
42
|
+
STEP 3: Prepend fix to _recent.md ← LOG CHANGE
|
|
43
|
+
STEP 4: Update _context.md Quick Summary ← UPDATE CONTEXT
|
|
44
|
+
STEP 5: Append to activity.log ← LOG ACTIVITY
|
|
45
|
+
```
|
|
26
46
|
|
|
27
47
|
**Module detection:** `src/api/*`→api, `src/auth/*`→auth, `src/components/*`→ui, `src/services/*`→services
|
|
28
48
|
|
|
29
|
-
|
|
49
|
+
---
|
|
30
50
|
|
|
31
51
|
## Commands
|
|
32
52
|
|
|
33
53
|
| Command | What to Do |
|
|
34
54
|
|---------|------------|
|
|
35
|
-
| `pa:help` |
|
|
55
|
+
| `pa:help` | Comprehensive help with examples, categories, workflows |
|
|
36
56
|
| `pa:feature "name"` | Create `./.proagents/active-features/feature-[name]/`, analyze codebase, implement feature |
|
|
37
57
|
| `pa:fix "description"` | Find bug, fix it, update `./CHANGELOG.md` |
|
|
38
58
|
| `pa:analyze` | Deep codebase analysis → `./.proagents/cache/` |
|
|
@@ -40,17 +60,20 @@ Execute these commands when user types them (prefix: `pa:`):
|
|
|
40
60
|
| `pa:design` | UI/Architecture design phase |
|
|
41
61
|
| `pa:plan` | Create implementation plan |
|
|
42
62
|
| `pa:implement` | Execute implementation phase |
|
|
43
|
-
| `pa:status` |
|
|
44
|
-
| `pa:qa` |
|
|
45
|
-
| `pa:test` |
|
|
63
|
+
| `pa:status` | Enhanced status: tasks, time, files, tests, git branch, contributors |
|
|
64
|
+
| `pa:qa` | Quality dashboard: security, lint, coverage, bundle, docs, complexity |
|
|
65
|
+
| `pa:test` | Run tests with coverage visualization, module breakdown, slow tests |
|
|
66
|
+
| `pa:review` | Code review checklist: quality, security, testing, documentation |
|
|
67
|
+
| `pa:fix "desc"` | Bug fix with before/after diff, affected tests, auto-verify |
|
|
46
68
|
| `pa:doc` | Generate documentation |
|
|
69
|
+
| `pa:deploy` | Interactive deployment checklist with real-time status, health checks |
|
|
47
70
|
| `pa:release` | Generate release notes → `./RELEASE_NOTES.md` |
|
|
48
71
|
| `pa:changelog` | Update `./CHANGELOG.md` |
|
|
49
72
|
| `pa:ai-list` | Read config, show installed AI platforms |
|
|
50
73
|
| `pa:ai-add` | Show platform options, create AI instruction files |
|
|
51
74
|
| `pa:ai-remove` | Show installed platforms, remove selected files |
|
|
52
75
|
| `pa:ai-sync` | Sync config with existing files (fix mismatches) |
|
|
53
|
-
| `pa:activity` | Show
|
|
76
|
+
| `pa:activity` | Show ALL AI activity with icons, time groups, files changed |
|
|
54
77
|
| `pa:lock` | Show lock status, check if another AI is working |
|
|
55
78
|
| `pa:lock-release` | Release your lock after completing work |
|
|
56
79
|
| `pa:handoff` | Create handoff notes → `./.proagents/handoff.md` |
|
|
@@ -59,7 +82,7 @@ Execute these commands when user types them (prefix: `pa:`):
|
|
|
59
82
|
| `pa:decision "title"` | Log architectural decision → `./.proagents/decisions.md` |
|
|
60
83
|
| `pa:error "desc"` | Log error & solution → `./.proagents/errors.md` |
|
|
61
84
|
| `pa:feedback "desc"` | Log feedback for AI learning → `./.proagents/feedback.md` |
|
|
62
|
-
| `pa:standup` |
|
|
85
|
+
| `pa:standup` | Daily standup: yesterday, today, blockers, team activity, stats |
|
|
63
86
|
| `pa:tech-debt` | Scan for technical debt |
|
|
64
87
|
|
|
65
88
|
## Navigation & Flow
|
|
@@ -67,10 +90,10 @@ Execute these commands when user types them (prefix: `pa:`):
|
|
|
67
90
|
| Command | What to Do |
|
|
68
91
|
|---------|------------|
|
|
69
92
|
| `pa:next` | Show next step in current workflow |
|
|
70
|
-
| `pa:resume` |
|
|
93
|
+
| `pa:resume` | Compact resume: last session, what was done, next action, hot files |
|
|
71
94
|
| `pa:skip` | Skip current phase, move to next |
|
|
72
95
|
| `pa:back` | Go back to previous phase |
|
|
73
|
-
| `pa:progress` | Show
|
|
96
|
+
| `pa:progress` | Show enhanced progress: tasks, duration, AI, phase timeline |
|
|
74
97
|
|
|
75
98
|
## Context & History
|
|
76
99
|
|
|
@@ -78,9 +101,11 @@ Execute these commands when user types them (prefix: `pa:`):
|
|
|
78
101
|
|---------|------------|
|
|
79
102
|
| `pa:context` | View project context |
|
|
80
103
|
| `pa:diff` | Show changes since last session |
|
|
81
|
-
| `pa:history` |
|
|
104
|
+
| `pa:history` | Command history with filters: --today, --ai, --command, --stats |
|
|
82
105
|
| `pa:checkpoint` | Create snapshot/restore point |
|
|
83
|
-
| `pa:undo` | Undo last AI action (git revert)
|
|
106
|
+
| `pa:undo` | Undo last AI action (git revert) |
|
|
107
|
+
| `pa:undo-last` | Undo last AI's entire session (all changes) |
|
|
108
|
+
| `pa:undo-file "path"` | Undo changes to specific file |
|
|
84
109
|
| `pa:conflict-check` | Check if files modified by other AI |
|
|
85
110
|
| `pa:changelog --from-git` | Auto-populate changelog from git commits | |
|
|
86
111
|
|
|
@@ -174,9 +199,10 @@ Execute these commands when user types them (prefix: `pa:`):
|
|
|
174
199
|
|
|
175
200
|
| Command | What to Do |
|
|
176
201
|
|---------|------------|
|
|
177
|
-
| `pa:learn "pattern"` | Teach AI a pattern |
|
|
178
|
-
| `pa:forget "pattern"` | Remove learned pattern |
|
|
179
|
-
| `pa:
|
|
202
|
+
| `pa:learn "pattern"` | Teach AI a pattern → saves to `.proagents/.learning/` |
|
|
203
|
+
| `pa:forget "pattern"` | Remove learned pattern from learning data |
|
|
204
|
+
| `pa:learning` | Show learning report: patterns, corrections, preferences |
|
|
205
|
+
| `pa:suggestions` | Show AI suggestions based on learned patterns |
|
|
180
206
|
|
|
181
207
|
## API & Documentation
|
|
182
208
|
|
|
@@ -318,7 +344,7 @@ Execute these commands when user types them (prefix: `pa:`):
|
|
|
318
344
|
| 7. Testing | `pa:test` | Create/run tests |
|
|
319
345
|
| 8. Review | `pa:review` | Quality check |
|
|
320
346
|
| 9. Documentation | `pa:doc` | Update docs |
|
|
321
|
-
| 10. Deployment | `pa:deploy` |
|
|
347
|
+
| 10. Deployment | `pa:deploy` | Interactive deployment checklist |
|
|
322
348
|
|
|
323
349
|
## Save Locations
|
|
324
350
|
|
package/.proagents/REPLIT.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project uses ProAgents - an AI-agnostic development workflow framework.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## ⚠️ MANDATORY: Every pa: Command Flow
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
### BEFORE Any pa: Command (Auto-Sync)
|
|
8
|
+
|
|
9
|
+
**Read these files FIRST before doing anything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
cat .proagents/worklog/_context.md # Current state
|
|
13
|
+
cat .proagents/changelog/_recent.md # Recent changes
|
|
14
|
+
tail -10 .proagents/activity.log # Recent activity
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**This applies to EVERY command:** `pa:fix`, `pa:feature`, `pa:test`, `pa:doc`, etc.
|
|
18
|
+
|
|
19
|
+
### AFTER Any pa: Command (Auto-Log)
|
|
20
|
+
|
|
21
|
+
**After EVERY file edit, IMMEDIATELY update these files:**
|
|
8
22
|
|
|
9
23
|
1. `.proagents/changelog/_recent.md` - Prepend change summary
|
|
10
24
|
2. `.proagents/changelog/modules/[module].md` - Based on file path
|