@damper/mcp 0.10.5 → 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 +11 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -484,13 +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
- '**Do NOT use for:** Session start/end ceremony, commit logging (use `add_commit`), or restating what code changes do.',
487
+ '**Do NOT use for:** Session start/end ceremony, commit logging (use `add_commit`), or restating what code changes do.\n\n' +
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```',
491
492
  inputSchema: z.object({
492
493
  taskId: z.string(),
493
- note: z.string(),
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.'),
494
496
  }),
495
497
  outputSchema: z.object({
496
498
  taskId: z.string(),
@@ -851,7 +853,7 @@ This project uses Damper MCP for task tracking. **You MUST follow this workflow.
851
853
  ### While Working
852
854
  - **Do NOT commit or complete tasks without explicit user confirmation** - Always ask the user before running \`git commit\` or calling \`complete_task\`
853
855
  - \`add_commit\` after each commit with hash and message
854
- - \`add_note\` for decisions: "Decision: chose X because Y"
856
+ - \`add_note\` for decisions (use markdown: **bold** labels, \`code\`, bullet lists)
855
857
  - \`update_subtask\` to mark subtask progress
856
858
  - **Follow patterns from project context** - Don't reinvent; use existing conventions
857
859
  - When you need architecture context mid-task, use \`get_section_block_content\` to load specific blocks rather than full sections
@@ -1390,6 +1392,9 @@ server.registerTool('get_feedback', {
1390
1392
  f.linkedTaskId ? `Linked: ${f.linkedTaskId}` : '',
1391
1393
  `\n${f.description}`,
1392
1394
  ].filter(Boolean);
1395
+ if (f.aiSummary) {
1396
+ parts.push(`\n## AI Summary\n${f.aiSummary}`);
1397
+ }
1393
1398
  if (f.metadata && typeof f.metadata === 'object' && Object.keys(f.metadata).length > 0) {
1394
1399
  const meta = f.metadata;
1395
1400
  parts.push(`\n## Debug Info`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/mcp",
3
- "version": "0.10.5",
3
+ "version": "0.10.7",
4
4
  "description": "MCP server for Damper task management",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {