Claude Settings Audit
Analyze this repository and generate recommended Claude Code settings.json permissions for read-only commands.
Phase 1: Detect Tech Stack
Run these commands to detect the repository structure:
ls -la
find . -maxdepth 2 \( -name "*.toml" -o -name "*.json" -o -name "*.lock" -o -name "*.yaml" -o -name "*.yml" -o -name "Makefile" -o -name "Dockerfile" -o -name "*.tf" \) 2>/dev/null | head -50
Check for these indicator files:
| Category |
Files to Check |
| Python |
pyproject.toml, setup.py, requirements.txt, Pipfile, poetry.lock, uv.lock |
| Node.js |
package.json, package-lock.json, yarn.lock, pnpm-lock.yaml |
| Go |
go.mod, go.sum |
| Rust |
Cargo.toml, Cargo.lock |
| Ruby |
Gemfile, Gemfile.lock |
| Java |
pom.xml, build.gradle, build.gradle.kts |
| Build |
Makefile, Dockerfile, docker-compose.yml |
| Infra |
*.tf files, kubernetes/, helm/ |
| Monorepo |
lerna.json, nx.json, turbo.json, pnpm-workspace.yaml |
Phase 2: Detect Services
Check for service integrations:
| Service |
Detection |
| Sentry |
sentry-sdk in deps, @sentry/* packages, .sentryclirc, sentry.properties |
| Linear |
Linear config files, .linear/ directory |
Read dependency files to identify frameworks:
package.json → check dependencies and devDependencies
pyproject.toml → check [project.dependencies] or [tool.poetry.dependencies]
Gemfile → check gem names
Cargo.toml → check [dependencies]
Phase 3: Check Existing Settings
cat .claude/settings.json 2>/dev/null || echo "No existing settings"
Phase 4: Generate Recommendations
Build the allow list by combining:
Baseline Commands (Always Include)
[
"Bash(ls:*)",
"Bash(pwd:*)",
"Bash(find:*)",
"Bash(file:*)",
"Bash(stat:*)",
"Bash(wc:*)",
"Bash(head:*)",
"Bash(tail:*)",
"Bash(cat:*)",
"Bash(tree:*)",
"Bash(git status:*)",
"Bash(git log:*)",
"Bash(git diff:*)",
"Bash(git show:*)",
"Bash(git branch:*)",
"Bash(git remote:*)",
"Bash(git tag:*)",
"Bash(git stash list:*)",
"Bash(git rev-parse:*)",
"Bash(gh pr view:*)",
"Bash(gh pr list:*)",
"Bash(gh pr checks:*)",
"Bash(gh pr diff:*)",
"Bash(gh issue view:*)",
"Bash(gh issue list:*)",
"Bash(gh run view:*)",
"Bash(gh run list:*)",
"Bash(gh run logs:*)",
"Bash(gh repo view:*)",
"Bash(gh api:*)"
]
Stack-Specific Commands
Only include commands for tools actually detected in the project.
Python (if any Python files or config detected)
| If Detected |
Add These Commands |
| Any Python |
python --version, python3 --version |
poetry.lock |
poetry show, poetry env info |
uv.lock |
uv pip list, uv tree |
Pipfile.lock |
pipenv graph |
requirements.txt (no other lock) |
pip list, pip show, pip freeze |
Node.js (if package.json detected)
| If Detected |
Add These Commands |
| Any Node.js |
node --version |
pnpm-lock.yaml |
pnpm list, pnpm why |
yarn.lock |
yarn list, yarn info, yarn why |
package-lock.json |
npm list, npm view, npm outdated |
TypeScript (tsconfig.json) |
tsc --version |
Other Languages
| If Detected |
Add These Commands |
go.mod |
go version, go list, go mod graph, go env |
Cargo.toml |
rustc --version, cargo --version, cargo tree, cargo metadata |
Gemfile |
ruby --version, bundle list, bundle show |
pom.xml |
java --version, mvn --version, mvn dependency:tree |
build.gradle |
java --version, gradle --version, gradle dependencies |
Build Tools
| If Detected |
Add These Commands |
Dockerfile |
docker --version, docker ps, docker images |
docker-compose.yml |
docker-compose ps, docker-compose config |
*.tf files |
terraform --version, terraform providers, terraform state list |
Makefile |
make --version, make -n |
Skills (for Sentry Projects)
If this is a Sentry project (or sentry-skills plugin is installed), include:
[
"Skill(sentry-skills:commit)",
"Skill(sentry-skills:create-pr)",
"Skill(sentry-skills:code-review)",
"Skill(sentry-skills:find-bugs)",
"Skill(sentry-skills:deslop)",
"Skill(sentry-skills:iterate-pr)",
"Skill(sentry-skills:claude-settings-audit)"
]
WebFetch Domains
Always Include (Sentry Projects)
[
"WebFetch(domain:docs.sentry.io)",
"WebFetch(domain:develop.sentry.dev)",
"WebFetch(domain:docs.github.com)",
"WebFetch(domain:cli.github.com)"
]
Framework-Specific
| If Detected |
Add Domains |
| Django |
docs.djangoproject.com |
| Flask |
flask.palletsprojects.com |
| FastAPI |
fastapi.tiangolo.com |
| React |
react.dev |
| Next.js |
nextjs.org |
| Vue |
vuejs.org |
| Express |
expressjs.com |
| Rails |
guides.rubyonrails.org, api.rubyonrails.org |
| Go |
pkg.go.dev |
| Rust |
docs.rs, doc.rust-lang.org |
| Docker |
docs.docker.com |
| Kubernetes |
kubernetes.io |
| Terraform |
registry.terraform.io |
MCP Server Suggestions
MCP servers are configured in .mcp.json (not settings.json). Check for existing config:
cat .mcp.json 2>/dev/null || echo "No existing .mcp.json"
Sentry MCP (if Sentry SDK detected)
Add to .mcp.json:
{
"mcpServers": {
"sentry": {
"command": "uvx",
"args": ["mcp-server-sentry"],
"env": {
"SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}"
}
}
}
}
Linear MCP (if Linear usage detected)
Add to .mcp.json:
{
"mcpServers": {
"linear": {
"command": "npx",
"args": ["-y", "@linear/mcp-server"],
"env": {
"LINEAR_API_KEY": "${LINEAR_API_KEY}"
}
}
}
}
Note: Never suggest GitHub MCP. Always use gh CLI commands for GitHub.
Output Format
Present your findings as:
- Summary Table - What was detected
- Recommended settings.json - Complete JSON ready to copy
- MCP Suggestions - If applicable
- Merge Instructions - If existing settings found
Example output structure:
## Detected Tech Stack
| Category | Found |
|----------|-------|
| Languages | Python 3.x |
| Package Manager | poetry |
| Frameworks | Django, Celery |
| Services | Sentry |
| Build Tools | Docker, Make |
## Recommended .claude/settings.json
\`\`\`json
{
"permissions": {
"allow": [
// ... grouped by category with comments
],
"deny": []
}
}
\`\`\`
## Recommended .mcp.json (if applicable)
If you use Sentry or Linear, add the MCP config to `.mcp.json`...
Important Rules
What to Include
- Only READ-ONLY commands that cannot modify state
- Only tools that are actually used by the project (detected via lock files)
- Standard system commands (ls, cat, find, etc.)
- The
:* suffix allows any arguments to the base command
What to NEVER Include
- Absolute paths - Never include user-specific paths like
/home/user/scripts/foo or /Users/name/bin/bar
- Custom scripts - Never include project scripts that may have side effects (e.g.,
./scripts/deploy.sh)
- Alternative package managers - If the project uses pnpm, do NOT include npm/yarn commands
- Commands that modify state - No install, build, run, write, or delete commands
Package Manager Rules
Only include the package manager actually used by the project:
| If Detected |
Include |
Do NOT Include |
pnpm-lock.yaml |
pnpm commands |
npm, yarn |
yarn.lock |
yarn commands |
npm, pnpm |
package-lock.json |
npm commands |
yarn, pnpm |
poetry.lock |
poetry commands |
pip (unless also has requirements.txt) |
uv.lock |
uv commands |
pip, poetry |
Pipfile.lock |
pipenv commands |
pip, poetry |
If multiple lock files exist, include only the commands for each detected manager.
1---2name: claude-settings-audit-23description: Analyze a repository to generate recommended Claude Code settings.json permissions. Use when setting up a new project, auditing existing settings, or determining which read-only bash commands to allow. Detects tech stack, build tools, and monorepo structure.4---56# Claude Settings Audit78Analyze this repository and generate recommended Claude Code `settings.json` permissions for read-only commands.910## Phase 1: Detect Tech Stack1112Run these commands to detect the repository structure:1314```bash15ls -la16find . -maxdepth 2 \( -name "*.toml" -o -name "*.json" -o -name "*.lock" -o -name "*.yaml" -o -name "*.yml" -o -name "Makefile" -o -name "Dockerfile" -o -name "*.tf" \) 2>/dev/null | head -5017```1819Check for these indicator files:2021| Category | Files to Check |22|----------|---------------|23| **Python** | `pyproject.toml`, `setup.py`, `requirements.txt`, `Pipfile`, `poetry.lock`, `uv.lock` |24| **Node.js** | `package.json`, `package-lock.json`, `yarn.lock`, `pnpm-lock.yaml` |25| **Go** | `go.mod`, `go.sum` |26| **Rust** | `Cargo.toml`, `Cargo.lock` |27| **Ruby** | `Gemfile`, `Gemfile.lock` |28| **Java** | `pom.xml`, `build.gradle`, `build.gradle.kts` |29| **Build** | `Makefile`, `Dockerfile`, `docker-compose.yml` |30| **Infra** | `*.tf` files, `kubernetes/`, `helm/` |31| **Monorepo** | `lerna.json`, `nx.json`, `turbo.json`, `pnpm-workspace.yaml` |3233## Phase 2: Detect Services3435Check for service integrations:3637| Service | Detection |38|---------|-----------|39| **Sentry** | `sentry-sdk` in deps, `@sentry/*` packages, `.sentryclirc`, `sentry.properties` |40| **Linear** | Linear config files, `.linear/` directory |4142Read dependency files to identify frameworks:43- `package.json` → check `dependencies` and `devDependencies`44- `pyproject.toml` → check `[project.dependencies]` or `[tool.poetry.dependencies]`45- `Gemfile` → check gem names46- `Cargo.toml` → check `[dependencies]`4748## Phase 3: Check Existing Settings4950```bash51cat .claude/settings.json 2>/dev/null || echo "No existing settings"52```5354## Phase 4: Generate Recommendations5556Build the allow list by combining:5758### Baseline Commands (Always Include)5960```json61[62 "Bash(ls:*)",63 "Bash(pwd:*)",64 "Bash(find:*)",65 "Bash(file:*)",66 "Bash(stat:*)",67 "Bash(wc:*)",68 "Bash(head:*)",69 "Bash(tail:*)",70 "Bash(cat:*)",71 "Bash(tree:*)",72 "Bash(git status:*)",73 "Bash(git log:*)",74 "Bash(git diff:*)",75 "Bash(git show:*)",76 "Bash(git branch:*)",77 "Bash(git remote:*)",78 "Bash(git tag:*)",79 "Bash(git stash list:*)",80 "Bash(git rev-parse:*)",81 "Bash(gh pr view:*)",82 "Bash(gh pr list:*)",83 "Bash(gh pr checks:*)",84 "Bash(gh pr diff:*)",85 "Bash(gh issue view:*)",86 "Bash(gh issue list:*)",87 "Bash(gh run view:*)",88 "Bash(gh run list:*)",89 "Bash(gh run logs:*)",90 "Bash(gh repo view:*)",91 "Bash(gh api:*)"92]93```9495### Stack-Specific Commands9697Only include commands for tools actually detected in the project.9899#### Python (if any Python files or config detected)100101| If Detected | Add These Commands |102|-------------|-------------------|103| Any Python | `python --version`, `python3 --version` |104| `poetry.lock` | `poetry show`, `poetry env info` |105| `uv.lock` | `uv pip list`, `uv tree` |106| `Pipfile.lock` | `pipenv graph` |107| `requirements.txt` (no other lock) | `pip list`, `pip show`, `pip freeze` |108109#### Node.js (if package.json detected)110111| If Detected | Add These Commands |112|-------------|-------------------|113| Any Node.js | `node --version` |114| `pnpm-lock.yaml` | `pnpm list`, `pnpm why` |115| `yarn.lock` | `yarn list`, `yarn info`, `yarn why` |116| `package-lock.json` | `npm list`, `npm view`, `npm outdated` |117| TypeScript (`tsconfig.json`) | `tsc --version` |118119#### Other Languages120121| If Detected | Add These Commands |122|-------------|-------------------|123| `go.mod` | `go version`, `go list`, `go mod graph`, `go env` |124| `Cargo.toml` | `rustc --version`, `cargo --version`, `cargo tree`, `cargo metadata` |125| `Gemfile` | `ruby --version`, `bundle list`, `bundle show` |126| `pom.xml` | `java --version`, `mvn --version`, `mvn dependency:tree` |127| `build.gradle` | `java --version`, `gradle --version`, `gradle dependencies` |128129#### Build Tools130131| If Detected | Add These Commands |132|-------------|-------------------|133| `Dockerfile` | `docker --version`, `docker ps`, `docker images` |134| `docker-compose.yml` | `docker-compose ps`, `docker-compose config` |135| `*.tf` files | `terraform --version`, `terraform providers`, `terraform state list` |136| `Makefile` | `make --version`, `make -n` |137138### Skills (for Sentry Projects)139140If this is a Sentry project (or sentry-skills plugin is installed), include:141142```json143[144 "Skill(sentry-skills:commit)",145 "Skill(sentry-skills:create-pr)",146 "Skill(sentry-skills:code-review)",147 "Skill(sentry-skills:find-bugs)",148 "Skill(sentry-skills:deslop)",149 "Skill(sentry-skills:iterate-pr)",150 "Skill(sentry-skills:claude-settings-audit)"151]152```153154### WebFetch Domains155156#### Always Include (Sentry Projects)157```json158[159 "WebFetch(domain:docs.sentry.io)",160 "WebFetch(domain:develop.sentry.dev)",161 "WebFetch(domain:docs.github.com)",162 "WebFetch(domain:cli.github.com)"163]164```165166#### Framework-Specific167168| If Detected | Add Domains |169|-------------|-------------|170| **Django** | `docs.djangoproject.com` |171| **Flask** | `flask.palletsprojects.com` |172| **FastAPI** | `fastapi.tiangolo.com` |173| **React** | `react.dev` |174| **Next.js** | `nextjs.org` |175| **Vue** | `vuejs.org` |176| **Express** | `expressjs.com` |177| **Rails** | `guides.rubyonrails.org`, `api.rubyonrails.org` |178| **Go** | `pkg.go.dev` |179| **Rust** | `docs.rs`, `doc.rust-lang.org` |180| **Docker** | `docs.docker.com` |181| **Kubernetes** | `kubernetes.io` |182| **Terraform** | `registry.terraform.io` |183184### MCP Server Suggestions185186MCP servers are configured in `.mcp.json` (not `settings.json`). Check for existing config:187188```bash189cat .mcp.json 2>/dev/null || echo "No existing .mcp.json"190```191192#### Sentry MCP (if Sentry SDK detected)193194Add to `.mcp.json`:195```json196{197 "mcpServers": {198 "sentry": {199 "command": "uvx",200 "args": ["mcp-server-sentry"],201 "env": {202 "SENTRY_AUTH_TOKEN": "${SENTRY_AUTH_TOKEN}"203 }204 }205 }206}207```208209#### Linear MCP (if Linear usage detected)210211Add to `.mcp.json`:212```json213{214 "mcpServers": {215 "linear": {216 "command": "npx",217 "args": ["-y", "@linear/mcp-server"],218 "env": {219 "LINEAR_API_KEY": "${LINEAR_API_KEY}"220 }221 }222 }223}224```225226**Note**: Never suggest GitHub MCP. Always use `gh` CLI commands for GitHub.227228## Output Format229230Present your findings as:2312321. **Summary Table** - What was detected2332. **Recommended settings.json** - Complete JSON ready to copy2343. **MCP Suggestions** - If applicable2354. **Merge Instructions** - If existing settings found236237Example output structure:238239```markdown240## Detected Tech Stack241242| Category | Found |243|----------|-------|244| Languages | Python 3.x |245| Package Manager | poetry |246| Frameworks | Django, Celery |247| Services | Sentry |248| Build Tools | Docker, Make |249250## Recommended .claude/settings.json251252\`\`\`json253{254 "permissions": {255 "allow": [256 // ... grouped by category with comments257 ],258 "deny": []259 }260}261\`\`\`262263## Recommended .mcp.json (if applicable)264265If you use Sentry or Linear, add the MCP config to `.mcp.json`...266```267268## Important Rules269270### What to Include271- Only READ-ONLY commands that cannot modify state272- Only tools that are actually used by the project (detected via lock files)273- Standard system commands (ls, cat, find, etc.)274- The `:*` suffix allows any arguments to the base command275276### What to NEVER Include277- **Absolute paths** - Never include user-specific paths like `/home/user/scripts/foo` or `/Users/name/bin/bar`278- **Custom scripts** - Never include project scripts that may have side effects (e.g., `./scripts/deploy.sh`)279- **Alternative package managers** - If the project uses pnpm, do NOT include npm/yarn commands280- **Commands that modify state** - No install, build, run, write, or delete commands281282### Package Manager Rules283284Only include the package manager actually used by the project:285286| If Detected | Include | Do NOT Include |287|-------------|---------|----------------|288| `pnpm-lock.yaml` | pnpm commands | npm, yarn |289| `yarn.lock` | yarn commands | npm, pnpm |290| `package-lock.json` | npm commands | yarn, pnpm |291| `poetry.lock` | poetry commands | pip (unless also has requirements.txt) |292| `uv.lock` | uv commands | pip, poetry |293| `Pipfile.lock` | pipenv commands | pip, poetry |294295If multiple lock files exist, include only the commands for each detected manager.