siluzan-cso-cli 1.0.2 → 1.1.8-beta.1

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/README.md CHANGED
@@ -12,7 +12,7 @@
12
12
  在**用户的目标项目根目录**执行(根据用户使用的助手选择 `--ai`):
13
13
 
14
14
  ```bash
15
- npm install -g siluzan-cso-cli
15
+ npm install -g siluzan-cso-cli@beta
16
16
  siluzan-cso init --ai cursor # 写入 Cursor(默认)
17
17
  siluzan-cso init --ai cursor,claude # 同时写入多个平台
18
18
  siluzan-cso init --ai all # 写入所有支持的平台
@@ -20,6 +20,7 @@ siluzan-cso init -d /path/to/skills # 写入自定义目录
20
20
  siluzan-cso init --force # 强制覆盖已存在文件
21
21
  ```
22
22
 
23
+ > **注意**:当前为测试版(1.1.8-beta.1),供内部测试使用。正式发布后安装命令将改为 `npm install -g siluzan-cso-cli`。
23
24
 
24
25
  | 助手 | 建议 `--ai` |
25
26
  |------|-------------|
package/dist/index.js CHANGED
@@ -1938,6 +1938,13 @@ var require_semver2 = __commonJS({
1938
1938
  // src/index.ts
1939
1939
  import { Command, Option } from "commander";
1940
1940
 
1941
+ // src/config/defaults.ts
1942
+ var BUILD_ENV = "test";
1943
+ var DEFAULT_API_BASE = "https://api-ci.siluzan.com";
1944
+ var DEFAULT_CSO_BASE = "https://cso-ci.siluzan.com";
1945
+ var DEFAULT_WEB_BASE = "https://www-ci.siluzan.com";
1946
+ var DEFAULT_AGENT_BASE = "https://agent-ci.mysiluzan.com";
1947
+
1941
1948
  // src/commands/init.ts
1942
1949
  import * as fs2 from "fs/promises";
1943
1950
  import * as fsSync from "fs";
@@ -2138,9 +2145,6 @@ function readSharedConfig() {
2138
2145
  return {
2139
2146
  authToken: readStr(raw, "authToken") ?? "",
2140
2147
  apiKey: readStr(raw, "apiKey"),
2141
- apiBaseUrl: readStr(raw, "apiBaseUrl"),
2142
- tsoApiBaseUrl: readStr(raw, "tsoApiBaseUrl"),
2143
- googleApiUrl: readStr(raw, "googleApiUrl"),
2144
2148
  dataPermission: readStr(raw, "dataPermission")
2145
2149
  };
2146
2150
  } catch {
@@ -2159,9 +2163,6 @@ function writeSharedConfig(partial) {
2159
2163
  const keys = [
2160
2164
  "authToken",
2161
2165
  "apiKey",
2162
- "apiBaseUrl",
2163
- "tsoApiBaseUrl",
2164
- "googleApiUrl",
2165
2166
  "dataPermission"
2166
2167
  ];
2167
2168
  for (const k of keys) {
@@ -2785,13 +2786,6 @@ async function fetchNpmVersion(pkgName, tag, timeoutMs = 4e3) {
2785
2786
  }
2786
2787
  }
2787
2788
 
2788
- // src/config/defaults.ts
2789
- var BUILD_ENV = "production";
2790
- var DEFAULT_API_BASE = "https://api.siluzan.com";
2791
- var DEFAULT_CSO_BASE = "https://cso.siluzan.com";
2792
- var DEFAULT_WEB_BASE = "https://www.siluzan.com";
2793
- var DEFAULT_AGENT_BASE = "https://agent.mysiluzan.com";
2794
-
2795
2789
  // src/commands/login.ts
2796
2790
  async function runLogin(opts = {}) {
2797
2791
  if (opts.token !== void 0) {
@@ -3054,14 +3048,14 @@ async function runUpdate(options) {
3054
3048
  aiTargets: "",
3055
3049
  dir: entry.dir,
3056
3050
  force: true,
3057
- apiBaseUrl: "https://api.siluzan.com"
3051
+ apiBaseUrl: DEFAULT_API_BASE
3058
3052
  });
3059
3053
  } else {
3060
3054
  await runInit({
3061
3055
  cwd,
3062
3056
  aiTargets: entry.target,
3063
3057
  force: true,
3064
- apiBaseUrl: "https://api.siluzan.com"
3058
+ apiBaseUrl: DEFAULT_API_BASE
3065
3059
  });
3066
3060
  }
3067
3061
  } catch (e) {
@@ -3083,7 +3077,7 @@ function loadConfig(tokenArg) {
3083
3077
  );
3084
3078
  process.exit(1);
3085
3079
  }
3086
- const apiBaseUrl = process.env.SILUZAN_CSO_API_BASE ?? shared.apiBaseUrl ?? DEFAULT_API_BASE;
3080
+ const apiBaseUrl = process.env.SILUZAN_CSO_API_BASE ?? DEFAULT_API_BASE;
3087
3081
  const csoBaseUrl = process.env.SILUZAN_CSO_BASE ?? DEFAULT_CSO_BASE;
3088
3082
  const agentBaseUrl = process.env.SILUZAN_AGENT_BASE ?? DEFAULT_AGENT_BASE;
3089
3083
  const apiErr = validateBaseUrl(apiBaseUrl);
@@ -6529,7 +6523,7 @@ function cmdConfigShow() {
6529
6523
  );
6530
6524
  return;
6531
6525
  }
6532
- const apiBaseUrl = shared.apiBaseUrl ?? DEFAULT_API_BASE;
6526
+ const apiBaseUrl = process.env.SILUZAN_CSO_API_BASE ?? DEFAULT_API_BASE;
6533
6527
  const csoBaseUrl = DEFAULT_CSO_BASE;
6534
6528
  const apiKey = shared.apiKey ?? "";
6535
6529
  console.log("\n\u5F53\u524D\u914D\u7F6E\uFF08~/.siluzan/config.json\uFF09\uFF1A");
@@ -6550,27 +6544,16 @@ function cmdConfigShow() {
6550
6544
  console.log();
6551
6545
  }
6552
6546
  function cmdConfigSet(opts) {
6553
- if (!opts.apiKey && !opts.token && !opts.apiBase) {
6554
- console.error("\n\u274C \u8BF7\u81F3\u5C11\u63D0\u4F9B\u4E00\u4E2A\u8981\u66F4\u65B0\u7684\u914D\u7F6E\u9879\uFF08--api-key\u3001--token \u6216 --api-base\uFF09\n");
6547
+ if (!opts.apiKey && !opts.token) {
6548
+ console.error("\n\u274C \u8BF7\u81F3\u5C11\u63D0\u4F9B\u4E00\u4E2A\u8981\u66F4\u65B0\u7684\u914D\u7F6E\u9879\uFF08--api-key \u6216 --token\uFF09\n");
6555
6549
  process.exit(1);
6556
6550
  }
6557
- if (opts.apiBase) {
6558
- const err = validateBaseUrl(opts.apiBase);
6559
- if (err) {
6560
- console.error(`
6561
- \u274C --api-base \u4E0D\u5408\u6CD5\uFF1A${err}
6562
- `);
6563
- process.exit(1);
6564
- }
6565
- writeSharedConfig({ apiBaseUrl: opts.apiBase });
6566
- }
6567
6551
  if (opts.apiKey) writeSharedConfig({ apiKey: opts.apiKey });
6568
6552
  if (opts.token) writeSharedConfig({ authToken: opts.token });
6569
6553
  console.log(`
6570
6554
  \u2705 \u914D\u7F6E\u5DF2\u4FDD\u5B58\u5230 ${CONFIG_FILE}`);
6571
6555
  if (opts.apiKey) console.log(` apiKey: ${maskSecret(opts.apiKey)}`);
6572
6556
  if (opts.token) console.log(` authToken: ${maskSecret(opts.token)}`);
6573
- if (opts.apiBase) console.log(` apiBaseUrl: ${opts.apiBase}`);
6574
6557
  console.log("\n\u540E\u7EED\u6240\u6709\u547D\u4EE4\u81EA\u52A8\u8BFB\u53D6\u6B64\u914D\u7F6E\u3002\n");
6575
6558
  }
6576
6559
  function cmdConfigClear() {
@@ -6588,8 +6571,8 @@ program.hook("preAction", () => {
6588
6571
  });
6589
6572
  var configCmd = program.command("config").description("\u67E5\u770B\u6216\u8BBE\u7F6E Siluzan \u8BA4\u8BC1\u914D\u7F6E\uFF08~/.siluzan/config.json\uFF09");
6590
6573
  configCmd.command("show").description("\u5C55\u793A\u5F53\u524D\u5DF2\u4FDD\u5B58\u7684\u914D\u7F6E\uFF08Token \u8131\u654F\u663E\u793A\uFF09").action(() => cmdConfigShow());
6591
- configCmd.command("set").description("\u4FDD\u5B58\u914D\u7F6E\u5230 ~/.siluzan/config.json\uFF0C\u540E\u7EED\u547D\u4EE4\u81EA\u52A8\u8BFB\u53D6").option("--api-key <key>", "API Key\uFF08\u63A8\u8350\uFF0C\u4E0E siluzan-tso \u5171\u7528\uFF0C\u4F18\u5148\u7EA7\u9AD8\u4E8E token\uFF09").option("-t, --token <token>", "\u7528\u6237 Auth Token\uFF08JWT\uFF09").option("--api-base <url>", "\u4E3B API \u57FA\u5730\u5740\uFF08\u9ED8\u8BA4 https://api.siluzan.com\uFF09").action((opts) => {
6592
- cmdConfigSet({ apiKey: opts.apiKey, token: opts.token, apiBase: opts.apiBase });
6574
+ configCmd.command("set").description("\u4FDD\u5B58\u914D\u7F6E\u5230 ~/.siluzan/config.json\uFF0C\u540E\u7EED\u547D\u4EE4\u81EA\u52A8\u8BFB\u53D6").option("--api-key <key>", "API Key\uFF08\u63A8\u8350\uFF0C\u4E0E siluzan-tso \u5171\u7528\uFF0C\u4F18\u5148\u7EA7\u9AD8\u4E8E token\uFF09").option("-t, --token <token>", "\u7528\u6237 Auth Token\uFF08JWT\uFF09").action((opts) => {
6575
+ cmdConfigSet({ apiKey: opts.apiKey, token: opts.token });
6593
6576
  });
6594
6577
  configCmd.command("clear").description("\u6E05\u7A7A\u5DF2\u4FDD\u5B58\u7684 Token").action(() => cmdConfigClear());
6595
6578
  program.command("login").description("\u5F15\u5BFC\u5B8C\u6210 Siluzan \u8D26\u53F7\u767B\u5F55\uFF0C\u4FDD\u5B58 API Key \u5230\u672C\u5730").option("--api-key <key>", "\u76F4\u63A5\u4FDD\u5B58 API Key\uFF08\u8DF3\u8FC7\u4EA4\u4E92\u5F0F\u6D41\u7A0B\uFF0C\u4E0E siluzan-tso \u5171\u7528\uFF09").addOption(new Option("--token <token>", "\u76F4\u63A5\u4FDD\u5B58 JWT Token").hideHelp()).action(async (opts) => {
@@ -6605,13 +6588,13 @@ program.command("init").description("\u5C06 Skill \u6587\u4EF6\u5199\u5165\u6307
6605
6588
  ).option(
6606
6589
  "-d, --dir <path>",
6607
6590
  "\u5C06 Skill \u6587\u4EF6\u76F4\u63A5\u5199\u5165\u6307\u5B9A\u76EE\u5F55\uFF08\u7EDD\u5BF9\u6216\u76F8\u5BF9\u8DEF\u5F84\uFF09\uFF0C\u4E0E --ai \u4E92\u65A5\uFF0C\u4F18\u5148\u7EA7\u66F4\u9AD8"
6608
- ).option("-f, --force", "\u8986\u76D6\u5DF2\u5B58\u5728\u7684 Skill \u6587\u4EF6", false).option("--api-base <url>", "API \u57FA\u5730\u5740\uFF08\u5199\u5165\u914D\u7F6E\u63D0\u793A\uFF09", "https://api.siluzan.com").action(async (opts) => {
6591
+ ).option("-f, --force", "\u8986\u76D6\u5DF2\u5B58\u5728\u7684 Skill \u6587\u4EF6", false).action(async (opts) => {
6609
6592
  await runInit({
6610
6593
  cwd: process.cwd(),
6611
6594
  aiTargets: opts.ai,
6612
6595
  dir: opts.dir,
6613
6596
  force: Boolean(opts.force),
6614
- apiBaseUrl: opts.apiBase ?? "https://api.siluzan.com"
6597
+ apiBaseUrl: DEFAULT_API_BASE
6615
6598
  });
6616
6599
  });
6617
6600
  program.command("authorize").description("\u53D1\u8D77\u5A92\u4F53\u5E73\u53F0 OAuth \u6388\u6743\uFF08YouTube/TikTokBusinessAccount/Instagram/Facebook/LinkedIn/Twitter \u7B49\uFF09\uFF0C\u5728\u6D4F\u89C8\u5668\u4E2D\u5B8C\u6210\u6388\u6743\u540E\u8DF3\u56DE\u4E1D\u8DEF\u8D5E\u8D26\u53F7\u7BA1\u7406\u9875").requiredOption("--media-type <type>", "\u5A92\u4F53\u5E73\u53F0\u7C7B\u578B\uFF0C\u5982 YouTube / TikTokBusinessAccount / Instagram / Facebook / LinkedIn / Twitter").option("-t, --token <token>", "Token\uFF08\u53EF\u9009\uFF1B\u4F18\u5148\u4E8E ~/.siluzan/config.json\uFF09").option("--verbose", "\u663E\u793A\u8BE6\u7EC6\u9519\u8BEF\u4FE1\u606F", false).action(async (opts) => {
@@ -123,6 +123,6 @@ account-group ──需要 mediaCustomerId──► list-accounts
123
123
 
124
124
  > 无对应 CLI 命令的模块,或需要引导用户在网页端查看数据时,查阅 `references/web-pages.md` 获取完整页面清单与链接。
125
125
 
126
- URL 格式:`https://www.siluzan.com/v3/foreign_trade/cso/{页面}`
126
+ URL 格式:`https://www-ci.siluzan.com/v3/foreign_trade/cso/{页面}`
127
127
 
128
128
  常用页面:`task`(任务管理)· `postVideo`(发布页)· `ManageAccounts`(账号管理)· `planning`(AI 内容规划)· `table`(绩效报表)· `Workdata`(作品数据)
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "slug": "siluzan-cso",
3
- "version": "1.0.2",
4
- "publishedAt": 1775638574225
3
+ "version": "1.1.8-beta.1",
4
+ "publishedAt": 1775642233538
5
5
  }
@@ -199,7 +199,7 @@ siluzan-cso publish -c publish-config.json
199
199
 
200
200
  > 查询发布状态、处理失败项 → 参见 `references/task.md`
201
201
 
202
- 前往 CSO 任务管理页面查看进度:`https://www.siluzan.com/v3/foreign_trade/cso/task`
202
+ 前往 CSO 任务管理页面查看进度:`https://www-ci.siluzan.com/v3/foreign_trade/cso/task`
203
203
 
204
204
  ---
205
205
 
@@ -3,7 +3,7 @@
3
3
  ## 安装 CLI
4
4
 
5
5
  ```bash
6
- npm install -g siluzan-cso-cli
6
+ npm install -g siluzan-cso-cli@beta
7
7
  ```
8
8
 
9
9
  环境要求:Node.js 24+
@@ -44,7 +44,7 @@ siluzan-cso config set --token <Token> # 备用:设置 JWT Token
44
44
 
45
45
  > **⚠️ 不要使用 `config set --token <token>` 的方式。** 该方式会将 Token 明文写入 shell history(`~/.bash_history`、`~/.zsh_history`、PowerShell 历史),存在凭证泄露风险。推荐使用 `siluzan-cso login` 交互式输入。
46
46
 
47
- API Key 获取入口:`https://cso.siluzan.com/v3/foreign_trade/settings/apiKeyManagement`
47
+ API Key 获取入口:`https://cso-ci.siluzan.com/v3/foreign_trade/settings/apiKeyManagement`
48
48
 
49
49
  **Token 读取优先级(由高到低):**
50
50
  1. 环境变量 `SILUZAN_AUTH_TOKEN`(CI/CD 推荐)
@@ -63,8 +63,8 @@ siluzan-cso config show
63
63
  输出示例:
64
64
  ```
65
65
  构建环境 : production
66
- apiBaseUrl : https://api.siluzan.com
67
- csoBaseUrl : https://cso.siluzan.com
66
+ apiBaseUrl : https://api-ci.siluzan.com
67
+ csoBaseUrl : https://cso-ci.siluzan.com
68
68
  apiKey : abcd****1234
69
69
  ```
70
70
 
@@ -1,7 +1,7 @@
1
1
  # web-pages — CSO 后台页面速查
2
2
 
3
3
  > 当需要引导用户前往网页端查看数据或执行操作时,使用本文件中的页面链接。
4
- > URL 格式:`https://www.siluzan.com/v3/foreign_trade/cso/{页面路径}`
4
+ > URL 格式:`https://www-ci.siluzan.com/v3/foreign_trade/cso/{页面路径}`
5
5
 
6
6
  ---
7
7
 
@@ -11,9 +11,9 @@
11
11
 
12
12
  | 页面 | 完整链接 | 功能说明 |
13
13
  |------|----------|----------|
14
- | 账号管理 | `https://www.siluzan.com/v3/foreign_trade/cso/ManageAccounts` | 绑定/授权/查看媒体账号列表、账号状态、Token 到期时间 |
15
- | 账号分组 | `https://www.siluzan.com/v3/foreign_trade/cso/AccountGroup` | 新建分组、管理分组内账号 |
16
- | 重点账号 | `https://www.siluzan.com/v3/foreign_trade/cso/KeyAccounts` | 配置重点关注账号、数据备份 |
14
+ | 账号管理 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/ManageAccounts` | 绑定/授权/查看媒体账号列表、账号状态、Token 到期时间 |
15
+ | 账号分组 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/AccountGroup` | 新建分组、管理分组内账号 |
16
+ | 重点账号 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/KeyAccounts` | 配置重点关注账号、数据备份 |
17
17
 
18
18
 
19
19
  ---
@@ -22,10 +22,10 @@
22
22
 
23
23
  | 页面 | 完整链接 | 功能说明 |
24
24
  |------|----------|----------|
25
- | 发布作品 | `https://www.siluzan.com/v3/foreign_trade/cso/postVideo?contentType=1` | 矩阵发布视频、图文、草稿管理、话题组 contentType=1 是视频,contentType=2是图文 |
25
+ | 发布作品 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/postVideo?contentType=1` | 矩阵发布视频、图文、草稿管理、话题组 contentType=1 是视频,contentType=2是图文 |
26
26
 
27
- | 发布日历 | `https://www.siluzan.com/v3/foreign_trade/cso/publishCalendar` | 日历视图规划发布任务、创建/编辑发布任务 |
28
- | 营销日历 | `https://www.siluzan.com/v3/foreign_trade/cso/marketingCalendar` | 营销节点日历、跳转创建发布任务 |
27
+ | 发布日历 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/publishCalendar` | 日历视图规划发布任务、创建/编辑发布任务 |
28
+ | 营销日历 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/marketingCalendar` | 营销节点日历、跳转创建发布任务 |
29
29
 
30
30
  ---
31
31
 
@@ -33,10 +33,10 @@
33
33
 
34
34
  | 页面 | 完整链接 | 功能说明 |
35
35
  |------|----------|----------|
36
- | 任务列表 | `https://www.siluzan.com/v3/foreign_trade/cso/task` | 发布任务列表、状态筛选、任务详情抽屉 |
37
- | 视频管理 | `https://www.siluzan.com/v3/foreign_trade/cso/VideoMgr` | 已发布视频/图文列表、删除、重发、评论查看 |
38
- | 视频搬家 | `https://www.siluzan.com/v3/foreign_trade/cso/relocation` | 将视频搬运到其他平台 |
39
- | 搬家记录 | `https://www.siluzan.com/v3/foreign_trade/cso/MovingRecord` | 搬家任务列表与执行状态 |
36
+ | 任务列表 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/task` | 发布任务列表、状态筛选、任务详情抽屉 |
37
+ | 视频管理 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/VideoMgr` | 已发布视频/图文列表、删除、重发、评论查看 |
38
+ | 视频搬家 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/relocation` | 将视频搬运到其他平台 |
39
+ | 搬家记录 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/MovingRecord` | 搬家任务列表与执行状态 |
40
40
 
41
41
  ---
42
42
 
@@ -44,9 +44,9 @@
44
44
 
45
45
  | 页面 | 完整链接 | 功能说明 |
46
46
  |------|----------|----------|
47
- | 私信管理 | `https://www.siluzan.com/v3/foreign_trade/cso/letter` | 按渠道/时间查看与处理私信(多平台 Tab) |
48
- | 评论管理 | `https://www.siluzan.com/v3/foreign_trade/cso/comment` | 收到的评论列表、回复、账号组筛选 |
49
- | 智能互动 | `https://www.siluzan.com/v3/foreign_trade/cso/interaction` | 私信欢迎语、自动回复规则配置 |
47
+ | 私信管理 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/letter` | 按渠道/时间查看与处理私信(多平台 Tab) |
48
+ | 评论管理 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/comment` | 收到的评论列表、回复、账号组筛选 |
49
+ | 智能互动 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/interaction` | 私信欢迎语、自动回复规则配置 |
50
50
 
51
51
  ---
52
52
 
@@ -54,9 +54,9 @@
54
54
 
55
55
  | 页面 | 完整链接 | 功能说明 |
56
56
  |------|----------|----------|
57
- | 作品数据 | `https://www.siluzan.com/v3/foreign_trade/cso/Workdata` | 作品维度统计、图表、明细(对应 CLI `report fetch`) |
58
- | 账户数据 | `https://www.siluzan.com/v3/foreign_trade/cso/accountdata` | 账户维度汇总数据、趋势图表 |
59
- | 绩效报表 | `https://www.siluzan.com/v3/foreign_trade/cso/table` | 多维度绩效报表、PDF 导出(对应 CLI `report fetch/records/download`) |
57
+ | 作品数据 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/Workdata` | 作品维度统计、图表、明细(对应 CLI `report fetch`) |
58
+ | 账户数据 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/accountdata` | 账户维度汇总数据、趋势图表 |
59
+ | 绩效报表 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/table` | 多维度绩效报表、PDF 导出(对应 CLI `report fetch/records/download`) |
60
60
 
61
61
  ---
62
62
 
@@ -64,10 +64,10 @@
64
64
 
65
65
  | 页面 | 完整链接 | 功能说明 |
66
66
  |------|----------|----------|
67
- | 内容规划 | `https://www.siluzan.com/v3/foreign_trade/cso/planning` | AI 内容规划列表、生成规划、企业维度筛选(对应 CLI `planning`) |
68
- | 营销首页 | `https://www.siluzan.com/v3/foreign_trade/cso/ContentHome` | 工作台总览:账号数、视频数、最新评论与视频 |
67
+ | 内容规划 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/planning` | AI 内容规划列表、生成规划、企业维度筛选(对应 CLI `planning`) |
68
+ | 营销首页 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/ContentHome` | 工作台总览:账号数、视频数、最新评论与视频 |
69
69
 
70
- | 话题组 | `https://www.siluzan.com/v3/foreign_trade/cso/TopicGroup` | 话题组维护、话题内容管理 |
70
+ | 话题组 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/TopicGroup` | 话题组维护、话题内容管理 |
71
71
 
72
72
 
73
73
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "siluzan-cso-cli",
3
- "version": "1.0.2",
3
+ "version": "1.1.8-beta.1",
4
4
  "description": "Siluzan platform AI Skill CLI — multi-platform content publishing (video/image-text) for Cursor, Claude Code, and OpenClaw.",
5
5
  "type": "module",
6
6
  "bin": {