Claude Settings Audit
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
Analyze this repository and generate recommended Claude Code settings.json permissions for read-only commands.
When to Use
- You are setting up or auditing Claude Code
settings.json permissions for a repository.
- You need to infer a safe read-only allow list from the repo's tech stack, tooling, and monorepo structure.
- You want to review or replace an existing Claude permissions baseline with something evidence-based.
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:agents-md)",
"Skill(sentry-skills:blog-writing-guide)",
"Skill(sentry-skills:brand-guidelines)",
"Skill(sentry-skills:claude-settings-audit)",
"Skill(sentry-skills:code-review)",
"Skill(sentry-skills:code-simplifier)",
"Skill(sentry-skills:commit)",
"Skill(sentry-skills:create-branch)",
"Skill(sentry-skills:create-pr)",
"Skill(sentry-skills:django-access-review)",
"Skill(sentry-skills:django-perf-review)",
"Skill(sentry-skills:doc-coauthoring)",
"Skill(sentry-skills:find-bugs)",
"Skill(sentry-skills:gh-review-requests)",
"Skill(sentry-skills:gha-security-review)",
"Skill(sentry-skills:iterate-pr)",
"Skill(sentry-skills:pr-writer)",
"Skill(sentry-skills:security-review)",
"Skill(sentry-skills:skill-creator)",
"Skill(sentry-skills:skill-scanner)",
"Skill(sentry-skills:skill-writer)",
"Skill(sentry-skills:sred-project-organizer)",
"Skill(sentry-skills:sred-work-summary)"
]
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 (replace {org-slug} and {project-slug} with your Sentry organization and project slugs):
{
"mcpServers": {
"sentry": {
"type": "http",
"url": "https://mcp.sentry.dev/mcp/{org-slug}/{project-slug}"
}
}
}
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.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: claude-settings-audit3description: ALWAYS use this when the request matches Claude Settings Audit: Analyze a repository to generate recommended Claude Code settings.json permissions.4---56# Claude Settings Audit78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718Analyze this repository and generate recommended Claude Code `settings.json` permissions for read-only commands.1920## When to Use21- You are setting up or auditing Claude Code `settings.json` permissions for a repository.22- You need to infer a safe read-only allow list from the repo's tech stack, tooling, and monorepo structure.23- You want to review or replace an existing Claude permissions baseline with something evidence-based.2425## Phase 1: Detect Tech Stack2627Run these commands to detect the repository structure:2829```bash30ls -la31find . -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 -5032```3334Check for these indicator files:3536| Category | Files to Check |37| ------------ | ------------------------------------------------------------------------------------- |38| **Python** | `pyproject.toml`, `setup.py`, `requirements.txt`, `Pipfile`, `poetry.lock`, `uv.lock` |39| **Node.js** | `package.json`, `package-lock.json`, `yarn.lock`, `pnpm-lock.yaml` |40| **Go** | `go.mod`, `go.sum` |41| **Rust** | `Cargo.toml`, `Cargo.lock` |42| **Ruby** | `Gemfile`, `Gemfile.lock` |43| **Java** | `pom.xml`, `build.gradle`, `build.gradle.kts` |44| **Build** | `Makefile`, `Dockerfile`, `docker-compose.yml` |45| **Infra** | `*.tf` files, `kubernetes/`, `helm/` |46| **Monorepo** | `lerna.json`, `nx.json`, `turbo.json`, `pnpm-workspace.yaml` |4748## Phase 2: Detect Services4950Check for service integrations:5152| Service | Detection |53| ---------- | ------------------------------------------------------------------------------- |54| **Sentry** | `sentry-sdk` in deps, `@sentry/*` packages, `.sentryclirc`, `sentry.properties` |55| **Linear** | Linear config files, `.linear/` directory |5657Read dependency files to identify frameworks:5859- `package.json` → check `dependencies` and `devDependencies`60- `pyproject.toml` → check `[project.dependencies]` or `[tool.poetry.dependencies]`61- `Gemfile` → check gem names62- `Cargo.toml` → check `[dependencies]`6364## Phase 3: Check Existing Settings6566```bash67cat .claude/settings.json 2>/dev/null || echo "No existing settings"68```6970## Phase 4: Generate Recommendations7172Build the allow list by combining:7374### Baseline Commands (Always Include)7576```json77[78 "Bash(ls:*)",79 "Bash(pwd:*)",80 "Bash(find:*)",81 "Bash(file:*)",82 "Bash(stat:*)",83 "Bash(wc:*)",84 "Bash(head:*)",85 "Bash(tail:*)",86 "Bash(cat:*)",87 "Bash(tree:*)",88 "Bash(git status:*)",89 "Bash(git log:*)",90 "Bash(git diff:*)",91 "Bash(git show:*)",92 "Bash(git branch:*)",93 "Bash(git remote:*)",94 "Bash(git tag:*)",95 "Bash(git stash list:*)",96 "Bash(git rev-parse:*)",97 "Bash(gh pr view:*)",98 "Bash(gh pr list:*)",99 "Bash(gh pr checks:*)",100 "Bash(gh pr diff:*)",101 "Bash(gh issue view:*)",102 "Bash(gh issue list:*)",103 "Bash(gh run view:*)",104 "Bash(gh run list:*)",105 "Bash(gh run logs:*)",106 "Bash(gh repo view:*)",107 "Bash(gh api:*)"108]109```110111### Stack-Specific Commands112113Only include commands for tools actually detected in the project.114115#### Python (if any Python files or config detected)116117| If Detected | Add These Commands |118| ---------------------------------- | --------------------------------------- |119| Any Python | `python --version`, `python3 --version` |120| `poetry.lock` | `poetry show`, `poetry env info` |121| `uv.lock` | `uv pip list`, `uv tree` |122| `Pipfile.lock` | `pipenv graph` |123| `requirements.txt` (no other lock) | `pip list`, `pip show`, `pip freeze` |124125#### Node.js (if package.json detected)126127| If Detected | Add These Commands |128| ---------------------------- | -------------------------------------- |129| Any Node.js | `node --version` |130| `pnpm-lock.yaml` | `pnpm list`, `pnpm why` |131| `yarn.lock` | `yarn list`, `yarn info`, `yarn why` |132| `package-lock.json` | `npm list`, `npm view`, `npm outdated` |133| TypeScript (`tsconfig.json`) | `tsc --version` |134135#### Other Languages136137| If Detected | Add These Commands |138| -------------- | -------------------------------------------------------------------- |139| `go.mod` | `go version`, `go list`, `go mod graph`, `go env` |140| `Cargo.toml` | `rustc --version`, `cargo --version`, `cargo tree`, `cargo metadata` |141| `Gemfile` | `ruby --version`, `bundle list`, `bundle show` |142| `pom.xml` | `java --version`, `mvn --version`, `mvn dependency:tree` |143| `build.gradle` | `java --version`, `gradle --version`, `gradle dependencies` |144145#### Build Tools146147| If Detected | Add These Commands |148| -------------------- | -------------------------------------------------------------------- |149| `Dockerfile` | `docker --version`, `docker ps`, `docker images` |150| `docker-compose.yml` | `docker-compose ps`, `docker-compose config` |151| `*.tf` files | `terraform --version`, `terraform providers`, `terraform state list` |152| `Makefile` | `make --version`, `make -n` |153154### Skills (for Sentry Projects)155156If this is a Sentry project (or sentry-skills plugin is installed), include:157158```json159[160 "Skill(sentry-skills:agents-md)",161 "Skill(sentry-skills:blog-writing-guide)",162 "Skill(sentry-skills:brand-guidelines)",163 "Skill(sentry-skills:claude-settings-audit)",164 "Skill(sentry-skills:code-review)",165 "Skill(sentry-skills:code-simplifier)",166 "Skill(sentry-skills:commit)",167 "Skill(sentry-skills:create-branch)",168 "Skill(sentry-skills:create-pr)",169 "Skill(sentry-skills:django-access-review)",170 "Skill(sentry-skills:django-perf-review)",171 "Skill(sentry-skills:doc-coauthoring)",172 "Skill(sentry-skills:find-bugs)",173 "Skill(sentry-skills:gh-review-requests)",174 "Skill(sentry-skills:gha-security-review)",175 "Skill(sentry-skills:iterate-pr)",176 "Skill(sentry-skills:pr-writer)",177 "Skill(sentry-skills:security-review)",178 "Skill(sentry-skills:skill-creator)",179 "Skill(sentry-skills:skill-scanner)",180 "Skill(sentry-skills:skill-writer)",181 "Skill(sentry-skills:sred-project-organizer)",182 "Skill(sentry-skills:sred-work-summary)"183]184```185186### WebFetch Domains187188#### Always Include (Sentry Projects)189190```json191[192 "WebFetch(domain:docs.sentry.io)",193 "WebFetch(domain:develop.sentry.dev)",194 "WebFetch(domain:docs.github.com)",195 "WebFetch(domain:cli.github.com)"196]197```198199#### Framework-Specific200201| If Detected | Add Domains |202| -------------- | ----------------------------------------------- |203| **Django** | `docs.djangoproject.com` |204| **Flask** | `flask.palletsprojects.com` |205| **FastAPI** | `fastapi.tiangolo.com` |206| **React** | `react.dev` |207| **Next.js** | `nextjs.org` |208| **Vue** | `vuejs.org` |209| **Express** | `expressjs.com` |210| **Rails** | `guides.rubyonrails.org`, `api.rubyonrails.org` |211| **Go** | `pkg.go.dev` |212| **Rust** | `docs.rs`, `doc.rust-lang.org` |213| **Docker** | `docs.docker.com` |214| **Kubernetes** | `kubernetes.io` |215| **Terraform** | `registry.terraform.io` |216217### MCP Server Suggestions218219MCP servers are configured in `.mcp.json` (not `settings.json`). Check for existing config:220221```bash222cat .mcp.json 2>/dev/null || echo "No existing .mcp.json"223```224225#### Sentry MCP (if Sentry SDK detected)226227Add to `.mcp.json` (replace `{org-slug}` and `{project-slug}` with your Sentry organization and project slugs):228229```json230{231 "mcpServers": {232 "sentry": {233 "type": "http",234 "url": "https://mcp.sentry.dev/mcp/{org-slug}/{project-slug}"235 }236 }237}238```239240#### Linear MCP (if Linear usage detected)241242Add to `.mcp.json`:243244```json245{246 "mcpServers": {247 "linear": {248 "command": "npx",249 "args": ["-y", "@linear/mcp-server"],250 "env": {251 "LINEAR_API_KEY": "${LINEAR_API_KEY}"252 }253 }254 }255}256```257258**Note**: Never suggest GitHub MCP. Always use `gh` CLI commands for GitHub.259260## Output Format261262Present your findings as:2632641. **Summary Table** - What was detected2652. **Recommended settings.json** - Complete JSON ready to copy2663. **MCP Suggestions** - If applicable2674. **Merge Instructions** - If existing settings found268269Example output structure:270271```markdown272## Detected Tech Stack273274| Category | Found |275| --------------- | -------------- |276| Languages | Python 3.x |277| Package Manager | poetry |278| Frameworks | Django, Celery |279| Services | Sentry |280| Build Tools | Docker, Make |281282## Recommended .claude/settings.json283284\`\`\`json285{286"permissions": {287"allow": [288// ... grouped by category with comments289],290"deny": []291}292}293\`\`\`294295## Recommended .mcp.json (if applicable)296297If you use Sentry or Linear, add the MCP config to `.mcp.json`...298```299300## Important Rules301302### What to Include303304- Only READ-ONLY commands that cannot modify state305- Only tools that are actually used by the project (detected via lock files)306- Standard system commands (ls, cat, find, etc.)307- The `:*` suffix allows any arguments to the base command308309### What to NEVER Include310311- **Absolute paths** - Never include user-specific paths like `/home/user/scripts/foo` or `/Users/name/bin/bar`312- **Custom scripts** - Never include project scripts that may have side effects (e.g., `./scripts/deploy.sh`)313- **Alternative package managers** - If the project uses pnpm, do NOT include npm/yarn commands314- **Commands that modify state** - No install, build, run, write, or delete commands315316### Package Manager Rules317318Only include the package manager actually used by the project:319320| If Detected | Include | Do NOT Include |321| ------------------- | --------------- | -------------------------------------- |322| `pnpm-lock.yaml` | pnpm commands | npm, yarn |323| `yarn.lock` | yarn commands | npm, pnpm |324| `package-lock.json` | npm commands | yarn, pnpm |325| `poetry.lock` | poetry commands | pip (unless also has requirements.txt) |326| `uv.lock` | uv commands | pip, poetry |327| `Pipfile.lock` | pipenv commands | pip, poetry |328329If multiple lock files exist, include only the commands for each detected manager.330331## Limitations332- Use this skill only when the task clearly matches the scope described above.333- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.334- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.