kinemotion-development
Installation
SKILL.md
Kinemotion Development Standards
Pre-Commit Checklist
Always run before committing:
uv run ruff check --fix # Auto-fix linting
uv run ruff format # Format code
uv run pyright # Type check (strict)
uv run pytest # Run all tests
Or combined:
uv run ruff check --fix && uv run ruff format && uv run pyright && uv run pytest