원클릭으로
health-check
Run comprehensive health check on Lasso RPC codebase (compile, warnings, tests, static analysis)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run comprehensive health check on Lasso RPC codebase (compile, warnings, tests, static analysis)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Full Sentry SDK setup for Elixir. Use when asked to "add Sentry to Elixir", "install sentry for Elixir", or configure error monitoring, tracing, logging, or crons for Elixir, Phoenix, or Plug applications. Supports Phoenix, Plug, LiveView, Oban, and Quantum.
Configure specific Sentry features beyond basic SDK setup. Use when asked to monitor AI/LLM calls, set up OpenTelemetry pipelines, or create alerts and notifications.
Create a complete Sentry SDK skill bundle for any platform. Use when asked to "create an SDK skill", "add a new platform skill", "write a Sentry skill for X", or build a new sentry-<platform>-sdk skill bundle with wizard flow and feature reference files.
Fix production issues and review code with Sentry context. Use when asked to fix Sentry errors, debug issues, triage exceptions, review PR comments from Sentry, or resolve bugs.
Guide through complete workflow for adding a new RPC provider to Lasso
Quick check for docs that are out of sync with code
| name | health-check |
| description | Run comprehensive health check on Lasso RPC codebase (compile, warnings, tests, static analysis) |
Run a comprehensive health check to validate the codebase is in good shape.
Run these checks in sequence and report results:
mix compile --warnings-as-errors
Expected: Zero compilation errors or warnings.
If warnings exist: Report them grouped by type (unused functions, unused aliases, deprecations).
mix test --exclude battle --exclude slow --max-failures 5
Expected: All tests pass.
If failures: Report first 5 failures with file:line references.
mix credo --strict --format=flycheck
Expected: Zero issues at strict level.
If issues: Group by category (design, readability, refactor) and count.
mix dialyzer
Expected: Zero type warnings.
If warnings: Report with context about whether they're known false positives.
LASSO RPC HEALTH CHECK
========================
Compilation: PASS/FAIL (N warnings)
Tests: PASS/FAIL (N/N passed in Xs)
Credo: PASS/FAIL (N issues)
Dialyzer: PASS/FAIL (N warnings)
DETAILS:
--------
[details for any failures]