@geoly-ai/social-hub-cli 0.1.39 → 0.1.41

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/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ All notable changes to `@geoly-ai/social-hub-cli` are documented in this file.
4
4
 
5
5
  Release workflow: `pnpm release:cli` → `pnpm publish:cli`.
6
6
 
7
+ ## [0.1.41] - 2026-06-22
8
+
9
+ bundle social-hub-posts skill: reddit update brandId (edit system-level brand link)
10
+
11
+ ### Added
12
+
13
+ - 编辑帖子可改品牌关联(brandId,系统级落库)
14
+
15
+ ## [0.1.40] - 2026-06-22
16
+
17
+ bundle social-hub-posts skill update: reddit update socialAccountId (re-assign/clear linked account)
18
+
19
+ ### Documentation
20
+
21
+ - reddit update 支持改/取消关联账号(socialAccountId)
22
+
7
23
  ## [0.1.39] - 2026-06-18
8
24
 
9
25
  personas pools-get/pools-set (system-level persona subreddit pools)
@@ -1,6 +1,6 @@
1
1
  {
2
- "generatedAt": "2026-06-18T10:53:42.107Z",
3
- "cliVersion": "0.1.39",
2
+ "generatedAt": "2026-06-22T03:47:41.768Z",
3
+ "cliVersion": "0.1.41",
4
4
  "commands": [
5
5
  "accounts",
6
6
  "accounts brand-bindings",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geoly-ai/social-hub-cli",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
4
4
  "type": "module",
5
5
  "description": "social-hub CLI for Social Ops Hub",
6
6
  "repository": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 1,
3
3
  "package": "social-ops-hub",
4
- "cliVersion": "0.1.39",
4
+ "cliVersion": "0.1.41",
5
5
  "repository": "social-ops-hub",
6
6
  "publish": {
7
7
  "registry": "https://skill.sh",
@@ -72,6 +72,11 @@ social-hub reddit update -t <team-id> --snapshot <uuid> -j '{
72
72
  "firstRepostLink": "https://www.reddit.com/r/example/comments/repost1/",
73
73
  "secondRepostLink": "https://www.reddit.com/r/example/comments/repost2/"
74
74
  }'
75
+ # 改/取消关联账号(socialAccountId):account-uuid 须属该快照所在团队;null=取消关联;换团队(teamId)时后端会自动清空它
76
+ social-hub reddit update -t <team-id> --snapshot <uuid> -j '{"socialAccountId":"<account-uuid>"}'
77
+ social-hub reddit update -t <team-id> --snapshot <uuid> -j '{"socialAccountId":null}'
78
+ # 改/取消品牌关联(brandId,系统级):品牌跨团队有效,换团队不清;null=取消;client 角色只能设其可见品牌
79
+ social-hub reddit update -t <team-id> --snapshot <uuid> -j '{"brandId":"<brand-uuid>"}'
75
80
  social-hub reddit delete -t <team-id> --snapshot <uuid> # 危险:确认用户意图
76
81
  ```
77
82