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. Use when this capability is needed.

tomevault-io 64b262d 2 files · 1.6 KB 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

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/amyodov--pytest-claude-agent-sdk--complete-checkpoint commit 64b262d1b3

Frequently asked questions

npx skillmds@latest add tomevault-io/complete-checkpoint