Skip to content

Releases: Shadow-Azure/cli-box

v0.2.2

Choose a tag to compare

@Shadow-Azure Shadow-Azure released this 07 Jun 13:47
abed26f

v0.2.2 Release

Bug Fixes

  • fix(npm): add .npmignore to platform packages to include binaries (#31)
  • fix(test): add timeout to E2E functional test to prevent hanging

What's Changed

  • Platform packages (cli-box-darwin-arm64, cli-box-electron-darwin-arm64) now include binaries when published to npm
  • E2E skill installation tests no longer hang when Electron cannot start

Installation

npm install -g cli-box-skill

Quick Start

cli-box start claude
cli-box start zsh
cli-box list

v0.2.0

Choose a tag to compare

@Shadow-Azure Shadow-Azure released this 07 Jun 15:01

cli-box v0.2.0

New Features

  • Connection Recovery: CLI now automatically detects and kills stale Electron processes when renderer fails to connect
  • Port Change Detection: Electron renderer now detects daemon port changes on WebSocket reconnect

Bug Fixes

  • Fixed cli-box start hanging when Electron renderer fails to connect to daemon WebSocket
  • Fixed renderer not reconnecting after daemon restart on different port

Improvements

  • Added kill_stale_electron() helper for better process management
  • Added unit tests for connection recovery logic

Installation

npx cli-box-skill install

Direct Download

v0.2.1

Choose a tag to compare

@Shadow-Azure Shadow-Azure released this 06 Jun 11:46
4658083

What's Changed

  • feat(screenshot): --with-frame, relative paths, tab switching, readiness wait by @Shadow-Azure in #26
  • fix(capture,cli): screenshot size, auto input routing, startup readiness by @Shadow-Azure in #27
  • docs: remove stale --pty references by @Shadow-Azure in #28
  • chore: update GitHub repo path from ZN-Ice to Shadow-Azure by @Shadow-Azure in #29
  • chore: bump npm packages to 0.2.1 by @Shadow-Azure in #30

Full Changelog: v0.0.1...v0.2.1

v0.0.1

Choose a tag to compare

@Shadow-Azure Shadow-Azure released this 05 Jun 00:04
6a6f428

v0.0.1 — 首个正式版本

安装方式

# npm (推荐)
npm install -g cli-box-skill

# Shell
bash <(curl -fsSL https://raw.githubusercontent.com/ZN-Ice/cli-box/main/skill/install.sh)

# 手动下载
# 见下方 Assets

使用方法

cli-box start claude    # 启动 Claude Code 沙箱
cli-box start zsh       # 启动 Shell 沙箱
cli-box list            # 列出沙箱
cli-box screenshot --id <id> -o shot.png  # 截图
cli-box close <id>      # 关闭沙箱

主要变更

  • 发布流水线:release.sh + release.yml 自动构建发布
  • npm 安装支持:optionalDependencies 自动匹配平台
  • E2E 测试:skill 安装流程自动化测试
  • 文档:英文/中文 README 重写