一键导入
batch
Run a large, parallelizable code change across many worker agents in isolated git worktrees, opening one PR per completed task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run a large, parallelizable code change across many worker agents in isolated git worktrees, opening one PR per completed task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Route a task to the least intrusive executive-function support based on the user's stated current capacity, memory load, activation, and motivation. Use when work feels stuck, overwhelming, hard to hold in mind, or when the user asks for neurodivergent-friendly support without wanting a diagnostic or coaching ritual.
Reduce work to the smallest safe and useful outcome when capacity is low or burnout is present. Use when the user explicitly says they are depleted, overwhelmed, unable to start, or asks for the minimum viable version of a task.
Create a truthful activation bridge for a task that has low urgency, novelty, interest, challenge, or immediate feedback. Use when the user says they are stuck or avoiding a known task despite understanding it.
Reduce language, sensory, and uncertainty load while preserving complete information. Use when the user requests direct or scannable communication, has low capacity, is navigating a new flow, or needs explicit expectations and examples.
Turn a vague, oversized, or initiation-resistant outcome into an executable sequence with a visible first action and definition of done. Use when dependencies are hidden, the task spans multiple systems, or the user cannot identify where to begin.
Externalize time, checkpoints, stopping rules, and context transitions. Use when estimates are uncertain, a task may expand indefinitely, the user is switching topics, or an interruption risks losing the current state.
| name | batch |
| description | Run a large, parallelizable code change across many worker agents in isolated git worktrees, opening one PR per completed task. |
Use when a change splits into many independent edits that can be done in parallel (e.g. "add the same guard to all 12 route handlers", "migrate every adapter to the new interface"). Each task runs as its own worker in an isolated git worktree; completed workers open a PR; the coordinator reports the PR URLs.
vanta fleet + vanta fleet accept.If tasks are sequential or share state, do them in one session instead.
vanta batch run \
--task "Add input validation to routes/users.ts" \
--task "Add input validation to routes/orders.ts" \
[--base main]
--task becomes one worker in its own worktree under .vanta/worktrees.blocked and gets no PR.done worker, batch pushes the branch and runs gh pr create,
then prints each PR URL (or the failure reason).gh CLI authenticated (gh auth status) and a GitHub remote — needed only for
the PR step; the worker/worktree orchestration runs without it.batch is the PR layer over the worker fleet. Splitting a vague description into
tasks is the operator's job — pass explicit --tasks. Every worker action is
gated by the kernel exactly as in a normal session.