@yixinkj/priority-buyer-alert-cli 0.1.45 → 0.1.46
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 +1 -1
- package/skill/SKILL.md +19 -7
- package/skills.json +2 -2
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: 哨兵预警-0812
|
|
3
3
|
description: 重点买家未回复预警。只读扫描阿里国际站询盘列表,挑出重点买家(金品店铺为 L2 及以上真实档;出口通店铺只有 L1+ 一个值,它是 L1–L4 的合集,必然包含 L1),判断买家最后一句是否超过 SLA 仍没有真人业务员回复,并输出中文预警清单;机器人自动接待不算人工回复。Use when 用户要求检查重点买家有没有超时未回复、查询盘超时提醒、看 L3/L4 有没有快凉的,或要求运行重点买家预警。
|
|
4
|
-
version: "0.1.
|
|
4
|
+
version: "0.1.46"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# 重点买家预警
|
|
@@ -138,15 +138,27 @@ npx -y @yixinkj/priority-buyer-alert-cli@beta \
|
|
|
138
138
|
「只推一次」是靠 `--mark` 推进水位实现的:**不带 `--mark` 就只是预演**,不写水位,可以反复拉取
|
|
139
139
|
看结果,但也意味着去重不起作用。所以心跳一定要带,人工查看一定不要带。
|
|
140
140
|
|
|
141
|
-
###
|
|
141
|
+
### 会话热度:两个原始数字,不分桶
|
|
142
142
|
|
|
143
|
-
每条记录带 `
|
|
143
|
+
每条记录带 `thread_message_count`(整条会话的消息条数)和 `last_gap_ms`(买家最后一句距上一条的间隔)。
|
|
144
144
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
- `unknown` 没取到详情,判不出来。
|
|
145
|
+
**这两个数不用来决定写不写开场白,只用来定语气。**写不写由清单本身决定:进了清单就是今天的、
|
|
146
|
+
而且没推过。
|
|
148
147
|
|
|
149
|
-
|
|
148
|
+
- `last_gap_ms` 很大 = 久未联系后又回来问。中间可能换了采购周期甚至换了对接人,
|
|
149
|
+
上一轮说过什么都不作数,按重新开场写。
|
|
150
|
+
- `thread_message_count` 很大 = 已经有些来回了。照写,但别用「感谢您的询盘」开头。
|
|
151
|
+
注意这个数**包含系统消息、卡片和自动接待**,今天刚进来的询盘也常常有七八条,
|
|
152
|
+
它不等于「双方真的聊了这么多句」。
|
|
153
|
+
- 两个都是 `null` = 没取到详情。照写,按第一次回复的语气。
|
|
154
|
+
|
|
155
|
+
这里原来是一个分好桶的 `thread_stage`(`opening` / `ongoing`),阈值是 6 条。真机验收
|
|
156
|
+
把它证伪了:今天的 2 条、放宽到 7 天的 42 条,**全部**被判成 `ongoing`。阈值从没被真实
|
|
157
|
+
数据校准过,拿它当判据等于把开场白关掉,而且失败时毫无声响——看起来只像「今天没有合适样本」。
|
|
158
|
+
现在把原始数字交出去,由模型判。
|
|
159
|
+
|
|
160
|
+
`first_response_pending` 同样不作判据。它只说明「我方有没有发过真人消息」:全是 AI 自动接待、
|
|
161
|
+
来回二十条的会话它是 `yes`;买家几个月前问过、今天又来问的它是 `no`。
|
|
150
162
|
|
|
151
163
|
每条记录的 `first_response_pending` 是三态:
|
|
152
164
|
|
package/skills.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"runtimeVersion": "0.1.
|
|
2
|
+
"runtimeVersion": "0.1.36",
|
|
3
3
|
"platforms": {
|
|
4
4
|
"darwin-arm64": {
|
|
5
5
|
"id": "mac-arm64",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"skill": {
|
|
25
25
|
"name": "哨兵预警-0812",
|
|
26
26
|
"id": "priority-buyer-alert",
|
|
27
|
-
"version": "0.1.
|
|
27
|
+
"version": "0.1.46",
|
|
28
28
|
"bin": "priority-buyer-alert-cli"
|
|
29
29
|
}
|
|
30
30
|
}
|