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.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install arxiv-agentic-verifier - 安装完成后,直接呼叫该 Skill 的名称或使用
/arxiv-agentic-verifier触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Arxiv Agentic Verifier 是什么?
Actively verifies Python/JS code correctness by generating targeted test cases that expose logic flaws based on problem constraints. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 769 次。
如何安装 Arxiv Agentic Verifier?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install arxiv-agentic-verifier」即可一键安装,无需额外配置。
Arxiv Agentic Verifier 是免费的吗?
是的,Arxiv Agentic Verifier 完全免费(开源免费),可自由下载、安装和使用。
Arxiv Agentic Verifier 支持哪些平台?
Arxiv Agentic Verifier 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Arxiv Agentic Verifier?
由 WANGJUNJIE(@wanng-ide)开发并维护,当前版本 v1.0.0。