delegate
Offload coding or research grunt work to a local sandboxed subagent that edits files, runs shell commands, and returns a summary plus git change report.
Instructions
Delegate a self-contained coding or research task to a LOCAL model running in its own sandboxed agent loop. USE PROACTIVELY to offload grunt work — codebase searches, boilerplate, mechanical multi-file edits, test scaffolding — instead of doing it inline. The subagent reads/edits files and runs shell commands confined to working_dir, and returns a summary plus a git change report. Give it ONE clear, self-contained task with enough context to act without follow-up questions. Safe to call multiple times concurrently; in-flight runs are bounded by LOCAL_VIBES_MAX_CONCURRENCY.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lane | No | Sticky-session lane id, sent as the lane header (LOCAL_VIBES_LANE_HEADER) so a cohort-aware server pins this session to one lane. Reuse the same id to keep related delegations on one lane. | |
| task | Yes | A complete, self-contained instruction (include acceptance criteria). | |
| read_only | No | If true, disable all writes/edits/bash (safe for search/analysis). | |
| temperature | No | Sampling temperature for this task (overrides LOCAL_VIBES_TEMPERATURE). Use 0 for deterministic / greedy-cohort-compatible output. | |
| working_dir | No | Sandbox root for all file/shell operations. Defaults to CWD. |