Install
openclaw skills install arxiv-agentic-verifierClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Actively verifies Python/JS code correctness by generating targeted test cases that expose logic flaws based on problem constraints.
openclaw skills install arxiv-agentic-verifierSource Paper: Scaling Agentic Verifier for Competitive Coding (ID: 4a4c4dae6a5145ebc4d62eb2d64b0f0f) Type: Code Verification / Test Generation
This skill implements an "Agentic Verifier" that actively reasons about code correctness by generating targeted, "discriminative" test cases. Instead of random sampling, it analyzes the problem constraints and code logic to find edge cases or logic flaws.
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));
This skill executes code provided to it. Use in a restricted environment or sandbox.