npx claudepluginhub sam42-lab/everything-claude-code-krThis skill uses the workspace's default tool permissions.
- 프로덕션 또는 스테이징 배포 후
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
배포된 URL의 회귀를 모니터링합니다. 중지되거나 감시 윈도우가 끝날 때까지 루프를 반복합니다.
1. HTTP 상태 — 페이지가 200을 반환하는가?
2. 콘솔 오류 — 이전에 없던 새 오류가 생겼는가?
3. 네트워크 실패 — 실패한 API 호출, 5xx 응답이 있는가?
4. 성능 — LCP/CLS/INP가 기준선 대비 나빠졌는가?
5. 콘텐츠 — 핵심 요소(h1, nav, footer, CTA)가 사라졌는가?
6. API 상태 — 중요 엔드포인트가 SLA 안에서 응답하는가?
Quick check: 한 번만 검사하고 결과를 보고
/canary-watch https://myapp.com
Sustained watch: N분마다 M시간 동안 검사
/canary-watch https://myapp.com --interval 5m --duration 2h
Diff mode: 스테이징과 프로덕션 비교
/canary-watch --compare https://staging.myapp.com https://myapp.com
critical:
- HTTP status != 200
- Console error count > 5 (새 오류만)
- LCP > 4s
- API endpoint returns 5xx
warning:
- LCP increased > 500ms from baseline
- CLS > 0.1
- New console warnings
- Response time > 2x baseline
info:
- Minor performance variance
- New network requests (third-party scripts added?)
critical 임계값을 넘으면:
~/.claude/canary-watch.log 기록## Canary Report — myapp.com — 2026-03-23 03:15 PST
### Status: HEALTHY ✓
| Check | Result | Baseline | Delta |
|-------|--------|----------|-------|
| HTTP | 200 ✓ | 200 | — |
| Console errors | 0 ✓ | 0 | — |
| LCP | 1.8s ✓ | 1.6s | +200ms |
| CLS | 0.01 ✓ | 0.01 | — |
| API /health | 145ms ✓ | 120ms | +25ms |
### No regressions detected. Deploy is clean.
/browser-qa와 함께 배포 전 검증git push 후 자동 점검용 PostToolUse 훅으로 추가 가능