antenna-openclaw-plugin 1.3.29 → 1.3.30
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/package.json +2 -2
- package/skills/antenna/SKILL.md +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "antenna-openclaw-plugin",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.30",
|
|
4
4
|
"description": "Antenna \u2014 agent-mediated nearby people discovery for OpenClaw",
|
|
5
5
|
"openclaw": {
|
|
6
6
|
"extensions": [
|
|
@@ -10,4 +10,4 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@supabase/supabase-js": "^2.49.0"
|
|
12
12
|
}
|
|
13
|
-
}
|
|
13
|
+
}
|
package/skills/antenna/SKILL.md
CHANGED
|
@@ -43,7 +43,7 @@ Plugin 安装后,agent **主动**开始引导,不要等用户问。
|
|
|
43
43
|
|
|
44
44
|
跟用户聊几句,了解他们是谁、做什么、想认识什么人。然后 agent 自己生成:
|
|
45
45
|
- more_information(~200 字,给 agent 匹配用的私密上下文,不展示给别人)
|
|
46
|
-
- 从中提炼
|
|
46
|
+
- 从中提炼 personal_description/looking_for/conversation_style + display_name
|
|
47
47
|
|
|
48
48
|
展示预览给用户确认:
|
|
49
49
|
> 你的名片:
|
|
@@ -163,14 +163,14 @@ openclaw cron add --every 1h --message "Check antenna matches: call antenna_chec
|
|
|
163
163
|
查看或更新用户名片。
|
|
164
164
|
- `action`:"get" 或 "set"
|
|
165
165
|
- `sender_id`, `channel`, `chat_id`
|
|
166
|
-
- "set" 时传:`display_name`, `
|
|
166
|
+
- "set" 时传:`display_name`, `personal_description`, `looking_for`, `conversation_style`, `visible`, `matching_context`
|
|
167
167
|
|
|
168
168
|
名片内容:
|
|
169
169
|
- **display_name**:显示名称
|
|
170
|
-
- **
|
|
171
|
-
- **
|
|
172
|
-
- **
|
|
173
|
-
- **matching_context**(more_information,不展示给别人):agent 基于对用户的了解生成的详细描述,~200 字。**这是匹配的核心数据源。**
|
|
170
|
+
- **personal_description**:个人描述(谁 / 做什么)
|
|
171
|
+
- **looking_for**:想认识的人
|
|
172
|
+
- **conversation_style**:想要的交流方式
|
|
173
|
+
- **matching_context**(more_information,不展示给别人):agent 基于对用户的了解生成的详细描述,~200 字。**这是匹配的核心数据源。** personal_description/looking_for/conversation_style 从它提炼出来,不是反过来。
|
|
174
174
|
- **contact_info**(联系方式,私密):用户填的联系方式(WeChat、Telegram、邮箱等),**只在双向匹配后展示给对方**。不显示在公开名片、不显示在 scan 结果。
|
|
175
175
|
|
|
176
176
|
### `antenna_accept`
|
|
@@ -247,7 +247,7 @@ openclaw cron add --every 1h --message "Check antenna matches: call antenna_chec
|
|
|
247
247
|
- **每次只问一个问题。**
|
|
248
248
|
- **用户说的原话尽量保留。** 帮缩短但让用户确认。
|
|
249
249
|
- **不要在名片里写联系方式。** 联系方式在 accept 时分享。
|
|
250
|
-
- **
|
|
250
|
+
- **personal_description 必填。**
|
|
251
251
|
- **确认后才存。**
|
|
252
252
|
|
|
253
253
|
### Showing results - 你来判断
|