EN 中文

Quick Start

快速开始

$ seek autopilot run "重构 User 模型,添加邮箱验证字段"
→ [autopilot] 4/4 tasks succeeded
  User model: 添加 email_verified 字段 (abc1234)
  Service: 添加 verifyEmail 方法 (def5678)
  Tests: User + Service 单元测试 (ghi9012)
  Docs: 更新字段文档 (jkl3456)

How It Works

工作原理

目标
  └─→ Decomposer (DeepSeek) ──→ 任务列表
       ├─ 1. User model 字段
       ├─ 2. Service 方法
       ├─ 3. Test 用例
       └─ 4. 文档更新
       └─→ Fleet (并行 worktree 子代理)
            ├─ worktree-1 → edit → 本地 commit
            ├─ worktree-2 → edit → 本地 commit
            └─ ... → 报告: 摘要 + commit SHA

Safety Boundaries

安全边界

CLI Reference

CLI 参考

$ seek autopilot run "<goal>"    # Full pipeline
$ seek autopilot run --dry-run "<goal>"  # Decompose only, review before execution

vs Goal

与 Goal 的区别

AutopilotAutopilotGoalGoal
Architecture架构Multi-agent, parallel, isolated worktrees多 agent 并行独立 worktreeSingle agent, same conversation单 agent 同一对话
Use case适用场景Exploratory / independent sub-tasks探索性、多方案并行Linear sequential tasks线性顺序任务
Result产出Per-task commits + summary report每任务 commit + 摘要Working tree modified in-place工作区原地修改

See Goal for single-agent multi-turn tasks.

Goal 文档了解单 agent 多轮任务。