@damper/mcp 0.10.6 → 0.10.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -484,15 +484,15 @@ server.registerTool('start_task', {
484
484
  server.registerTool('add_note', {
485
485
  title: 'Add Note',
486
486
  description: 'Add a note to a task. Use ONLY for non-obvious approach decisions and blockers.\n\n' +
487
- '**When to use:**\n' +
488
- '- Decisions: "Decision: Using X because Y"\n' +
489
- '- Blockers: "Blocked: X needs Y before we can proceed"\n\n' +
490
487
  '**Do NOT use for:** Session start/end ceremony, commit logging (use `add_commit`), or restating what code changes do.\n\n' +
491
- '**Formatting:** Notes are rendered as markdown. Use **bold** for key terms, `code` for technical names, and bullet lists for multiple points. ' +
492
- 'Start with a short bold label like **Decision:** or **Blocked:**.',
488
+ '**Templates** (copy and fill in):\n\n' +
489
+ 'Decision:\n```\n**Decision:** Chose `libraryName` over `alternative` because it supports X and has fewer dependencies\n```\n\n' +
490
+ 'Blocker:\n```\n**Blocked:** Cannot proceed with `featureName` until:\n- Dependency X is merged\n- API endpoint Y is available\n```\n\n' +
491
+ 'Observation:\n```\n**Note:** Found that `componentName` already handles X via `methodName` — reusing instead of reimplementing\n```',
493
492
  inputSchema: z.object({
494
493
  taskId: z.string(),
495
- note: z.string().describe('Markdown-formatted note. Use **bold** labels, `code` for technical terms, and bullet lists for structure.'),
494
+ note: z.string().describe('Markdown-formatted note. Start with a **bold label** (Decision/Blocked/Note), ' +
495
+ 'use `code` for technical names, and bullet lists for multiple points.'),
496
496
  }),
497
497
  outputSchema: z.object({
498
498
  taskId: z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/mcp",
3
- "version": "0.10.6",
3
+ "version": "0.10.7",
4
4
  "description": "MCP server for Damper task management",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {