Part 9 of 9 — the conversation is step one. The real shift is running the operator on a loop, on a schedule, without a human in the chair.
Everything so far has assumed you open the agent and type a request. That is the right way to start — it's how you build trust, see what the operator does, and tune soul.md and the skills until the behavior is reliable. But typing to it is a scaffold, not the building.
Once an operation is genuinely reliable — the tools are gated, the judgment is written down, the escalations land where they should — the obvious next move is to stop being the thing that triggers it. The agent does not need you to say "run the morning routine." A clock can say that. This is the broader shift happening across the field: agents are moving from things you converse with to processes that run.
The progression: you start by driving the operator by hand; once it earns trust, a scheduler drives it and you only handle the exceptions it surfaces.
"Agentic" is just a name for a loop the agent runs itself: observe the current state, decide what (if anything) to do within its authority, act through a tool, then observe again. Conversation collapses this loop to a single turn driven by you. Running it unattended means the agent cycles through it on its own until the work is done or it hits something it must escalate.
The same observe–decide–act loop you ran one turn at a time in chat, now run by the agent itself — with the same fence and the same escalation rule.
Crucially, nothing about the safety model changes. The loop still acts only through the gated tool belt, still enforces policy in code, still escalates per soul.md. Autonomy went up; the fence did not move. That is exactly why we spent eight chapters building the fence before turning the loop on.
The simplest way to run the loop on a schedule is the oldest one: cron (or a Task Scheduler, a systemd timer, a CI cron, a serverless schedule — pick your platform). You invoke the agent in headless mode with a fixed prompt, and it runs the routine and reports back.
claude -p "…"; Codex, Pi, and others have equivalents). That is the hook a scheduler needs.# crontab — run the eBay morning routine every weekday at 07:30,
# before the owner is even awake.
30 7 * * 1-5 cd $HOME/ebay-operator && ./run-morning.sh
...where run-morning.sh is a thin wrapper that runs the agent headlessly and mails the summary:
#!/usr/bin/env bash
set -euo pipefail
cd "$HOME/ebay-operator"
# Run the agent non-interactively against the morning skill.
# Note the explicit instruction for unattended mode.
claude -p "Run skills/morning-routine.md. You are running UNATTENDED:
do NOT send anything soul.md flags as needing my approval — instead
collect those into a HOLD list with your recommendation for each." \
> /tmp/ebay-morning.txt 2>&1
# Deliver the summary + the items that need a human.
mail -s "eBay operator — morning summary $(date +%F)" \
owner@example.com < /tmp/ebay-morning.txt
The owner wakes up, reads one email, and makes the two or three decisions the operator held for them — replying to approve, or opening the agent for anything that needs a conversation. The mechanical 90% happened while they slept.
Unattended operation raises the bar on a few things you got "for free" in chat, where you were there to approve each step:
soul.md.ebay-operator audit is now your record of what happened overnight. Read-back matters more, not less.soul.md. Loops nest.Give a coding agent a fence of small, authenticated, single-purpose tools that act as you; a soul.md that gives it a role, a voice, and a conscience; and a growing set of skills that capture how the work is really done. Drive it by hand until you trust it — then put it on a loop and let it run.
The result is not a chatbot you consult. It is an operator you delegate real work to, inspect at every step, govern deliberately, share with your team — and, eventually, schedule. The technology is mundane and available today. The discipline — small tools, explicit identity, written judgment, shared skills, and earning autonomy before granting it — is what turns it into something you would actually trust with your store, your inbox, or your team's daily work.