antenna-openclaw-plugin 0.7.2 → 0.7.3

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
@@ -227,7 +227,7 @@ export default function register(api: any) {
227
227
  properties: {
228
228
  lat: { type: "number", description: "Latitude (optional if location was shared via web)" },
229
229
  lng: { type: "number", description: "Longitude (optional if location was shared via web)" },
230
- radius_m: { type: "number", description: "Search radius in meters (default: 500)" },
230
+ radius_m: { type: "number", description: "Search radius in meters (default 500, max 1000)" },
231
231
  sender_id: { type: "string", description: "The sender's user ID (from message context)" },
232
232
  channel: { type: "string", description: "The channel name (telegram, whatsapp, etc.)" },
233
233
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antenna-openclaw-plugin",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Antenna — agent-mediated nearby people discovery for OpenClaw",
5
5
  "openclaw": {
6
6
  "extensions": ["./index.ts"]
@@ -46,7 +46,7 @@ Plugin 安装后,agent 应该**主动**开始引导,不要等用户问"怎
46
46
  ### `antenna_scan`
47
47
  Scan for nearby people. Returns **raw profile cards** — no scores, no pre-matching. **You are the matching engine.**
48
48
  - `lat`, `lng`: coordinates (from `LocationLat`/`LocationLon` context, or geocoded from user input)
49
- - `radius_m`: search radius (default 500m)
49
+ - `radius_m`: search radius in meters (default 500, max 1000)
50
50
  - `sender_id`: the user's id from message context
51
51
  - `channel`: the channel name (telegram, whatsapp, discord, etc.)
52
52