Claude Settings Audit
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 enprojectnment-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: 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## When to Use11- You are setting up or auditing Claude Code `settings.json` permissions for a repository.12- You need to infer a safe read-only allow list from the repo's tech stack, tooling, and monorepo structure.13- You want to review or replace an existing Claude permissions baseline with something evidence-based.1415## Phase 1: Detect Tech Stack1617Run these commands to detect the repository structure:1819```bash20ls -la21find . -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 -5022```2324Check for these indicator files:2526| Category | Files to Check |27| ------------ | ------------------------------------------------------------------------------------- |28| **Python** | `pyproject.toml`, `setup.py`, `requirements.txt`, `Pipfile`, `poetry.lock`, `uv.lock` |29| **Node.js** | `package.json`, `package-lock.json`, `yarn.lock`, `pnpm-lock.yaml` |30| **Go** | `go.mod`, `go.sum` |31| **Rust** | `Cargo.toml`, `Cargo.lock` |32| **Ruby** | `Gemfile`, `Gemfile.lock` |33| **Java** | `pom.xml`, `build.gradle`, `build.gradle.kts` |34| **Build** | `Makefile`, `Dockerfile`, `docker-compose.yml` |35| **Infra** | `*.tf` files, `kubernetes/`, `helm/` |36| **Monorepo** | `lerna.json`, `nx.json`, `turbo.json`, `pnpm-workspace.yaml` |3738## Phase 2: Detect Services3940Check for service integrations:4142| Service | Detection |43| ---------- | ------------------------------------------------------------------------------- |44| **Sentry** | `sentry-sdk` in deps, `@sentry/*` packages, `.sentryclirc`, `sentry.properties` |45| **Linear** | Linear config files, `.linear/` directory |4647Read dependency files to identify frameworks:4849- `package.json` → check `dependencies` and `devDependencies`50- `pyproject.toml` → check `[project.dependencies]` or `[tool.poetry.dependencies]`51- `Gemfile` → check gem names52- `Cargo.toml` → check `[dependencies]`5354## Phase 3: Check Existing Settings5556```bash57cat .claude/settings.json 2>/dev/null || echo "No existing settings"58```5960## Phase 4: Generate Recommendations6162Build the allow list by combining:6364### Baseline Commands (Always Include)6566```json67[68 "Bash(ls:*)",69 "Bash(pwd:*)",70 "Bash(find:*)",71 "Bash(file:*)",72 "Bash(stat:*)",73 "Bash(wc:*)",74 "Bash(head:*)",75 "Bash(tail:*)",76 "Bash(cat:*)",77 "Bash(tree:*)",78 "Bash(git status:*)",79 "Bash(git log:*)",80 "Bash(git diff:*)",81 "Bash(git show:*)",82 "Bash(git branch:*)",83 "Bash(git remote:*)",84 "Bash(git tag:*)",85 "Bash(git stash list:*)",86 "Bash(git rev-parse:*)",87 "Bash(gh pr view:*)",88 "Bash(gh pr list:*)",89 "Bash(gh pr checks:*)",90 "Bash(gh pr diff:*)",91 "Bash(gh issue view:*)",92 "Bash(gh issue list:*)",93 "Bash(gh run view:*)",94 "Bash(gh run list:*)",95 "Bash(gh run logs:*)",96 "Bash(gh repo view:*)",97 "Bash(gh api:*)"98]99```100101### Stack-Specific Commands102103Only include commands for tools actually detected in the project.104105#### Python (if any Python files or config detected)106107| If Detected | Add These Commands |108| ---------------------------------- | --------------------------------------- |109| Any Python | `python --version`, `python3 --version` |110| `poetry.lock` | `poetry show`, `poetry env info` |111| `uv.lock` | `uv pip list`, `uv tree` |112| `Pipfile.lock` | `pipenv graph` |113| `requirements.txt` (no other lock) | `pip list`, `pip show`, `pip freeze` |114115#### Node.js (if package.json detected)116117| If Detected | Add These Commands |118| ---------------------------- | -------------------------------------- |119| Any Node.js | `node --version` |120| `pnpm-lock.yaml` | `pnpm list`, `pnpm why` |121| `yarn.lock` | `yarn list`, `yarn info`, `yarn why` |122| `package-lock.json` | `npm list`, `npm view`, `npm outdated` |123| TypeScript (`tsconfig.json`) | `tsc --version` |124125#### Other Languages126127| If Detected | Add These Commands |128| -------------- | -------------------------------------------------------------------- |129| `go.mod` | `go version`, `go list`, `go mod graph`, `go env` |130| `Cargo.toml` | `rustc --version`, `cargo --version`, `cargo tree`, `cargo metadata` |131| `Gemfile` | `ruby --version`, `bundle list`, `bundle show` |132| `pom.xml` | `java --version`, `mvn --version`, `mvn dependency:tree` |133| `build.gradle` | `java --version`, `gradle --version`, `gradle dependencies` |134135#### Build Tools136137| If Detected | Add These Commands |138| -------------------- | -------------------------------------------------------------------- |139| `Dockerfile` | `docker --version`, `docker ps`, `docker images` |140| `docker-compose.yml` | `docker-compose ps`, `docker-compose config` |141| `*.tf` files | `terraform --version`, `terraform providers`, `terraform state list` |142| `Makefile` | `make --version`, `make -n` |143144### Skills (for Sentry Projects)145146If this is a Sentry project (or sentry-skills plugin is installed), include:147148```json149[150 "Skill(sentry-skills:agents-md)",151 "Skill(sentry-skills:blog-writing-guide)",152 "Skill(sentry-skills:brand-guidelines)",153 "Skill(sentry-skills:claude-settings-audit)",154 "Skill(sentry-skills:code-review)",155 "Skill(sentry-skills:code-simplifier)",156 "Skill(sentry-skills:commit)",157 "Skill(sentry-skills:create-branch)",158 "Skill(sentry-skills:create-pr)",159 "Skill(sentry-skills:django-access-review)",160 "Skill(sentry-skills:django-perf-review)",161 "Skill(sentry-skills:doc-coauthoring)",162 "Skill(sentry-skills:find-bugs)",163 "Skill(sentry-skills:gh-review-requests)",164 "Skill(sentry-skills:gha-security-review)",165 "Skill(sentry-skills:iterate-pr)",166 "Skill(sentry-skills:pr-writer)",167 "Skill(sentry-skills:security-review)",168 "Skill(sentry-skills:skill-creator)",169 "Skill(sentry-skills:skill-scanner)",170 "Skill(sentry-skills:skill-writer)",171 "Skill(sentry-skills:sred-project-organizer)",172 "Skill(sentry-skills:sred-work-summary)"173]174```175176### WebFetch Domains177178#### Always Include (Sentry Projects)179180```json181[182 "WebFetch(domain:docs.sentry.io)",183 "WebFetch(domain:develop.sentry.dev)",184 "WebFetch(domain:docs.github.com)",185 "WebFetch(domain:cli.github.com)"186]187```188189#### Framework-Specific190191| If Detected | Add Domains |192| -------------- | ----------------------------------------------- |193| **Django** | `docs.djangoproject.com` |194| **Flask** | `flask.palletsprojects.com` |195| **FastAPI** | `fastapi.tiangolo.com` |196| **React** | `react.dev` |197| **Next.js** | `nextjs.org` |198| **Vue** | `vuejs.org` |199| **Express** | `expressjs.com` |200| **Rails** | `guides.rubyonrails.org`, `api.rubyonrails.org` |201| **Go** | `pkg.go.dev` |202| **Rust** | `docs.rs`, `doc.rust-lang.org` |203| **Docker** | `docs.docker.com` |204| **Kubernetes** | `kubernetes.io` |205| **Terraform** | `registry.terraform.io` |206207### MCP Server Suggestions208209MCP servers are configured in `.mcp.json` (not `settings.json`). Check for existing config:210211```bash212cat .mcp.json 2>/dev/null || echo "No existing .mcp.json"213```214215#### Sentry MCP (if Sentry SDK detected)216217Add to `.mcp.json` (replace `{org-slug}` and `{project-slug}` with your Sentry organization and project slugs):218219```json220{221 "mcpServers": {222 "sentry": {223 "type": "http",224 "url": "https://mcp.sentry.dev/mcp/{org-slug}/{project-slug}"225 }226 }227}228```229230#### Linear MCP (if Linear usage detected)231232Add to `.mcp.json`:233234```json235{236 "mcpServers": {237 "linear": {238 "command": "npx",239 "args": ["-y", "@linear/mcp-server"],240 "env": {241 "LINEAR_API_KEY": "${LINEAR_API_KEY}"242 }243 }244 }245}246```247248**Note**: Never suggest GitHub MCP. Always use `gh` CLI commands for GitHub.249250## Output Format251252Present your findings as:2532541. **Summary Table** - What was detected2552. **Recommended settings.json** - Complete JSON ready to copy2563. **MCP Suggestions** - If applicable2574. **Merge Instructions** - If existing settings found258259Example output structure:260261```markdown262## Detected Tech Stack263264| Category | Found |265| --------------- | -------------- |266| Languages | Python 3.x |267| Package Manager | poetry |268| Frameworks | Django, Celery |269| Services | Sentry |270| Build Tools | Docker, Make |271272## Recommended .claude/settings.json273274\`\`\`json275{276"permissions": {277"allow": [278// ... grouped by category with comments279],280"deny": []281}282}283\`\`\`284285## Recommended .mcp.json (if applicable)286287If you use Sentry or Linear, add the MCP config to `.mcp.json`...288```289290## Important Rules291292### What to Include293294- Only READ-ONLY commands that cannot modify state295- Only tools that are actually used by the project (detected via lock files)296- Standard system commands (ls, cat, find, etc.)297- The `:*` suffix allows any arguments to the base command298299### What to NEVER Include300301- **Absolute paths** - Never include user-specific paths like `/home/user/scripts/foo` or `/Users/name/bin/bar`302- **Custom scripts** - Never include project scripts that may have side effects (e.g., `./scripts/deploy.sh`)303- **Alternative package managers** - If the project uses pnpm, do NOT include npm/yarn commands304- **Commands that modify state** - No install, build, run, write, or delete commands305306### Package Manager Rules307308Only include the package manager actually used by the project:309310| If Detected | Include | Do NOT Include |311| ------------------- | --------------- | -------------------------------------- |312| `pnpm-lock.yaml` | pnpm commands | npm, yarn |313| `yarn.lock` | yarn commands | npm, pnpm |314| `package-lock.json` | npm commands | yarn, pnpm |315| `poetry.lock` | poetry commands | pip (unless also has requirements.txt) |316| `uv.lock` | uv commands | pip, poetry |317| `Pipfile.lock` | pipenv commands | pip, poetry |318319If multiple lock files exist, include only the commands for each detected manager.320321## Limitations322- Use this skill only when the task clearly matches the scope described above.323- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.324- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.