@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.
@@ -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 lines = [`✅ Task ${result.id} moved to review`];
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.\n\n' +
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' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@damper/mcp",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "MCP server for Damper task management",
5
5
  "author": "Damper <hello@usedamper.com>",
6
6
  "repository": {