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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.2.3] - 2026-03-04

### Added

- Bootstrap nodes now run an always-on AI agent (`/peer/message` endpoint). New users can send messages to any bootstrap node and receive AI-powered replies, solving the cold-start problem when no real peers are online.
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": "declaw",
"name": "DeClaw",
"description": "Direct encrypted P2P communication between OpenClaw instances via Yggdrasil IPv6",
"version": "0.2.2",
"version": "0.2.3",
"channels": ["declaw"],
"skills": ["./skills/declaw"],
"configSchema": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@resciencelab/declaw",
"version": "0.2.2",
"version": "0.2.3",
"description": "Direct P2P communication between OpenClaw instances over Yggdrasil IPv6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ echo "=== DeClaw Release (${LEVEL}) ==="
# ── 0. Preflight ─────────────────────────────────────────────────────────────

BRANCH=$(git branch --show-current)
if [[ "$BRANCH" != "main" ]]; then
echo "Error: must be on 'main' branch (currently on '${BRANCH}')"
if [[ "$BRANCH" != "main" && "$BRANCH" != "develop" ]]; then
echo "Error: must be on 'main' or 'develop' branch (currently on '${BRANCH}')"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion skills/declaw/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: declaw
description: Direct encrypted P2P messaging between OpenClaw agents over Yggdrasil IPv6. Peer discovery, messaging, and connectivity diagnostics. Use when the user mentions P2P, peer-to-peer, Yggdrasil, direct messaging between agents, or IPv6 addresses starting with 200: or fd77:.
version: 0.2.2
version: 0.2.3
metadata:
openclaw:
emoji: "🔗"
Expand Down