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

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,14 @@ 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.40] - 2026-06-22
8
+
9
+ bundle social-hub-posts skill update: reddit update socialAccountId (re-assign/clear linked account)
10
+
11
+ ### Documentation
12
+
13
+ - reddit update 支持改/取消关联账号(socialAccountId)
14
+
7
15
  ## [0.1.39] - 2026-06-18
8
16
 
9
17
  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-22T02:40:48.088Z",
3
+ "cliVersion": "0.1.40",
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.40",
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.40",
5
5
  "repository": "social-ops-hub",
6
6
  "publish": {
7
7
  "registry": "https://skill.sh",
@@ -72,6 +72,9 @@ 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}'
75
78
  social-hub reddit delete -t <team-id> --snapshot <uuid> # 危险:确认用户意图
76
79
  ```
77
80