@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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.0 - 2026-07-28
4
+
5
+ ### Added
6
+
7
+ - Publish the complete OpenClaw plugin, bundled AKK skill, and package-local relay through ClawHub, with stable npm and ClawHub installation paths.
8
+ - Add bounded runtime diagnostics, fail-closed session selectors, stable short references, five-minute tmux and Managed ACPX quickstarts, and opt-in live smoke scripts.
9
+
10
+ ### Changed
11
+
12
+ - Make installation configure and verify the OpenClaw runtime while preserving unrelated plugin settings.
13
+ - Confirm asynchronous Gateway callback runs before settling delivery, instead of treating a `started` acknowledgement as delivered.
14
+
15
+ ### Fixed
16
+
17
+ - Find the matching Codex completion across plausible same-workspace rollouts and reconcile durable completion before a newer same-pane task can supersede it.
18
+ - Keep uncertain terminal completion and callback delivery states retryable without duplicating callbacks or attributing a newer task's screen output to an older monitor.
19
+
3
20
  ## 0.3.0-beta.2 - 2026-07-28
4
21
 
5
22
  ### Added
package/README.md CHANGED
@@ -52,32 +52,28 @@ Core requirements:
52
52
  ### Install from ClawHub (recommended)
53
53
 
54
54
  ```bash
55
- openclaw plugins install clawhub:@scotthuang/agent-knock-knock@beta
55
+ openclaw plugins install clawhub:@scotthuang/agent-knock-knock
56
56
  openclaw config set plugins.entries.agent-knock-knock.config.workspace "$PWD"
57
57
  openclaw config set plugins.entries.agent-knock-knock.config.defaultAgent codex
58
58
  openclaw config set plugins.entries.agent-knock-knock.config.mode tmux
59
59
  openclaw gateway restart
60
60
  ```
61
61
 
62
- The explicit `@beta` selector follows the `0.3.0` prerelease channel. Remove it after the stable ClawHub release is available.
63
-
64
62
  ClawHub installs the OpenClaw plugin, bundled AKK skill, and package-local relay CLI together. OpenClaw invokes that bundled CLI directly, but ClawHub does not add the `agent-knock-knock` command to your shell `PATH`. Do not run `install-openclaw` after a ClawHub install; that command belongs to the npm installation path below and would repeat the plugin setup.
65
63
 
66
64
  If you also want standalone shell commands such as `agent-knock-knock doctor`, install the npm package globally without running `install-openclaw`:
67
65
 
68
66
  ```bash
69
- npm install -g @scotthuang/agent-knock-knock@next
67
+ npm install -g @scotthuang/agent-knock-knock
70
68
  ```
71
69
 
72
- ### Install from npm (beta)
70
+ ### Install from npm
73
71
 
74
72
  ```bash
75
- npm install -g @scotthuang/agent-knock-knock@next
73
+ npm install -g @scotthuang/agent-knock-knock
76
74
  agent-knock-knock install-openclaw --workspace "$PWD" --default-agent codex --mode tmux --verify
77
75
  ```
78
76
 
79
- The npm `next` dist-tag follows the same prerelease line. Remove `@next` after `0.3.0` becomes stable.
80
-
81
77
  `install-openclaw` installs or updates the plugin, atomically configures the selected workspace, agent, and mode without replacing unrelated settings, installs the AKK skill template, restarts the Gateway at most once, and optionally verifies the full runtime chain. It is safe to rerun. Without `--verify`, the result remains unverified rather than claiming readiness. Use `--skill-only` to skip plugin installation; add `--no-restart` to leave an explicit pending-restart state.
82
78
 
83
79
  If OpenClaw runs from a local checkout or another nonstandard location, pass its CLI explicitly:
@@ -298,18 +294,13 @@ See [CONTRIBUTING.md](https://github.com/scotthuang/agent-knock-knock/blob/main/
298
294
 
299
295
  ### ClawHub Maintainer Release
300
296
 
301
- The first `0.3.0` beta publish is intentionally manual and must stay on ClawHub's `beta` tag:
297
+ The package is configured for ClawHub trusted publishing. Dispatch the `ClawHub Publish` workflow for a release; it derives `beta` versus `latest` from the package version and defaults to a dry run:
302
298
 
303
299
  ```bash
304
- npm ci
305
- npm run build
306
- npm exec clawhub -- login
307
- npm exec clawhub -- package publish . --family code-plugin --owner scotthuang --tags beta --dry-run --json
308
- npm exec clawhub -- package publish . --family code-plugin --owner scotthuang --tags beta
300
+ gh workflow run clawhub-publish.yml --ref main -f dry_run=true
301
+ gh workflow run clawhub-publish.yml --ref main -f dry_run=false
309
302
  ```
310
303
 
311
- After that first release creates the package, configure this repository as its trusted publisher. Future publishes use the manually dispatched `ClawHub Publish` workflow, which defaults to a dry run and derives `beta` versus `latest` from the package version.
312
-
313
304
  ## Storage and Logs
314
305
 
315
306
  State lives under `~/.agent-knock-knock/`. Directories use mode `0700`; state and log files use `0600`. Runtime logs redact common secrets and default to 14-day retention. Configure storage and logging with `--store-dir`, `AKK_LOG_DIR`, `AKK_LOG_LEVEL`, and `AKK_LOG_RETENTION_DAYS`; use a dedicated custom log directory.