Skip to content

Releases: MaimoryLab/AI-Inbox

AI-Inbox v0.1.3

Choose a tag to compare

@yujiezhang-ops yujiezhang-ops released this 08 Jul 04:02

AI-Inbox v0.1.3

AI-Inbox v0.1.3 improves the first-run extraction experience: the app now checks source paths, available session content, LLM protocol, endpoint, API key, model access, and a tiny generation request before running a full organize pass.

Highlights

  • Adds a preflight check before Organize so configuration problems are caught before a full LLM request.
  • Adds LLM protocol selection for OpenAI Chat Completions, OpenAI Responses, and Anthropic Messages.
  • Removes the remaining local token requirement from local workspace write APIs.
  • Makes failed checks readable in the UI, with green pass states and red failure states.

Added

  • ai-inbox preflight [--json] for CLI diagnostics.
  • ai-inbox config get [--json] and ai-inbox config set for the same settings exposed in the UI.
  • AI_INBOX_LLM_PROTOCOL configuration, with legacy AI_INBOX_LLM_PROVIDER=openai mapped to openai-chat.
  • POST /diagnostics/preflight for local UI diagnostics.
  • OpenAI Responses and Anthropic Messages support in the LLM extraction runner.

Changed

  • The default extraction protocol remains OpenAI Chat, with the existing Novita-compatible default model deepseek/deepseek-v4-flash.
  • Settings now keeps advanced LLM fields behind the advanced section, including protocol, endpoint, model, timeout, and API key.
  • Endpoint validation text now says it checks for a valid URL; provider reachability is verified by the model and tiny generation probes.
  • doctor now reports the configured LLM protocol and points users toward ai-inbox preflight for live checks.

Fixed

  • Incorrect API key or provider errors no longer require users to hunt for a diagnostics page; the organize history and settings test show the actionable failure reason directly.
  • Settings and organize write paths no longer fail with a stale local-token Forbidden state.

Compatibility

  • Existing config files continue to work.
  • Existing OpenAI-compatible setups continue to use openai-chat unless AI_INBOX_LLM_PROTOCOL is set.
  • No database schema migration is required for this release.

Downloads

The release zip remains the recommended install path:

  • macOS Apple Silicon: ai-inbox-macos-arm64.zip
  • Windows x64: ai-inbox-windows-x64.zip

Start AI-Inbox with:

ai-inbox start

Then open http://127.0.0.1:3111/.


AI-Inbox v0.1.3 中文说明

AI-Inbox v0.1.3 改善了首次整理前的配置体验:在执行完整整理之前,应用会先检测来源路径、可整理会话内容、LLM 协议、Endpoint、API key、模型访问能力和一次极小的生成请求。

重点变化

  • 点击 整理 前新增预检,先发现配置问题,避免无意义的完整 LLM 请求。
  • 新增 LLM 协议选择:OpenAI Chat Completions、OpenAI Responses、Anthropic Messages。
  • 移除本地工作台写接口中残留的 local token 要求。
  • UI 中的检查结果改为人类可读文案:通过项绿色显示,失败项红色显示。

新增

  • ai-inbox preflight [--json] CLI 诊断命令。
  • ai-inbox config get [--json]ai-inbox config set,覆盖 UI 中可配置的同一批设置。
  • AI_INBOX_LLM_PROTOCOL 配置项;旧的 AI_INBOX_LLM_PROVIDER=openai 会自动映射为 openai-chat
  • POST /diagnostics/preflight 本地诊断接口。
  • LLM 抽取链路支持 OpenAI Responses 和 Anthropic Messages。

变更

  • 默认抽取协议仍是 OpenAI Chat,默认模型仍是 deepseek/deepseek-v4-flash
  • Settings 中的协议、Endpoint、模型、timeout、API key 等仍放在高级 LLM 配置区。
  • Endpoint 检测文案明确为“有效 URL”;provider 是否可用由模型列表和极小生成请求继续验证。
  • doctor 现在会显示 LLM protocol,并提示使用 ai-inbox preflight 做真实链路检测。

