# Python Project Template Key Commands

> Sub-skill of python-project-template: Key Commands.

- Skill: `vamseeachanta/python-project-template-key-commands` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/python-project-template-key-commands`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/python-project-template-key-commands/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/python-project-template-key-commands

---


# Key Commands

## Key Commands


```bash
# Setup environment
uv venv && source .venv/bin/activate
uv pip install -e ".[dev]"

# Run tests
pytest

# Format code
black src tests
ruff check src tests --fix

# Type check
mypy src
```

