Critpt Solver OpenClaw Plugin & Skill | ClawHub
Looking to integrate Critpt Solver into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate health & fitness tasks instantly, without having to write custom tools from scratch.
What this skill does
Validates and executes Python solutions for CritPt benchmark problems. Use when the user asks to check a generated solution or run a test case.
Install
npx clawhub@latest install critpt-solverFull SKILL.md
Open original| name | description |
|---|---|
| critpt-solver | Validates and executes Python solutions for CritPt benchmark problems. Use when the user asks to check a generated solution or run a test case. |
SKILL.md content below is scrollable.
CritPt Solver
Wraps Python execution for CritPt problems.
Usage
const solver = require('./index');
const code = "..."; // Python code implementing answer(p)
const result = await solver.runPythonCode(code);
console.log(result);
How it works
- Format Prompt: Creates a structured prompt for the LLM to generate Python code.
- Generate Code: (Optionally calls LLM, or expects LLM to call it).
- Validate: Checks syntax and executes
answer(p)with test values if possible.