You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add interactive mode to auto-continue — restarts in same terminal
Default is now interactive (claude --init-prompt) so the session
reopens in the users terminal. Headless mode (claude -p) available
via --headless flag or claude-auto wrapper.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,14 @@ cd /path/to/your-project && claude # hooks inject context; look for "AGEN
36
36
37
37
Natural language works: *"fix the login bug"* routes to `/debug`. Chain hands-off: `/requirements auto my-app`.
38
38
39
-
**Auto-continuation** is on by default (`"continue": true` in `gates.json`). When context is exhausted, the hook writes `HANDOFF.md` and automatically relaunches a fresh session. No wrapper needed. Set `"continue": false` to disable (session will warn but keep running).
39
+
**Auto-continuation** — when context is exhausted, the session hands off via `HANDOFF.md` and restarts. Two ways to use it:
40
+
41
+
```bash
42
+
agent-toolkit-continue "Build auth system"# interactive — restarts in same terminal
43
+
claude-auto "Build auth system"# headless — for CI/background tasks
44
+
```
45
+
46
+
Or set `"continue": true` in `gates.json` for in-hook restart (headless only). Set `"continue": false` to disable (session will warn but keep running).
0 commit comments