| name | checksy |
| description | Declarative checks-as-code system for validating repository state using YAML-defined shell checks, with optional auto-fix support. |
Checksy Skill
Purpose
This skill defines how the agent interacts with Checksy, a declarative checks-as-code system used to validate, enforce, and optionally auto-fix repository conditions via shell-based rules.
Checksy is treated as the source of truth for automated project validation, including environment checks, static analysis, and developer workflow constraints.
Core Concept
Checksy defines structured rule files (typically YAML) that describe:
- A check (shell command that must succeed)
- A severity level (error, warning, debug)
- Optional auto-fix commands
Example structure:
rules:
- name: example check
check: "command-that-must-pass"
severity: error
fix: "optional-fix-command"