shapely-compute
Installation
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)" |
Related skills
More from parcadei/continuous-claude-v3
discovery-interview
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
3.3Kmath
Unified math capabilities - computation, solving, and explanation. I route to the right tool.
517github-search
Search GitHub code, repositories, issues, and PRs via MCP
517dead-code
Find unused functions and dead code in the codebase
434premortem
Identify failure modes before they occur using structured risk analysis
413agentic-workflow
Agentic Workflow Pattern
392