修复

  • API key 或 provider 错误会直接显示在整理历史和设置测试结果里,不再引导用户寻找不存在的诊断页。
  • Settings 保存、整理等本地写操作不再因为旧 local token 状态返回 Forbidden

兼容性

  • 现有配置文件继续可用。
  • 现有 OpenAI-compatible 配置默认继续走 openai-chat,除非显式设置 AI_INBOX_LLM_PROTOCOL
  • 本版本不需要数据库 schema 迁移。

下载

推荐继续使用 release zip:

  • macOS Apple Silicon:ai-inbox-macos-arm64.zip
  • Windows x64:ai-inbox-windows-x64.zip

启动:

ai-inbox start

然后打开 http://127.0.0.1:3111/

AI-Inbox v0.1.2

Choose a tag to compare

@yujiezhang-ops yujiezhang-ops released this 03 Jul 09:40

AI-Inbox v0.1.2

AI-Inbox v0.1.2 replaces the broken npm / MSI / DMG release path with platform zip downloads.

The current issue is practical: the npm package is not available as a working public install path yet, and the MSI / DMG wrappers add installer and desktop-shell failure points around a CLI that should be easy to diagnose. This release publishes the runnable CLI directly in a zip archive.

Downloads

  • macOS Apple Silicon: ai-inbox-macos-arm64.zip
  • Windows x64: ai-inbox-windows-x64.zip

Start

macOS:

unzip ai-inbox-macos-arm64.zip
cd ai-inbox-macos-arm64
./ai-inbox start

Windows PowerShell:

Expand-Archive .\ai-inbox-windows-x64.zip
cd .\ai-inbox-windows-x64
.\ai-inbox.exe start

AI-Inbox opens a local browser workspace at 127.0.0.1:3111 by default. Configure source paths and your OpenAI-compatible LLM key in Settings, then click Organize.

Notes

  • No Node.js install is required for the release zip.
  • The default no-argument binary behavior is also start.
  • Config and data are stored under ~/.ai-inbox by default, or under AI_INBOX_HOME if you override it.
  • The binaries are currently unsigned, so macOS Gatekeeper or Windows Defender may ask for confirmation on first run.

AI-Inbox v0.1.2 中文说明

AI-Inbox v0.1.2 将不可用的 npm / MSI / DMG 发布路径替换为平台 zip 下载。

当前问题很直接:npm 包还不是一个可用的公开安装路径,MSI / DMG 又在本来可直接运行的 CLI 外面增加了安装器和桌面壳失败点。这个版本改为直接发布可运行 CLI 的 zip 压缩包。

下载

  • macOS Apple Silicon:ai-inbox-macos-arm64.zip
  • Windows x64:ai-inbox-windows-x64.zip

启动

macOS:

unzip ai-inbox-macos-arm64.zip
cd ai-inbox-macos-arm64
./ai-inbox start

Windows PowerShell:

Expand-Archive .\ai-inbox-windows-x64.zip
cd .\ai-inbox-windows-x64
.\ai-inbox.exe start

AI-Inbox 默认会在 127.0.0.1:3111 打开本地浏览器工作台。请在 Settings 中配置 source paths 和 OpenAI-compatible LLM key,然后点击 Organize

说明

  • Release zip 不需要安装 Node.js。
  • 二进制不带参数运行时也会默认执行 start
  • 配置和数据默认保存在 ~/.ai-inbox,也可以通过 AI_INBOX_HOME 覆盖。
  • 当前二进制尚未签名,macOS Gatekeeper 或 Windows Defender 可能会在首次运行时要求确认。

AI-Inbox v0.1.1

Choose a tag to compare

@yujiezhang-ops yujiezhang-ops released this 03 Jul 09:08

AI-Inbox v0.1.1

