shapely-compute
Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates
npx skills add parcadei/Continuous-Claude-v3 --skill shapely-compute --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Computational Geometry with Shapely ## When to Use - Creating geometric shapes (points, lines, polygons) - Boolean operations (intersection, union, difference) - Spatial predicates (contains, intersects, within) - Measurements (area, length, distance, centroid) - Geometry transformations (translate, rotate, scale) - Validating and fixing invalid geometries ## Quick Reference | I want to... | Command | Example | |--------------|---------|---------| | Create geometry | `create` | `create polygon --coords "0,0 1,0 1,1 0,1"` | | Intersection | `op intersection` | `op intersection --g1 "POLYGON(...)" --g2 "POLYGON(...)"` | | Check contains | `pred contains` | `pred contains --g1 "POLYGON(...)" --g2 "POINT(0.5 0.5)"` | | Calculate area | `measure area` | `measure area --geom "POLYGON(...)"` | | Distance | `distance` | `distance --g1 "POINT(0 0)" --g2 "POINT(3 4)"` | | Transform | `transform translate` | `transform translate --geom "..." --params "1,2"` | | Validate | `validate` | `validate --geom "POLYGON(...)"` | ## Commands ### create Create geometric objects from coordinates. ```bash # Point uv run python scripts/shapely_compute.py create point --coords "1,2" # Line (2+ points) uv r
- When to Use
- Quick Reference
- Commands
- create
- op (operations)
- pred (predicates)
- measure
- distance
- transform
- validate / makevalid
- coords
- fromwkt
- Geometry Types
- Input Formats
Point uv run python scripts/shapely_compute.py create point --coords "1,2" Line (2+ points) uv run python scripts/shapely_compute.py create line --coords "0,0 1,1 2,0" Polygon (3+ points, auto-closes) uv run python scripts/shapely_compute.py create polygon --coords "0,0 1,0 1,1 0,1" Polygon with hole uv run python scripts/shapely_compute.py create polygon --coords "0,0 10,0 10,10 0,10" --holes "2,2 8,2 8,8 2,8" MultiPoint uv run python scripts/shapely_compute.py create multipoint --coords "0,0 1,1 2,2"
What does the shapely-compute skill do?
Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill shapely-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.