Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .changeset/feat-awn-action-command.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-cross-version-sig-verify.md

This file was deleted.

18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <world_id> <action_name> [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
Expand Down
2 changes: 1 addition & 1 deletion openclaw.plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-world-sdk/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/awn-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion skills/awn/SKILL.md
Original file line number Diff line number Diff line change
@@ -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: "🔗"
Expand Down