verify

Runs flix test then flix run to verify Flix code changes in two stages.

Updated Jul 20, 2026
One-click install
npx skills add https://github.com/ababup1192/flix_ge_studio --skill verify-ababup1192
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/ababup1192/flix_ge_studio/tree/main/.claude/skills/verify
Command: npx skills add https://github.com/ababup1192/flix_ge_studio --skill verify-ababup1192

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After modifying Flix code, developers need a consistent verification routine that runs the test suite first and only proceeds to a runtime check when tests pass, preventing broken builds from being launched. ## Core Features & Use Cases - Two-stage verification: Executes flix test first, then asks the developer to run flix run only if all tests pass. - Fail-fast gating: Stops immediately on test failure and reports full error details without running the application. - Use Case: After editing game logic in a Flix project, invoke this Skill to confirm the test suite passes and then perform a manual runtime check before considering the change complete. ## Quick Start Ask the assistant to verify the recent code changes by running the flix test suite and then confirming the app runs.

Frequently Asked Questions about verify

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

FAQPage Schema
How do I verify Flix code changes after editing?

Run flix test first to execute the test suite, then run flix run only if all tests pass. This two-stage sequence ensures broken code is never launched and failures are reported with full error details.

What happens when flix test fails in this workflow?

When flix test fails, the workflow stops immediately and reports the failing test details without executing flix run. The complete error message is included so the developer has all information needed to fix the issue.

Does this verification require the Flix toolchain installed?

Yes, it requires the Flix toolchain accessible through devbox, invoking java with the flix.jar launcher. The environment must provide the flix test and flix run commands for the project being verified.

Can flix run execute before the test suite passes?

No, flix run is strictly gated behind a passing flix test. The workflow explicitly forbids running the application when any test fails, ensuring runtime checks only happen on verified code.