Loading...
Loading...
Run the full validation sequence before declaring any task done. Use this skill proactively after any code or infrastructure change — run pre-commit, mypy, and pulumi preview (where applicable) without waiting to be asked. Never declare success without passing checks.
npx skill4agent add mitodl/agent-kit validate-before-commit# 1. Linting, formatting, and basic static checks
uv run pre-commit run --all-files
# 2. Type checking
uv run mypy <package_or_src_dir>
# 3. Infrastructure plan (if Pulumi files were changed)
pulumi preview --stack <stack-name>pulumi previewdg check