@geoly-ai/social-hub-cli 0.0.15 → 0.0.16

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,28 @@ 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.0.16] - 2026-05-29
8
+
9
+ Bundled skill docs aligned with Hub-first CLI syntax; browser-env telemetry and ops runtime extensions.
10
+
11
+ ### Added
12
+ - hub runtime readiness, bundled skills sync, and skill doc alignment
13
+ - extend events append CLI flags and interaction flow
14
+ - harden OpenClaw interaction flow
15
+ - add graph v2, intelligence extensions, modular skills
16
+ - add system brands and brand-members commands
17
+ - granular CLI token duration permissions via matrix
18
+ - add reddit batch-upsert and drop import-feishu command
19
+
20
+ ### Fixed
21
+ - upsert feishu snapshots by feishuRecordId
22
+ - default apiUrl to production Social Ops Hub
23
+ - parse conventional commit subjects for CHANGELOG
24
+ - default skills install to TUI with CLI prefill
25
+
26
+ ### Changed
27
+ - automate CLI versioning and CHANGELOG
28
+ - add publish:cli script for single-package npm publish
7
29
  ## [0.0.15] - 2026-05-28
8
30
 
9
31
  Hub runtime readiness: authz evaluate resource/action, expanded permission gates, bundled skills sync on publish.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geoly-ai/social-hub-cli",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
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.0.15",
4
+ "cliVersion": "0.0.16",
5
5
  "repository": "social-ops-hub",
6
6
  "publish": {
7
7
  "registry": "https://skill.sh",
@@ -70,5 +70,5 @@ social-hub accounts browser-envs update -t <team-id> --env <envUuid> -j '{
70
70
 
71
71
  ```bash
72
72
  social-hub accounts personas list -t <team-id> --account <uuid>
73
- social-hub accounts personas create -t <team-id> --account <uuid> -j '{"markdown":"# Persona\n..."}'
73
+ social-hub accounts personas create -t <team-id> --account <uuid> --markdown "# Persona\n..."
74
74
  ```
@@ -84,9 +84,9 @@ social-hub agent-teams workspace-docs -t <team-id> # 只读:Hub 内工作区
84
84
  ```bash
85
85
  social-hub notification-channels list -t <team-id>
86
86
  social-hub notification-channels create -t <team-id> -j '{"provider":"feishu","externalId":"https://..."}'
87
- social-hub notification-channels update -t <team-id> --id <uuid> -j '{"enabled":true}'
88
- social-hub notification-channels delete -t <team-id> --id <uuid>
89
- social-hub notification-channels test -t <team-id> --id <uuid>
87
+ social-hub notification-channels update -t <team-id> --channel <uuid> -j '{"enabled":true}'
88
+ social-hub notification-channels delete -t <team-id> --channel <uuid>
89
+ social-hub notification-channels test -t <team-id> --channel <uuid>
90
90
  ```
91
91
 
92
92
  `provider: "feishu"` 是 CLI 支持的 provider 枚举,不是飞书数据同步流程。
@@ -28,7 +28,7 @@ social-hub jobs list -t <team-id> [--status scheduled]
28
28
  social-hub jobs list-full -t <team-id> --account <accountId> --status scheduled
29
29
  social-hub jobs summary -t <team-id>
30
30
  social-hub jobs create -t <team-id> -j '{"socialAccountId":"...","action":"engage","subreddit":"...","runAt":"..."}'
31
- social-hub jobs batch -t <team-id> -j '{"items":[...]}'
31
+ social-hub jobs batch -t <team-id> -j '{"jobs":[...]}'
32
32
  social-hub jobs retry -t <team-id> -i <jobId>
33
33
  social-hub jobs cancel -t <team-id> -i <jobId>
34
34
  ```
@@ -40,7 +40,7 @@ social-hub audit list -t <team-id> -n 50 [--type <prefix>] [--actor agent] [--ac
40
40
  ```bash
41
41
  social-hub reports list -t <team-id> -n 20
42
42
  social-hub reports create -t <team-id> -j '{"reportType":"content-weekly","title":"Weekly","source":"openclaw","contentMarkdown":"..."}'
43
- social-hub reports ingest -t <team-id> -j '{"source":"external","payload":{...}}'
43
+ social-hub reports ingest -t <team-id> -j '{"reportType":"content-weekly","source":"external","traceId":"..."}'
44
44
  ```
45
45
 
46
46
  ## 相关 skill
@@ -30,7 +30,7 @@ social-hub reddit list -t <team-id> -n 20
30
30
  social-hub reddit stats -t <team-id> --campaign <uuid>
31
31
  social-hub reddit refresh-status -t <team-id>
32
32
  social-hub reddit refresh -t <team-id> --snapshot <snapshotId>
33
- social-hub reddit refresh-progress -t <team-id> --task <taskId>
33
+ social-hub reddit refresh-progress -t <team-id> --batch <batchId>
34
34
  social-hub reddit refresh-all -t <team-id>
35
35
  ```
36
36
 
@@ -86,7 +86,7 @@ social-hub events append -t <team-id> --type post.published --payload '{"permali
86
86
  ```bash
87
87
  social-hub reddit create-snapshot -t <team-id> -j '{ ... }' # 见 social-hub-posts
88
88
  social-hub reports list -t <team-id>
89
- social-hub reports create -t <team-id> -j '{"title":"Weekly","bodyMarkdown":"..."}'
89
+ social-hub reports create -t <team-id> -j '{"reportType":"content-weekly","title":"Weekly","source":"openclaw","contentMarkdown":"..."}'
90
90
  ```
91
91
 
92
92
  ## 决策:ops complete vs 手动 patch