@damper/mcp 0.6.1 → 0.6.2
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 +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -736,7 +736,7 @@ server.registerTool('get_agent_instructions', {
|
|
|
736
736
|
openWorldHint: false,
|
|
737
737
|
},
|
|
738
738
|
}, async ({ format = 'section' }) => {
|
|
739
|
-
const lastModified = '
|
|
739
|
+
const lastModified = '2026-02-08';
|
|
740
740
|
const section = `## Task Management with Damper MCP
|
|
741
741
|
|
|
742
742
|
> Last updated: ${lastModified}
|
|
@@ -753,6 +753,7 @@ This project uses Damper MCP for task tracking. **You MUST follow this workflow.
|
|
|
753
753
|
4. If working on a task: \`start_task\` to lock it
|
|
754
754
|
|
|
755
755
|
### While Working
|
|
756
|
+
- **Do NOT commit or complete tasks without explicit user confirmation** - Always ask the user before running \`git commit\` or calling \`complete_task\`
|
|
756
757
|
- \`add_commit\` after each commit with hash and message
|
|
757
758
|
- \`add_note\` for decisions: "Decision: chose X because Y"
|
|
758
759
|
- \`update_subtask\` to mark subtask progress
|
|
@@ -772,7 +773,8 @@ This project uses Damper MCP for task tracking. **You MUST follow this workflow.
|
|
|
772
773
|
- \`update_project_settings\` - Configure completion checklist and other agent-relevant settings
|
|
773
774
|
|
|
774
775
|
### At Session End (MANDATORY)
|
|
775
|
-
-
|
|
776
|
+
- **Ask the user for confirmation before committing or completing a task** - Never autonomously commit code or call \`complete_task\`
|
|
777
|
+
- Once user confirms, call \`complete_task\` (if done) or \`abandon_task\` (if stopping early)
|
|
776
778
|
- NEVER leave a started task without completing or abandoning it
|
|
777
779
|
- If the project has a **completion checklist** (shown in \`start_task\` response), you MUST pass all items as \`confirmations\` when calling \`complete_task\`
|
|
778
780
|
- If you learned something about the codebase, consider updating project context
|