why seek is different seek 与众不同之处
Not an agent demo — a platform. 不是 agent demo——是平台。
Three claims in the tagline, each backed by shipping code. 标语里的三句话,每句都有已落地的代码兜底。
Plans before it acts 先规划,再动手
/plan gates work behind analyze → propose → you approve → execute. Read-only until you approve a step-by-step list; push back mid-run and it re-plans without redoing finished work. State rebuilds from the transcript, so seek -resume picks up exactly where it left off.
/plan 把工作卡在 分析 → 提方案 → 你批准 → 执行 之后。批准前全程只读;执行中你可以中途插话,它会在不重做已完成步骤的前提下重新规划。状态从 transcript 重建,seek -resume 能精确续上原计划。
Spawns a team of sub-agents 派出一队子代理
/agents · /worktrees.
把任务扇出给子代理,并行执行、各自隔离在独立 git worktree 里,互不踩踏。权限单调收紧(子永远不松于父),成本自动累加到父 agent 状态栏。用 /agents · /worktrees 实时观察。
Ships while you sleep 你睡觉时把活干完
seek cron, a model-scheduled schedule_wakeup, or a CI trigger file runs unattended, commits, and pushes the result to your phone (ntfy / Slack / Discord / any URL).
借力操作系统的零 daemon 调度(launchd / systemd / 任务计划程序)。seek cron、模型自排的 schedule_wakeup、或一个 CI 触发文件,都能无人值守地跑完、提交,并把结果推送到你手机(ntfy / Slack / Discord / 任意 URL)。
at a glance 概览
Numbers that matter. 数据说话。
DeepSeek-native engineering — every design choice optimises for cost, speed, and reliability. DeepSeek 原生工程——每个设计选择都为成本、速度和可靠性优化。
interactive demo 交互演示
See seek in action. 看看 seek 怎么工作。
Click a tab to watch a real seek session — unattended autopilot, subagent delegation, memory recall, web fetching, and more. 点击标签页查看真实 seek 会话——无人值守 autopilot、subagent 委派、记忆召回、网页抓取等。
timeline 版本演进
git log --oneline git log --oneline
v0–v7 PRD series all delivered, shipping as v0.8.1. Latest: autopilot, OS sandbox, ACP/Zed, offline OCR, /goal.
v0–v7 PRD 系列全部交付,以 v0.8.1 发布。最新:autopilot、OS 沙箱、ACP/Zed、离线 OCR、/goal。
pricing 定价
Open source. Pay only for API. 开源免费。只为 API 付费。
seek is MIT-licensed and free. You only pay your LLM provider — and DeepSeek is 10–100× cheaper than alternatives. seek 是 MIT 开源免费软件。你只需为 LLM provider 付费——而 DeepSeek 比替代方案便宜 10–100 倍。
capabilities 能力矩阵
30+ tools, one binary. 30+ 工具,一个二进制。
Scroll to explore every tool seek ships with — autonomy, agent, memory, web, safety, and developer experience. 横向滚动浏览 seek 内置的全部工具——自治、智能体、记忆、网络、安全、开发体验。
[agent] 3 subagents · parallel
[agent] worktrees cleaned ✓
▸ Plan mode active
read-only → propose → execute
[agent] activating plan + review
▸ 3 files · 2 suggestions
[agent] workers: sql-1 sql-2 sql-3
▸ 1 medium · $0.0031
decompose → fleet → commit
▸ pushed · 📱 notified
turn 3 · judge: not yet
▸ turn 5 · goal met ✓
writes confined to CWD
▸ kernel-level · 0 deps
editor agent online
▸ image attach ready
[ocr] local · offline
▸ text → model, no VLM
POST ntfy / Slack / 飞书
▸ 📱 pushed to phone
gopls · 7 call sites
▸ grep fallback if no LSP
[bg-1] detached
▸ monitor: wait/poll/kill
payment-timeout-30s
▸ stored to M-index ✓
"payment-timeout" → hit
▸ recall_count: 4
old-redis-config
▸ moved to archive ✓
[session] extracting key points
▸ 14 turns → 3 insights
[soul] cross-project pattern:
▸ prefer interface-first
GET chi/v5 middleware
▸ 12.4 KiB extracted
fill-in-the-middle
▸ 5-10× cheaper than chat
plan → execute → reflect
▸ V4-Pro reasoning
[wakeup] 5min → "check CI"
▸ cron job registered
tool server online
▸ 12 tools exposed
headless mode active
▸ IDE integration ready
3 files staged
▸ /undo to revert ✓
⚠ destructive command
▸ user approved (y)
isolated copy created
▸ safe to experiment ✓
running .seek/hooks.toml
▸ lint passed ✓
▸ V4-Flash → V4-Pro
thinking: enabled
"install scope?"
▸ selected: project
verify sha256 · replace
▸ v0.7.0 → v0.8.1 ✓
fetching from GitHub...
▸ installed to ~/.seek/
▸ DeepSeek → Anthropic
+ OpenAI · Gemini
[reply lang: zh · auto]
▸ 跟随用户输入
install 安装
One binary, anywhere. 一个二进制,随处可用。
No runtime deps, no package manager required. Pick your path. 无需运行时依赖,无需包管理器。选一种方式。
macOS / Linux (curl pipe) macOS / Linux(curl 管道)
Pulls the latest release — no Go toolchain needed. 拉取最新版本——无需 Go 工具链。
$ OS=$(uname -s | tr '[:upper:]' '[:lower:]')
$ ARCH=$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')
$ VER=$(curl -fsSL https://api.github.com/repos/whyiyhw/seek/releases/latest | sed -nE 's/.*"tag_name":[[:space:]]*"v([^"]+)".*/\1/p')
$ curl -fsSL "https://github.com/whyiyhw/seek/releases/download/v${VER}/seek_${VER}_${OS}_${ARCH}.tar.gz" | sudo tar -xz -C /usr/local/bin seek
Go install (from source) Go 安装(从源码)
Requires Go 1.25+. One command — installs to $GOPATH/bin.
需要 Go 1.25+。一条命令——安装到 $GOPATH/bin。
$ go install github.com/whyiyhw/seek/cmd/seek@latest
Windows
Download from Releases or run the PowerShell one-liner below. Use Windows Terminal — the legacy blue PowerShell window mis-renders the TUI. 从 Releases 下载,或运行下方 PowerShell 一行命令。请在 Windows Terminal 中运行——老式蓝底 PowerShell 窗口会错乱渲染 TUI。
PS> $v=(irm https://api.github.com/repos/whyiyhw/seek/releases/latest).tag_name; irm "https://github.com/whyiyhw/seek/releases/download/$v/seek_$($v.Substring(1))_windows_amd64.zip" -OutFile seek.zip; Expand-Archive -Force seek.zip -Dest .; Remove-Item seek.zip; .\seek.exe -install; echo "Done -- restart shell, then run: seek"
Upgrade 升级
Atomic in-place update. Pulls the latest release, verifies sha256, replaces the binary — no re-download needed. macOS / Linux: requires sudo when installed to /usr/local/bin (the default).
原子级原地更新。拉取最新版本、校验 sha256、替换二进制——无需重新下载。macOS / Linux:若装在 /usr/local/bin(默认)下需要 sudo。
$ sudo seek -upgrade # macOS / Linux
PS> seek -upgrade # Windows (user-owned PATH)
export needed.
首次运行会引导你配置 provider——无需手动 export。
curl | tar doesn't trigger quarantine. If your browser download is blocked: xattr -d com.apple.quarantine seek.
macOS Gatekeeper:curl | tar 管道不会触发隔离。若浏览器下载被拦:xattr -d com.apple.quarantine seek。
~/.local/bin instead — just change -C /usr/local/bin to -C ~/.local/bin, then add it to your PATH.
不想用 sudo?装到 ~/.local/bin——把上面命令的 -C /usr/local/bin 换成 -C ~/.local/bin,再把这个目录加入 PATH 即可。