Skip to content
Merged
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
5 changes: 0 additions & 5 deletions .changeset/awn-rust-cli.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/beige-nights-jam.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gateway-api-rename.md

This file was deleted.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.3.1",
"version": "1.4.0",
"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.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",
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.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",
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.3.1"
version = "1.4.0"
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: 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: "🔗"
Expand Down