一键导入
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 页面并帮你完成安装。
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)
基于 SOC 职业分类
| 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]