@optima-chat/optima-agent 0.8.68 → 0.8.69

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.
@@ -58,6 +58,15 @@ growth outreach messages update <id> --status replied --reply "回复内容"
58
58
  growth outreach stats
59
59
  ```
60
60
 
61
+ ### 评论管理
62
+ ```bash
63
+ growth comments list [--type reply|outreach] [--platform xiaohongshu] [--account-id <id>] [--post-url <url>]
64
+ growth comments create --account-id <id> --platform xiaohongshu --type reply --post-url "https://..." --comment "评论内容"
65
+ growth comments update <id> --status replied --performance '{"likes":5}'
66
+ growth comments delete <id>
67
+ growth comments stats
68
+ ```
69
+
61
70
  ## style 字段说明
62
71
 
63
72
  每个账号的 `style` 字段是该人设的完整内容规范,包含口吻风格、图片风格、标题格式、正文格式、标签策略、禁忌事项等。
@@ -103,6 +112,7 @@ growth outreach stats
103
112
  3. **去重检查**:创建选题前,用 `growth topics list` 和 `growth calendar list --status published` 获取已有选题和已发内容,跳过角度相似或主题重复的内容
104
113
  4. 从高互动内容中提取选题角度,用 `growth topics create --source trending` 存入选题库
105
114
  5. 根据原内容互动数据给选题打分(`growth topics update <id> --performance-score <分数>`)
115
+ 6. **评论引流**:筛选适合评论的帖子(话题相关、互动活跃、最近发的),AI 生成评论(提供价值,不是硬广),用 browser skill 发评论,`growth comments create --type outreach` 记录
106
116
 
107
117
  可用 sentinel skill 创建定时规则自动执行选题更新。
108
118
 
@@ -116,6 +126,8 @@ growth outreach stats
116
126
  - 从页面抓取互动数据:浏览量、点赞、收藏、评论数
117
127
  - `growth calendar update <id> --performance '{"views":1200,"likes":85,"collects":42,"comments":12}'`
118
128
  3. 根据表现数据更新关联选题的评分(`growth topics update <id> --performance-score <分数>`),表现好的选题得分更高,后续 `growth topics suggest` 会优先推荐
129
+ 4. **评论回复**:抓取帖子下的新评论,AI 根据人设风格生成回复,用 browser skill 发送,`growth comments create --type reply` 记录
130
+ 5. **评论数据**:检查已发评论的互动数据(点赞数),`growth comments update <id> --performance '{"likes":N}'`
119
131
 
120
132
  ### 私信触达
121
133
 
@@ -165,5 +177,7 @@ growth outreach stats
165
177
  - 两次发布间隔不少于 posting_rules.min_interval_hours 小时
166
178
  - 单账号每日触达不超过 posting_rules.max_daily_outreach
167
179
  - 两次触达间隔不少于 posting_rules.min_outreach_interval_minutes 分钟
180
+ - 单账号每日评论不超过 posting_rules.max_daily_comments
181
+ - 两次评论间隔不少于 posting_rules.min_comment_interval_minutes 分钟
168
182
  - 不同人设的内容必须有明显差异
169
183
  - 发布时间加入随机偏移
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optima-chat/optima-agent",
3
- "version": "0.8.68",
3
+ "version": "0.8.69",
4
4
  "description": "基于 Claude Agent SDK 的电商运营 AI 助手",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",