What problem does it solve? Coordinating an external autonomous coding agent over HTTP is error-prone: sessions get lost, timeouts kill clients while work continues server-side, and vague prompts produce mismatched changes. This Skill provides a disciplined API-first workflow for delegating features, refactors, fixes, and code reviews to a shared OpenCode v2 server. ## Core Features & Use Cases - Blocking and multi-turn delegation: Run one-shot tasks with oc or continue persistent server-side sessions with oc --session <id> for iterative work. - Model and agent switching: Change the model, provider, or agent (build/plan) mid-session with ocm without losing session context. - Spec-driven delegation (CDD): Write change specs with ground-truth citations, invariants, and verification steps to /workspace, then hand them off by file reference. - Use Case: You need input validation added to an API endpoint. Write a spec to /workspace/validation-spec.md, run oc "Apply the change spec in /workspace/validation-spec.md" in background mode, then verify the result with git -C /work/<repo> diff --stat. ## Quick Start Ask the agent to delegate a coding task by running oc with a clear intent statement, for example: use oc to add retry logic to the API client and update its tests, running in background mode from /work.