siluzan-cso-cli 1.0.0-beta.41 → 1.0.1-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
@@ -20,7 +20,7 @@ siluzan-cso init -d /path/to/skills # 写入自定义目录
20
20
  siluzan-cso init --force # 强制覆盖已存在文件
21
21
  ```
22
22
 
23
- > **注意**:当前为测试版(1.0.0-beta.41),供内部测试使用。正式发布后安装命令将改为 `npm install -g siluzan-cso-cli`。
23
+ > **注意**:当前为测试版(1.0.1-beta.1),供内部测试使用。正式发布后安装命令将改为 `npm install -g siluzan-cso-cli`。
24
24
 
25
25
  | 助手 | 建议 `--ai` |
26
26
  |------|-------------|
package/dist/index.js CHANGED
@@ -3126,7 +3126,7 @@ function loadConfig(tokenArg) {
3126
3126
  process.exit(1);
3127
3127
  }
3128
3128
  setSiluzanCliMeta("siluzan-cso", getCurrentVersion2());
3129
- return { apiBaseUrl, csoBaseUrl, agentBaseUrl, authToken, apiKey };
3129
+ return { apiBaseUrl, csoBaseUrl, agentBaseUrl, authToken, apiKey, dataPermission: shared.dataPermission };
3130
3130
  }
3131
3131
  function apiFetch2(url, config, options = {}, verbose = false) {
3132
3132
  return apiFetch(url, config, options, verbose);
@@ -6018,6 +6018,7 @@ async function runTaskDetail(options) {
6018
6018
  return;
6019
6019
  }
6020
6020
  const columns = [
6021
+ { key: "id", header: "\u9879\u76EEID" },
6021
6022
  { key: "mediaType", header: "\u5A92\u4F53" },
6022
6023
  { key: "account", header: "\u8D26\u53F7" },
6023
6024
  { key: "title", header: "\u6807\u9898" },
@@ -6026,6 +6027,7 @@ async function runTaskDetail(options) {
6026
6027
  { key: "remark", header: "\u5907\u6CE8/\u5931\u8D25\u539F\u56E0" }
6027
6028
  ];
6028
6029
  const rows = list.map((item) => ({
6030
+ id: String(item.id ?? "-"),
6029
6031
  mediaType: String(item.mediaType ?? "-"),
6030
6032
  account: String(item.mediaCustomerName ?? item.mediaCustomerId ?? "-"),
6031
6033
  title: item.title ? item.title.length > 20 ? item.title.slice(0, 20) + "\u2026" : item.title : "-",
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "slug": "siluzan-cso",
3
- "version": "1.0.0-beta.41",
4
- "publishedAt": 1775619518051
3
+ "version": "1.0.1-beta.1",
4
+ "publishedAt": 1775630073904
5
5
  }
@@ -14,7 +14,7 @@
14
14
  | 账号管理 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/ManageAccounts` | 绑定/授权/查看媒体账号列表、账号状态、Token 到期时间 |
15
15
  | 账号分组 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/AccountGroup` | 新建分组、管理分组内账号 |
16
16
  | 重点账号 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/KeyAccounts` | 配置重点关注账号、数据备份 |
17
- | 账号体检 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/check` | 账号健康度体检报告、新建体检任务 |
17
+
18
18
 
19
19
  ---
20
20
 
@@ -66,9 +66,9 @@
66
66
  |------|----------|----------|
67
67
  | 内容规划 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/planning` | AI 内容规划列表、生成规划、企业维度筛选(对应 CLI `planning`) |
68
68
  | 营销首页 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/ContentHome` | 工作台总览:账号数、视频数、最新评论与视频 |
69
- | 平台内容检索 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/web-search` | 关键词检索平台公开内容、筛选排序 |
69
+
70
70
  | 话题组 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/TopicGroup` | 话题组维护、话题内容管理 |
71
- | 企业词库 | `https://www-ci.siluzan.com/v3/foreign_trade/cso/words` | 词库列表、新建/编辑/删除关键词 |
71
+
72
72
 
73
73
  ---
74
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "siluzan-cso-cli",
3
- "version": "1.0.0-beta.41",
3
+ "version": "1.0.1-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": {