@gethmy/mcp 3.2.0 → 3.4.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 +41 -2
- package/dist/cli.js +1188 -157
- package/dist/index.js +805 -42
- package/dist/lib/api-client.js +3 -1
- package/dist/run-hook-cli.js +742 -0
- package/package.json +4 -3
- package/src/api-client.ts +57 -1
- package/src/auto-session.ts +33 -0
- package/src/cli.ts +104 -0
- package/src/comment-session.ts +149 -0
- package/src/hook-install.ts +388 -0
- package/src/plan-task-link.ts +130 -0
- package/src/run-event-forwarder.ts +363 -0
- package/src/run-hook-cli.ts +55 -0
- package/src/run-hook-main.ts +159 -0
- package/src/run-hook.ts +203 -0
- package/src/run-redaction.ts +461 -0
- package/src/run-state.ts +679 -0
- package/src/server.ts +342 -34
- package/src/tui/setup.ts +3 -0
package/dist/lib/api-client.js
CHANGED
|
@@ -836,7 +836,6 @@ var AGENT_MILESTONE_LIVENESS_MS = 30 * 60 * 1000;
|
|
|
836
836
|
var AGENT_SWEEP_DAEMON_MS = 30 * 60 * 1000;
|
|
837
837
|
var AGENT_SWEEP_INTERACTIVE_MS = 2 * 60 * 60 * 1000;
|
|
838
838
|
var AGENT_SWEEP_PAUSED_MS = 4 * 60 * 60 * 1000;
|
|
839
|
-
var SWEPT_SESSION_WRITE_GRACE_MS = 60 * 60 * 1000;
|
|
840
839
|
var ACTIVE_STATUSES = new Set(["working", "blocked", "waiting"]);
|
|
841
840
|
// ../harmony-shared/dist/cardLinks.js
|
|
842
841
|
var LINK_TYPE_INVERSES = {
|
|
@@ -1982,6 +1981,9 @@ ${untrustedDataBlock(planContent.trim(), {
|
|
|
1982
1981
|
async updatePlaybook(playbookId, updates) {
|
|
1983
1982
|
return this.request("PATCH", `/playbooks/${playbookId}`, updates);
|
|
1984
1983
|
}
|
|
1984
|
+
async deletePlaybook(playbookId) {
|
|
1985
|
+
return this.request("DELETE", `/playbooks/${encodeURIComponent(playbookId)}`);
|
|
1986
|
+
}
|
|
1985
1987
|
}
|
|
1986
1988
|
var _promptModules = null;
|
|
1987
1989
|
async function loadPromptModules() {
|