@prmichaelsen/reddit-mcp 0.1.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 (138) hide show
  1. package/.claude/settings.local.json +23 -0
  2. package/.env.example +13 -0
  3. package/AGENT.md +1772 -0
  4. package/README.md +54 -0
  5. package/agent/commands/acp.clarification-capture.md +386 -0
  6. package/agent/commands/acp.clarification-create.md +432 -0
  7. package/agent/commands/acp.clarifications-research.md +326 -0
  8. package/agent/commands/acp.command-create.md +432 -0
  9. package/agent/commands/acp.design-create.md +286 -0
  10. package/agent/commands/acp.design-reference.md +355 -0
  11. package/agent/commands/acp.index.md +423 -0
  12. package/agent/commands/acp.init.md +546 -0
  13. package/agent/commands/acp.package-create.md +895 -0
  14. package/agent/commands/acp.package-info.md +212 -0
  15. package/agent/commands/acp.package-install.md +539 -0
  16. package/agent/commands/acp.package-list.md +280 -0
  17. package/agent/commands/acp.package-publish.md +541 -0
  18. package/agent/commands/acp.package-remove.md +293 -0
  19. package/agent/commands/acp.package-search.md +307 -0
  20. package/agent/commands/acp.package-update.md +361 -0
  21. package/agent/commands/acp.package-validate.md +540 -0
  22. package/agent/commands/acp.pattern-create.md +386 -0
  23. package/agent/commands/acp.plan.md +577 -0
  24. package/agent/commands/acp.proceed.md +882 -0
  25. package/agent/commands/acp.project-create.md +675 -0
  26. package/agent/commands/acp.project-info.md +312 -0
  27. package/agent/commands/acp.project-list.md +226 -0
  28. package/agent/commands/acp.project-remove.md +379 -0
  29. package/agent/commands/acp.project-set.md +227 -0
  30. package/agent/commands/acp.project-update.md +307 -0
  31. package/agent/commands/acp.projects-restore.md +228 -0
  32. package/agent/commands/acp.projects-sync.md +347 -0
  33. package/agent/commands/acp.report.md +407 -0
  34. package/agent/commands/acp.resume.md +239 -0
  35. package/agent/commands/acp.sessions.md +301 -0
  36. package/agent/commands/acp.status.md +293 -0
  37. package/agent/commands/acp.sync.md +364 -0
  38. package/agent/commands/acp.task-create.md +500 -0
  39. package/agent/commands/acp.update.md +302 -0
  40. package/agent/commands/acp.validate.md +466 -0
  41. package/agent/commands/acp.version-check-for-updates.md +276 -0
  42. package/agent/commands/acp.version-check.md +191 -0
  43. package/agent/commands/acp.version-update.md +289 -0
  44. package/agent/commands/command.template.md +339 -0
  45. package/agent/commands/git.commit.md +526 -0
  46. package/agent/commands/git.init.md +514 -0
  47. package/agent/design/.gitkeep +0 -0
  48. package/agent/design/design.template.md +154 -0
  49. package/agent/design/requirements.md +332 -0
  50. package/agent/design/requirements.template.md +387 -0
  51. package/agent/index/.gitkeep +0 -0
  52. package/agent/index/local.main.template.yaml +37 -0
  53. package/agent/manifest.template.yaml +13 -0
  54. package/agent/manifest.yaml +61 -0
  55. package/agent/milestones/.gitkeep +0 -0
  56. package/agent/milestones/milestone-1-foundation-listings-mvp.md +140 -0
  57. package/agent/milestones/milestone-1-{title}.template.md +206 -0
  58. package/agent/milestones/milestone-2-content-interaction.md +56 -0
  59. package/agent/milestones/milestone-3-users-and-messaging.md +54 -0
  60. package/agent/milestones/milestone-4-subreddits-and-flair.md +56 -0
  61. package/agent/milestones/milestone-5-moderation.md +53 -0
  62. package/agent/milestones/milestone-6-advanced-features-and-polish.md +56 -0
  63. package/agent/package.template.yaml +86 -0
  64. package/agent/patterns/.gitkeep +0 -0
  65. package/agent/patterns/bootstrap.template.md +1237 -0
  66. package/agent/patterns/pattern.template.md +382 -0
  67. package/agent/progress.template.yaml +161 -0
  68. package/agent/progress.yaml +223 -0
  69. package/agent/schemas/package.schema.yaml +276 -0
  70. package/agent/scripts/acp.common.sh +1781 -0
  71. package/agent/scripts/acp.yaml-parser.sh +985 -0
  72. package/agent/tasks/.gitkeep +0 -0
  73. package/agent/tasks/milestone-1-foundation-listings-mvp/task-1-project-scaffolding.md +75 -0
  74. package/agent/tasks/milestone-1-foundation-listings-mvp/task-2-reddit-oauth.md +71 -0
  75. package/agent/tasks/milestone-1-foundation-listings-mvp/task-3-reddit-api-client.md +71 -0
  76. package/agent/tasks/milestone-1-foundation-listings-mvp/task-4-listing-tools.md +65 -0
  77. package/agent/tasks/milestone-1-foundation-listings-mvp/task-5-search-tools.md +43 -0
  78. package/agent/tasks/milestone-1-foundation-listings-mvp/task-6-testing-verification.md +49 -0
  79. package/agent/tasks/milestone-2-content-interaction/task-7-post-tools.md +56 -0
  80. package/agent/tasks/milestone-2-content-interaction/task-8-comment-tools.md +49 -0
  81. package/agent/tasks/milestone-2-content-interaction/task-9-vote-save-report-tools.md +50 -0
  82. package/agent/tasks/milestone-3-users-and-messaging/task-10-account-tools.md +44 -0
  83. package/agent/tasks/milestone-3-users-and-messaging/task-11-user-profile-tools.md +50 -0
  84. package/agent/tasks/milestone-3-users-and-messaging/task-12-private-message-tools.md +50 -0
  85. package/agent/tasks/milestone-4-subreddits-and-flair/task-13-subreddit-tools.md +47 -0
  86. package/agent/tasks/milestone-4-subreddits-and-flair/task-14-flair-tools.md +46 -0
  87. package/agent/tasks/milestone-4-subreddits-and-flair/task-15-http-transport.md +53 -0
  88. package/agent/tasks/milestone-5-moderation/task-16-mod-action-tools.md +48 -0
  89. package/agent/tasks/milestone-5-moderation/task-17-mod-listing-tools.md +47 -0
  90. package/agent/tasks/milestone-5-moderation/task-18-mod-management-tools.md +42 -0
  91. package/agent/tasks/milestone-6-advanced-features-and-polish/task-19-multireddit-tools.md +49 -0
  92. package/agent/tasks/milestone-6-advanced-features-and-polish/task-20-wiki-tools.md +47 -0
  93. package/agent/tasks/milestone-6-advanced-features-and-polish/task-21-documentation-polish.md +65 -0
  94. package/agent/tasks/task-1-{title}.template.md +244 -0
  95. package/dist/auth/oauth.d.ts +15 -0
  96. package/dist/auth/oauth.d.ts.map +1 -0
  97. package/dist/client/reddit.d.ts +28 -0
  98. package/dist/client/reddit.d.ts.map +1 -0
  99. package/dist/factory.d.ts +2 -0
  100. package/dist/factory.d.ts.map +1 -0
  101. package/dist/factory.js +30394 -0
  102. package/dist/factory.js.map +7 -0
  103. package/dist/index.d.ts +2 -0
  104. package/dist/index.d.ts.map +1 -0
  105. package/dist/index.js +31955 -0
  106. package/dist/index.js.map +7 -0
  107. package/dist/server.d.ts +5 -0
  108. package/dist/server.d.ts.map +1 -0
  109. package/dist/server.js +30401 -0
  110. package/dist/server.js.map +7 -0
  111. package/dist/tools/listings.d.ts +4 -0
  112. package/dist/tools/listings.d.ts.map +1 -0
  113. package/dist/tools/search.d.ts +4 -0
  114. package/dist/tools/search.d.ts.map +1 -0
  115. package/dist/transport/http.d.ts +7 -0
  116. package/dist/transport/http.d.ts.map +1 -0
  117. package/dist/types/index.d.ts +78 -0
  118. package/dist/types/index.d.ts.map +1 -0
  119. package/esbuild.build.js +21 -0
  120. package/jest.config.js +18 -0
  121. package/package.json +46 -0
  122. package/src/auth/oauth.ts +200 -0
  123. package/src/client/reddit.ts +245 -0
  124. package/src/factory.ts +5 -0
  125. package/src/index.ts +31 -0
  126. package/src/server.ts +36 -0
  127. package/src/tools/listings.ts +202 -0
  128. package/src/tools/search.ts +85 -0
  129. package/src/transport/http.ts +49 -0
  130. package/src/types/index.ts +83 -0
  131. package/tests/fixtures/reddit-responses.ts +132 -0
  132. package/tests/helpers/mock-client.ts +36 -0
  133. package/tests/unit/auth.test.ts +89 -0
  134. package/tests/unit/client.test.ts +218 -0
  135. package/tests/unit/listings.test.ts +113 -0
  136. package/tests/unit/search.test.ts +59 -0
  137. package/tests/unit/server.test.ts +14 -0
  138. package/tsconfig.json +21 -0
