agentsclimarketplace

Hyperwork python

Skill samrom3/claude-hyper-plugs/hyperloop/skills/hyperwork-python

Python tooling for impl tasks — pytest patterns, uv toolchain, mypy, fixtures. Compose with hyperwork-tdd skill for methodology.From its SKILL.md

Install
npx -y skills add samrom3/claude-hyper-plugs --skill hyperwork-python

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 3 commands, including `uv run pytest` and 2 more.

SKILL.md

1.1 KB, 234 tokens by cl100k_base, as published. Nobody here has run it

Python

Use: Python impl tasks. Load with hyperwork-tdd skill: skills: [hyperwork-tdd, hyperwork-python].

Toolchain

  • Run tests: uv run pytest (not bare pytest).
  • Lint/format: uv run pre-commit run --all-files before commit.
  • Types: uv run mypy <module> if mypy configured. Required on public API.

Patterns

  • Test name: test_<what>_<condition>.
  • One assert per concept (multiple asserts OK if same concept).
  • Fixtures in conftest.py — no repeated setup across test files.
  • Mock at boundary only (external I/O, network, DB). Don't mock internals.
  • pytest.raises for expected exceptions — never bare try/except in tests.

Do / Don't

  • DON'T: use unittest.TestCase unless repo already does — prefer plain functions + pytest.
  • DON'T: test private methods directly — refactor if tempted.
  • DON'T: use bare pytest — always uv run pytest.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.