agentic-jumpstart-code-quality
Installation
SKILL.md
Code Quality Guidelines
This skill defines code quality standards for the Jarvy CLI project.
Build and Validation Commands
Run these before every commit:
cargo fmt --all # Format code
cargo clippy --all-features -- -D warnings # Lint (must pass)
cargo check --verbose # Type check
cargo test --verbose -- --show-output # Run tests