@geoly-ai/social-hub-cli 0.2.10 → 0.2.11
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 +6 -0
- package/dist/cmd-manifest.json +2 -2
- package/package.json +3 -3
- package/skills/manifest.json +11 -1
- package/skills/social-hub-cli/SKILL.md +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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.2.11] - 2026-07-17
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- manifest/总路由补登记 content-review 与 post-review skill
|
|
12
|
+
|
|
7
13
|
## [0.2.10] - 2026-07-17
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/cmd-manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geoly-ai/social-hub-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "social-hub CLI for Social Ops Hub",
|
|
6
6
|
"repository": {
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"commander": "^12.1.0",
|
|
25
|
-
"@geoly-ai/social-hub-
|
|
26
|
-
"@geoly-ai/social-hub-
|
|
25
|
+
"@geoly-ai/social-hub-sdk": "0.0.28",
|
|
26
|
+
"@geoly-ai/social-hub-authz": "0.0.4"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^22.10.2",
|
package/skills/manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
3
|
"package": "social-ops-hub",
|
|
4
|
-
"cliVersion": "0.2.
|
|
4
|
+
"cliVersion": "0.2.11",
|
|
5
5
|
"repository": "social-ops-hub",
|
|
6
6
|
"publish": {
|
|
7
7
|
"registry": "https://skill.sh",
|
|
@@ -54,6 +54,16 @@
|
|
|
54
54
|
"path": "social-hub-publishing",
|
|
55
55
|
"description": "brand/plan/draft 到 report 发布闭环"
|
|
56
56
|
},
|
|
57
|
+
{
|
|
58
|
+
"id": "social-hub-content-review",
|
|
59
|
+
"path": "social-hub-content-review",
|
|
60
|
+
"description": "评论内容复审(发布前三层 gate 层③):content review/optimize"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "social-hub-post-review",
|
|
64
|
+
"path": "social-hub-post-review",
|
|
65
|
+
"description": "帖子审核(发帖前质量闸):content post-review/optimize"
|
|
66
|
+
},
|
|
57
67
|
{
|
|
58
68
|
"id": "social-hub-events-observability",
|
|
59
69
|
"path": "social-hub-events-observability",
|
|
@@ -40,6 +40,8 @@ social-hub version --json
|
|
|
40
40
|
| style-marks / curator / style-guide | `social-hub-style-curator` |
|
|
41
41
|
| 日历 / scheduled jobs | `social-hub-calendar-jobs` |
|
|
42
42
|
| 发布闭环(brand→report) | `social-hub-publishing` |
|
|
43
|
+
| 评论发布前复审/优化(三层 gate 层③) | `social-hub-content-review` |
|
|
44
|
+
| 帖子发布前审核/优化(post-review) | `social-hub-post-review` |
|
|
43
45
|
| 事件 / dashboard / audit / reports | `social-hub-events-observability` |
|
|
44
46
|
| 图谱 / 合规 / 风控 | `social-hub-graph-compliance` |
|
|
45
47
|
| settings / invites / members / api-keys | `social-hub-admin` |
|