Please enable JavaScript.
Coggle requires JavaScript to display documents.
Claude Code In Actions - Coggle Diagram
Claude Code In Actions
/compact
summarizes your conversation, uses that summary as the new context, and deletes the old messages
-
-
/rewind
When Claude heads down the wrong path, you don't have to prompt your way back out.
-
-
-
/goal
-
You describe what "done" looks like, and Claude keeps working across turns until a fast evaluator confirms those conditions are met
E:g: /goal all tests in src/billing pass, and the type checker reports zero errors
-
/loop
Loop runs a prompt on an interval between turns,
Use it to pull something external, like a CI run or a deploy, and act when the state changes
To stop a loop, just press escape.
-
-
-
Permission modes
-
Permission modes
Accept edits
runs reads, file edits, and common file system bash commands without asking
Manual
reads only, without prompting. Everything else asks first
Auto
accepts everything, with a separate classifier model reviewing each action before it runs.
-
Bypass permissions
skips all checks. This is the equivalent of the dangerously-skip-permissions flag. Only run it inside an isolated container or virtual machine.
-
Hooks
-
-
Some important hooks
-
Stop
You can refuse and say "no, you're not done yet" if some condition isn't met. There's a matching SubagentStop for when a sub-agent finishes.
-
-
-
SessionStart
fires at the start and primes the environment. Use the startup source if you only want it on fresh starts.
Routines and Headless
Routine
-
-
-
Limits
-
Each run starts from a fresh clone of your default branch and can only push to claude/ prefixed branches
-