Agent skill

shapely-compute

Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates

parcadei3,879★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill shapely-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: 8 KB
Bundled scripts: none
Path: .claude/skills/shapely-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

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Quick Reference
  3. Commands
  4. create
  5. op (operations)
  6. pred (predicates)
  7. measure
  8. distance
  9. transform
  10. validate / makevalid
  11. coords
  12. fromwkt
  13. Geometry Types
  14. Input Formats
Commands it runs
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"
More from Continuous-Claude-v3
All skills →
About this skill
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.

Keep going