check
Run the full static analysis suite — ruff lint, ruff format check, pyright type check, auth analysis, license headers. Use before committing or to verify code quality after changes.
Install
mkdir -p .claude/skills/check && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13208" && unzip -o skill.zip -d .claude/skills/check && rm skill.zipInstalls to .claude/skills/check
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Run the full static analysis suite — ruff lint, ruff format check, pyright type check, auth analysis, license headers. Use before committing or to verify code quality after changes.About this skill
Run the full quality check pipeline from the project root:
just check
This runs in order: license header check → ruff lint → ruff format check → pyright type check → auth static analysis → auth runtime analysis.
If any step fails, report the specific errors and their locations. Fix all issues before marking the task done. After just check passes, run just test to confirm the test suite is also green.