@scotthuang/agent-knock-knock 0.2.32 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +17 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.34 - 2026-07-09
4
+
5
+ ### Fixed
6
+
7
+ - Replace the README architecture image with an inline Mermaid diagram so the diagram renders without depending on raw GitHub image delivery.
8
+
9
+ ## 0.2.33 - 2026-07-09
10
+
11
+ ### Fixed
12
+
13
+ - Include the README architecture diagram asset in the published npm package so relative image links resolve on package readme surfaces.
14
+
3
15
  ## 0.2.32 - 2026-07-09
4
16
 
5
17
  ### Fixed
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
- ![Agent Knock Knock architecture](docs/assets/architecture.png)
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.32",
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",