Skip to content

v2026.6.8

Latest

Choose a tag to compare

@jianga0801-ui jianga0801-ui released this 08 Jun 10:47
· 2 commits to main since this release

Miko v2026.6.8

更新内容

  • 自动批准模式:在权限服务中新增 auto-approve 模式,开启后自动批准所有工具调用,无需逐次确认
  • HTTP API:新增 POST /permission/mode 接口,支持通过 API 切换权限模式
  • TUI 同步:切换自动批准开关或启动时,自动同步模式状态至服务端
  • 工具名称国际化:为全部 56 个工具名称、状态字符串及权限对话框标题添加中英文翻译(Shell / Write / Read / Glob / Grep / WebFetch / WebSearch / Edit / ApplyPatch / TodoWrite / Question / Skill / Task 等)

Changelog

  • Auto-Approve Mode: New auto-approve permission mode — when enabled, all tool calls are approved automatically without per-call confirmation
  • HTTP API: Added POST /permission/mode endpoint for programmatic permission mode switching
  • TUI Sync: Auto-approve mode is synced to the server on toggle and at startup
  • Tool Name i18n: Added 56 translation keys for tool names, status strings, and permission dialog titles in English and Chinese (Shell / Write / Read / Glob / Grep / WebFetch / WebSearch / Edit / ApplyPatch / TodoWrite / Question / Skill / Task, etc.)

安装 / Installation

# Linux x64
curl -fsSL https://github.com/jianga0801-ui/miko/releases/download/v2026.6.8/miko-linux-x64.tar.gz | tar xz
sudo mv miko /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/jianga0801-ui/miko/releases/download/v2026.6.8/miko-linux-arm64.tar.gz | tar xz
sudo mv miko /usr/local/bin/

# macOS (Apple Silicon)
curl -fsSL https://github.com/jianga0801-ui/miko/releases/download/v2026.6.8/miko-darwin-arm64.zip -o miko.zip
unzip miko.zip && sudo mv miko /usr/local/bin/

# macOS (Intel)
curl -fsSL https://github.com/jianga0801-ui/miko/releases/download/v2026.6.8/miko-darwin-x64.zip -o miko.zip
unzip miko.zip && sudo mv miko /usr/local/bin/

# Windows (PowerShell)
Invoke-WebRequest -Uri https://github.com/jianga0801-ui/miko/releases/download/v2026.6.8/miko-windows-x64.zip -OutFile miko.zip
Expand-Archive miko.zip -DestinationPath C:\miko