소스 정보
- 저장소
- getsentry/sentry-javascript
- 최근 소스 활동
- 2026년 2월 26일 14:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 8,729
- 포크
- 1,825
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/getsentry/sentry-javascript --skill add-cdn-bundle명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Port a span op to low-cardinality span names, applied only when span streaming is enabled. Use when asked to make a span op's names low cardinality, remove raw URLs/IDs from span names, apply the Sentry span name conventions to an op, or "port <op> spans to low cardinality names". Trigger phrases include "low cardinality span name", "span name conventions", "span name fallback", "Pageload/Navigation span name".
Backport a merged PR to a maintenance major branch (v10 by default) in getsentry/sentry-javascript. Cherry-picks the PR's squash-merge commit onto the target branch, namespaces the commit/PR title scope (e.g. fix(core) -> fix(v10/core)), opens a draft backport PR, and documents any deviation from the original PR in its body. Use when asked to backport a PR, or port a fix to v10 (or an older major like v9). Trigger phrases include "backport", "port to v10", "release this on v10".
Analyze and propose fixes for Dependabot security alerts
SKILL.md 표시 중
SOC 직업 분류 기준
| name | add-cdn-bundle |
| description | Create a new CDN bundle for the browser package with specified features |
| argument-hint | <feature-combo> (e.g., replay.logs.metrics, tracing.logs, tracing.replay.feedback.logs.metrics) |
This skill creates a new CDN bundle for the browser package that includes a specific combination of features.
The user provides a feature combination using dot notation:
logs.metrics - Bundle with logs and metricsreplay.logs.metrics - Bundle with replay, logs, and metricstracing.replay.logs - Bundle with tracing, replay, and logstracing.replay.feedback.logs.metrics - Full featured bundleFeature order in bundle names: tracing → replay → feedback → logs → metrics
Follow the detailed guide at docs/adding-cdn-bundle.md to create the bundle.
Given a feature combination, derive these variants:
| Placeholder | Example (replay.logs.metrics) |
|---|---|
{FEATURE_COMBO} | replay.logs.metrics |
{feature_combo} | replay_logs_metrics |
{featureCombo} | replayLogsMetrics |
{Human Readable Features} | Replay, Logs, Metrics |
{Human Readable Feature List} | Replay, Logs, and Metrics |
packages/browser/src/index.bundle.{FEATURE_COMBO}.tspackages/browser/test/index.bundle.{FEATURE_COMBO}.test.tspackages/browser/rollup.bundle.config.mjs.size-limit.jsdev-packages/browser-integration-tests/package.jsondev-packages/browser-integration-tests/utils/generatePlugin.ts.github/workflows/build.ymlAfter making changes:
yarn lint
cd packages/browser && yarn build:dev
cd packages/browser && yarn test