Validates and executes Python solutions for CritPt benchmark problems. Use when the user asks to check a generated solution or run a test case.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill critpt-solver --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Critpt Solver?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-critpt-solver)More formats (shields.io, HTML) on the badges page.
---
name: critpt-solver
description: Validates and executes Python solutions for CritPt benchmark problems. Use when the user asks to check a generated solution or run a test case.
---
# CritPt Solver
Wraps Python execution for CritPt problems.
## Usage
```javascript
const solver = require('./index');
const code = "..."; // Python code implementing answer(p)
const result = await solver.runPythonCode(code);
console.log(result);
```
## How it works
1. **Format Prompt**: Creates a structured prompt for the LLM to generate Python code.
2. **Generate Code**: (Optionally calls LLM, or expects LLM to call it).
3. **Validate**: Checks syntax and executes `answer(p)` with test values if possible.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!