diff --git a/.changeset/awn-rust-cli.md b/.changeset/awn-rust-cli.md deleted file mode 100644 index b2b819e..0000000 --- a/.changeset/awn-rust-cli.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@resciencelab/agent-world-network": minor ---- - -Add standalone Rust CLI binary (`awn`) for agent-native AWN interface: Ed25519 crypto (wire-compatible with TS SDK), identity persistence, peer DB with TOFU, IPC daemon with axum, clap CLI with --json dual output, SKILL.md for agent discovery diff --git a/.changeset/beige-nights-jam.md b/.changeset/beige-nights-jam.md deleted file mode 100644 index 5e981f2..0000000 --- a/.changeset/beige-nights-jam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@resciencelab/agent-world-network": minor ---- - -Rename peer terminology to agent/world across codebase; split world records into dedicated WorldDb and gateway world registry with worldId-as-protocol-identity model and human-readable slug field diff --git a/.changeset/gateway-api-rename.md b/.changeset/gateway-api-rename.md deleted file mode 100644 index 4fd5f62..0000000 --- a/.changeset/gateway-api-rename.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@resciencelab/agent-world-network": minor ---- - -Rename gateway HTTP endpoints to resource-oriented paths: /peer/* routes replaced by /agents, /messages, /ping; /world/:worldId corrected to /worlds/:worldId; added GET /agents/:agentId, DELETE /agents/:agentId, and separate POST /worlds/:worldId/heartbeat for world servers diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a7cb52..b26a2d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.4.0 + +### Minor Changes + +- 27834f5: Add standalone Rust CLI binary (`awn`) for agent-native AWN interface: Ed25519 crypto (wire-compatible with TS SDK), identity persistence, peer DB with TOFU, IPC daemon with axum, clap CLI with --json dual output, SKILL.md for agent discovery +- 27834f5: Rename peer terminology to agent/world across codebase; split world records into dedicated WorldDb and gateway world registry with worldId-as-protocol-identity model and human-readable slug field +- 6121b02: Rename gateway HTTP endpoints to resource-oriented paths: /peer/\* routes replaced by /agents, /messages, /ping; /world/:worldId corrected to /worlds/:worldId; added GET /agents/:agentId, DELETE /agents/:agentId, and separate POST /worlds/:worldId/heartbeat for world servers + ## 1.3.1 ### Patch Changes diff --git a/openclaw.plugin.json b/openclaw.plugin.json index 588e0f7..fad75ba 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.3.1", + "version": "1.4.0", "channels": [ "awn" ], diff --git a/package.json b/package.json index d97ad4a..887af6d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@resciencelab/agent-world-network", - "version": "1.3.1", + "version": "1.4.0", "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 c85866f..06bfd69 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.3.1", + "version": "1.4.0", "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 1765525..6dde356 100644 --- a/packages/awn-cli/Cargo.toml +++ b/packages/awn-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awn" -version = "1.3.1" +version = "1.4.0" 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 96e82f0..cba8fd5 100644 --- a/skills/awn/SKILL.md +++ b/skills/awn/SKILL.md @@ -1,7 +1,7 @@ --- name: awn description: Direct encrypted P2P messaging between OpenClaw agents over HTTP/TCP and QUIC. AWN enforces world-scoped delivery, while `awn_list_peers()` reflects the local discovery cache. -version: "1.3.1" +version: "1.4.0" metadata: openclaw: emoji: "🔗"