Complete Checkpoint

Run after completing significant work — implementing a feature, fixing a bug, refactoring, or any substantial code changes. Proactively ensure code quality before reporting work as done.

amyodov 04a9737 780 B Updated

File contents

Complete Checkpoint

After finishing a significant piece of work, run these checks:

1. Lint and Format

uv run ruff check --fix && uv run ruff format

2. Run Tests

uv run pytest -v

One-Liner

uv run ruff check --fix && uv run ruff format && uv run pytest -v

Behavior

  1. Run the checks without asking permission
  2. If everything passes: briefly report success, continue with summary
  3. If anything fails: fix the issues, then re-run checks
  4. Don't report work as "done" until checks pass

amyodov/pytest-claude-agent-sdk/tree/main/.claude/skills/complete-checkpoint commit 04a9737fac

Frequently asked questions

npx skillmds@latest add amyodov/complete-checkpoint