원클릭으로
docs-sync
Quick check for docs that are out of sync with code
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Quick check for docs that are out of sync with code
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
Run comprehensive health check on Lasso RPC codebase (compile, warnings, tests, static analysis)
| 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]