@openclaw/nostr 2026.5.1-beta.2 → 2026.5.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/channel.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/nostr",
3
- "version": "2026.5.1-beta.2",
3
+ "version": "2026.5.2-beta.1",
4
4
  "description": "OpenClaw Nostr channel plugin for NIP-04 encrypted DMs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "openclaw": "workspace:*"
17
17
  },
18
18
  "peerDependencies": {
19
- "openclaw": ">=2026.4.25"
19
+ "openclaw": ">=2026.5.2-beta.1"
20
20
  },
21
21
  "peerDependenciesMeta": {
22
22
  "openclaw": {
@@ -54,10 +54,10 @@
54
54
  "minHostVersion": ">=2026.4.10"
55
55
  },
56
56
  "compat": {
57
- "pluginApi": ">=2026.4.25"
57
+ "pluginApi": ">=2026.5.2-beta.1"
58
58
  },
59
59
  "build": {
60
- "openclawVersion": "2026.5.1-beta.2"
60
+ "openclawVersion": "2026.5.2-beta.1"
61
61
  },
62
62
  "release": {
63
63
  "publishToClawHub": true,
package/src/channel.ts CHANGED
@@ -118,6 +118,7 @@ export const nostrPlugin: ChannelPlugin<ResolvedNostrAccount> = createChatChanne
118
118
  }),
119
119
  },
120
120
  messaging: {
121
+ targetPrefixes: ["nostr"],
121
122
  normalizeTarget: (target) => {
122
123
  // Strip nostr: prefix if present
123
124
  const cleaned = target.trim().replace(/^nostr:/i, "");