claude/cs-tools/skills/verify/SKILL.md
Verify a competitive programming or LeetCode solution for correctness, edge cases, and performance. Use when asked to "verify my solution", "check my code", "is this solution correct", "test my solution", "review my competitive programming answer", "validate my algorithm", or any solution verification request.
npx skillsauth add sequenzia/agent-alchemy verifyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Verify competitive programming and LeetCode solutions for correctness through static analysis, automated test case generation, and execution.
CRITICAL: Complete ALL 4 phases. Do not stop after static analysis.
Goal: Extract the problem statement and solution code.
Parse $ARGUMENTS to extract:
If both are in $ARGUMENTS, separate them. The problem statement typically comes first, followed by the solution code in a code block or after a separator.
If the solution is a file path, read it:
Read [file_path]
If the problem statement is missing, ask for it:
AskUserQuestion:
question: "Please provide the problem statement for verification. I need it to generate test cases and validate correctness."
options:
- label: "Paste problem text"
description: "Paste the full problem statement with constraints and examples"
- label: "Describe the problem"
description: "Describe what the problem asks — I'll generate test cases from that"
If the solution code is missing, ask for it:
AskUserQuestion:
question: "Please provide your solution code to verify."
options:
- label: "Paste code"
description: "Paste your Python solution code"
- label: "Provide file path"
description: "Give the path to your solution file"
If the solution is not Python, note this to the user and proceed with analysis (the verifier agent will handle language adaptation).
Goal: Delegate verification to the specialized agent.
Use the Task tool to spawn the solution-verifier agent:
Task:
subagent_type: "agent-alchemy-cs-tools:solution-verifier"
prompt: |
## Problem Statement
[full problem text with all constraints, I/O format, and examples]
## Solution Code
```python
[the user's solution code]
```
Perform full verification following your structured process:
1. Static analysis for logic errors and edge case handling
2. Generate test cases (basic, edge, stress)
3. Write and execute test harness
4. Compile report with verdict
Goal: Collect and validate the agent's findings.
The agent returns a structured report containing:
Review the report for completeness. If the agent encountered infrastructure issues (test harness errors, not solution bugs), note this to the user.
Goal: Present the verification results with follow-up options.
Present the report to the user with clear formatting:
After presenting the report, offer follow-up actions:
AskUserQuestion:
question: "What would you like to do next?"
options:
- label: "Fix bugs and re-verify"
description: "I'll apply the suggested fixes and run verification again"
- label: "Show corrected solution"
description: "Generate a complete corrected solution using /solve"
- label: "Add more test cases"
description: "Generate additional test cases targeting specific scenarios"
- label: "Done"
description: "Verification complete, no further action needed"
If the user selects "Fix bugs and re-verify":
If "Show corrected solution":
/solve with the same problem statement to get a fresh, verified solutionIf "Add more test cases":
development
Systematic, hypothesis-driven debugging workflow with triage-based track routing. Use when asked to "fix this bug", "debug this", "why is this failing", "this is broken", "investigate this error", "track down this issue", or any debugging situation. Supports --deep flag to force full investigation.
development
Executes diagnostic investigation tasks to test debugging hypotheses. Runs tests, traces execution, checks git history, and reports evidence. (converted from agent)
content-media
Provides architectural pattern knowledge for designing feature implementations including MVC, event-driven, microservices, and CQRS patterns. Use when designing system architecture or choosing implementation patterns.
documentation
Provides Mermaid diagram syntax, best practices, and styling rules for technical visualizations. Use when creating diagrams, flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, architecture diagrams, C4 diagrams, or any visual documentation in markdown.