Agent skill

pint-compute

Unit-aware computation with Pint - convert units, dimensional analysis, unit arithmetic

parcadei3,879★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill pint-compute --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/pint-compute/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,885
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Unit Computation with Pint Cognitive prosthetics for unit-aware computation. Use Pint for converting between units, performing unit arithmetic, checking dimensional compatibility, and simplifying compound units. ## When to Use - Converting between units (meters to feet, kg to pounds) - Unit-aware arithmetic (velocity x time = distance) - Dimensional analysis (is force = mass x acceleration?) - Simplifying compound units to base or named units - Parsing and analyzing quantities with units ## Quick Reference | I want to... | Command | Example | |--------------|---------|---------| | Convert units | `convert` | `convert "5 meters" --to feet` | | Unit math | `calc` | `calc "10 m/s * 5 s"` | | Check dimensions | `check` | `check newton --against "kg * m / s^2"` | | Parse quantity | `parse` | `parse "100 km/h"` | | Simplify units | `simplify` | `simplify "1 kg*m/s^2"` | ## Commands ### parse Parse a quantity string into magnitude, units, and dimensionality. ```bash uv run python -m runtime.harness scripts/pint_compute.py \ parse "100 km/h" uv run python -m runtime.harness scripts/pint_compute.py \ parse "9.8 m/s^2" ``` ### convert Convert a quantity to different units. ```bash uv run p

What's inside
Steps it walks through
  1. When to Use
  2. Quick Reference
  3. Commands
  4. parse
  5. convert
  6. calc
  7. check
  8. simplify
  9. Common Unit Domains
  10. Output Format
  11. Error Handling
  12. Related Skills
Commands it runs
uv run python -m runtime.harness scripts/pint_compute.py \
parse "100 km/h"
parse "9.8 m/s^2"
convert "5 meters" --to feet
convert "100 km/h" --to mph
convert "1 atmosphere" --to pascal
calc "5 m * 3 s"
calc "10 m / 2 s"
calc "5 meters + 300 cm"
check newton --against "kg * m / s^2"
More from Continuous-Claude-v3
All skills →
About this skill
What does the pint-compute skill do?

Unit-aware computation with Pint - convert units, dimensional analysis, unit arithmetic

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill pint-compute --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,885 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going