From 92e2a1fc1324af8b1cadaa0023ff1153be15b272 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 06:55:56 +0000 Subject: [PATCH] chore: version packages --- .changeset/feat-awn-action-command.md | 15 --------------- .changeset/fix-cross-version-sig-verify.md | 5 ----- CHANGELOG.md | 18 ++++++++++++++++++ openclaw.plugin.json | 2 +- package.json | 2 +- packages/agent-world-sdk/package.json | 2 +- packages/awn-cli/Cargo.toml | 2 +- skills/awn/SKILL.md | 2 +- 8 files changed, 23 insertions(+), 25 deletions(-) delete mode 100644 .changeset/feat-awn-action-command.md delete mode 100644 .changeset/fix-cross-version-sig-verify.md diff --git a/.changeset/feat-awn-action-command.md b/.changeset/feat-awn-action-command.md deleted file mode 100644 index 1eba70b..0000000 --- a/.changeset/feat-awn-action-command.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -"@resciencelab/agent-world-network": patch ---- - -feat(awn-cli): add `awn action` command for calling world actions - -Adds a new CLI command to call actions on joined worlds: - -```bash -awn action [params_json] -awn action pixel-city set_state '{"state":"idle","detail":"Working"}' -awn action pixel-city heartbeat -``` - -This allows agents to interact with world servers by sending signed `world.action` messages. diff --git a/.changeset/fix-cross-version-sig-verify.md b/.changeset/fix-cross-version-sig-verify.md deleted file mode 100644 index 50709ce..0000000 --- a/.changeset/fix-cross-version-sig-verify.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@resciencelab/agent-world-network": patch ---- - -Fix cross-version HTTP signature verification: use sender's X-AgentWorld-Version header instead of local PROTOCOL_VERSION when reconstructing signing input, so gateway and peers running different SDK minor versions can still verify each other's signatures. diff --git a/CHANGELOG.md b/CHANGELOG.md index f33fe7b..78729c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 1.6.1 + +### Patch Changes + +- c2d1dda: feat(awn-cli): add `awn action` command for calling world actions + + Adds a new CLI command to call actions on joined worlds: + + ```bash + awn action [params_json] + awn action pixel-city set_state '{"state":"idle","detail":"Working"}' + awn action pixel-city heartbeat + ``` + + This allows agents to interact with world servers by sending signed `world.action` messages. + +- ac97d0e: Fix cross-version HTTP signature verification: use sender's X-AgentWorld-Version header instead of local PROTOCOL_VERSION when reconstructing signing input, so gateway and peers running different SDK minor versions can still verify each other's signatures. + ## 1.6.0 ### Minor Changes diff --git a/openclaw.plugin.json b/openclaw.plugin.json index 3ce64a9..e746dc1 100644 --- a/openclaw.plugin.json +++ b/openclaw.plugin.json @@ -2,7 +2,7 @@ "id": "agent-world-network", "name": "Agent World Network", "description": "Agent World Network — world-scoped agent discovery and communication for OpenClaw", - "version": "1.6.0", + "version": "1.6.1", "channels": [ "awn" ], diff --git a/package.json b/package.json index 69e4a66..179869f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resciencelab/agent-world-network", - "version": "1.6.0", + "version": "1.6.1", "description": "Agent World Network — world-scoped agent discovery and communication for OpenClaw", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/agent-world-sdk/package.json b/packages/agent-world-sdk/package.json index 98f0b17..1ebd75c 100644 --- a/packages/agent-world-sdk/package.json +++ b/packages/agent-world-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@resciencelab/agent-world-sdk", - "version": "1.6.0", + "version": "1.6.1", "description": "Reusable Agent World Network infrastructure — crypto, identity, peer DB, bootstrap, peer protocol", "type": "module", "main": "dist/index.js", diff --git a/packages/awn-cli/Cargo.toml b/packages/awn-cli/Cargo.toml index dbf5e9a..0e9e141 100644 --- a/packages/awn-cli/Cargo.toml +++ b/packages/awn-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awn" -version = "1.7.0" +version = "1.6.1" edition = "2021" description = "Agent World Network CLI — standalone agent-native interface for world-scoped P2P messaging" license = "MIT" diff --git a/skills/awn/SKILL.md b/skills/awn/SKILL.md index 0c4addb..dbb3a25 100644 --- a/skills/awn/SKILL.md +++ b/skills/awn/SKILL.md @@ -1,7 +1,7 @@ --- name: awn description: "AWN CLI — standalone binary for world-scoped P2P messaging between AI agents. Ed25519-signed, zero runtime dependencies." -version: "1.6.0" +version: "1.6.1" metadata: openclaw: emoji: "🔗"