The primitives
- Run — execute one Agent job now. Synchronous when you want an answer, or
--asyncto run in the background. - Task — a time trigger. “Every weekday at 9am”, “tonight”, “once after lunch.” Recurring (
--cron) or one-off (--at). - Watch — a condition trigger. Wait for a PR review, a CI result, a deployment, a file, a log line, or a long-running process — then act.
- Runs — the history. Inspect what happened, continue from a run, or cancel work when the situation changes.
Ask in plain language
You do not memorize flags. Ask your agent:- “Watch this PR and come back when there’s actionable review feedback.”
- “Run the deployment check every weekday morning and post the summary here.”
- “Start a separate investigation session for this incident, but report the conclusion to this channel.”
- “If CI fails, summarize the logs; if it passes, tell me whether the PR is mergeable.”
Why it matters
This is the concrete, shipped step toward an agent that behaves like a colleague: it can leave the current chat turn, wait, return, branch, and keep records — instead of only reacting to your latest message. Self-initiated turns show up live in the Workbench.Reference
Full CLI for each primitive is in Commands:vibe agent, vibe task, vibe watch, and vibe runs.