itx:verify

Run make test, make lint, and make test-cov to validate code quality.

49|5|Updated Mar 17, 2026
One-click install
npx skills add https://github.com/ric03uec/clawrium --skill itx-verify
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: itx:verify
Source: https://github.com/ric03uec/clawrium/tree/main/.opencode/skills/itx-verify
Command: npx skills add https://github.com/ric03uec/clawrium --skill itx-verify

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill simplifies the process of verifying code quality by running tests, linting, and coverage checks automatically, boosting development efficiency.

Core Features & Use Cases

  • Run Tests: Execute make test to validate code correctness and identify failures.
  • Run Linter: Perform make lint to enforce coding standards across the codebase.
  • Coverage Checks: Utilize make test-cov to assess test coverage and ensure code robustness.
  • Use Case: A developer makes changes and wants to quickly verify that the code passes all quality checks before submitting a pull request.

Quick Start

Run the verification process after making changes to ensure code quality and consistency.

Frequently Asked Questions about itx:verify

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

FAQPage Schema
How do I automate code testing and linting before a pull request?

Automate code testing and linting by running make test and make lint to validate correctness and enforce coding standards. This verifies that your changes pass all quality checks automatically before submission.

What is the best way to run coverage checks for my codebase?

Run coverage checks using the make test-cov command to assess test coverage and ensure code robustness. This validates that your tests adequately cover the code changes you made.

Can I use this to validate code quality in a CI pipeline?

Yes, you can validate code quality in CI by executing the automated test, linting, and coverage validation commands. This maintains high quality standards and reduces manual checks during development.

How do I enforce coding standards across my software project automatically?

Enforce coding standards automatically by running the make lint command across your codebase. This performs automated linting validation to ensure consistency and reduce manual style checks.

Do I need any dependencies to run these validation scripts?

No external dependencies are required to run these validation scripts. The Skill operates independently using your project's existing make commands for testing, linting, and coverage checks.