Loading...
Loading...
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.
npx skill4agent add getsentry/skills claude-settings-auditsettings.jsonls -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| Category | Files to Check |
|---|---|
| Python | |
| Node.js | |
| Go | |
| Rust | |
| Ruby | |
| Java | |
| Build | |
| Infra | |
| Monorepo | |
| Service | Detection |
|---|---|
| Sentry | |
| Linear | Linear config files, |
package.jsondependenciesdevDependenciespyproject.toml[project.dependencies][tool.poetry.dependencies]GemfileCargo.toml[dependencies]cat .claude/settings.json 2>/dev/null || echo "No existing settings"[
"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:*)"
]| If Detected | Add These Commands |
|---|---|
| Any Python | |
| |
| |
| |
| |
| If Detected | Add These Commands |
|---|---|
| Any Node.js | |
| |
| |
| |
TypeScript ( | |
| If Detected | Add These Commands |
|---|---|
| |
| |
| |
| |
| |
| If Detected | Add These Commands |
|---|---|
| |
| |
| |
| |
[
"Skill(sentry-skills:commit)",
"Skill(sentry-skills:create-pr)",
"Skill(sentry-skills:code-review)",
"Skill(sentry-skills:find-bugs)",
"Skill(sentry-skills:iterate-pr)",
"Skill(sentry-skills:claude-settings-audit)",
"Skill(sentry-skills:agents-md)",
"Skill(sentry-skills:brand-guidelines)",
"Skill(sentry-skills:doc-coauthoring)",
"Skill(sentry-skills:security-review)",
"Skill(sentry-skills:django-perf-review)",
"Skill(sentry-skills:code-simplifier)"
][
"WebFetch(domain:docs.sentry.io)",
"WebFetch(domain:develop.sentry.dev)",
"WebFetch(domain:docs.github.com)",
"WebFetch(domain:cli.github.com)"
]| If Detected | Add Domains |
|---|---|
| Django | |
| Flask | |
| FastAPI | |
| React | |
| Next.js | |
| Vue | |
| Express | |
| Rails | |
| Go | |
| Rust | |
| Docker | |
| Kubernetes | |
| Terraform | |
.mcp.jsonsettings.jsoncat .mcp.json 2>/dev/null || echo "No existing .mcp.json".mcp.json{org-slug}{project-slug}{
"mcpServers": {
"sentry": {
"type": "http",
"url": "https://mcp.sentry.dev/mcp/{org-slug}/{project-slug}"
}
}
}.mcp.json{
"mcpServers": {
"linear": {
"command": "npx",
"args": ["-y", "@linear/mcp-server"],
"env": {
"LINEAR_API_KEY": "${LINEAR_API_KEY}"
}
}
}
}gh## 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`...:*/home/user/scripts/foo/Users/name/bin/bar./scripts/deploy.sh| If Detected | Include | Do NOT Include |
|---|---|---|
| pnpm commands | npm, yarn |
| yarn commands | npm, pnpm |
| npm commands | yarn, pnpm |
| poetry commands | pip (unless also has requirements.txt) |
| uv commands | pip, poetry |
| pipenv commands | pip, poetry |