@@ -0,0 +1,382 @@
1
+ # {Pattern Name}
2
+
3
+ **Category**: [Architecture | Design | Code | Testing | Deployment]
4
+ **Applicable To**: [What types of projects or components this pattern applies to]
5
+ **Status**: [Stable | Experimental | Deprecated]
6
+
7
+ ---
8
+
9
+ ## Overview
10
+
11
+ [Provide a high-level description of what this pattern is and when to use it. Include the problem space it addresses and the general approach it takes.]
12
+
13
+ **Example**: "The Service Layer Pattern provides a clear separation between business logic and data access, enabling better testability, maintainability, and code reuse across different interfaces (API, CLI, etc.)."
14
+
15
+ ---
16
+
17
+ ## When to Use This Pattern
18
+
19
+ [Describe the scenarios where this pattern is appropriate:]
20
+
21
+ ✅ **Use this pattern when:**
22
+ - Condition 1
23
+ - Condition 2
24
+ - Condition 3
25
+
26
+ ❌ **Don't use this pattern when:**
27
+ - Condition 1
28
+ - Condition 2
29
+ - Condition 3
30
+
31
+ **Example**:
32
+
33
+ ✅ **Use this pattern when:**
34
+ - You have complex business logic that needs to be shared across multiple interfaces
35
+ - You want to isolate business logic from infrastructure concerns
36
+ - You need to test business logic independently of data access
37
+
38
+ ❌ **Don't use this pattern when:**
39
+ - Your application is very simple with minimal business logic
40
+ - You're building a thin wrapper around a database
41
+ - The overhead of additional layers outweighs the benefits
42
+
43
+ ---
44
+
45
+ ## Core Principles
46
+
47
+ [List the fundamental concepts that underpin this pattern:]
48
+
49
+ 1. **Principle 1**: [Description]
50
+ 2. **Principle 2**: [Description]
51
+ 3. **Principle 3**: [Description]
52
+ 4. **Principle 4**: [Description]
53
+
54
+ **Example**:
55
+
56
+ 1. **Separation of Concerns**: Business logic is isolated from data access and presentation
57
+ 2. **Single Responsibility**: Each service handles one domain concept
58
+ 3. **Dependency Injection**: Services receive their dependencies rather than creating them
59
+ 4. **Interface-Based Design**: Services depend on abstractions, not concrete implementations
60
+
61
+ ---
62
+
63
+ ## Implementation
64
+
65
+ [Provide detailed implementation guidance with code examples:]
66
+
67
+ ### Structure
68
+
69
+ [Describe the overall structure of the pattern]
70
+
71
+ ```
72
+ directory-structure/
73
+ ├── component1/
74
+ │ └── file1.ext
75
+ └── component2/
76
+ └── file2.ext
77
+ ```
78
+
79
+ ### Code Example
80
+
81
+ [Provide a complete, working example:]
82
+
83
+ ```typescript
84
+ // Example implementation
85
+ interface ExampleInterface {
86
+ method(): Promise<Result>;
87
+ }
88
+
89
+ class ExampleImplementation implements ExampleInterface {
90
+ constructor(private dependency: Dependency) {}
91
+
92
+ async method(): Promise<Result> {
93
+ // Implementation
94
+ return result;
95
+ }
96
+ }
97
+ ```
98
+
99
+ ### Key Components
100
+
101
+ [Break down the major components:]
102
+
103
+ #### Component 1: [Name]
104
+ [Description and purpose]
105
+
106
+ ```typescript
107
+ // Code example for this component
108
+ ```
109
+
110
+ #### Component 2: [Name]
111
+ [Description and purpose]
112
+
113
+ ```typescript
114
+ // Code example for this component
115
+ ```
116
+
117
+ ---
118
+
119
+ ## Examples
120
+
121
+ [Provide multiple real-world examples showing different use cases:]
122
+
123
+ ### Example 1: [Use Case Name]
124
+
125
+ [Description of the scenario]
126
+
127
+ ```typescript
128
+ // Complete code example
129
+ class ConcreteExample {
130
+ // Implementation
131
+ }
132
+
133
+ // Usage
134
+ const example = new ConcreteExample();
135
+ const result = await example.doSomething();
136
+ ```
137
+
138
+ ### Example 2: [Use Case Name]
139
+
140
+ [Description of the scenario]
141
+
142
+ ```typescript
143
+ // Complete code example
144
+ ```
145
+
146
+ ---
147
+
148
+ ## Benefits
149
+
150
+ [List the advantages of using this pattern:]
151
+
152
+ ### 1. [Benefit Name]
153
+ [Detailed explanation of this benefit and why it matters]
154
+
155
+ ### 2. [Benefit Name]
156
+ [Detailed explanation of this benefit and why it matters]
157
+
158
+ ### 3. [Benefit Name]
159
+ [Detailed explanation of this benefit and why it matters]
160
+
161
+ **Example**:
162
+
163
+ ### 1. Testability
164
+ Business logic can be tested in isolation without requiring database connections or external services. Mock dependencies can be easily injected for unit testing.
165
+
166
+ ### 2. Reusability
167
+ The same business logic can be used across multiple interfaces (REST API, GraphQL, CLI, etc.) without duplication.
168
+
169
+ ### 3. Maintainability
170
+ Changes to business logic are centralized in service classes, making the codebase easier to understand and modify.
171
+
172
+ ---
173
+
174
+ ## Trade-offs
175
+
176
+ [Honestly assess the downsides and limitations:]
177
+
178
+ ### 1. [Trade-off Name]
179
+ **Downside**: [Description]
180
+ **Mitigation**: [How to minimize this downside]
181
+
182
+ ### 2. [Trade-off Name]
183
+ **Downside**: [Description]
184
+ **Mitigation**: [How to minimize this downside]
185
+
186
+ **Example**:
187
+
188
+ ### 1. Additional Complexity
189
+ **Downside**: Adds extra layers and files to the codebase, which can feel like over-engineering for simple applications.
190
+ **Mitigation**: Only apply this pattern when complexity justifies it. Start simple and refactor to this pattern as needs grow.
191
+
192
+ ### 2. Performance Overhead
193
+ **Downside**: Additional function calls and abstractions can add minor performance overhead.
194
+ **Mitigation**: In most applications, this overhead is negligible. Profile before optimizing.
195
+
196
+ ---
197
+
198
+ ## Anti-Patterns
199
+
200
+ [Document what NOT to do - common mistakes and misuses:]
201
+
202
+ ### ❌ Anti-Pattern 1: [Name]
203
+
204
+ **Description**: [What people do wrong]
205
+
206
+ **Why it's bad**: [Consequences]
207
+
208
+ **Instead, do this**: [Correct approach]
209
+
210
+ ```typescript
211
+ // ❌ Bad example
212
+ class BadExample {
213
+ // What not to do
214
+ }
215
+
216
+ // ✅ Good example
217
+ class GoodExample {
218
+ // Correct approach
219
+ }
220
+ ```
221
+
222
+ ### ❌ Anti-Pattern 2: [Name]
223
+
224
+ [Similar structure as above]
225
+
226
+ **Example**:
227
+
228
+ ### ❌ Anti-Pattern 1: God Service
229
+
230
+ **Description**: Creating a single service class that handles all business logic for the entire application.
231
+
232
+ **Why it's bad**: Violates single responsibility principle, becomes difficult to test and maintain, creates tight coupling.
233
+
234
+ **Instead, do this**: Create focused services, each handling a specific domain concept.
235
+
236
+ ```typescript
237
+ // ❌ Bad: Everything in one service
238
+ class ApplicationService {
239
+ createUser() {}
240
+ deleteUser() {}
241
+ createProduct() {}
242
+ deleteProduct() {}
243
+ processPayment() {}
244
+ sendEmail() {}
245
+ }
246
+
247
+ // ✅ Good: Focused services
248
+ class UserService {
249
+ createUser() {}
250
+ deleteUser() {}
251
+ }
252
+
253
+ class ProductService {
254
+ createProduct() {}
255
+ deleteProduct() {}
256
+ }
257
+
258
+ class PaymentService {
259
+ processPayment() {}
260
+ }
261
+ ```
262
+
263
+ ---
264
+
265
+ ## Key Design Decisions (Optional)
266
+
267
+ <!-- This section is populated by @acp.clarification-capture when
268
+ create commands are invoked with --from-clar, --from-chat, or
269
+ --from-context. It can also be manually authored.
270
+ Omit this section entirely if no decisions to capture.
271
+
272
+ Group decisions by agent-inferred category using tables:
273
+
274
+ ### {Category}
275
+
276
+ | Decision | Choice | Rationale |
277
+ |---|---|---|
278
+ | {decision} | {choice} | {rationale} |
279
+ -->
280
+
281
+ ---
282
+
283
+ ## Testing Strategy
284
+
285
+ [Describe how to test code that uses this pattern:]
286
+
287
+ ### Unit Testing
288
+ [Approach for unit tests]
289
+
290
+ ```typescript
291
+ // Example unit test
292
+ describe('ExampleService', () => {
293
+ it('should do something', async () => {
294
+ // Test implementation
295
+ });
296
+ });
297
+ ```
298
+
299
+ ### Integration Testing
300
+ [Approach for integration tests]
301
+
302
+ ```typescript
303
+ // Example integration test
304
+ ```
305
+
306
+ ---
307
+
308
+ ## Related Patterns
309
+
310
+ [Link to related patterns and explain relationships:]
311
+
312
+ - **[Pattern Name](./pattern-name.md)**: [How it relates]
313
+ - **[Pattern Name](./pattern-name.md)**: [How it relates]
314
+ - **[Pattern Name](./pattern-name.md)**: [How it relates]
315
+
316
+ **Example**:
317
+ - **[Repository Pattern](./repository-pattern.md)**: Often used together; services use repositories for data access
318
+ - **[Factory Pattern](./factory-pattern.md)**: Can be used to create service instances with proper dependencies
319
+ - **[Dependency Injection](./dependency-injection.md)**: Essential for implementing this pattern correctly
320
+
321
+ ---
322
+
323
+ ## Migration Guide
324
+
325
+ [If adopting this pattern in an existing codebase, provide migration steps:]
326
+
327
+ ### Step 1: [Action]
328
+ [Detailed description]
329
+
330
+ ### Step 2: [Action]
331
+ [Detailed description]
332
+
333
+ ### Step 3: [Action]
334
+ [Detailed description]
335
+
336
+ **Example**:
337
+
338
+ ### Step 1: Identify Business Logic
339
+ Review existing code and identify business logic that's currently mixed with data access or presentation code.
340
+
341
+ ### Step 2: Extract to Services
342
+ Create service classes and move business logic into them. Start with the most complex or frequently used logic.
343
+
344
+ ### Step 3: Refactor Dependencies
345
+ Update calling code to use the new services. Inject dependencies rather than creating them directly.
346
+
347
+ ---
348
+
349
+ ## References
350
+
351
+ [Link to external resources, papers, books, or articles:]
352
+
353
+ - [Resource 1](URL): Description
354
+ - [Resource 2](URL): Description
355
+ - [Resource 3](URL): Description
356
+
357
+ **Example**:
358
+ - [Martin Fowler - Service Layer](https://martinfowler.com/eaaCatalog/serviceLayer.html): Original pattern description
359
+ - [Clean Architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html): Related architectural concepts
360
+ - [Domain-Driven Design](https://www.domainlanguage.com/ddd/): Context for service design
361
+
362
+ ---
363
+
364
+ ## Checklist for Implementation
365
+
366
+ [Provide a checklist to ensure proper implementation:]
367
+
368
+ - [ ] Services are focused on single domain concepts
369
+ - [ ] Dependencies are injected, not created internally
370
+ - [ ] Business logic is isolated from infrastructure concerns
371
+ - [ ] Services have clear, well-documented interfaces
372
+ - [ ] Unit tests cover business logic in isolation
373
+ - [ ] Integration tests verify end-to-end functionality
374
+ - [ ] Error handling is consistent and appropriate
375
+ - [ ] Logging provides adequate visibility
376
+
377
+ ---
378
+
379
+ **Status**: [Current status of this pattern document]
380
+ **Recommendation**: [When and how to use this pattern]
381
+ **Last Updated**: [YYYY-MM-DD]
382
+ **Contributors**: [Names or "Community"]
@@ -0,0 +1,161 @@
1
+ # Project Progress Tracking
2
+ # This file tracks the overall progress of the project, including milestones, tasks, and recent work.
3
+ # Update this file regularly as work progresses.
4
+
5
+ project:
6
+ name: project-name # Replace with your project name
7
+ version: 0.1.0 # Current version (semantic versioning)
8
+ started: YYYY-MM-DD # Date project started
9
+ status: not_started # not_started | in_progress | completed
10
+ current_milestone: M1 # Current milestone identifier
11
+ description: | # Brief project description
12
+ A short description of what this project does and its main purpose.
13
+
14
+ # Milestones represent major phases of the project
15
+ milestones:
16
+ - id: M1 # Unique milestone identifier
17
+ name: Milestone Name # Descriptive name
18
+ status: not_started # not_started | in_progress | completed
19
+ progress: 0 # Percentage complete (0-100)
20
+ started: null # YYYY-MM-DD when started, null if not started
21
+ completed: null # YYYY-MM-DD when completed, null if not completed
22
+ estimated_weeks: 2 # Estimated duration in weeks
23
+ tasks_completed: 0 # Number of tasks completed
24
+ tasks_total: 5 # Total number of tasks in this milestone
25
+ notes: | # Progress notes and observations
26
+ Notes about this milestone's progress, blockers, or important decisions.
27
+
28
+ - id: M2
29
+ name: Second Milestone Name
30
+ status: not_started
31
+ progress: 0
32
+ started: null
33
+ completed: null
34
+ estimated_weeks: 3
35
+ tasks_completed: 0
36
+ tasks_total: 7
37
+ notes: |
38
+ This milestone depends on M1 completion.
39
+
40
+ # Tasks are granular work items within milestones
41
+ tasks:
42
+ milestone_1: # Group tasks by milestone
43
+ - id: task-1 # Unique task identifier
44
+ name: Task Name # Descriptive task name
45
+ status: not_started # not_started | in_progress | completed
46
+ file: agent/tasks/task-1-name.md # Path to task document
47
+ estimated_hours: 4 # Estimated time in hours
48
+ actual_hours: null # Actual time spent (null until completed)
49
+ completed_date: null # YYYY-MM-DD when completed, null if not completed
50
+ notes: | # Task-specific notes
51
+ Any important notes about this task.
52
+
53
+ - id: task-2
54
+ name: Second Task Name
55
+ status: not_started
56
+ file: agent/tasks/task-2-name.md
57
+ estimated_hours: 2
58
+ actual_hours: null
59
+ completed_date: null
60
+ notes: |
61
+ Depends on task-1 completion.
62
+
63
+ milestone_2:
64
+ - id: task-3
65
+ name: Third Task Name
66
+ status: not_started
67
+ file: agent/tasks/task-3-name.md
68
+ estimated_hours: 6
69
+ actual_hours: null
70
+ completed_date: null
71
+ notes: |
72
+ First task of second milestone.
73
+
74
+ # Documentation tracking
75
+ documentation:
76
+ design_documents: 0 # Number of design documents created
77
+ milestone_documents: 0 # Number of milestone documents
78
+ pattern_documents: 0 # Number of pattern documents
79
+ task_documents: 0 # Number of task documents
80
+ last_updated: YYYY-MM-DD # Last documentation update date
81
+
82
+ # Overall progress metrics
83
+ progress:
84
+ planning: 0 # Planning phase completion (0-100%)
85
+ implementation: 0 # Implementation phase completion (0-100%)
86
+ testing: 0 # Testing phase completion (0-100%)
87
+ documentation: 0 # Documentation completion (0-100%)
88
+ overall: 0 # Overall project completion (0-100%)
89
+
90
+ # Recent work log (most recent first)
91
+ recent_work:
92
+ - date: YYYY-MM-DD # Date of work
93
+ description: | # Description of what was done
94
+ Brief description of work completed on this date.
95
+ items: # Specific items completed
96
+ - ✅ Completed item 1
97
+ - ✅ Completed item 2
98
+ - ⚠️ Warning or note about something
99
+ - 📋 Pending item or follow-up needed
100
+
101
+ - date: YYYY-MM-DD
102
+ description: |
103
+ Earlier work session description.
104
+ items:
105
+ - ✅ Another completed item
106
+ - 📋 Something to revisit
107
+
108
+ # Next steps (prioritized list)
109
+ next_steps:
110
+ - Next action item 1 (highest priority)
111
+ - Next action item 2
112
+ - Next action item 3
113
+ - Future consideration or enhancement
114
+
115
+ # General notes and observations
116
+ notes:
117
+ - Important note 1 about the project
118
+ - Important note 2 about architectural decisions
119
+ - Important note 3 about dependencies or constraints
120
+
121
+ # Current blockers (remove when resolved)
122
+ current_blockers:
123
+ - Blocker 1: Description of what's blocking progress
124
+ - Blocker 2: Another blocker and potential resolution
125
+
126
+ # Team and contributors (if applicable)
127
+ team:
128
+ - role: Lead Developer # Role or responsibility
129
+ name: Name or "Agent" # Name or identifier
130
+ focus: | # Current focus area
131
+ What this person/agent is currently working on
132
+
133
+ - role: Documentation
134
+ name: Name or "Agent"
135
+ focus: |
136
+ Maintaining documentation and patterns
137
+
138
+ # Dependencies and integrations
139
+ dependencies:
140
+ external_services: # External services this project depends on
141
+ - name: Service Name
142
+ status: configured | pending | blocked
143
+ notes: |
144
+ Notes about this dependency
145
+
146
+ libraries: # Key library dependencies
147
+ - name: Library Name
148
+ version: 1.0.0
149
+ purpose: |
150
+ Why this library is used
151
+
152
+ infrastructure: # Infrastructure requirements
153
+ - name: Infrastructure Component
154
+ status: ready | pending | blocked
155
+ notes: |
156
+ Notes about this infrastructure
157
+
158
+ # Quality metrics (optional)
159
+ quality:
160
+ test_coverage: 0 # Percentage (0-100)
161
+ code_review_status: pending # pending | in