@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.
@@ -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() {