@damper/mcp 0.8.5 → 0.8.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/formatters.js +4 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/formatters.js
CHANGED
|
@@ -95,7 +95,10 @@ export function formatSelfAssessmentActions(assessment) {
|
|
|
95
95
|
* Format complete_task response
|
|
96
96
|
*/
|
|
97
97
|
export function formatCompleteTaskResponse(result, assessment) {
|
|
98
|
-
const
|
|
98
|
+
const statusMessage = result.status === 'done'
|
|
99
|
+
? `✅ Task ${result.id} marked as done`
|
|
100
|
+
: `✅ Task ${result.id} moved to review`;
|
|
101
|
+
const lines = [statusMessage];
|
|
99
102
|
// Self-assessment follow-up actions (shown first if provided)
|
|
100
103
|
if (assessment) {
|
|
101
104
|
const actions = formatSelfAssessmentActions(assessment);
|
package/dist/index.js
CHANGED
|
@@ -608,7 +608,8 @@ const DocumentationSchema = z.object({
|
|
|
608
608
|
// Tool: Complete task
|
|
609
609
|
server.registerTool('complete_task', {
|
|
610
610
|
title: 'Complete Task',
|
|
611
|
-
description: 'Mark task as ready for review (in_review). A human will verify and move it to done
|
|
611
|
+
description: 'Mark task as ready for review (in_review). A human will verify and move it to done. ' +
|
|
612
|
+
'Pass `skipReview: true` to mark as done immediately (use when the human explicitly asks).\n\n' +
|
|
612
613
|
'**Before calling:**\n' +
|
|
613
614
|
'1. Push all commits\n' +
|
|
614
615
|
'2. Check if project context docs need updating\n\n' +
|