@damper/mcp 0.3.6 → 0.3.7
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/README.md +30 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -310,6 +310,36 @@ When working on tasks, follow this workflow for best results:
|
|
|
310
310
|
> Sync all my documentation to Damper
|
|
311
311
|
```
|
|
312
312
|
|
|
313
|
+
## Agent Instructions (CLAUDE.md)
|
|
314
|
+
|
|
315
|
+
Add this to your project's `CLAUDE.md` (or `.cursorrules` for Cursor) to ensure AI agents use Damper consistently:
|
|
316
|
+
|
|
317
|
+
```markdown
|
|
318
|
+
## Task Management with Damper MCP
|
|
319
|
+
|
|
320
|
+
This project uses Damper MCP for task tracking. **You MUST follow this workflow.**
|
|
321
|
+
|
|
322
|
+
### At Session Start
|
|
323
|
+
1. `get_project_context` - Read available project documentation
|
|
324
|
+
2. `list_tasks` - Check for existing tasks to work on
|
|
325
|
+
3. If working on a task: `start_task` to lock it
|
|
326
|
+
|
|
327
|
+
### While Working
|
|
328
|
+
- `add_note` after each commit: "Committed abc123: description"
|
|
329
|
+
- `add_note` for decisions: "Decision: chose X because Y"
|
|
330
|
+
- `update_subtask` to mark subtask progress
|
|
331
|
+
|
|
332
|
+
### At Session End (MANDATORY)
|
|
333
|
+
- ALWAYS call `add_note` with session summary before stopping
|
|
334
|
+
- ALWAYS call `complete_task` (if done) or `abandon_task` (if stopping early)
|
|
335
|
+
- NEVER leave a started task without completing or abandoning it
|
|
336
|
+
|
|
337
|
+
### Why This Matters
|
|
338
|
+
- Locked tasks block other agents from working on them
|
|
339
|
+
- Notes help the next agent (or you) continue the work
|
|
340
|
+
- Project context saves future agents from re-analyzing the codebase
|
|
341
|
+
```
|
|
342
|
+
|
|
313
343
|
## Environment
|
|
314
344
|
|
|
315
345
|
| Variable | Required | Default |
|