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.
Add this skill
npx mdskills install getsentry/claude-settings-auditComprehensive tech stack detection with systematic permission generation and clear decision rules
Agent skills for Sentry employees, following the Agent Skills open format.
claude plugin marketplace add getsentry/skills
claude plugin install sentry-skills@sentry-skills
Restart Claude Code after installation. Skills activate automatically when relevant.
Update:
claude plugin marketplace update
claude plugin update sentry-skills@sentry-skills
Or run /plugin to open the plugin manager.
For agents supporting the skills.sh ecosystem:
npx skills add getsentry/skills
Works with Claude Code, Cursor, Cline, GitHub Copilot, and other compatible agents.
| Skill | Description |
|---|---|
| code-review | Sentry code review guidelines and checklist |
| commit | Sentry commit message conventions |
| create-pr | Create pull requests following Sentry conventions |
| find-bugs | Find bugs and security vulnerabilities in branch changes |
| iterate-pr | Iterate on a PR until CI passes and feedback is addressed |
| claude-settings-audit | Analyze repo and generate recommended Claude Code settings.json permissions |
| agents-md | Maintain AGENTS.md with concise agent instructions |
| brand-guidelines | Write copy following Sentry brand guidelines |
| doc-coauthoring | Structured workflow for co-authoring documentation, proposals, and specs |
| security-review | Systematic security code review following OWASP guidelines |
| code-simplifier | Simplifies and refines code for clarity, consistency, and maintainability |
| skill-creator | Create new agent skills for this repository |
| skill-scanner | Scan agent skills for security issues before adoption |
| Subagent | Description |
|---|---|
| code-simplifier | Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality |
git clone git@github.com:getsentry/skills.git ~/sentry-skills
claude plugin marketplace add ~/sentry-skills
claude plugin install sentry-skills
sentry-skills/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
├── plugins/
│ └── sentry-skills/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── agents/
│ │ └── code-simplifier.md
│ └── skills/
│ ├── code-review/
│ │ └── SKILL.md
│ └── commit/
│ └── SKILL.md
├── AGENTS.md # Agent-facing documentation
├── CLAUDE.md # Symlink to AGENTS.md
└── README.md # This file
Skills follow the Agent Skills specification. Each skill requires a SKILL.md file with YAML frontmatter.
Create a new directory under plugins/sentry-skills/skills/:
plugins/sentry-skills/skills/my-skill/
└── SKILL.md
SKILL.md format:
---
name: my-skill
description: A clear description of what this skill does and when to use it. Include keywords that help agents identify when this skill is relevant.
---
# My Skill Name
## Instructions
Step-by-step guidance for the agent.
## Examples
Concrete examples showing expected input/output.
## Guidelines
- Specific rules to follow
- Edge cases to handle
| Field | Description |
|---|---|
license | License name or path to license file |
compatibility | Environment requirements (max 500 chars) |
allowed-tools | Comma-separated list of tools the skill can use |
metadata | Arbitrary key-value pairs for additional properties |
---
name: my-skill
description: What this skill does
license: Apache-2.0
allowed-tools: Read, Grep, Glob
---
Skills should live in the appropriate location based on their scope:
| Scope | Location | Example |
|---|---|---|
| Global - Used across Sentry | sentry-skills plugin | commit, code-review, create-pr |
| Domain-specific - Used by a team or domain | Dedicated plugin in this repo (e.g., infra-skills) | gcp-logs, terraform-review |
| Repo-specific - Only relevant to one repo | The repository itself (.claude/skills/) | Project-specific workflows |
When deciding where to place a skill:
sentry-skillsThis repository is a Claude Code marketplace - a collection of plugins that can be installed independently. The marketplace manifest (.claude-plugin/marketplace.json) lists all available plugins:
{
"plugins": [
{ "name": "sentry-skills", "source": "./plugins/sentry-skills" },
{ "name": "infra-skills", "source": "./plugins/infra-skills" }
]
}
Each plugin lives in its own directory under plugins/ with its own plugin.json manifest. Users can install individual plugins:
# Install just the global skills
claude plugin install sentry-skills@sentry-skills
# Install domain-specific skills
claude plugin install infra-skills@sentry-skills
To add a new domain-specific plugin:
plugins//.claude-plugin/plugin.jsonplugins//skills/.claude-plugin/marketplace.jsonWe vendor (copy) skills and agents that we use regularly into this repository rather than depending on external sources at runtime. This approach:
When vendoring a skill or agent from an external source, retain proper attribution:
Add a comment at the top of the file referencing the original source:
Include a LICENSE file in the skill directory if the original has specific licensing requirements:
plugins/sentry-skills/skills/vendored-skill/
├── SKILL.md
└── LICENSE # Original license text
The code-simplifier agent is vendored from Anthropic's official plugins. See the attribution comment at the top of the agent file.
Apache-2.0
Best experience: Claude Code
/plugin marketplace add getsentry/claude-settings-auditThen /plugin menu → select skill → restart. Use /skill-name:init for first-time setup.
Other platforms
Install via CLI
npx mdskills install getsentry/claude-settings-auditClaude Settings Audit is a free, open-source AI agent skill. 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.
Install Claude Settings Audit with a single command:
npx mdskills install getsentry/claude-settings-auditThis downloads the skill files into your project and your AI agent picks them up automatically.
Claude Settings Audit works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Codex, Gemini Cli, Amp, Roo Code, Goose, Opencode, Trae, Qodo, Command Code. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.