antenna-openclaw-plugin 0.6.0 → 0.7.0
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 +19 -5
- package/package.json +1 -1
- package/skills/antenna/SKILL.md +21 -3
package/index.ts
CHANGED
|
@@ -221,17 +221,17 @@ export default function register(api: any) {
|
|
|
221
221
|
api.registerTool({
|
|
222
222
|
name: "antenna_scan",
|
|
223
223
|
description:
|
|
224
|
-
"Scan for nearby people
|
|
224
|
+
"Scan for nearby people. If lat/lng are omitted, uses the location from the user's web GPS binding (antenna.fyi/locate). Returns raw profile cards — the agent decides who to recommend.",
|
|
225
225
|
parameters: {
|
|
226
226
|
type: "object",
|
|
227
227
|
properties: {
|
|
228
|
-
lat: { type: "number", description: "Latitude" },
|
|
229
|
-
lng: { type: "number", description: "Longitude" },
|
|
228
|
+
lat: { type: "number", description: "Latitude (optional if location was shared via web)" },
|
|
229
|
+
lng: { type: "number", description: "Longitude (optional if location was shared via web)" },
|
|
230
230
|
radius_m: { type: "number", description: "Search radius in meters (default: 500)" },
|
|
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
|
},
|
|
234
|
-
required: ["
|
|
234
|
+
required: ["sender_id", "channel"],
|
|
235
235
|
},
|
|
236
236
|
async execute(_id: string, params: any) {
|
|
237
237
|
const cfg = getConfig(api);
|
|
@@ -243,7 +243,21 @@ export default function register(api: any) {
|
|
|
243
243
|
return ok({ nearby: [], message: "刚刚才扫描过,稍等一会儿再试。", rate_limited: true });
|
|
244
244
|
}
|
|
245
245
|
|
|
246
|
-
|
|
246
|
+
let lat = params.lat;
|
|
247
|
+
let lng = params.lng;
|
|
248
|
+
|
|
249
|
+
// If no coordinates, read from profile (web GPS bind)
|
|
250
|
+
if (lat == null || lng == null) {
|
|
251
|
+
const { data: loc } = await supabase.rpc("get_profile_location", { p_device_id: deviceId });
|
|
252
|
+
if (loc?.found) {
|
|
253
|
+
lat = loc.lat;
|
|
254
|
+
lng = loc.lng;
|
|
255
|
+
} else {
|
|
256
|
+
return ok({ nearby: [], message: "还没有位置信息。请先通过链接分享位置,或者发送位置消息。" });
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
const fuzzy = fuzzyCoords(lat, lng);
|
|
247
261
|
|
|
248
262
|
const { error: upsertErr } = await supabase.rpc("upsert_profile_location", {
|
|
249
263
|
p_device_id: deviceId, p_lng: fuzzy.lng, p_lat: fuzzy.lat,
|
package/package.json
CHANGED
package/skills/antenna/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: antenna
|
|
3
|
-
description: "Nearby people discovery via Antenna. Use when a user shares location, asks who's nearby, wants to set up their profile card, or interacts with match results. Handles location-based social discovery through the antenna_scan, antenna_profile, antenna_accept, and
|
|
3
|
+
description: "Nearby people discovery via Antenna. Use when a user shares location, asks who's nearby, wants to set up their profile card, or interacts with match results. Handles location-based social discovery through the antenna_scan, antenna_profile, antenna_accept, antenna_check_matches, and antenna_bind tools."
|
|
4
4
|
metadata: { "openclaw": { "always": true } }
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -20,9 +20,20 @@ Plugin 安装后,agent 应该**主动**开始引导,不要等用户问"怎
|
|
|
20
20
|
**第二步:聊天式填名片**(见下方详细流程)
|
|
21
21
|
|
|
22
22
|
**第三步:名片存好后,要位置**
|
|
23
|
-
> "名片存好了 ✅ 现在发个位置给我——在 Telegram/WhatsApp 里点位置分享就行。我帮你看看附近有谁值得认识。"
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
名片保存后,**立刻**帮用户获取位置。有两种方式,优先用第一种:
|
|
25
|
+
|
|
26
|
+
**方式 1:生成绑定链接(推荐)**
|
|
27
|
+
调用 `antenna_bind` 生成链接,发给用户:
|
|
28
|
+
> "名片存好了 ✅ 点这个链接,在手机浏览器打开,允许定位就行:
|
|
29
|
+
> [链接]
|
|
30
|
+
> 我收到你的位置后会自动帮你看看附近有谁。"
|
|
31
|
+
|
|
32
|
+
**方式 2:直接发位置消息**
|
|
33
|
+
如果用户在 Telegram/WhatsApp 里,可以直接发位置:
|
|
34
|
+
> "或者你也可以直接在聊天里点位置分享发给我。"
|
|
35
|
+
|
|
36
|
+
**关键:名片存好后必须主动要位置,不要等用户问。**
|
|
26
37
|
|
|
27
38
|
## When to use
|
|
28
39
|
|
|
@@ -72,6 +83,13 @@ Check for mutual matches and contact info updates.
|
|
|
72
83
|
- `sender_id`, `channel`
|
|
73
84
|
- Returns mutual matches with any contact info the other person shared
|
|
74
85
|
|
|
86
|
+
### `antenna_bind`
|
|
87
|
+
Generate a GPS binding link. Call this after profile is created to get the user's location.
|
|
88
|
+
- `sender_id`, `channel`: from context
|
|
89
|
+
- Returns a URL like `https://www.antenna.fyi/locate?token=xxx`
|
|
90
|
+
- Send this link to the user — they open it on their phone, allow GPS, and their location is automatically shared with Supabase
|
|
91
|
+
- **Always call this right after saving the profile** — don't wait for the user to ask
|
|
92
|
+
|
|
75
93
|
## Behavior guidelines
|
|
76
94
|
|
|
77
95
|
### First-time user — 聊天式引导(不要让用户填表)
|