@gethmy/mcp 3.8.0 → 3.9.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 +1 -1
- package/dist/cli.js +530 -155
- package/dist/index.js +135 -95
- package/dist/lib/api-client.js +110 -14
- package/dist/lib/config.js +109 -13
- package/dist/lib/oauth-refresh.js +109 -13
- package/package.json +1 -1
- package/src/api-client.ts +9 -0
- package/src/config.ts +243 -12
- package/src/prompt-builder.ts +1 -1
- package/src/server.ts +43 -4
- package/src/skills.ts +6 -80
- package/src/tui/agent-instructions.ts +335 -0
- package/src/tui/setup.ts +144 -63
- package/src/tui/writer.ts +118 -2
package/README.md
CHANGED
|
@@ -377,7 +377,7 @@ Create and manage project plans with a phased workflow: **plan** → **execute**
|
|
|
377
377
|
- `harmony_list_plans` - List plans in a project (filter by status or workflow phase)
|
|
378
378
|
- `harmony_create_plan` - Create a new plan with embedded tasks
|
|
379
379
|
- `harmony_get_plan` - Get plan by ID or card ID
|
|
380
|
-
- `harmony_update_plan` - Update plan title, content, status, or
|
|
380
|
+
- `harmony_update_plan` - Update plan title, content, status, or its timeline dates (`startDate`/`endDate`, set together or both `null`)
|
|
381
381
|
- `harmony_advance_plan` - Advance to next phase with side effects:
|
|
382
382
|
- **plan → execute:** auto-creates board cards from plan tasks, sets plan active
|
|
383
383
|
- **execute → verify:** checks card completion status
|