Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Use when checking code quality, running linting, formatting code, or verifying static analysis gates before PR or publish.
No compilation step exists. "Build" means passing all static quality gates.
python3 when invoking Python modules or pip.python3 is unavailable but python exists, use python as fallback..venv.Run all three in order. All must exit 0:
ruff check src/ tests/
black --check src/ tests/
isort --check-only src/ tests/
If command executables are not on PATH, run module form:
python3 -m ruff check src/ tests/
python3 -m black --check src/ tests/
python3 -m isort --check-only src/ tests/
ruff check src/ tests/ --fix
black src/ tests/
isort src/ tests/
Re-run check mode after fixing to confirm clean state.
mypy src/
Not CI-required but recommended for new code.
If tools are missing:
python3 -m pip install -r requirements-dev.txt
If this fails with an externally-managed-environment error:
python3 -m venv .venv
npx skills add physics91/openrouter-mcp --skill buildHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.