Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Actively verifies Python/JS code correctness by generating targeted test cases that expose logic flaws based on problem constraints.
Actively verifies Python/JS code correctness by generating targeted test cases that expose logic flaws based on problem constraints.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Source 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.
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).
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));
OPENAI_API_KEY: Required for LLM reasoning.
This skill executes code provided to it. Use in a restricted environment or sandbox.
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.