@damper/mcp 0.5.0 → 0.5.1
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/README.md +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -128,7 +128,7 @@ Configure agent-relevant project settings programmatically.
|
|
|
128
128
|
| `update_project_settings` | Configure completion checklist and other agent-relevant settings |
|
|
129
129
|
|
|
130
130
|
**Completion checklist workflow:**
|
|
131
|
-
1. `update_project_settings` with `completionChecklist: ["All tests pass", "Build succeeds"]`
|
|
131
|
+
1. `update_project_settings` with `completionChecklist: ["All tests pass", "Build succeeds", "Code reviewed"]`
|
|
132
132
|
2. Agents see the checklist when they call `start_task`
|
|
133
133
|
3. Agents must confirm all items via `confirmations` when calling `complete_task`
|
|
134
134
|
|
package/dist/index.js
CHANGED
|
@@ -41,7 +41,7 @@ async function api(method, path, body) {
|
|
|
41
41
|
// Server
|
|
42
42
|
const server = new McpServer({
|
|
43
43
|
name: 'damper',
|
|
44
|
-
version: '0.5.
|
|
44
|
+
version: '0.5.1',
|
|
45
45
|
});
|
|
46
46
|
// Output schemas
|
|
47
47
|
const SubtaskProgressSchema = z.object({
|
|
@@ -1915,7 +1915,7 @@ server.registerTool('update_project_settings', {
|
|
|
1915
1915
|
description: 'Configure agent-relevant project settings.\n\n' +
|
|
1916
1916
|
'**completionChecklist**: Items agents must confirm before completing tasks. ' +
|
|
1917
1917
|
'Pass an empty array to clear the checklist.\n\n' +
|
|
1918
|
-
'Example items: "All tests pass", "Build succeeds", "
|
|
1918
|
+
'Example items: "All tests pass", "Build succeeds", "Code reviewed"',
|
|
1919
1919
|
inputSchema: z.object({
|
|
1920
1920
|
completionChecklist: z.array(z.string()).optional()
|
|
1921
1921
|
.describe('Checklist items agents must confirm when completing tasks. Pass [] to clear.'),
|