Проверка корректности подключения инфраструктуры

engineering

wiring is a Claude Code skill that verifies infrastructure components are actually wired into the execution path, ensuring every module has an entry point, can be traced through the call graph, and is covered by an end-to-end integration test with no dead code. The skill is not user-invocable and activates automatically during infrastructure work, running a four-step check: entry point exists, call graph traced from hook to module, integration test exercises the full path, and every built component is reachable. It addresses common wiring gaps such as a PreToolUse hook missing from `.claude/settings.json`, a non-executable script, a broken Python import path, and a dispatcher that never uses its own routing table. Engineers building task orchestrators and agent pipelines on Claude Code use it to confirm that implemented code is genuinely invoked rather than silently abandoned.