Skip to content

Releases: jianga0801-ui/miko

v2026.6.8

Choose a tag to compare

@jianga0801-ui jianga0801-ui released this 08 Jun 10:47

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

v2026.6.7-4

Choose a tag to compare

@jianga0801-ui jianga0801-ui released this 07 Jun 15:37

Miko v2026.6.7-4

更新内容

  • 国际化:TUI 界面「点击展开/收起」提示已汉化为中文
  • 核心改进:增强状态管理、目录系统和文件系统
  • MCP 工具:更新 MCP 命令处理和对话框提供者
  • 编辑工具:改进编辑和任务工具的错误处理
  • 测试覆盖:更新测试套件,改进覆盖率和快照

Changelog

  • i18n: Localize 'Click to expand/collapse' hints to Chinese in TUI
  • Core: Improve state management with enhanced catalog and filesystem
  • MCP: Update MCP command handling and dialog provider
  • Tools: Enhance edit and task tools with better error handling
  • Tests: Update test suite with improved coverage and snapshots

安装 / Installation

# Linux x64
curl -fsSL https://github.com/jianga0801-ui/miko/releases/download/v2026.6.7-4/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.7-4/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.7-4/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.7-4/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.7-4/miko-windows-x64.zip -OutFile miko.zip
Expand-Archive miko.zip -DestinationPath C:\miko

v2026.6.7-3

Choose a tag to compare

@github-actions github-actions released this 07 Jun 11:32

Miko v2026.6.7-3

更新说明

本次发布包含以下优化与修复:

🛠 修复与优化

  • 配置 Schema 404 修复:在仓库根目录中加入了 config.jsontui.json 的 JSON Schema 定义,修复了编辑器(如 VS Code / Zed)加载配置校验 schema 链接时报 404 错误的问题。

🌐 国际化与本地化

  • 汉化 TUI 复制与异常提示
    • 选区与控制台复制汉化:汉化了控制台及普通选区复制成功的提示,在中文语言下正常显示 "已复制到剪贴板"
    • 工作区路径复制提示:汉化了复制工作树路径成功的提示,在中文语言下正常显示 "已复制工作树路径"
    • 致命错误界面汉化:对 fatal 异常显示界面(ErrorComponent)进行了完整汉化,包括 "Please report an issue."请报告此问题。)、"Copy issue URL"复制 Issue 链接)、"Successfully copied"复制成功)、"A fatal error occurred!"发生致命错误!)、"Reset TUI"重置 TUI)和 "Exit"退出)等文本提示。

Changelog

This release includes the following fixes and optimizations:

🛠 Bug Fixes & Optimizations

  • Config Schema 404 Fix: Included the config.json and tui.json JSON schema definitions in the root of the repository, fixing the 404 error when editors like VS Code or Zed fetch the schema links.

🌐 Internationalization & Localization

  • Localized TUI Copy & Error Screen:
    • Console & Selection Copy: Localized the copy success messages to display "已复制到剪贴板" under Chinese locales.
    • Workspace Path Copy: Localized the worktree path copy toast to display "已复制工作树路径" under Chinese locales.
    • Fatal Error Screen Localization: Translated all UI text labels on the fatal error screen (ErrorComponent) such as "Please report an issue.", "Copy issue URL", "Successfully copied", "A fatal error occurred!", "Reset TUI", and "Exit" into Chinese.

v2026.6.7-2

Choose a tag to compare

@github-actions github-actions released this 06 Jun 17:32

Miko v2026.6.7-2

v2026.6.7

Choose a tag to compare

@jianga0801-ui jianga0801-ui released this 06 Jun 16:46

Miko v2026.6.7

更新说明

本次发布包含以下优化与修复:

🛠 功能与界面修复

  • TUI 快捷键提示修复:修复了在 TUI 中禁用 which-key 插件时,底部状态栏快捷键提示(如 "show shortcuts: F1")依然显示的问题,现在提示能随插件启用状态正常显示/隐藏。
  • Windows "打开编辑器" 修复:在 Windows 环境下,若未设置 VISUALEDITOR 环境变量,打开编辑器命令现在会默认使用 Notepad(记事本),避免由于变量未设置而静默无响应。
  • 插件光标抖动/跳跃修复:移除了插件当前选择的反馈循环逻辑,彻底解决编辑时可能导致光标异常跳跃的问题。
  • 退出界面排版微调:优化了会话退出界面的间距对齐,通过显示宽度进行填充对齐,使中文和英文界面的排版格式保持一致。

🌐 国际化与本地化

  • 扩展中文本地化:补充和丰富了对话框、Compaction 底部栏、主题设置(如 "主题")等区域的中文本地化文本。

Changelog

This release includes the following fixes and optimizations:

🛠 Bug Fixes & UI Polish

  • TUI shortcuts hint fix: Hide the home which-key footer hint (e.g., "show shortcuts: F1") when the which-key plugin is disabled.
  • Windows "Open editor" fix: Fall back to Notepad on win32 when neither VISUAL nor EDITOR environment variables are set, preventing silent failures.
  • Plugin cursor jump fix: Dropped the current-selection feedback loop in plugins that previously caused the cursor to jump erratically.
  • Exit screen layout polish: Pad labels on the session exit screen by display width so spacing aligns consistently between Chinese and English locales.

🌐 Internationalization & Localization

  • Expanded Chinese localization: Added missing translations for dialogs, compaction footer, and theme options (e.g., "主题" for Theme).

v2026.6.6

Choose a tag to compare

@github-actions github-actions released this 06 Jun 14:36

Miko v2026.6.6

v2026.6.5

Choose a tag to compare

@github-actions github-actions released this 05 Jun 20:31

Miko v2026.6.5

v2026.6.4

Choose a tag to compare

@github-actions github-actions released this 04 Jun 12:08

Miko v2026.6.4

v0.2.1

Choose a tag to compare

@github-actions github-actions released this 03 Jun 12:32

Miko v0.2.1

v0.2.0

Choose a tag to compare

@github-actions github-actions released this 02 Jun 12:47

Miko v0.2.0