Arxiv Agentic Verifier
/install arxiv-agentic-verifier
ArXiv Agentic Verifier
Source Paper: Scaling Agentic Verifier for Competitive Coding (ID: 4a4c4dae6a5145ebc4d62eb2d64b0f0f) Type: Code Verification / Test Generation
Description
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.
Features
- Analyze Code: Understands Python/JS code logic.
- Generate Tests: Creates specific inputs to break the code.
- Execute & Verify: Runs the code against generated tests (sandbox recommended for production).
Usage
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
- OPENAI_API_KEY: Required for LLM reasoning.
Security Warning
This skill executes code provided to it. Use in a restricted environment or sandbox.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install arxiv-agentic-verifier - After installation, invoke the skill by name or use
/arxiv-agentic-verifier - Provide required inputs per the skill's parameter spec and get structured output
What is Arxiv Agentic Verifier?
Actively verifies Python/JS code correctness by generating targeted test cases that expose logic flaws based on problem constraints. It is an AI Agent Skill for Claude Code / OpenClaw, with 769 downloads so far.
How do I install Arxiv Agentic Verifier?
Run "/install arxiv-agentic-verifier" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Arxiv Agentic Verifier free?
Yes, Arxiv Agentic Verifier is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Arxiv Agentic Verifier support?
Arxiv Agentic Verifier is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Arxiv Agentic Verifier?
It is built and maintained by WANGJUNJIE (@wanng-ide); the current version is v1.0.0.