@optima-chat/optima-agent 0.8.74 → 0.8.75

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.
@@ -46,18 +46,6 @@ growth calendar pending
46
46
  growth calendar update <id> --status published
47
47
  ```
48
48
 
49
- ### 触达管理
50
- ```bash
51
- growth outreach targets list [--status discovered|qualified|messaged|replied|converted|rejected] [--platform xiaohongshu]
52
- growth outreach targets create --account-id <id> --platform xiaohongshu --platform-user-id <uid> --platform-username "昵称" --source-url "https://..." --source-keyword "关键词" --reason "筛选理由"
53
- growth outreach targets update <id> --status qualified
54
- growth outreach targets delete <id>
55
- growth outreach messages list [--target-id <id>] [--status sent|replied]
56
- growth outreach messages create --target-id <id> --account-id <id> --message "私信内容"
57
- growth outreach messages update <id> --status replied --reply "回复内容"
58
- growth outreach stats
59
- ```
60
-
61
49
  ### 评论管理
62
50
  ```bash
63
51
  growth comments list [--type reply|outreach] [--platform xiaohongshu] [--account-id <id>] [--post-url <url>]
@@ -123,38 +111,12 @@ growth comments stats
123
111
  4. **评论回复**:抓取帖子下的新评论,AI 根据人设风格生成回复,加载 browser skill 用帖子标题搜索找到帖子并发送评论,`growth comments create --type reply` 记录
124
112
  5. **评论数据**:检查已发评论的互动数据(点赞数),`growth comments update <id> --performance '{"likes":N}'`
125
113
 
126
- ### 私信触达
127
-
128
- 发现目标用户、发送个性化私信、追踪转化:
129
-
130
- **发现目标用户:**
131
- 1. 根据产品配置和目标受众确定搜索关键词
132
- 2. 用 scout 相关 skill 搜索各平台内容
133
- 3. 筛选目标:最近发帖、互动少、表达了明确痛点
134
- 4. 去重:`growth outreach targets list` 检查是否已触达
135
- 5. 存入:`growth outreach targets create`
136
-
137
- **筛选评估:**
138
- 1. 读取 discovered 状态的目标,用 scout skill 查看其主页评估
139
- 2. 合格 → `growth outreach targets update <id> --status qualified`
140
- 3. 不合格 → `growth outreach targets update <id> --status rejected`
141
-
142
- **发送私信:**
143
- 1. 读取 qualified 目标,AI 根据其帖子内容 + 人设风格生成个性化私信
144
- 2. 加载 browser skill 打开平台发送私信
145
- 3. 记录:`growth outreach messages create` + 更新 target 状态为 messaged
146
- 4. 遵守风控:不超过 posting_rules.max_daily_outreach
147
-
148
- **回复跟进:**
149
- 回采时检查私信回复,更新 target 为 replied,AI 自动跟进引导注册
150
-
151
114
  ### 定时自动化
152
115
 
153
116
  用 sentinel skill 创建定时规则:
154
117
  - **自动发布**:为每个账号创建发布规则(cron 调度),指令:加载 growth skill → 检查 pending → 生成并发布
155
118
  - **选题更新**:定期搜索多平台热门内容,补充选题库
156
119
  - **数据回采**:每天回采已发帖子的互动数据,更新选题评分
157
- - **私信触达**:每日发现新目标、发送私信、检查回复
158
120
  - **内容规划**:每周自动规划下一周日历
159
121
  - 同一用户的规则排队执行,不会并发
160
122
 
@@ -169,8 +131,6 @@ growth comments stats
169
131
 
170
132
  - 单账号每日发布不超过 posting_rules.max_daily_posts
171
133
  - 两次发布间隔不少于 posting_rules.min_interval_hours 小时
172
- - 单账号每日触达不超过 posting_rules.max_daily_outreach
173
- - 两次触达间隔不少于 posting_rules.min_outreach_interval_minutes 分钟
174
134
  - 单账号每日评论不超过 posting_rules.max_daily_comments
175
135
  - 两次评论间隔不少于 posting_rules.min_comment_interval_minutes 分钟
176
136
  - 不同人设的内容必须有明显差异
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optima-chat/optima-agent",
3
- "version": "0.8.74",
3
+ "version": "0.8.75",
4
4
  "description": "基于 Claude Agent SDK 的电商运营 AI 助手",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",