Loop
Concept · agentic coding

Keep a human in the loop on your coding agents.

Your Claude Code agents do the work. Loop is the control surface in your pocket: watch a run live, approve every tool call, and review the diff before it ships.

A product & prototype concept by Joey Primiani · tap the notification to begin →
9:41
Monday, June 2
9:41
Loopnow
Claude needs your approval
Run npm run build while adding dark mode to Settings · acme/web
Tap to review ↑
9:41

Runs

JP
acme/webApproval
Add dark mode to Settings
Waiting to run npm run build
acme/apiRunning
Fix the flaky auth test
Running pytest tests/auth
acme/webDone
Refactor the API client
12 files changed · +184 −96 · diff ready
Runs
Activity
Settings
9:41

Add dark mode to Settings

acme/web · live
9:41

Review changes

3 files · +38 −9
Settings.tsx+18 −4
14const Settings = () => {
const theme = 'light'
+ const [theme, setTheme] = useTheme()
+ const isDark = theme === 'dark'
17 return (
+ <ThemeToggle value={theme} onChange={setTheme} />
useTheme.ts+16 −0
+export function useTheme() {
+ const [t, setT] = useState(getStored())
+ // persists across sessions
+ return [t, setT] as const
+}

Merged to main

Claude picked the next task off your queue. You stayed in the loop the whole way.