| Skill | Added | Review |
|---|---|---|
analytics .agents/skills/analytics/SKILL.md Instrument and discover analytics events in Sentry's frontend UI. Use when adding tracking to buttons, pages, modals, or custom interactions, when defining new analytics events, when searching for existing events, when auditing analytics coverage for a feature, or when answering questions about how users interact with a feature. Trigger on "add analytics", "track event", "instrument analytics", "analytics event", "track click", "track page view", "add tracking", "what events exist for", "audit analytics", "how many people", "how many users", "are people using", "is anyone clicking", "usage of", "who is using". | 74 74 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
backend-conventions .agents/skills/backend-conventions/SKILL.md Sentry backend conventions for logging, tracing/spans, span/tag attribute naming, metrics tags, and the options system. Use when adding or editing Python in src/ that logs (logger.info/exception), records metrics (metrics.incr/timing with tags), instruments spans/transactions, calls sentry_sdk.set_tag/set_attribute or set_span_tag/set_span_data, or reads registered options with options.get(). Trigger on "add logging", "log an error", "add a metric", "add a span", "instrument tracing", "set an attribute", "add a tag", "read an option", "LOG005", "LOG011", or metrics tag cardinality questions. | 76 76 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
bump-sentry-dependency .agents/skills/bump-sentry-dependency/SKILL.md Bumps an existing Python dependency in getsentry/sentry through the repository's self-serve GitHub Actions workflow. Use when asked to update, upgrade, or bump a Python package version in Sentry. Does not apply to new dependencies, JavaScript packages, or informational questions about dependency management. | 72 72 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
cell-architecture .agents/skills/cell-architecture/SKILL.md Reference and active migration guide for Sentry's cell architecture. Explains what cells and localities are and why they're different, how requests reach cells via Synapse API routing, ingestion routing, and the control silo gateway, and how to safely query cross-cell data without silently missing results. The migration section covers how to do migration work: draining the URL_NAME_TO_ACTION registry in test_urls.py to zero (with a recipe for each action type), rolling deploy safety and the two-phase pattern required by independent sentry/getsentry deploys, and the region -> cell rename including what not to rename (DB columns, AWS refs, uptime regions, billing address). Also documents known issues with proposed fixes: integration TeamLinkageView routing, Jira cross-cell fan-out, and relocation endpoint routing. | 64 64 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
cmdk-actions .agents/skills/cmdk-actions/SKILL.md Guide for adding new actions to Sentry's Command+K palette. Use when implementing new cmdk actions, registering page-level or global actions, building async resource pickers, or adding contextual actions to a view. | 72 72 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
design-system .agents/skills/design-system/SKILL.md Guide for using Sentry's layout and text primitives. Use when implementing UI components, layouts, or typography. Enforces use of core components over styled components. | 64 64 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
django-models .agents/skills/django-models/SKILL.md Design Django ORM models for Sentry following architectural conventions for silos, replication, relocation, and foreign keys. Use when adding a new Django model, designing a model for a feature, deciding where data should live, picking a foreign key type, or refactoring an existing model's silo placement. Trigger on "add a Django model", "create a model", "design a model for X", "new database table", "store this data in the DB", "I need to track Y", "model for [feature]". Not for Pydantic models, dataclasses, ML models, or Protobuf — this is specifically for Django ORM models in the Sentry codebase. | 75 75 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
feature-flags .agents/skills/feature-flags/SKILL.md Gate a Sentry feature behind a FlagPole feature flag. Use when adding a feature flag, registering a flag in temporary.py, checking a flag from Python or the frontend, enabling a flag in tests, or asking where FlagPole rollout config lives. Trigger on "add a feature flag", "gate this behind a flag", "register a flag", "features.has", "api_expose", "OrganizationFeature", "ProjectFeature", "FlagPole". | 77 77 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
frontend-data-fetching .agents/skills/frontend-data-fetching/SKILL.md Fetch data in Sentry's frontend with TanStack Query and apiOptions. Use when adding or editing React code in static/ that calls the API — useQuery/useMutation/useInfiniteQuery, apiOptions, queryOptions/mutationOptions, fetchMutation, reading response headers/pagination, or conditional fetching. Trigger on "fetch data", "add an API call", "useQuery", "useMutation", "apiOptions", "queryFn", "pagination headers", "X-Hits", or "why is my query type wrong". | 74 74 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
generate-frontend-forms .agents/skills/generate-frontend-forms/SKILL.md Guide for creating forms using Sentry's new form system. Use when implementing forms, form fields, validation, or auto-save functionality. | 64 64 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
generate-migration .agents/skills/generate-migration/SKILL.md Generate or review Django database migrations for Sentry. Use when creating or reviewing migrations and data migrations, adding/removing columns or tables, adding indexes, or resolving migration conflicts. | 76 76 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
generate-snapshot-tests .agents/skills/generate-snapshot-tests/SKILL.md Generate snapshot test files for Sentry frontend React components. Use when asked to "generate snapshot tests", "add snapshot tests", "create visual snapshots", "write snapshot tests", "add visual regression tests", or "snapshot this component". Accepts an optional component path or name via $ARGUMENTS. | 70 70 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
hybrid-cloud-outboxes .agents/skills/hybrid-cloud-outboxes/SKILL.md Guide for creating and maintaining outbox-based eventually consistent operations in Sentry. Most commonly used for cross-silo data replication, but applicable anywhere eventual consistency is needed — including single-silo deferred side effects, audit logging, and event fanout. Use when asked to "add outbox", "add outbox replication", "replicate model to control silo", "replicate model to cell", "add outbox category", "write outbox signal receiver", "debug stuck outboxes", "outbox not processing", "data not replicating", "test outbox", "migrate model to use outboxes", "backfill outbox data", "outbox coalescing", "ReplicatedCellModel", "ReplicatedControlModel", "OutboxCategory", "OutboxScope", or "outbox_runner". Covers model mixins, category registration, signal receivers, testing, backfill, and debugging workflows. | 77 77 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
hybrid-cloud-rpc .agents/skills/hybrid-cloud-rpc/SKILL.md Guide for creating, updating, and deprecating hybrid cloud RPC services in Sentry. Use when asked to "add RPC method", "create RPC service", "hybrid cloud service", "new RPC model", "deprecate RPC method", "remove RPC endpoint", "cross-silo service", "cell RPC", or "control silo service". Covers service scaffolding, method signatures, RPC models, cell resolvers, testing, and safe deprecation workflows. | 73 73 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
hybrid-cloud-test-gen .agents/skills/hybrid-cloud-test-gen/SKILL.md Generate hybrid cloud tests for the Sentry codebase. Use when asked to "generate HC test", "create hybrid cloud test", "write HC test", "add HC test", "write RPC test", "test RPC service", "silo test", "cross-silo test", "outbox test", "API gateway test", or "endpoint silo test". Covers RPC service tests, API gateway tests, outbox pattern tests, and API endpoint tests with silo decorators. | 77 77 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
lint-fix .agents/skills/lint-fix/SKILL.md Fix violations of an eslintPluginScraps rule across the codebase. Use when asked to "fix lint violations", "apply a lint rule", "fix scraps rule errors", "roll out a lint rule", "enforce a rule codebase-wide", or "fix design system lint". Covers manual fixes, autofix, batching, and codemod strategies for large-scale rollouts. | 76 76 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
lint-new .agents/skills/lint-new/SKILL.md Create a new ESLint rule with tests for eslintPluginScraps. Use when asked to "create a lint rule", "add an eslint rule", "scaffold a rule", "write a new scraps rule", or "new design system lint rule". Covers rule creation, test authoring, registration, and autofix implementation. | 79 79 1.28x Agent success vs baseline Impact 54% 1.28xAverage score across 2 eval scenarios Securityby Passed No findings from the security scan Reviewed: Version: d5672c5 | |
migrate-breadcrumb-list .agents/skills/migrate-breadcrumb-list/SKILL.md Migrates page-navigation breadcrumbs from the legacy `sentry/components/breadcrumbs` component to `@sentry/scraps/breadcrumbList`, splitting one flat crumb array across the TopBar `breadcrumbs` and `title` slots. Use when a page still renders `<Breadcrumbs crumbs={...}/>`, when parent crumbs and the page title need separating into two TopBar slots, when `Layout.Title` double-renders the page name, when a migrated crumb needs to keep the project or date selection, or when working through the BreadcrumbList migration backlog. Trigger on "migrate breadcrumbs", "migrate to BreadcrumbList", "replace sentry/components/breadcrumbs", "split breadcrumbs into TopBar slots", "BreadcrumbList.Title", "the page title renders twice", "preservePageFilters". Not for event breadcrumbs (`sentry/types/breadcrumbs`, the issue-detail timeline), and not for the route-driven SettingsBreadcrumb system. | 76 76 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
migrate-container-queries .agents/skills/migrate-container-queries/SKILL.md Guide for migrating viewport media queries (@media, useMedia, and screen:-prefixed responsive props) to container queries in Sentry's frontend. Use when migrating responsive layout to container queries, replacing @media/useMedia/screen: breakpoints, refactoring styled responsive components to Container/Flex/Grid primitives, or working on the DE container-query migration. | 72 72 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 | |
migrate-frontend-forms .agents/skills/migrate-frontend-forms/SKILL.md Guide for migrating forms from the legacy JsonForm/FormModel system to the new TanStack-based form system. | 56 56 Impact — No eval scenarios have been run Securityby Passed No findings from the security scan Version: d5672c5 |