@scotthuang/agent-knock-knock 0.3.0-beta.2 → 0.3.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.
- package/CHANGELOG.md +17 -0
- package/README.md +7 -16
- package/dist/src/cli.js +771 -149
- package/dist/src/cli.js.map +1 -1
- package/docs/quickstart-managed-acpx.md +1 -1
- package/docs/quickstart-tmux.md +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ Use this path for managed background Codex, Claude Code, or Cursor tasks with du
|
|
|
7
7
|
From the project the agent may edit:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g acpx@latest @scotthuang/agent-knock-knock
|
|
10
|
+
npm install -g acpx@latest @scotthuang/agent-knock-knock && agent-knock-knock install-openclaw --workspace "$PWD" --default-agent codex --mode acpx --verify
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Use `--default-agent claude` or `cursor` when preferred. Existing AKK approval policy remains intact, and the Gateway restarts at most once.
|
package/docs/quickstart-tmux.md
CHANGED
|
@@ -7,7 +7,7 @@ Use this path when you want OpenClaw and a human to share the same live Codex or
|
|
|
7
7
|
From the project the agent may edit:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g @scotthuang/agent-knock-knock
|
|
10
|
+
npm install -g @scotthuang/agent-knock-knock && agent-knock-knock install-openclaw --workspace "$PWD" --default-agent codex --mode tmux --verify
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
The installer updates only AKK's enabled flag, workspace, default agent, and mode. Existing plugin settings—including `autoApprove` rules—remain intact, and the Gateway restarts at most once.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scotthuang/agent-knock-knock",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Control local Codex and Claude Code from OpenClaw, take over the same live tmux session, and run managed ACP tasks through ACPX with Cursor support.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
79
79
|
"test": "npm run build && node --test dist/test/*.test.js",
|
|
80
80
|
"clawhub:validate": "npm run build && clawhub package validate . --out .clawhub-validation --openclaw node_modules/openclaw --runtime --allow-execute --no-mock-sdk",
|
|
81
|
-
"clawhub:dry-run": "npm run build && clawhub package publish . --family code-plugin --owner scotthuang --tags
|
|
81
|
+
"clawhub:dry-run": "npm run build && clawhub package publish . --family code-plugin --owner scotthuang --tags latest --dry-run",
|
|
82
82
|
"smoke:acpx": "npm run build && node scripts/smoke-acpx.js",
|
|
83
83
|
"smoke:tmux": "npm run build && node scripts/smoke-tmux.js",
|
|
84
84
|
"simulate:architecture": "node scripts/two-claude-weather-test.js --scenario architecture-questions",
|