@damper/mcp 0.10.5 → 0.10.6
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 +8 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -487,10 +487,12 @@ server.registerTool('add_note', {
|
|
|
487
487
|
'**When to use:**\n' +
|
|
488
488
|
'- Decisions: "Decision: Using X because Y"\n' +
|
|
489
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
|
|
490
|
+
'**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:**.',
|
|
491
493
|
inputSchema: z.object({
|
|
492
494
|
taskId: z.string(),
|
|
493
|
-
note: z.string(),
|
|
495
|
+
note: z.string().describe('Markdown-formatted note. Use **bold** labels, `code` for technical terms, and bullet lists for structure.'),
|
|
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
|
|
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`);
|