antenna-fyi 1.3.37 → 1.3.38
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/lib/core.js +1 -1
- package/lib/mcp.js +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +1 -1
package/lib/core.js
CHANGED
|
@@ -206,7 +206,7 @@ export const PROFILE_FIELDS = {
|
|
|
206
206
|
looking_for: { label: "想认识的人", description: "The kind of people you want to meet", maxLength: 140 },
|
|
207
207
|
conversation_style: { label: "想要的交流方式", description: "The type of conversations you want", maxLength: 160 },
|
|
208
208
|
more_information: { label: "更多信息", description: "Agent-generated rich context for better matching (not shown to others)", maxLength: 1000 },
|
|
209
|
-
interest_tags: { label: "兴趣标签", description: "Interest/topic tags shown on the card (up to
|
|
209
|
+
interest_tags: { label: "兴趣标签", description: "Interest/topic tags shown on the card (up to 5)", maxItems: 5 },
|
|
210
210
|
city: { label: "国家/地区", description: "Country or region" },
|
|
211
211
|
links: { label: "社交链接", description: "Social links shown on the card footer (up to 3)", maxItems: 3 },
|
|
212
212
|
is_active: { label: "状态", description: "Whether the profile is active or quiet" },
|
package/lib/mcp.js
CHANGED
|
@@ -122,7 +122,7 @@ export async function startMcpServer() {
|
|
|
122
122
|
looking_for: z.string().optional().describe("Looking for — the kind of people you want to meet (max 140 chars)"),
|
|
123
123
|
conversation_style: z.string().optional().describe("Conversation style — the type of conversations you want (max 160 chars)"),
|
|
124
124
|
more_information: z.string().optional().describe("More information — agent-generated rich context for better matching (not shown to others, max 1000 chars). Generate this FIRST, then derive personal_description, looking_for, and conversation_style from it."),
|
|
125
|
-
interest_tags: z.array(z.string()).optional().describe("Interest/topic tags shown on the card (up to
|
|
125
|
+
interest_tags: z.array(z.string()).optional().describe("Interest/topic tags shown on the card (up to 5)"),
|
|
126
126
|
city: z.string().optional().describe("Country or region (e.g. 'United States', 'Beijing')"),
|
|
127
127
|
links: z.array(z.string()).optional().describe("Social links shown on the card footer (up to 3)"),
|
|
128
128
|
is_active: z.boolean().optional().describe("Whether the profile is active or quiet"),
|
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -44,7 +44,7 @@ Plugin 安装后,agent **主动**开始引导,不要等用户问。
|
|
|
44
44
|
跟用户聊几句,了解他们是谁、做什么、想认识什么人。然后 agent 自己生成:
|
|
45
45
|
- more_information(~200 字,给 agent 匹配用的私密上下文,不展示给别人)
|
|
46
46
|
- 从中提炼 personal_description/looking_for/conversation_style + display_name
|
|
47
|
-
- 提取 interest_tags(最多
|
|
47
|
+
- 提取 interest_tags(最多 5 个,如 "AI agents", "music", "design")
|
|
48
48
|
|
|
49
49
|
展示预览给用户确认:
|
|
50
50
|
> 你的名片:
|