ace-handbook 0.19.0

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.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/.ace-defaults/handbook/config.yml +4 -0
  3. data/.ace-defaults/nav/protocols/guide-sources/ace-handbook.yml +19 -0
  4. data/.ace-defaults/nav/protocols/tmpl-sources/ace-handbook.yml +10 -0
  5. data/.ace-defaults/nav/protocols/wfi-sources/ace-handbook.yml +19 -0
  6. data/CHANGELOG.md +362 -0
  7. data/LICENSE +21 -0
  8. data/README.md +42 -0
  9. data/Rakefile +12 -0
  10. data/exe/ace-handbook +6 -0
  11. data/handbook/guides/ai-agent-integration.g.md +625 -0
  12. data/handbook/guides/atom-pattern.g.md +371 -0
  13. data/handbook/guides/changelog.g.md +333 -0
  14. data/handbook/guides/cli-dry-cli.g.md +276 -0
  15. data/handbook/guides/cli-support-cli.g.md +277 -0
  16. data/handbook/guides/coding-standards/ruby.md +41 -0
  17. data/handbook/guides/coding-standards/rust.md +19 -0
  18. data/handbook/guides/coding-standards/typescript.md +20 -0
  19. data/handbook/guides/coding-standards.g.md +134 -0
  20. data/handbook/guides/debug-troubleshooting.g.md +62 -0
  21. data/handbook/guides/error-handling/ruby.md +29 -0
  22. data/handbook/guides/error-handling/rust.md +59 -0
  23. data/handbook/guides/error-handling/typescript.md +38 -0
  24. data/handbook/guides/error-handling.g.md +207 -0
  25. data/handbook/guides/meta/agents-definition.g.md +823 -0
  26. data/handbook/guides/meta/guides-definition.g.md +322 -0
  27. data/handbook/guides/meta/markdown-definition.g.md +210 -0
  28. data/handbook/guides/meta/tools-definition.g.md +159 -0
  29. data/handbook/guides/meta/workflow-instructions-definition.g.md +367 -0
  30. data/handbook/guides/mono-repo-patterns.g.md +92 -0
  31. data/handbook/guides/multi-agent-research.g.md +251 -0
  32. data/handbook/guides/performance/ruby.md +25 -0
  33. data/handbook/guides/performance/rust.md +48 -0
  34. data/handbook/guides/performance/typescript.md +32 -0
  35. data/handbook/guides/performance.g.md +211 -0
  36. data/handbook/guides/prompt-caching.g.md +83 -0
  37. data/handbook/guides/quality-assurance/ruby.md +33 -0
  38. data/handbook/guides/quality-assurance/rust.md +41 -0
  39. data/handbook/guides/quality-assurance/typescript.md +49 -0
  40. data/handbook/guides/quality-assurance.g.md +222 -0
  41. data/handbook/guides/strategic-planning.g.md +69 -0
  42. data/handbook/guides/troubleshooting/ruby.md +21 -0
  43. data/handbook/guides/troubleshooting/rust.md +20 -0
  44. data/handbook/guides/troubleshooting/typescript.md +36 -0
  45. data/handbook/guides/workflow-context-embedding.g.md +286 -0
  46. data/handbook/skills/as-handbook-init-project/SKILL.md +34 -0
  47. data/handbook/skills/as-handbook-manage-agents/SKILL.md +35 -0
  48. data/handbook/skills/as-handbook-manage-guides/SKILL.md +35 -0
  49. data/handbook/skills/as-handbook-manage-workflows/SKILL.md +35 -0
  50. data/handbook/skills/as-handbook-parallel-research/SKILL.md +29 -0
  51. data/handbook/skills/as-handbook-perform-delivery/SKILL.md +35 -0
  52. data/handbook/skills/as-handbook-review-guides/SKILL.md +32 -0
  53. data/handbook/skills/as-handbook-review-workflows/SKILL.md +32 -0
  54. data/handbook/skills/as-handbook-synthesize-research/SKILL.md +29 -0
  55. data/handbook/skills/as-handbook-update-docs/SKILL.md +35 -0
  56. data/handbook/skills/as-release/SKILL.md +50 -0
  57. data/handbook/skills/as-release-bump-version/SKILL.md +28 -0
  58. data/handbook/skills/as-release-rubygems-publish/SKILL.md +58 -0
  59. data/handbook/skills/as-release-update-changelog/SKILL.md +28 -0
  60. data/handbook/templates/completed-work-documentation.md +59 -0
  61. data/handbook/templates/cookbooks/cookbook.template.md +237 -0
  62. data/handbook/templates/research-comparison.template.md +175 -0
  63. data/handbook/workflow-instructions/handbook/init-project.wf.md +629 -0
  64. data/handbook/workflow-instructions/handbook/manage-agents.wf.md +379 -0
  65. data/handbook/workflow-instructions/handbook/manage-guides.wf.md +294 -0
  66. data/handbook/workflow-instructions/handbook/manage-workflows.wf.md +292 -0
  67. data/handbook/workflow-instructions/handbook/parallel-research.wf.md +328 -0
  68. data/handbook/workflow-instructions/handbook/perform-delivery.wf.md +267 -0
  69. data/handbook/workflow-instructions/handbook/research.wf.md +247 -0
  70. data/handbook/workflow-instructions/handbook/review-guides.wf.md +348 -0
  71. data/handbook/workflow-instructions/handbook/review-workflows.wf.md +299 -0
  72. data/handbook/workflow-instructions/handbook/synthesize-research.wf.md +429 -0
  73. data/handbook/workflow-instructions/handbook/update-docs.wf.md +338 -0
  74. data/lib/ace/handbook/atoms/provider_registry.rb +70 -0
  75. data/lib/ace/handbook/cli/commands/status.rb +36 -0
  76. data/lib/ace/handbook/cli/commands/sync.rb +36 -0
  77. data/lib/ace/handbook/cli.rb +51 -0
  78. data/lib/ace/handbook/models/skill_document.rb +25 -0
  79. data/lib/ace/handbook/molecules/skill_projection.rb +54 -0
  80. data/lib/ace/handbook/organisms/provider_syncer.rb +106 -0
  81. data/lib/ace/handbook/organisms/skill_inventory.rb +54 -0
  82. data/lib/ace/handbook/organisms/status_collector.rb +181 -0
  83. data/lib/ace/handbook/version.rb +7 -0
  84. data/lib/ace/handbook.rb +28 -0
  85. metadata +227 -0
