verify

Runs a verification loop workflow with user-provided arguments.

1|Updated Apr 30, 2026
One-click install
npx skills add https://github.com/hafidzlvm/opencode --skill verify-hafidzlvm
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/hafidzlvm/opencode/tree/main/.dsh/skills/verify
Command: npx skills add https://github.com/hafidzlvm/opencode --skill verify-hafidzlvm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers often need to repeatedly check that code changes work correctly, but manually re-running verification steps is repetitive and error-prone. This Skill automates a verification loop so checks run consistently on demand. ## Core Features & Use Cases - Verification Loop Execution: Invokes a defined verification workflow via the /verify command. - Argument Passthrough: Accepts user-provided text as arguments to customize what gets verified. - Use Case: After editing a module, a developer invokes /verify with the target scope to run the verification loop and confirm the changes behave as expected before committing. ## Quick Start Ask the AI to run /verify on your recent changes to execute the verification loop and confirm everything works.

Frequently Asked Questions about verify

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a verification loop on my code changes?▼

Invoke the /verify command and optionally pass text describing what to verify. The skill treats any provided text as arguments and executes the verification loop defined in its command file.

What arguments can I pass to a verify command?▼

Any text you provide alongside the invocation is passed through as $ARGUMENTS to the underlying verification instructions. Use it to scope the verification, such as naming a module, feature, or test target.

Does the verify skill include its own test scripts?▼

No scripts directory is bundled with this skill. It delegates to a command definition file referenced from SKILL.md, so the actual verification steps come from that external command content.

Why does the verify command produce no output?▼

The skill body references an external command file via a file include directive. If that referenced file is missing or empty, the verification loop has no instructions to execute and nothing meaningful will run.