antenna-openclaw-plugin 1.2.14 → 1.2.16

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.
package/index.ts CHANGED
@@ -134,8 +134,8 @@ function notifyUser(
134
134
  `openclaw agent` +
135
135
  ` --message ${JSON.stringify(message)}` +
136
136
  ` --deliver` +
137
- ` --reply-channel ${channel}` +
138
- ` --reply-to "${userId}"`,
137
+ ` --agent main` +
138
+ ` --to ${channel}:${userId}`,
139
139
  { timeout: 30_000, encoding: "utf-8" },
140
140
  );
141
141
  logger.info(`Antenna: notified ${channel}:${userId}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antenna-openclaw-plugin",
3
- "version": "1.2.14",
3
+ "version": "1.2.16",
4
4
  "description": "Antenna — agent-mediated nearby people discovery for OpenClaw",
5
5
  "openclaw": {
6
6
  "extensions": ["./index.ts"]
@@ -6,7 +6,12 @@ metadata: { "openclaw": { "always": true } }
6
6
 
7
7
  # Antenna — Nearby People Discovery
8
8
 
9
- You have access to the Antenna plugin tools for location-based social discovery.
9
+ You have access to Antenna for location-based social discovery.
10
+
11
+ **How to call Antenna:**
12
+ - If you have Antenna plugin tools registered (antenna_scan, antenna_profile, etc.) — use them directly.
13
+ - If not, use CLI: `antenna <command> [flags]`. Example: `antenna scan --id telegram:123`. The CLI supports all the same features.
14
+ - All tool names map to CLI commands: `antenna_scan` → `antenna scan`, `antenna_event_create` → `antenna event --create`, etc.
10
15
 
11
16
  ## Onboarding — 装上之后主动引导
12
17