uncertainty-verification
Uncertainty Verification
Overview
This skill forces verification before stating any specific technical detail that could vary by version, environment, or specification.
Use when...
- The request asks for exact command syntax, flags, or configuration keys
- The answer depends on version-specific behavior, deprecations, or recent changes
- The request involves standards/specs (RFCs, protocol behavior, i18n/timezone/locale rules)
- The user asks for exact file paths, naming conventions, or directory structures
- The answer requires library-specific APIs (class names, method signatures, constants)
- Any part of the response would otherwise be based on “typical patterns” or memory
Symptoms / keywords
Use this skill when the prompt contains or implies keywords like:
More from faulkdev/github-copilot-superpowers
minimalist-surgical-development
Use when editing an existing codebase and the goal is minimal, standard, and non-invasive changes - prioritizes simplest solution, standard libraries first, and surgical modification without unsolicited refactors
34investigation-mode
DEPRECATED: See systematic-debugging for current implementation.
14verification-before-completion
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
14root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger - systematically traces bugs backward through call stack, adding instrumentation when needed, to identify source of invalid data or incorrect behavior
13task-direction-approval
Use when considering switching libraries/tools, changing architecture, or replacing automation with manual workarounds - explains root cause, offers 2-3 options with trade-offs, and requests explicit user choice
13systematic-debugging
Use when errors are unclear, flaky, or regressions occur; apply a disciplined debugging loop in VS Code Copilot Agent mode.
3