@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.
- package/dist/index.js +6 -6
- 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
|
-
'**
|
|
492
|
-
'
|
|
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.
|
|
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(),
|