@scotthuang/agent-knock-knock 0.2.33 → 0.2.34
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 +6 -0
- package/README.md +17 -1
- package/package.json +1 -2
- package/docs/assets/architecture.png +0 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -30,7 +30,23 @@ See [ROADMAP.md](ROADMAP.md) for planned reliability work and future orchestrati
|
|
|
30
30
|
|
|
31
31
|
OpenClaw is the top-level orchestrator. Agent Knock Knock runs as the OpenClaw plugin bridge, uses ACPX / ACP to communicate with local coding agents, and keeps enough local task state for OpenClaw to manage many concurrent coding-agent sessions.
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
```mermaid
|
|
34
|
+
flowchart LR
|
|
35
|
+
user["User / chat surface"] --> openclaw["OpenClaw"]
|
|
36
|
+
openclaw --> plugin["Agent Knock Knock<br/>OpenClaw plugin"]
|
|
37
|
+
plugin --> state["Local task state<br/>~/.agent-knock-knock"]
|
|
38
|
+
plugin --> acpx["ACPX / ACP"]
|
|
39
|
+
plugin --> terminal["Terminal bridge<br/>tmux Codex"]
|
|
40
|
+
acpx --> codex["Codex"]
|
|
41
|
+
acpx --> claude["Claude Code"]
|
|
42
|
+
acpx --> cursor["Cursor"]
|
|
43
|
+
terminal --> codex
|
|
44
|
+
codex --> plugin
|
|
45
|
+
claude --> plugin
|
|
46
|
+
cursor --> plugin
|
|
47
|
+
plugin --> callback["OpenClaw callback"]
|
|
48
|
+
callback --> openclaw
|
|
49
|
+
```
|
|
34
50
|
|
|
35
51
|
## Prerequisites
|
|
36
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scotthuang/agent-knock-knock",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.34",
|
|
4
4
|
"description": "OpenClaw plugin bridge for delegating work to local coding agents through ACPX.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"files": [
|
|
36
36
|
"dist/src",
|
|
37
37
|
"templates",
|
|
38
|
-
"docs/assets/architecture.png",
|
|
39
38
|
"openclaw.plugin.json",
|
|
40
39
|
"README.md",
|
|
41
40
|
"LICENSE",
|
|
Binary file
|