ワンクリックで
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 ページを確認してインストールできます。
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
SOC 職業分類に基づく
| 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]