@scotthuang/agent-knock-knock 0.2.2 → 0.2.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.3 - 2026-06-24
4
+
5
+ ### Fixed
6
+
7
+ - Added the tmux takeover tools to the OpenClaw plugin manifest contracts, allowing OpenClaw to expose `agent_knock_knock_agent_discover`, `agent_knock_knock_agent_takeover`, and `agent_knock_knock_approve` after installation.
8
+
3
9
  ## 0.2.2 - 2026-06-24
4
10
 
5
11
  ### Added
@@ -16,7 +16,10 @@
16
16
  "agent_knock_knock_send",
17
17
  "agent_knock_knock_cancel",
18
18
  "agent_knock_knock_recover",
19
- "agent_knock_knock_close"
19
+ "agent_knock_knock_close",
20
+ "agent_knock_knock_approve",
21
+ "agent_knock_knock_agent_discover",
22
+ "agent_knock_knock_agent_takeover"
20
23
  ]
21
24
  },
22
25
  "toolMetadata": {
@@ -40,6 +43,15 @@
40
43
  },
41
44
  "agent_knock_knock_close": {
42
45
  "optional": true
46
+ },
47
+ "agent_knock_knock_approve": {
48
+ "optional": true
49
+ },
50
+ "agent_knock_knock_agent_discover": {
51
+ "optional": true
52
+ },
53
+ "agent_knock_knock_agent_takeover": {
54
+ "optional": true
43
55
  }
44
56
  },
45
57
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scotthuang/agent-knock-knock",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "OpenClaw plugin bridge for delegating work to local coding agents through ACPX.",
5
5
  "license": "MIT",
6
6
  "type": "module",