AFK
Also called Away from keyboard · Unattended run · Fire and forget
Away from keyboard: you start the agent, leave, and come back to finished work you review later instead of supervising live.
AFK is the pattern where you hand the agent a task and walk away. No approvals, no mid-run steering; the agent runs to completion on its own and you read the result later. It needs a permissive permission mode so nothing blocks waiting for a click, and usually a sandbox or a worktree so a bad run can't damage anything that matters.
This is where the leverage of AI coding lives. One person can have several AFK runs going while doing something else, and the runs happen overnight or during meetings. The failure to watch for is quiet: the agent hits an ambiguity, picks an answer, and spends the next hour building tidy, internally consistent work on top of it. Nothing crashes. You only find out when you read the diff.
Make the run safe to leave. Do the thinking before you go: a grilling pass and a written spec take the guesses off the table. Put automated checks in the loop so failing tests stop the run instead of you. And make the finish line a branch or a pull request you can read through, never a merge that already happened. AFK doesn't make human review optional; it batches all of it into one sitting at the end, so what comes out of the run has to be worth reading.
- Claude CodeA permission mode that auto-accepts (or
--dangerously-skip-permissions) inside the built-in sandbox; cloud sessions are AFK by design. - CodexCloud tasks run in an isolated container and come back as a diff or a pull request.
- AntigravityThe Agent Manager is built around unattended runs, with an inbox that collects anything needing a human.
“The agent asked me two questions in the first ten minutes and then went quiet for an hour.”
“That's the point of AFK. Answer those questions up front in the spec next time and you can leave the whole run alone.”
“And if it goes off the rails?”
“It's in a sandbox on its own branch. Worst case you delete the branch.”
Course 01 puts every one of these terms to work: you install Claude Code, run the loop, and ship a real project — permission modes, compaction, hooks and all.
Start Course 01 →