Releases: yzailab/delta-infra-cli
Releases · yzailab/delta-infra-cli
v1.0.36
v1.0.34
v1.0.33
v1.0.32
v1.0.31
v1.0.30
v1.0.30
Fix: gh-proxy.com mirror for skills install
- install-wizard.js: try gh-proxy.com mirror first for skills installation, then fall back to GitHub direct. This bypasses GitHub access issues in China.
- Binary version strings now correctly report v1.0.30 (was dirty)
v1.0.29
v1.0.29
Fix: version resolution from npx cache
install.js now resolves the download version via:
DELTA_CLI_VERSION env var > npm registry > local package.json (fallback)
This prevents npx cache from serving stale versions when the cached package.json has an old version number.
install-wizard.js: after npm install -g, explicitly re-runs install.js with the correct version from registry.
run.js: passes DELTA_CLI_VERSION env var to install.js.
v1.0.28
v1.0.28
Quality alignment with lark-cli patterns
- install.js: curl-first downloads,
--ssl-revoke-best-effortfor Windows (avoids CRYPT_E_REVOCATION_OFFLINE), streaming SHA256 verification, improved error messages - install-wizard.js:
@clack/promptsinteractive UI, i18n (zh/en), 4-step wizard (global install → skills → config init → auth login), uninstall flow (config rm → skills rm → package rm) - run.js: old binary recovery on Windows (restore from
.oldon crash), cleaner auto-download fallback - package.json: add
@clack/promptsdependency
v1.0.27
v1.0.27
New: npx Install/Uninstall Flow
npx @delta-infra/cli@latest install
``"
Single command to install global binary + AI skills + config + auth.
Also available: `npx @delta-infra/cli@latest uninstall`.
### Changes
- npx exec guard in `install.js`: skip binary download when invoked via npx
- `run.js`: intercept `install`/`uninstall` args, delegate to `install-wizard.js`
- `install-wizard.js`: 4-step install (global install, skills, config, auth) + 3-step uninstall
- README: document new npx install/uninstall as primary method
- release.sh: sync run.js and install-wizard.js to GitHub