mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 11:40:12 -04:00
- architect: restore effort: max to match orchestrate team roster - orchestrate: remove researcher background annotation (blocks planning), remove overly broad auditor trigger clause, risk-tag table is authoritative - qa-checklist: add auditor hard rules (security_findings, build/test status) - settings.json: simplify .env deny to single **/.env* glob per tool - rules/01-session: clarify persistent context includes .claude/memory/ - memory: rename todo_inter_agent_schema.md → inter_agent_schema.md
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/claude-code-settings.json",
|
|
"attribution": {
|
|
"commit": "",
|
|
"pr": ""
|
|
},
|
|
"permissions": {
|
|
"allow": [
|
|
"Bash",
|
|
"Read",
|
|
"Edit",
|
|
"Write",
|
|
"Glob",
|
|
"Grep",
|
|
"WebFetch",
|
|
"WebSearch"
|
|
],
|
|
"deny": [
|
|
"Read(~/.ssh/**)",
|
|
"Read(~/.aws/**)",
|
|
"Read(~/.gnupg/**)",
|
|
"Read(**/.env*)",
|
|
"Write(~/.ssh/**)",
|
|
"Write(~/.aws/**)",
|
|
"Write(~/.gnupg/**)",
|
|
"Write(**/.env*)",
|
|
"Edit(~/.ssh/**)",
|
|
"Edit(~/.aws/**)",
|
|
"Edit(~/.gnupg/**)",
|
|
"Edit(**/.env*)"
|
|
],
|
|
"ask": [
|
|
"Bash(rm *)",
|
|
"Bash(rmdir *)",
|
|
"Bash(git push --force*)",
|
|
"Bash(git push -f*)",
|
|
"Bash(git reset --hard*)",
|
|
"Bash(git clean *)",
|
|
"Bash(chmod *)",
|
|
"Bash(dd *)",
|
|
"Bash(mkfs*)",
|
|
"Bash(shred *)",
|
|
"Bash(kill *)",
|
|
"Bash(killall *)",
|
|
"Bash(sudo *)"
|
|
],
|
|
"defaultMode": "acceptEdits"
|
|
},
|
|
"model": "sonnet",
|
|
"effortLevel": "medium",
|
|
"claudeMdExcludes": [
|
|
".claude/agent-memory/**"
|
|
]
|
|
}
|