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 environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
Source: sickn33/agentic-awesome-skills → skills/claude-settings-audit/SKILL.md
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---567# Claude Settings Audit89Analyze this repository and generate recommended Claude Code `settings.json` permissions for read-only commands.1011## When to Use12- You are setting up or auditing Claude Code `settings.json` permissions for a repository.13- You need to infer a safe read-only allow list from the repo's tech stack, tooling, and monorepo structure.14- You want to review or replace an existing Claude permissions baseline with something evidence-based.1516## Phase 1: Detect Tech Stack1718Run these commands to detect the repository structure:1920```bash21ls -la22find . -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 -5023```2425Check for these indicator files:2627| Category | Files to Check |28| ------------ | ------------------------------------------------------------------------------------- |29| **Python** | `pyproject.toml`, `setup.py`, `requirements.txt`, `Pipfile`, `poetry.lock`, `uv.lock` |30| **Node.js** | `package.json`, `package-lock.json`, `yarn.lock`, `pnpm-lock.yaml` |31| **Go** | `go.mod`, `go.sum` |32| **Rust** | `Cargo.toml`, `Cargo.lock` |33| **Ruby** | `Gemfile`, `Gemfile.lock` |34| **Java** | `pom.xml`, `build.gradle`, `build.gradle.kts` |35| **Build** | `Makefile`, `Dockerfile`, `docker-compose.yml` |36| **Infra** | `*.tf` files, `kubernetes/`, `helm/` |37| **Monorepo** | `lerna.json`, `nx.json`, `turbo.json`, `pnpm-workspace.yaml` |3839## Phase 2: Detect Services4041Check for service integrations:4243| Service | Detection |44| ---------- | ------------------------------------------------------------------------------- |45| **Sentry** | `sentry-sdk` in deps, `@sentry/*` packages, `.sentryclirc`, `sentry.properties` |46| **Linear** | Linear config files, `.linear/` directory |4748Read dependency files to identify frameworks:4950- `package.json` → check `dependencies` and `devDependencies`51- `pyproject.toml` → check `[project.dependencies]` or `[tool.poetry.dependencies]`52- `Gemfile` → check gem names53- `Cargo.toml` → check `[dependencies]`5455## Phase 3: Check Existing Settings5657```bash58cat .claude/settings.json 2>/dev/null || echo "No existing settings"59```6061## Phase 4: Generate Recommendations6263Build the allow list by combining:6465### Baseline Commands (Always Include)6667```json68[69 "Bash(ls:*)",70 "Bash(pwd:*)",71 "Bash(find:*)",72 "Bash(file:*)",73 "Bash(stat:*)",74 "Bash(wc:*)",75 "Bash(head:*)",76 "Bash(tail:*)",77 "Bash(cat:*)",78 "Bash(tree:*)",79 "Bash(git status:*)",80 "Bash(git log:*)",81 "Bash(git diff:*)",82 "Bash(git show:*)",83 "Bash(git branch:*)",84 "Bash(git remote:*)",85 "Bash(git tag:*)",86 "Bash(git stash list:*)",87 "Bash(git rev-parse:*)",88 "Bash(gh pr view:*)",89 "Bash(gh pr list:*)",90 "Bash(gh pr checks:*)",91 "Bash(gh pr diff:*)",92 "Bash(gh issue view:*)",93 "Bash(gh issue list:*)",94 "Bash(gh run view:*)",95 "Bash(gh run list:*)",96 "Bash(gh run logs:*)",97 "Bash(gh repo view:*)",98 "Bash(gh api:*)"99]100```101102### Stack-Specific Commands103104Only include commands for tools actually detected in the project.105106#### Python (if any Python files or config detected)107108| If Detected | Add These Commands |109| ---------------------------------- | --------------------------------------- |110| Any Python | `python --version`, `python3 --version` |111| `poetry.lock` | `poetry show`, `poetry env info` |112| `uv.lock` | `uv pip list`, `uv tree` |113| `Pipfile.lock` | `pipenv graph` |114| `requirements.txt` (no other lock) | `pip list`, `pip show`, `pip freeze` |115116#### Node.js (if package.json detected)117118| If Detected | Add These Commands |119| ---------------------------- | -------------------------------------- |120| Any Node.js | `node --version` |121| `pnpm-lock.yaml` | `pnpm list`, `pnpm why` |122| `yarn.lock` | `yarn list`, `yarn info`, `yarn why` |123| `package-lock.json` | `npm list`, `npm view`, `npm outdated` |124| TypeScript (`tsconfig.json`) | `tsc --version` |125126#### Other Languages127128| If Detected | Add These Commands |129| -------------- | -------------------------------------------------------------------- |130| `go.mod` | `go version`, `go list`, `go mod graph`, `go env` |131| `Cargo.toml` | `rustc --version`, `cargo --version`, `cargo tree`, `cargo metadata` |132| `Gemfile` | `ruby --version`, `bundle list`, `bundle show` |133| `pom.xml` | `java --version`, `mvn --version`, `mvn dependency:tree` |134| `build.gradle` | `java --version`, `gradle --version`, `gradle dependencies` |135136#### Build Tools137138| If Detected | Add These Commands |139| -------------------- | -------------------------------------------------------------------- |140| `Dockerfile` | `docker --version`, `docker ps`, `docker images` |141| `docker-compose.yml` | `docker-compose ps`, `docker-compose config` |142| `*.tf` files | `terraform --version`, `terraform providers`, `terraform state list` |143| `Makefile` | `make --version`, `make -n` |144145### Skills (for Sentry Projects)146147If this is a Sentry project (or sentry-skills plugin is installed), include:148149```json150[151 "Skill(sentry-skills:agents-md)",152 "Skill(sentry-skills:blog-writing-guide)",153 "Skill(sentry-skills:brand-guidelines)",154 "Skill(sentry-skills:claude-settings-audit)",155 "Skill(sentry-skills:code-review)",156 "Skill(sentry-skills:code-simplifier)",157 "Skill(sentry-skills:commit)",158 "Skill(sentry-skills:create-branch)",159 "Skill(sentry-skills:create-pr)",160 "Skill(sentry-skills:django-access-review)",161 "Skill(sentry-skills:django-perf-review)",162 "Skill(sentry-skills:doc-coauthoring)",163 "Skill(sentry-skills:find-bugs)",164 "Skill(sentry-skills:gh-review-requests)",165 "Skill(sentry-skills:gha-security-review)",166 "Skill(sentry-skills:iterate-pr)",167 "Skill(sentry-skills:pr-writer)",168 "Skill(sentry-skills:security-review)",169 "Skill(sentry-skills:skill-creator)",170 "Skill(sentry-skills:skill-scanner)",171 "Skill(sentry-skills:skill-writer)",172 "Skill(sentry-skills:sred-project-organizer)",173 "Skill(sentry-skills:sred-work-summary)"174]175```176177### WebFetch Domains178179#### Always Include (Sentry Projects)180181```json182[183 "WebFetch(domain:docs.sentry.io)",184 "WebFetch(domain:develop.sentry.dev)",185 "WebFetch(domain:docs.github.com)",186 "WebFetch(domain:cli.github.com)"187]188```189190#### Framework-Specific191192| If Detected | Add Domains |193| -------------- | ----------------------------------------------- |194| **Django** | `docs.djangoproject.com` |195| **Flask** | `flask.palletsprojects.com` |196| **FastAPI** | `fastapi.tiangolo.com` |197| **React** | `react.dev` |198| **Next.js** | `nextjs.org` |199| **Vue** | `vuejs.org` |200| **Express** | `expressjs.com` |201| **Rails** | `guides.rubyonrails.org`, `api.rubyonrails.org` |202| **Go** | `pkg.go.dev` |203| **Rust** | `docs.rs`, `doc.rust-lang.org` |204| **Docker** | `docs.docker.com` |205| **Kubernetes** | `kubernetes.io` |206| **Terraform** | `registry.terraform.io` |207208### MCP Server Suggestions209210MCP servers are configured in `.mcp.json` (not `settings.json`). Check for existing config:211212```bash213cat .mcp.json 2>/dev/null || echo "No existing .mcp.json"214```215216#### Sentry MCP (if Sentry SDK detected)217218Add to `.mcp.json` (replace `{org-slug}` and `{project-slug}` with your Sentry organization and project slugs):219220```json221{222 "mcpServers": {223 "sentry": {224 "type": "http",225 "url": "https://mcp.sentry.dev/mcp/{org-slug}/{project-slug}"226 }227 }228}229```230231#### Linear MCP (if Linear usage detected)232233Add to `.mcp.json`:234235```json236{237 "mcpServers": {238 "linear": {239 "command": "npx",240 "args": ["-y", "@linear/mcp-server"],241 "env": {242 "LINEAR_API_KEY": "${LINEAR_API_KEY}"243 }244 }245 }246}247```248249**Note**: Never suggest GitHub MCP. Always use `gh` CLI commands for GitHub.250251## Output Format252253Present your findings as:2542551. **Summary Table** - What was detected2562. **Recommended settings.json** - Complete JSON ready to copy2573. **MCP Suggestions** - If applicable2584. **Merge Instructions** - If existing settings found259260Example output structure:261262```markdown263## Detected Tech Stack264265| Category | Found |266| --------------- | -------------- |267| Languages | Python 3.x |268| Package Manager | poetry |269| Frameworks | Django, Celery |270| Services | Sentry |271| Build Tools | Docker, Make |272273## Recommended .claude/settings.json274275\`\`\`json276{277"permissions": {278"allow": [279// ... grouped by category with comments280],281"deny": []282}283}284\`\`\`285286## Recommended .mcp.json (if applicable)287288If you use Sentry or Linear, add the MCP config to `.mcp.json`...289```290291## Important Rules292293### What to Include294295- Only READ-ONLY commands that cannot modify state296- Only tools that are actually used by the project (detected via lock files)297- Standard system commands (ls, cat, find, etc.)298- The `:*` suffix allows any arguments to the base command299300### What to NEVER Include301302- **Absolute paths** - Never include user-specific paths like `/home/user/scripts/foo` or `/Users/name/bin/bar`303- **Custom scripts** - Never include project scripts that may have side effects (e.g., `./scripts/deploy.sh`)304- **Alternative package managers** - If the project uses pnpm, do NOT include npm/yarn commands305- **Commands that modify state** - No install, build, run, write, or delete commands306307### Package Manager Rules308309Only include the package manager actually used by the project:310311| If Detected | Include | Do NOT Include |312| ------------------- | --------------- | -------------------------------------- |313| `pnpm-lock.yaml` | pnpm commands | npm, yarn |314| `yarn.lock` | yarn commands | npm, pnpm |315| `package-lock.json` | npm commands | yarn, pnpm |316| `poetry.lock` | poetry commands | pip (unless also has requirements.txt) |317| `uv.lock` | uv commands | pip, poetry |318| `Pipfile.lock` | pipenv commands | pip, poetry |319320If multiple lock files exist, include only the commands for each detected manager.321322## Limitations323- Use this skill only when the task clearly matches the scope described above.324- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.325- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.326327---328329**Source:** [`sickn33/agentic-awesome-skills`](https://github.com/sickn33/agentic-awesome-skills) → `skills/claude-settings-audit/SKILL.md`