一键导入
debug-instrumentation
Mandatory workflow for diagnosing complex bugs, deadlocks, race conditions, and silent failures via strategic logging and tracing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Mandatory workflow for diagnosing complex bugs, deadlocks, race conditions, and silent failures via strategic logging and tracing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Syncs Telegram supergroup topics into local task files and GitHub issues, using embedded Python scripts for deterministic JSON state management. Preserves raw bilingual messages verbatim, injects refactored prompts, and correlates codebase context.
100% Jetpack Compose, MVI (UDF), Hilt, and SQLDelight for token-efficient, zero-hallucination Android development.
NestJS, Prisma ORM, Vertical Slice Architecture, and Strict TypeScript for zero-hallucination backend development.
Expo Managed Workflow, Expo Router, NativeWind, and Strict TypeScript for zero-hallucination cross-platform apps.
Automatically generates decentralized task files based on manager instructions.
Idiomatic Go, Clean Architecture, and Gin routing best practices
| name | debug-instrumentation |
| description | Mandatory workflow for diagnosing complex bugs, deadlocks, race conditions, and silent failures via strategic logging and tracing. |
You are debugging a complex issue (e.g., deadlock, infinite loop, race condition, or silent failure). Standard static analysis has failed or is insufficient. You MUST gain runtime visibility.
CRITICAL GUARDRAIL: Do NOT blindly guess the solution. Do NOT attempt to refactor architectural logic without logs proving where the failure occurs.
Locate the areas of the codebase relevant to the bug. Look for:
Use the apply_patch tool to inject temporary, highly visible logging statements into the code.
console.log('[DEBUG-TRACE] Attempting to acquire lock A...');Run the application, test suite, or specific reproduction script using your bash tool.
stdout and stderr.timeout 10s npm test) so the agent loop does not hang indefinitely.Read the captured log output. Look for:
apply_patch to fix the actual bug.[DEBUG-TRACE] logs you injected before finishing the task. Never commit temporary instrumentation to the codebase.