@@ -0,0 +1,58 @@
1
+ ---
2
+ name: as-release-rubygems-publish
3
+ description: Publish ACE gems to RubyGems.org in dependency order
4
+ # bundle: wfi://release/rubygems-publish
5
+ # agent: general-purpose
6
+ user-invocable: true
7
+ allowed-tools:
8
+ - Bash(gem:*)
9
+ - Bash(ace-bundle:*)
10
+ - Read
11
+ argument-hint: "[gem-name...] [--dry-run]"
12
+ last_modified: 2026-03-21
13
+ source: ace-handbook
14
+ integration:
15
+ targets:
16
+ - claude
17
+ - codex
18
+ - gemini
19
+ - opencode
20
+ - pi
21
+ providers:
22
+ claude:
23
+ frontmatter:
24
+ context: fork
25
+ model: haiku
26
+ assign:
27
+ source: wfi://release/rubygems-publish
28
+ steps:
29
+ - name: publish-gems
30
+ description: Publish ACE gems to RubyGems.org in dependency order
31
+ intent:
32
+ phrases:
33
+ - "publish gems"
34
+ - "push to rubygems"
35
+ - "publish to rubygems"
36
+ tags: [release, rubygems, publishing]
37
+ skill:
38
+ kind: workflow
39
+ execution:
40
+ workflow: wfi://release/rubygems-publish
41
+ ---
42
+
43
+ ## Arguments
44
+
45
+ Use the skill `argument-hint` values as the explicit inputs for this skill.
46
+
47
+ ## Variables
48
+
49
+ None
50
+
51
+ ## Execution
52
+
53
+ - You are working in the current project.
54
+ - Run `ace-bundle wfi://release/rubygems-publish` in the current project to load the workflow instructions.
55
+ - Read the loaded workflow and execute it end-to-end in this project.
56
+ - Follow the workflow as the source of truth.
57
+ - Do the work described by the workflow instead of only summarizing it.
58
+ - When the workflow requires edits, tests, or commits, perform them in this project.
@@ -0,0 +1,28 @@
1
+ ---
2
+ name: as-release-update-changelog
3
+ description: Update CHANGELOG.md with recent changes following Keep a Changelog format
4
+ # bundle: wfi://release/update-changelog
5
+ # agent: general-purpose
6
+ user-invocable: true
7
+ allowed-tools:
8
+ - Bash(ace-git:*)
9
+ - Bash(ace-bundle:*)
10
+ - Read
11
+ - Edit
12
+ argument-hint: [change-description]
13
+ last_modified: 2026-01-10
14
+ source: ace-handbook
15
+ integration:
16
+ targets:
17
+ - claude
18
+ - codex
19
+ - gemini
20
+ - opencode
21
+ - pi
22
+ skill:
23
+ kind: workflow
24
+ execution:
25
+ workflow: wfi://release/update-changelog
26
+ ---
27
+
28
+ Load and run `ace-bundle wfi://release/update-changelog` in the current project, then follow the loaded workflow as the source of truth and execute it end-to-end instead of only summarizing it.
@@ -0,0 +1,59 @@
1
+ ## Behavioral Context
2
+
3
+ **Issue**: [Describe the issue or need that prompted this work]
4
+
5
+ **Key Behavioral Requirements**:
6
+ - [What behavior needed to change or be fixed]
7
+ - [What the system should do after the fix]
8
+ - [Any constraints or considerations]
9
+
10
+ ## Objective
11
+
12
+ [One-sentence summary of what was accomplished]
13
+
14
+ ## Scope of Work
15
+
16
+ - [Bullet point summary of changes made]
17
+ - [Another change]
18
+ - [And another]
19
+
20
+ ### Deliverables
21
+
22
+ #### Create
23
+ - [New files created, if any]
24
+
25
+ #### Modify
26
+ - [Files that were modified]
27
+ - [With brief description of changes]
28
+
29
+ #### Delete
30
+ - [Files removed, if any]
31
+
32
+ ## Implementation Summary
33
+
34
+ ### What Was Done
35
+
36
+ - **Problem Identification**: [How the issue was discovered]
37
+ - **Investigation**: [Key findings during analysis]
38
+ - **Solution**: [The approach taken to fix it]
39
+ - **Validation**: [How the fix was tested]
40
+
41
+ ### Technical Details
42
+
43
+ [Include relevant code changes, configuration updates, or architectural decisions]
44
+
45
+ ### Testing/Validation
46
+
47
+ ```bash
48
+ # Commands used to test the fix
49
+ [test command]
50
+ ```
51
+
52
+ **Results**: [What the testing showed]
53
+
54
+ ## References
55
+
56
+ - Commits: [commit hashes and messages]
57
+ - Related issues: [if any]
58
+ - Documentation: [any docs updated]
59
+ - Follow-up needed: [if any]
@@ -0,0 +1,237 @@
1
+ ---
2
+ doc-type: template
3
+ title: "[Category] Cookbook: [Descriptive Name]"
4
+ purpose: Documentation for ace-handbook/handbook/templates/cookbooks/cookbook.template.md
5
+ ace-docs:
6
+ last-updated: 2026-01-08
7
+ last-checked: 2026-03-21
8
+ ---
9
+
10
+ # [Category] Cookbook: [Descriptive Name]
11
+
12
+ **Created**: YYYY-MM-DD
13
+ **Last Updated**: YYYY-MM-DD
14
+ **Category**: [integration | setup | migration | debugging | automation | pattern]
15
+ **Audience**: [beginner | intermediate | advanced]
16
+ **Estimated Time**: [X hours/minutes]
17
+
18
+ ## Purpose
19
+
20
+ Brief description of what this cookbook accomplishes and why it's valuable.
21
+
22
+ ## Prerequisites
23
+
24
+ **System Requirements:**
25
+ - Requirement 1
26
+ - Requirement 2
27
+
28
+ **Knowledge Requirements:**
29
+ - Knowledge area 1
30
+ - Knowledge area 2
31
+
32
+ **Tools & Dependencies:**
33
+ - Tool/dependency 1
34
+ - Tool/dependency 2
35
+
36
+ ## Overview
37
+
38
+ High-level summary of the approach and main steps involved.
39
+
40
+ ## Steps
41
+
42
+ ### Step 1: [Step Title]
43
+
44
+ **Objective**: What this step accomplishes
45
+
46
+ **Commands/Actions:**
47
+ ```bash
48
+ # Command examples with explanation
49
+ command --option value
50
+ ```
51
+
52
+ **Expected Output:**
53
+ ```
54
+ Sample output that confirms success
55
+ ```
56
+
57
+ **Validation:**
58
+ ```bash
59
+ # Commands to verify this step completed successfully
60
+ verification-command
61
+ ```
62
+
63
+ **Troubleshooting:**
64
+ - Common issue 1: Solution
65
+ - Common issue 2: Solution
66
+
67
+ ### Step 2: [Step Title]
68
+
69
+ **Objective**: What this step accomplishes
70
+
71
+ **Commands/Actions:**
72
+ ```bash
73
+ # Additional commands
74
+ ```
75
+
76
+ **Expected Output:**
77
+ ```
78
+ Expected results
79
+ ```
80
+
81
+ **Validation:**
82
+ ```bash
83
+ # Verification commands
84
+ ```
85
+
86
+ **Troubleshooting:**
87
+ - Issue: Solution
88
+
89
+ ## Validation & Testing
90
+
91
+ ### Final Validation Steps
92
+
93
+ 1. **System Check:**
94
+ ```bash
95
+ # Commands to verify overall system state
96
+ ```
97
+
98
+ 2. **Functional Test:**
99
+ ```bash
100
+ # Commands to test functionality end-to-end
101
+ ```
102
+
103
+ 3. **Performance Check** (if applicable):
104
+ ```bash
105
+ # Commands to verify performance expectations
106
+ ```
107
+
108
+ ### Success Criteria
109
+
110
+ - [ ] Criterion 1: Description of what should be working
111
+ - [ ] Criterion 2: Another measurable outcome
112
+ - [ ] Criterion 3: Final validation point
113
+
114
+ ## Examples
115
+
116
+ ### Example 1: [Scenario Name]
117
+
118
+ **Context**: Specific use case or scenario
119
+
120
+ **Implementation:**
121
+ ```bash
122
+ # Specific commands for this example
123
+ ```
124
+
125
+ **Result**: What the outcome looks like
126
+
127
+ ### Example 2: [Another Scenario]
128
+
129
+ **Context**: Different use case
130
+
131
+ **Implementation:**
132
+ ```bash
133
+ # Alternative approach or configuration
134
+ ```
135
+
136
+ **Result**: Expected outcome
137
+
138
+ ## Templates & Code Snippets
139
+
140
+ ### Configuration Template
141
+
142
+ ```yaml
143
+ # Sample configuration file
144
+ key: value
145
+ section:
146
+ nested_key: nested_value
147
+ ```
148
+
149
+ ### Code Template
150
+
151
+ ```ruby
152
+ # Sample code implementation
153
+ class ExampleClass
154
+ def example_method
155
+ # Implementation
156
+ end
157
+ end
158
+ ```
159
+
160
+ ## Common Patterns
161
+
162
+ ### Pattern 1: [Pattern Name]
163
+
164
+ **When to use**: Specific conditions or scenarios
165
+ **How to implement**: Brief implementation guide
166
+ **Example**: Quick code or command example
167
+
168
+ ### Pattern 2: [Another Pattern]
169
+
170
+ **When to use**: Different scenario
171
+ **How to implement**: Implementation approach
172
+ **Example**: Sample usage
173
+
174
+ ## Troubleshooting
175
+
176
+ ### Error: [Common Error Message]
177
+
178
+ **Symptoms**: How this error manifests
179
+ **Cause**: Root cause of the issue
180
+ **Solution**: Step-by-step fix
181
+ **Prevention**: How to avoid in the future
182
+
183
+ ### Issue: [Common Problem]
184
+
185
+ **Symptoms**: Observable behavior
186
+ **Diagnosis**: How to confirm this is the issue
187
+ **Resolution**: Solution steps
188
+ **Verification**: How to confirm it's fixed
189
+
190
+ ## Related Resources
191
+
192
+ ### Documentation Links
193
+
194
+ - [Official docs link](url)
195
+ - [API reference](url)
196
+ - [Community guide](url)
197
+
198
+ ### Other Cookbooks
199
+
200
+ - [Related cookbook 1](link)
201
+ - [Related cookbook 2](link)
202
+
203
+ ### External Tools & Resources
204
+
205
+ - [Tool name](url): Description of how it helps
206
+ - [Resource name](url): What it provides
207
+
208
+ ## Version History
209
+
210
+ ### v1.0 (YYYY-MM-DD)
211
+ - Initial version
212
+ - Core steps documented
213
+
214
+ ### v1.1 (YYYY-MM-DD)
215
+ - Added troubleshooting section
216
+ - Updated validation steps
217
+
218
+ ## Feedback & Improvements
219
+
220
+ **Known Limitations:**
221
+ - Limitation 1: Description and potential workaround
222
+ - Limitation 2: Impact and mitigation
223
+
224
+ **Future Enhancements:**
225
+ - Enhancement idea 1
226
+ - Enhancement idea 2
227
+
228
+ **Contributing:**
229
+ If you find issues or improvements for this cookbook, please:
230
+ 1. Document the specific issue or enhancement
231
+ 2. Test any proposed changes
232
+ 3. Update relevant sections
233
+ 4. Increment version number
234
+
235
+ ---
236
+
237
+ *This cookbook is part of the development workflow documentation. For more cookbooks, see your project cookbooks directory.*
@@ -0,0 +1,175 @@
1
+ ---
2
+ doc-type: template
3
+ title: Research Comparison Matrix
4
+ purpose: Documentation for ace-handbook/handbook/templates/research-comparison.template.md
5
+ ace-docs:
6
+ last-updated: 2026-01-31
7
+ last-checked: 2026-03-21
8
+ ---
9
+
10
+ # Research Comparison Matrix
11
+
12
+ ## Overview
13
+
14
+ | Field | Value |
15
+ |-------|-------|
16
+ | **Task** | [Research task description] |
17
+ | **Date** | [YYYY-MM-DD] |
18
+ | **Research Folder** | [Path to research outputs] |
19
+ | **Agents** | [Agent 1], [Agent 2], [Agent 3] |
20
+
21
+ ## Quality Rating Scale
22
+
23
+ | Rating | Meaning |
24
+ |--------|---------|
25
+ | 5 | Comprehensive - thorough, well-structured, actionable |
26
+ | 4 | Good - covers main points with useful detail |
27
+ | 3 | Adequate - covers basics, some gaps |
28
+ | 2 | Basic - incomplete or surface-level |
29
+ | 1 | Minimal - significant gaps or issues |
30
+
31
+ ---
32
+
33
+ ## Artifact Inventory
34
+
35
+ ### Reports
36
+
37
+ | Artifact | Agent A | Agent B | Agent C | Best | Action |
38
+ |----------|---------|---------|---------|------|--------|
39
+ | Main report | [rating] | [rating] | [rating] | [agent] | [merge/use/skip] |
40
+
41
+ ### Guides
42
+
43
+ | Artifact | Agent A | Agent B | Agent C | Best | Action |
44
+ |----------|---------|---------|---------|------|--------|
45
+ | [guide-name.g.md] | [rating] | — | [rating] | [agent] | [merge/use/skip] |
46
+
47
+ ### Workflows
48
+
49
+ | Artifact | Agent A | Agent B | Agent C | Best | Action |
50
+ |----------|---------|---------|---------|------|--------|
51
+ | [workflow.wf.md] | [rating] | [rating] | — | [agent] | [merge/use/skip] |
52
+
53
+ ### Templates
54
+
55
+ | Artifact | Agent A | Agent B | Agent C | Best | Action |
56
+ |----------|---------|---------|---------|------|--------|
57
+ | [template.md] | — | [rating] | [rating] | [agent] | [merge/use/skip] |
58
+
59
+ ### Skills
60
+
61
+ | Artifact | Agent A | Agent B | Agent C | Best | Action |
62
+ |----------|---------|---------|---------|------|--------|
63
+ | [skill-name] | [rating] | — | — | [agent] | [use/skip] |
64
+
65
+ ---
66
+
67
+ ## Comparison by Type
68
+
69
+ ### Reports Comparison
70
+
71
+ #### Coverage Analysis
72
+
73
+ | Topic | Agent A | Agent B | Agent C | Notes |
74
+ |-------|---------|---------|---------|-------|
75
+ | [Topic 1] | ✓ detailed | ✓ brief | — | A most thorough |
76
+ | [Topic 2] | ✓ | ✓ | ✓ | All covered similarly |
77
+ | [Topic 3] | — | ✓ | ✓ | A missed this |
78
+
79
+ #### Depth Assessment
80
+
81
+ - **Agent A**: [Assessment of depth, structure, actionability]
82
+ - **Agent B**: [Assessment of depth, structure, actionability]
83
+ - **Agent C**: [Assessment of depth, structure, actionability]
84
+
85
+ ### Guides Comparison
86
+
87
+ | Guide | Comparison Notes | Selected Source | Rationale |
88
+ |-------|-----------------|-----------------|-----------|
89
+ | [guide-1.g.md] | A: more detailed; C: better examples | A + C examples | Merge best of both |
90
+
91
+ ### Workflows Comparison
92
+
93
+ | Workflow | Comparison Notes | Selected Source | Rationale |
94
+ |----------|-----------------|-----------------|-----------|
95
+ | [workflow.wf.md] | A: complete phases; B: better templates | A base + B templates | A structure is better |
96
+
97
+ ---
98
+
99
+ ## Conflict Log
100
+
101
+ ### Conflict #1: [Topic]
102
+
103
+ | Aspect | Description |
104
+ |--------|-------------|
105
+ | **Topic** | [What the disagreement is about] |
106
+ | **Agent A Position** | [What Agent A claims/recommends] |
107
+ | **Agent B Position** | [What Agent B claims/recommends] |
108
+ | **Agent C Position** | [What Agent C claims/recommends, or N/A] |
109
+ | **Research/Verification** | [What was done to verify correct answer] |
110
+ | **Resolution** | [Which position was selected] |
111
+ | **Rationale** | [Why this resolution was chosen] |
112
+
113
+ ### Conflict #2: [Topic]
114
+
115
+ | Aspect | Description |
116
+ |--------|-------------|
117
+ | **Topic** | [What the disagreement is about] |
118
+ | **Agent A Position** | [Position] |
119
+ | **Agent B Position** | [Position] |
120
+ | **Agent C Position** | [Position] |
121
+ | **Research/Verification** | [Verification steps] |
122
+ | **Resolution** | [Selected position] |
123
+ | **Rationale** | [Reasoning] |
124
+
125
+ ---
126
+
127
+ ## Synthesis Decisions
128
+
129
+ ### Report Synthesis
130
+
131
+ | Decision | Source(s) | Rationale |
132
+ |----------|-----------|-----------|
133
+ | Use A as base structure | Agent A | Most comprehensive organization |
134
+ | Merge B's examples | Agent B | Clearer practical examples |
135
+ | Add C's edge cases | Agent C | Unique insights on edge cases |
136
+
137
+ ### Artifact Synthesis
138
+
139
+ | Artifact | Decision | Source(s) | Rationale |
140
+ |----------|----------|-----------|-----------|
141
+ | [guide.g.md] | Merge A + C | A: content, C: examples | Best of both |
142
+ | [workflow.wf.md] | Use A only | Agent A | B version incomplete |
143
+ | [template.md] | Use B only | Agent B | Only complete version |
144
+ | [skill-x] | Skip | None | Not needed for this project |
145
+
146
+ ---
147
+
148
+ ## Gaps Identified
149
+
150
+ | Gap | Description | Follow-up Needed |
151
+ |-----|-------------|------------------|
152
+ | [Gap 1] | [What was missed by all agents] | [Future task or research] |
153
+ | [Gap 2] | [Another missing area] | [How to address] |
154
+
155
+ ---
156
+
157
+ ## Summary Statistics
158
+
159
+ | Metric | Value |
160
+ |--------|-------|
161
+ | **Total Artifacts Reviewed** | [N] |
162
+ | **Artifacts Merged** | [N] |
163
+ | **Artifacts Used As-Is** | [N] |
164
+ | **Artifacts Skipped** | [N] |
165
+ | **Conflicts Resolved** | [N] |
166
+ | **Gaps Identified** | [N] |
167
+
168
+ ---
169
+
170
+ ## Attribution
171
+
172
+ All synthesis decisions credit original sources:
173
+ - Agent A ([model]): [timestamp]-[agent]-report.md
174
+ - Agent B ([model]): [timestamp]-[agent]-report.md
175
+ - Agent C ([model]): [timestamp]-[agent]-report.md