@scotthuang/agent-knock-knock 0.2.33 → 0.2.35
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 +12 -0
- package/README.md +19 -1
- package/docs/assets/agent-knock-knock-cover.jpg +0 -0
- package/package.json +2 -2
- package/docs/assets/architecture.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.35 - 2026-07-09
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Add a README cover illustration for Agent Knock Knock and include the optimized cover asset in the npm package.
|
|
8
|
+
|
|
9
|
+
## 0.2.34 - 2026-07-09
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Replace the README architecture image with an inline Mermaid diagram so the diagram renders without depending on raw GitHub image delivery.
|
|
14
|
+
|
|
3
15
|
## 0.2.33 - 2026-07-09
|
|
4
16
|
|
|
5
17
|
### Fixed
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# agent-knock-knock
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
Agent Knock Knock lets OpenClaw delegate work to local coding agents such as Codex, Claude Code, and Cursor, keep those delegations alive as reusable tasks, and route follow-up messages or results back through OpenClaw.
|
|
4
6
|
|
|
5
7
|
The name is literal: OpenClaw knocks on the door of another coding agent, hands it a task, waits for the callback, and can knock again later with follow-up instructions. AKK provides the persistent task layer that makes that workflow practical across chat channels.
|
|
@@ -30,7 +32,23 @@ See [ROADMAP.md](ROADMAP.md) for planned reliability work and future orchestrati
|
|
|
30
32
|
|
|
31
33
|
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
34
|
|
|
33
|
-
|
|
35
|
+
```mermaid
|
|
36
|
+
flowchart LR
|
|
37
|
+
user["User / chat surface"] --> openclaw["OpenClaw"]
|
|
38
|
+
openclaw --> plugin["Agent Knock Knock<br/>OpenClaw plugin"]
|
|
39
|
+
plugin --> state["Local task state<br/>~/.agent-knock-knock"]
|
|
40
|
+
plugin --> acpx["ACPX / ACP"]
|
|
41
|
+
plugin --> terminal["Terminal bridge<br/>tmux Codex"]
|
|
42
|
+
acpx --> codex["Codex"]
|
|
43
|
+
acpx --> claude["Claude Code"]
|
|
44
|
+
acpx --> cursor["Cursor"]
|
|
45
|
+
terminal --> codex
|
|
46
|
+
codex --> plugin
|
|
47
|
+
claude --> plugin
|
|
48
|
+
cursor --> plugin
|
|
49
|
+
plugin --> callback["OpenClaw callback"]
|
|
50
|
+
callback --> openclaw
|
|
51
|
+
```
|
|
34
52
|
|
|
35
53
|
## Prerequisites
|
|
36
54
|
|
|
Binary file
|
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.35",
|
|
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,7 @@
|
|
|
35
35
|
"files": [
|
|
36
36
|
"dist/src",
|
|
37
37
|
"templates",
|
|
38
|
-
"docs/assets/
|
|
38
|
+
"docs/assets/agent-knock-knock-cover.jpg",
|
|
39
39
|
"openclaw.plugin.json",
|
|
40
40
|
"README.md",
|
|
41
41
|
"LICENSE",
|
|
Binary file
|