agentsclimarketplace

Geometry primitive library

Skill a5c-ai/babysitter/library/specializations/algorithms-optimization/skills/geometry-primitive-library

Provide robust computational geometry primitivesFrom its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill geometry-primitive-library

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

SKILL.md

1.9 KB, 389 tokens by cl100k_base, as published. Nobody here has run it

Geometry Primitive Library Skill

Purpose

Provide robust implementations of computational geometry primitives with proper handling of edge cases and numerical precision.

Capabilities

  • Point, line, segment, polygon classes
  • Cross product, dot product operations
  • CCW/CW orientation tests
  • Area calculations
  • Intersection tests
  • Distance calculations

Target Processes

  • computational-geometry

Geometric Primitives

Point Operations

  • Point addition, subtraction
  • Scalar multiplication
  • Dot product
  • Cross product
  • Distance calculation

Line/Segment Operations

  • Line-line intersection
  • Segment-segment intersection
  • Point-line distance
  • Point-segment distance
  • Parallel/perpendicular tests

Polygon Operations

  • Area calculation (signed and unsigned)
  • Point in polygon test
  • Polygon centroid
  • Convexity test

Input Schema

{
  "type": "object",
  "properties": {
    "primitive": {
      "type": "string",
      "enum": ["point", "line", "segment", "polygon", "circle"]
    },
    "operations": { "type": "array" },
    "language": {
      "type": "string",
      "enum": ["cpp", "python", "java"]
    },
    "useInteger": { "type": "boolean", "default": false },
    "epsilon": { "type": "number" }
  },
  "required": ["primitive"]
}

Output Schema

{
  "type": "object",
  "properties": {
    "success": { "type": "boolean" },
    "code": { "type": "string" },
    "operations": { "type": "array" },
    "precisionNotes": { "type": "string" }
  },
  "required": ["success", "code"]
}

What ships with it: 1 file

663 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. 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.