Files
openagent/.claude/settings.json
Thomas Marchand fb2f3407b4 Add Claude context configuration files
Add .claude/CLAUDE.md with project documentation (architecture, commands, conventions, env vars) and .claude/settings.json with tool permissions for streamlined agent development.
2025-12-25 20:41:20 +01:00

32 lines
586 B
JSON

{
"permissions": {
"allow": [
"Bash(cargo build:*)",
"Bash(cargo run:*)",
"Bash(cargo test:*)",
"Bash(cargo fmt:*)",
"Bash(cargo clippy:*)",
"Bash(bun:*)",
"Bash(cd dashboard && bun:*)",
"Bash(git:*)",
"Bash(ls:*)",
"Bash(cat:*)",
"Bash(mkdir:*)",
"Bash(rm:*)",
"Bash(cp:*)",
"Bash(mv:*)",
"Bash(jq:*)",
"Bash(ssh:*)",
"Bash(scp:*)",
"Bash(python:*)",
"Bash(curl:*)",
"Read",
"Write",
"Edit",
"Glob",
"Grep"
],
"deny": []
}
}