AI-Inbox v0.1.1 switches the public desktop download path from zipped command-line binaries to platform installers.

AI-Inbox is a local-first workspace for reviewing follow-up cards extracted from Codex and Claude Code sessions. The installers bundle the AI-Inbox runtime and web UI assets, so desktop users do not need to install Node.js.

Downloads

  • macOS Apple Silicon: ai-inbox-macos-arm64.dmg
  • Windows x64: ai-inbox-windows-x64.msi

Start

  • macOS: open the DMG, then open AI-Inbox.app.
  • Windows: run the MSI, then open AI-Inbox from the Start menu.

AI-Inbox opens a local browser workspace at 127.0.0.1:3111 by default. Configure source paths and your OpenAI-compatible LLM key in Settings, then click Organize.

Notes

  • The CLI command is now ai-inbox start. The old ai-inbox open command remains as a hidden compatibility alias.
  • Config and data are stored under ~/.ai-inbox by default, or under AI_INBOX_HOME if you override it.
  • The installers are currently unsigned, so macOS Gatekeeper or Windows Defender may ask for confirmation on first launch.
  • CI builds and verifies the installers on macOS and Windows with Node 22.x.

AI-Inbox v0.1.1 中文说明

AI-Inbox v0.1.1 将桌面下载方式从 zip 命令行二进制切换为平台安装器。

AI-Inbox 是一个本地优先的工作台,用于复查从 Codex 和 Claude Code 会话中整理出的后续事项卡片。安装器已包含 AI-Inbox 运行时和 Web UI 静态资源,桌面用户不需要安装 Node.js。

下载

  • macOS Apple Silicon:ai-inbox-macos-arm64.dmg
  • Windows x64:ai-inbox-windows-x64.msi

启动

  • macOS:打开 DMG,然后打开 AI-Inbox.app
  • Windows:运行 MSI,然后从开始菜单打开 AI-Inbox

AI-Inbox 默认会在 127.0.0.1:3111 打开本地浏览器工作台。请在 Settings 中配置 source paths 和 OpenAI-compatible LLM key,然后点击 Organize

说明

  • CLI 命令已改为 ai-inbox start。旧的 ai-inbox open 仍作为隐藏兼容别名保留。
  • 配置和数据默认保存在 ~/.ai-inbox,也可以通过 AI_INBOX_HOME 覆盖。
  • 当前安装器尚未签名,macOS Gatekeeper 或 Windows Defender 可能会在首次运行时要求确认。
  • CI 会在 Node 22.x 上构建并验证 macOS 和 Windows 安装器。

AI-Inbox v0.1.0

Choose a tag to compare

@yujiezhang-ops yujiezhang-ops released this 03 Jul 04:29

AI-Inbox v0.1.0 is the first downloadable binary release.

AI-Inbox is a local-first workspace for reviewing follow-up cards extracted from Codex and Claude Code sessions. These release zips include the AI-Inbox binary and bundled web UI assets, so users do not need to install Node.js.

Downloads

  • macOS Apple Silicon: ai-inbox-macos-arm64.zip
  • Windows x64: ai-inbox-windows-x64.zip
  • Checksums: SHA256SUMS.txt

Start

macOS:

unzip ai-inbox-macos-arm64.zip
cd ai-inbox-macos-arm64
./ai-inbox open

Windows PowerShell:

Expand-Archive .\ai-inbox-windows-x64.zip
cd .\ai-inbox-windows-x64
.\ai-inbox.exe open

Open the local URL printed by the command, then configure source paths and your OpenAI-compatible LLM key in Settings.

Notes

  • Config and data are stored under ~/.ai-inbox by default, or under AI_INBOX_HOME if you override it.
  • The binaries are currently unsigned, so macOS Gatekeeper or Windows Defender may ask for confirmation on first launch.
  • Built from commit e1ff20f0db247ceb23eaeb774ca473de7acd97d8. CI passed on Ubuntu, macOS, and Windows with Node 22.x and 24.x.