Skip to main content
Permission modes determine how Claude interacts with your system. Since Claude Board runs with --no-input (no interactive prompts), permission configuration is critical.

Permission Modes

Claude can use all tools without asking for permission. This is the most productive mode — Claude won’t get stuck waiting for approval.
claude --no-input --dangerously-skip-permissions
This gives Claude full access to read, write, and execute commands in your project directory. Only use on trusted codebases or sandboxed environments.

Tool Categories

When using Allowed Tools mode, you can permit any combination of:
ToolWhat It Does
ReadRead file contents from disk
EditModify existing files
WriteCreate new files
BashExecute shell commands
GlobSearch for files by pattern
GrepSearch file contents by regex

Recommendations

Use Auto Accept to avoid agents getting stuck. This is the fastest way to see results.
Use Allowed Tools with Read,Edit,Write,Bash,Glob,Grep for full functionality with explicit control.
Use Allowed Tools with only Read,Glob,Grep if you want Claude to analyze code without making changes.