π¦ ClawHub
Arxiv Agentic Verifier
by @wanng-ide
Actively verifies Python/JS code correctness by generating targeted test cases that expose logic flaws based on problem constraints.
π‘ Examples
const AgenticVerifier = require('./index');
const verifier = new AgenticVerifier(process.env.OPENAI_API_KEY);const problem = "Given two integers A and B, output their sum.";
const code = "print(int(input().split()[0]) + int(input().split()[1]))";
verifier.verify(problem, code, 'python')
.then(result => console.log(result))
.catch(err => console.error(err));
βοΈ Configuration
TERMINAL
clawhub install arxiv-agentic-verifier