diff --git a/docs/agent-setup.md b/docs/agent-setup.md index d9cb832..b4e68fe 100644 --- a/docs/agent-setup.md +++ b/docs/agent-setup.md @@ -38,6 +38,8 @@ Cortex Cowork 的市场安装由现有 Host 管理 skill 和对应 CLI,采用 `--version` 低于需要的版本时,重新运行同一安装入口,带上原来的 `--agent`、`--scope`、`--project`。安装脚本先把新 CLI 放到位,再用新 CLI 安装 skill:之前正式发布的 skill 自动更新为 `updated`;遇到 `skill_conflict` 时 CLI 已经升级,只有 skill 未写入,确认替换后加 `--replace-skill` / `-ReplaceSkill` 重跑。 +之前手动导入过组织知识类 skill(例如 `organization-knowledge`)的,安装 `cortex-org-wiki` 后在宿主中删除旧 skill,避免两份 Wiki 指令同时加载;它不是本仓的正式发布,安装脚本不会自动替换或删除它。 + ## 安装后检查 成功时 stdout 只有一行 JSON,进度在 stderr: diff --git a/package-lock.json b/package-lock.json index f4df4bf..b3a2572 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hiq-ai/cortex-org-wiki-cli", - "version": "0.1.4", + "version": "0.1.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@hiq-ai/cortex-org-wiki-cli", - "version": "0.1.4", + "version": "0.1.5", "license": "Apache-2.0", "dependencies": { "qrcode-terminal": "^0.12.0", diff --git a/package.json b/package.json index 9d538b1..3e6631a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hiq-ai/cortex-org-wiki-cli", - "version": "0.1.4", + "version": "0.1.5", "description": "Read your Cortex organization's published Wiki with versioned source citations.", "type": "module", "bin": { "cortex-org-wiki": "./dist/cli.js" }, diff --git a/src/version.ts b/src/version.ts index e589cf9..874ae2a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,2 +1,2 @@ /** Generated from package.json. */ -export const VERSION = "0.1.4"; +export const VERSION = "0.1.5";