@coze/cli 0.3.1-alpha.ae71a9 → 0.3.1-alpha.dd69c1

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
@@ -824,7 +824,7 @@ coze config set upgrade.mode off # disable upgrade checks entirely
824
824
  coze config set upgrade.channel beta # track the beta channel
825
825
  ```
826
826
 
827
- Upgrade checks are automatically skipped in CI (the `CI` env var is set), for dev/local builds, and when `COZE_CLI_NO_UPDATE_NOTIFIER` is set. Version checks are throttled to at most once every **4 hours**; a failed background upgrade is retried at most once every **10 minutes**. In JSON output the hint is attached as `_notice.update` with a ready-to-run `command` field. See [`docs/auto-upgrade.md`](docs/auto-upgrade.md) for details.
827
+ Upgrade checks are automatically skipped in CI (the `CI` env var is set), for dev/local builds, and when `COZE_CLI_NO_UPDATE_NOTIFIER` is set. Version checks are throttled to at most once every **4 hours**; a failed background upgrade is retried at most once every **10 minutes**. In JSON output the hint is attached as `_notice.update` with a ready-to-run `command` field. See [`docs/design/auto-upgrade-and-skill-sync.md`](docs/design/auto-upgrade-and-skill-sync.md) for the full auto-upgrade and bundled-skill design.
828
828
 
829
829
  ### Other Commands
830
830
 
@@ -27,7 +27,7 @@ try {
27
27
  const cyan = text => (useColor ? `[36m${text}[0m` : text);
28
28
 
29
29
  // 通过包内 CLI 入口走真实的 `coze self skill install` 代码路径(skipAuth,纯本地:
30
- // 释放 bundled skills ~/.coze/cli/skills 并软链到已安装的 AI agents)。
30
+ // 委托 skills 工具把 bundled skills 拷入中心池 ~/.agents/skills 并软链到已安装的 AI agents)。
31
31
  // 用户改过的 skill 不会被覆盖(sync 默认不带 --force 即阻止)。
32
32
  const result = spawnSync(
33
33
  process.execPath,