@optima-chat/optima-agent 0.8.69 → 0.8.71
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/.claude/skills/growth/SKILL.md +8 -16
- package/dist/bin/growth.js +0 -0
- package/package.json +1 -1
|
@@ -89,14 +89,8 @@ growth comments stats
|
|
|
89
89
|
1. `growth accounts get <id>` + `growth config get` — 获取人设和产品信息
|
|
90
90
|
2. 根据 style 规范生成文案,**必须自然植入产品推广**(植入方式因人设而异)
|
|
91
91
|
3. 用 gen skill 生成配图
|
|
92
|
-
4.
|
|
93
|
-
|
|
94
|
-
- 小红书:`browser-cli launch --url "https://creator.xiaohongshu.com/publish/publish" --profile <browser_profile_id> --force`
|
|
95
|
-
- 其他平台:根据平台 URL 和发布流程操作
|
|
96
|
-
- 切到图文模式 → 上传图片 → 填标题正文 → 直接点击发布(不需要用户确认)
|
|
97
|
-
- 如果需要登录,询问用户手机号和验证码
|
|
98
|
-
- **发布成功后,从页面或 URL 栏抓取帖子链接,记录到 publish_result**
|
|
99
|
-
5. `growth calendar update <id> --status published --publish-result '{"post_url":"https://www.xiaohongshu.com/explore/..."}'`
|
|
92
|
+
4. 加载 browser skill,用浏览器发布到目标平台(发布成功后记录 post_url)
|
|
93
|
+
5. `growth calendar update <id> --status published --publish-result '{"post_url":"..."}'`
|
|
100
94
|
|
|
101
95
|
### 选题更新
|
|
102
96
|
|
|
@@ -112,7 +106,7 @@ growth comments stats
|
|
|
112
106
|
3. **去重检查**:创建选题前,用 `growth topics list` 和 `growth calendar list --status published` 获取已有选题和已发内容,跳过角度相似或主题重复的内容
|
|
113
107
|
4. 从高互动内容中提取选题角度,用 `growth topics create --source trending` 存入选题库
|
|
114
108
|
5. 根据原内容互动数据给选题打分(`growth topics update <id> --performance-score <分数>`)
|
|
115
|
-
6. **评论引流**:筛选适合评论的帖子(话题相关、互动活跃、最近发的),AI
|
|
109
|
+
6. **评论引流**:筛选适合评论的帖子(话题相关、互动活跃、最近发的),AI 生成评论(提供价值,不是硬广),加载 browser skill 发评论,`growth comments create --type outreach` 记录
|
|
116
110
|
|
|
117
111
|
可用 sentinel skill 创建定时规则自动执行选题更新。
|
|
118
112
|
|
|
@@ -120,13 +114,11 @@ growth comments stats
|
|
|
120
114
|
|
|
121
115
|
每天为每个账号回采已发帖子的互动数据,用 sentinel skill 创建每日回采规则:
|
|
122
116
|
|
|
123
|
-
1.
|
|
124
|
-
2.
|
|
125
|
-
-
|
|
126
|
-
- 从页面抓取互动数据:浏览量、点赞、收藏、评论数
|
|
127
|
-
- `growth calendar update <id> --performance '{"views":1200,"likes":85,"collects":42,"comments":12}'`
|
|
117
|
+
1. 加载 browser skill,用浏览器从创作者平台采集所有笔记的互动数据(曝光、观看、点击率、点赞、评论、收藏、涨粉、分享)
|
|
118
|
+
2. 将采集到的数据更新到 growth calendar:
|
|
119
|
+
- `growth calendar update <id> --performance '{"impressions":1450,"views":148,"click_rate":"9.60%","likes":5,"comments":3}'`
|
|
128
120
|
3. 根据表现数据更新关联选题的评分(`growth topics update <id> --performance-score <分数>`),表现好的选题得分更高,后续 `growth topics suggest` 会优先推荐
|
|
129
|
-
4. **评论回复**:抓取帖子下的新评论,AI
|
|
121
|
+
4. **评论回复**:抓取帖子下的新评论,AI 根据人设风格生成回复,加载 browser skill 发送,`growth comments create --type reply` 记录
|
|
130
122
|
5. **评论数据**:检查已发评论的互动数据(点赞数),`growth comments update <id> --performance '{"likes":N}'`
|
|
131
123
|
|
|
132
124
|
### 私信触达
|
|
@@ -147,7 +139,7 @@ growth comments stats
|
|
|
147
139
|
|
|
148
140
|
**发送私信:**
|
|
149
141
|
1. 读取 qualified 目标,AI 根据其帖子内容 + 人设风格生成个性化私信
|
|
150
|
-
2.
|
|
142
|
+
2. 加载 browser skill 打开平台发送私信
|
|
151
143
|
3. 记录:`growth outreach messages create` + 更新 target 状态为 messaged
|
|
152
144
|
4. 遵守风控:不超过 posting_rules.max_daily_outreach
|
|
153
145
|
|
package/dist/bin/growth.js
CHANGED
|
File without changes
|