! to run it as a shell command in the project directory, no AI session involved. It's the fastest way to peek at state, run a quick script, or check git status.! prefix"!git status" ──▶ strips "!" ──▶ runs in dir ──▶ output in code block
!. Kimaki strips the !, runs the rest as a shell command, posts a Running ... placeholder, then edits it with the result:1!ls -la
! commands always run in the same place the agent is working.! commands are skipped so they don't accidentally run in the base directory./run-shell-command <command> does exactly the same thing as the ! prefix. The ! prefix is just a shortcut.!git status, !git log --oneline -5 — quick git checks.!ls, !cat package.json — inspect files without spending an agent turn.!pnpm test — kick off a one-off command directly.