Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

configure-sentry配置哨兵

Agent Skill

configure-sentry 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,310

周安装

53

GitHub Stars

28

下载量

411
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:configure-sentry(配置哨兵)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/configure-sentry
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill configure-sentry
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill configure-sentry

简介

用于配置 Sentry 错误追踪集成,确保异常事件被正确捕获。

  • 适合需要监控生产环境稳定性和快速定位问题的项目。
  • 可检查 SDK 安装和 DSN 配置,避免硬编码密钥泄露。
  • 安装前需确认是否包含系统命令执行权限,避免误修改敏感配置。
  • configure-sentry 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/configure:sentry

Check and configure Sentry error tracking integration against project standards.

When to Use This Skill

Use this skill when...Use another approach when...
Setting up Sentry error tracking for a new projectDebugging a specific Sentry issue or alert (use Sentry MCP server)
Checking Sentry SDK installation and configuration complianceQuerying Sentry events or performance data (use Sentry API/MCP)
Fixing hardcoded DSNs or missing environment variable referencesManaging Sentry project settings in the Sentry dashboard
Adding source map upload and release tracking to CI/CDConfiguring Sentry alerting rules or notification channels
Verifying Sentry configuration across frontend, Next.js, Node.js, or Python projectsInstalling a different error tracking tool (e.g., Bugsnag, Rollbar)
Adding profiling, structured logging, or enrichment helpersConfiguring Sentry alerting rules or notification channels

Context

  • Package.json:!find. -maxdepth 1 -name \'package.json\'
  • Pyproject.toml:!find. -maxdepth 1 -name \'pyproject.toml\'
  • Requirements.txt:!find. -maxdepth 1 -name \'requirements.txt\'
  • Project standards:!find. -maxdepth 1 -name '.project-standards.yaml' -type f
  • Sentry in package.json:!grep -o '"@sentry/[^"]*"' package.json
  • Sentry in pyproject.toml:!grep 'sentry' pyproject.toml
  • Sentry init files:!find. -maxdepth 3 -name "*sentry*" -type f
  • Next.js config:!find. -maxdepth 1 -name 'next.config.*'
  • Instrumentation files:!find src -maxdepth 1 -name 'instrumentation*' -type f
  • Env files referencing DSN:!grep -rl 'SENTRY_DSN'.env*.github/workflows/
  • CI workflows:!find.github/workflows -maxdepth 1 -name '*.yml'

Skills referenced: sentry (MCP server for Sentry API)

Parameters

Parse these from $ARGUMENTS:

FlagDescription
--check-onlyReport status without offering fixes
--fixApply all fixes automatically without prompting
--type <type>Override project type detection (frontend, nextjs, python, node)

Version Checking

CRITICAL: Before configuring Sentry SDKs, verify latest versions:

  1. @sentry/vue / @sentry/react: Check npm
  2. @sentry/nextjs: Check npm
  3. @sentry/node: Check npm
  4. sentry-sdk (Python): Check PyPI
  5. @sentry/vite-plugin: Check npm

Use WebSearch or WebFetch to verify current SDK versions before configuring Sentry.

Execution

Execute this Sentry compliance check:

Step 1: Detect project type

Determine the project type to select the appropriate SDK and configuration:

  1. Read .project-standards.yaml for project_type field
  2. If not found, auto-detect:

- nextjs: Has package.json with next dependency (check for @sentry/nextjs) - frontend: Has package.json with vue/react dependencies (without Next.js) - node: Has package.json with Node.js backend (express, fastify, etc.) - python: Has pyproject.toml or requirements.txt

  1. If --type flag is provided, use that value instead

Step 2: Check SDK installation

Check for Sentry SDK based on detected project type:

Next.js:

  • @sentry/nextjs in package.json dependencies
  • @sentry/profiling-node (recommended for server profiling)

Frontend (Vue/React):

  • @sentry/vue or @sentry/react in package.json dependencies
  • @sentry/vite-plugin for source maps

Node.js Backend:

  • @sentry/node in package.json dependencies
  • @sentry/profiling-node (recommended)

Python:

  • sentry-sdk in pyproject.toml or requirements.txt
  • Framework integrations (django, flask, fastapi)

Step 3: Analyze configuration

