with one click
docs-sync
Quick check for docs that are out of sync with code
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Quick check for docs that are out of sync with code
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
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
Run comprehensive health check on Lasso RPC codebase (compile, warnings, tests, static analysis)
Based on SOC occupation classification
| name | docs-sync |
| description | Quick check for docs that are out of sync with code |
Quick audit to catch common documentation drift issues.
# What providers are registered?
grep -A 1 '@provider_type_mapping' lib/lasso/core/providers/adapter_registry.ex
# What does README list?
grep -A 10 'Supported.*[Pp]roviders' README.md
Report if mismatch.
# Find file paths mentioned in docs
grep -roh 'lib/[^`"]*\.ex' project/ README.md | sort -u
# Check each exists
for file in $(grep -roh 'lib/[^`"]*\.ex' project/ README.md | sort -u); do
[ -f "$file" ] || echo "Missing: $file"
done
Report broken paths.
grep -rn "TODO\|FIXME\|WIP" project/ README.md
Report count and locations.
DOCS SYNC CHECK
==================
Provider List:
README: [list]
Registry: [list]
[match status]
Broken References:
[results]
Documentation TODOs:
[count] found:
[locations]
QUICK FIXES:
- [actionable items]