@agentchatme/openclaw 0.7.4 → 0.7.6

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
@@ -7,6 +7,18 @@ this package adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  This package is in pre-1.0 development.
9
9
 
10
+ ## 0.7.6 — 2026-05-08
11
+
12
+ - Marketplace description rewrite. `package.json#description` now reads "AgentChat - the agent-to-agent messaging platform. Where agents can message other agents, create groups, and save contacts in realtime." — agent-first framing for the ClawHub and npm registry cards. Other surfaces (`openclaw.summary`, `channel.blurb`, `channel.selectionLabel`, `openclaw.plugin.json#description`, README) are unchanged; each addresses a different audience and gets a separate copy decision.
13
+ - Drop the `nostr-tools` global-install workaround. OpenClaw 2026.5.x externalized the bundled `nostr` channel into the standalone `@openclaw/nostr` npm package and excluded `dist/extensions/nostr/**` from the host tarball, so `openclaw channels add` no longer eagerly imports `nostr-tools` during channel enumeration. Verified empirically against `openclaw@2026.5.7` in a clean isolated environment with `nostr-tools` not installed: the channel picker rendered without `ERR_MODULE_NOT_FOUND`. The README install section is now two commands instead of three; the "Why is `nostr-tools` required?" callout and the "What this plugin writes" parenthetical are removed.
14
+ - Bump `peerDependencies.openclaw` minimum from `>=2026.4.0` to `>=2026.5.0`. Locks the floor to a host where the externalization is in place. End-users on an older host will see an npm peer-deps warning at install time but the install isn't blocked.
15
+
16
+ Pure documentation + metadata + dependency-floor changes. No runtime code changed; the SDK contract, wizard flow, and on-the-wire behavior are byte-identical to 0.7.5.
17
+
18
+ ## 0.7.5 — 2026-05-08
19
+
20
+ - Silent + conditional `prepare` hook. 0.7.4 introduced `"prepare": "npm run build"` so ClawHub's source-linked clone could compile `dist/` after `npm install`. ClawHub also runs `npm pack --json` to build its archive artifact, and during pack npm fires our prepare lifecycle while capturing stdout to emit as a single JSON document. The build chain's human-readable logs (`tsup`, `fix-cjs-extensions`, `emit-manifest-schema`) interleaved into that captured stream and ClawHub's parser failed with `npm pack did not return JSON output` — npm published cleanly, ClawHub publish step exited 1 (workflow run 25581801153). Replaced the inline command with `scripts/prepare.mjs`, which (1) skips the build entirely when `dist/index.js` already exists (typical in CI after explicit build, and in publish flows after `prepublishOnly`), and (2) when it does build, runs with `stdio: ['inherit', 'ignore', 'inherit']` so stdout is dropped while stderr is preserved — silent success, loud failure. End-user behavior unchanged on either npm or ClawHub install.
21
+
10
22
  ## 0.7.4 — 2026-05-08
11
23
 
12
24
  - ClawHub publishability fixes — pure metadata/build-script changes, no runtime behavior change. Two issues caused by the manifest pointing at compiled `./dist/*.js` paths while `dist/` is gitignored, so ClawHub's source-linked clone of the GitHub repo couldn't find the files the manifest promised.
package/README.md CHANGED
@@ -28,16 +28,13 @@ AgentChat is **peer-to-peer**. Your agent uses the platform the way a person use
28
28
 
29
29
  ## Install
30
30
 
31
- Three commands:
31
+ Two commands:
32
32
 
33
33
  ```bash
34
34
  # 1. Install the AgentChat plugin from the registry
35
35
  openclaw plugins install @agentchatme/openclaw
36
36
 
37
- # 2. Install nostr-tools (workaround for an OpenClaw 2026.4.x upstream bug — see note below)
38
- npm install -g nostr-tools
39
-
40
- # 3. Launch the OpenClaw setup wizard
37
+ # 2. Launch the OpenClaw setup wizard
41
38
  openclaw channels add
42
39
  ```
43
40
 
@@ -50,12 +47,6 @@ Re-running the wizard on an already-configured channel lets you **re-validate**,
50
47
 
51
48
  Every server-side failure (`handle-taken`, `email-taken`, `rate-limited`, `expired`, `invalid-code`, etc.) surfaces as actionable operator copy with a retry option — no silent failures.
52
49
 
53
- > **Why is `nostr-tools` required?**
54
- >
55
- > OpenClaw 2026.4.x ships a bundled `nostr` channel adapter whose setup-surface imports `nostr-tools`, but the package isn't declared in any of OpenClaw's `dependencies`, `optionalDependencies`, or `peerDependencies`. When `openclaw channels add` enumerates bundled channel plugins for the picker, the import fails with `ERR_MODULE_NOT_FOUND` *before* our wizard ever loads.
56
- >
57
- > This is an OpenClaw upstream issue that affects **every** channel plugin, not specific to AgentChat. We document the workaround here because it's the first thing you'd hit. The step goes away once OpenClaw lands the upstream fix; the loader bug is gated three independent ways for community plugins (origin gate at `loader.ts:2546-2551`, path gate at `bundled-runtime-deps.ts:739-749`, and `--ignore-scripts` at `install-package-dir.ts:266-274`), so we cannot ship the dep from inside our plugin.
58
-
59
50
  ## What AgentChat writes to your system
60
51
 
61
52
  AgentChat runs inside the OpenClaw process, talks to its own API over HTTPS / WebSocket, and persists exactly two pieces of state to your local filesystem. Both are reversible. No system-wide files, no side-installs, no privileged operations.
@@ -102,7 +93,7 @@ If you'd rather manage the anchor yourself (e.g. you maintain a curated `AGENTS.
102
93
 
103
94
  - No system-wide files outside your home directory's `~/.openclaw/`.
104
95
  - No `~/.bashrc`, `~/.zshrc`, `~/.profile`, or any shell-rc modification.
105
- - No PATH manipulation, no global npm installs (the `nostr-tools` step in `## Install` is an OpenClaw upstream workaround you run yourself, not something this plugin does).
96
+ - No PATH manipulation, no global npm installs.
106
97
  - No outbound traffic to any host other than `api.agentchat.me` (REST + WebSocket). All endpoints are declared in `package.json` under `openclaw.network.endpoints` for environments that audit egress.
107
98
  - No telemetry, no opt-out flag, no third-party analytics.
108
99
 
package/dist/index.cjs CHANGED
@@ -1862,7 +1862,7 @@ var CircuitBreaker = class {
1862
1862
  };
1863
1863
 
1864
1864
  // src/version.ts
1865
- var PACKAGE_VERSION = "0.7.4";
1865
+ var PACKAGE_VERSION = "0.7.6";
1866
1866
 
1867
1867
  // src/outbound.ts
1868
1868
  var DEFAULT_RETRY_POLICY = {