Read the Sentry initialization files and check against the compliance tables in REFERENCE.md. Validate:

  1. DSN comes from environment variables (not hardcoded)
  2. Tracing sample rate is configured (different for prod vs dev)
  3. Source maps are enabled (frontend/Next.js)
  4. Init location is correct (Node.js: before other imports)
  5. Framework integration is enabled (Python)

Additional checks for Next.js projects:

  1. src/instrumentation.ts exists with register() and onRequestError exports
  2. src/instrumentation-client.ts exists with client-side Sentry init
  3. sentry.server.config.ts and sentry.edge.config.ts exist at project root
  4. next.config.mjs wraps config with withSentryConfig()
  5. Tunnel route configured (tunnelRoute: "/monitoring")
  6. Source maps hidden and deleted after upload (hideSourceMaps, deleteSourcemapsAfterUpload)
  7. @sentry/profiling-node listed in serverExternalPackages
  8. Error boundaries exist (src/app/error.tsx, src/app/global-error.tsx)
  9. Structured logging enabled (enableLogs: true)
  10. Sensitive header stripping in beforeSend
  11. Transaction filtering in beforeSendTransaction (drop health checks, static assets)

Step 4: Run security checks

  1. Verify no hardcoded DSN in any source files
  2. Check that DSN is not committed in git-tracked files
  3. Verify no auth tokens in frontend code
  4. Check production sample rates are reasonable (not 1.0)

Step 5: Report results

Print a compliance report with:

  • Project type (detected or overridden)
  • SDK version and installation status
  • Configuration check results (PASS/WARN/FAIL)
  • Security check results
  • Missing configuration items
  • Recommendations

If --check-only, stop here.

Step 6: Apply fixes (if --fix or user confirms)

  1. Missing SDK: Add appropriate Sentry SDK to dependencies
  2. Missing Vite plugin: Add @sentry/vite-plugin for source maps
  3. Missing config file: Create Sentry initialization file using templates from REFERENCE.md
  4. Hardcoded DSN: Replace with environment variable reference
  5. Missing sample rates: Add recommended sample rates

Step 7: Check CI/CD integration

Verify Sentry integration in CI/CD:

  • SENTRY_AUTH_TOKEN secret configured
  • Source map upload step in build workflow
  • Release creation on deploy

If missing, offer to add the recommended workflow steps from REFERENCE.md.

Step 8: Update standards tracking

Update or create .project-standards.yaml:

standards_version: "2025.1"
project_type: "<detected>"
last_configured: "<timestamp>"
components:
  sentry: "2025.1"

Environment Variables

VariableDescriptionRequired
SENTRY_DSNSentry Data Source Name (server-side)Yes
NEXT_PUBLIC_SENTRY_DSNSentry DSN for client-side (Next.js)Next.js only
SENTRY_ENVIRONMENTEnvironment name (server-side)Recommended
NEXT_PUBLIC_SENTRY_ENVIRONMENTEnvironment name (client-side, Next.js)Next.js only
SENTRY_ORGSentry organization slugFor source maps
SENTRY_PROJECTSentry project slugFor source maps
SENTRY_AUTH_TOKENAuth token for CI/CDFor source maps
NEXT_PUBLIC_SENTRY_SKIP_BUILDSkip Sentry webpack plugin in buildsContainer builds

Never commit DSN or auth tokens. Use environment variables or secrets management.

For detailed configuration check tables, initialization templates, and CI/CD workflow examples, see REFERENCE.md.

Agentic Optimizations

ContextCommand
Quick compliance check/configure:sentry --check-only
Auto-fix all issues/configure:sentry --fix
Frontend project only/configure:sentry --type frontend
Next.js project/configure:sentry --type nextjs
Python project only/configure:sentry --type python
Node.js project only/configure:sentry --type node
Check for hardcoded DSNsrg -l 'https://[a-f0-9]*@.*sentry\.io' --type-not env

Error Handling

  • No Sentry SDK: Offer to install appropriate SDK for project type
  • Hardcoded DSN: Report as FAIL, offer to fix with env var reference
  • Invalid DSN format: Report error, provide DSN format guidance
  • Missing Sentry project: Report warning, provide setup instructions

See Also

  • /configure:all - Run all compliance checks
  • /configure:status - Quick compliance overview
  • /configure:workflows - GitHub Actions integration
  • sentry MCP server - Sentry API access for project verification

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.64%
按下载量换算151

Claude

29.29%
按下载量换算120

Cursor

18.8%
按下载量换算77

Gemini CLI

10.53%
按下载量换算43

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills