@gethmy/mcp 3.1.0 → 3.3.0
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 +2 -2
- package/dist/cli.js +250 -15
- package/dist/index.js +249 -15
- package/dist/lib/api-client.js +42 -4
- package/package.json +1 -1
- package/src/api-client.ts +64 -2
- package/src/comment-session.ts +149 -0
- package/src/plan-task-link.ts +128 -0
- package/src/server.ts +263 -10
- package/src/tui/setup.ts +3 -0
package/src/tui/setup.ts
CHANGED
|
@@ -106,6 +106,9 @@ const SAFE_HARMONY_TOOLS = [
|
|
|
106
106
|
"harmony_create_plan",
|
|
107
107
|
"harmony_update_plan",
|
|
108
108
|
"harmony_advance_plan",
|
|
109
|
+
// Points a plan criterion at the card that fulfils it, or marks it delivered.
|
|
110
|
+
// Non-destructive and re-pointable, and the completion path calls it per card.
|
|
111
|
+
"harmony_link_plan_task",
|
|
109
112
|
"harmony_remember",
|
|
110
113
|
"harmony_relate",
|
|
111
114
|
"harmony_update_memory",
|