# Send Pywayne Cv Geometric Hull Calculator to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "geometric-hull-calculator",
    "name": "Pywayne Cv Geometric Hull Calculator",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/wangyendt/geometric-hull-calculator",
    "canonicalUrl": "https://clawhub.ai/wangyendt/geometric-hull-calculator",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/geometric-hull-calculator",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geometric-hull-calculator",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "geometric-hull-calculator",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T08:03:17.925Z",
      "expiresAt": "2026-05-10T08:03:17.925Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geometric-hull-calculator",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geometric-hull-calculator",
        "contentDisposition": "attachment; filename=\"geometric-hull-calculator-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "geometric-hull-calculator"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/geometric-hull-calculator"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/geometric-hull-calculator",
    "downloadUrl": "https://openagent3.xyz/downloads/geometric-hull-calculator",
    "agentUrl": "https://openagent3.xyz/skills/geometric-hull-calculator/agent",
    "manifestUrl": "https://openagent3.xyz/skills/geometric-hull-calculator/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/geometric-hull-calculator/agent.md"
  }
}
```
## Documentation

### Pywayne Geometric Hull Calculator

This module computes geometric hulls (convex and concave) for 2D point sets.

### Quick Start

from pywayne.cv.geometric_hull_calculator import GeometricHullCalculator
import numpy as np

# Create calculator with random points
points = GeometricHullCalculator.generate_random_points(num_points=50)
calculator = GeometricHullCalculator(points, algorithm='concave-hull')

# Get results
print(f"MBR: {calculator.get_mbr()}")
print(f"Convex Hull: {calculator.get_convex_hull()}")
print(f"Concave Hull: {calculator.get_concave_hull()}")

# Visualize with matplotlib
calculator.visualize_matplotlib()

### Initialization

# algorithm options: 'concave-hull' or 'alphashape'
# use_filtered_pts: Enable point filtering based on radius
calculator = GeometricHullCalculator(
    points=your_points,
    algorithm='alphashape',
    use_filtered_pts=True
)

### Supported Algorithms

AlgorithmDescriptionconcave-hullConcave hull using concave_hull libraryalphashapeConcave hull using alphashape library

### Hull Types

TypeMethodDescriptionConvex Hullget_convex_hull()Outer hull containing all pointsConcave Hullget_concave_hull()Inner concave boundary

### Properties

PropertyDescriptionpointsInput 2D points (N×2 numpy array)algorithmAlgorithm used for concave hulluse_filtered_ptsWhether filtered points were usedboxMinimum Bounding Rectangle cornerscenterCenter point of input pointsfilter_radiusRadius used for point filteringconcave_hull_resultConcave hull points or polygons

### OpenCV Visualization

calculator.visualize_opencv()

Displays: All input points, MBR, center, filter circle (if enabled), concave hull (green), convex hull (red).

### Matplotlib Visualization

calculator.visualize_matplotlib()

Displays: All input points (red), MBR (blue), center, filter radius circle (if enabled), concave hull (orange), convex hull (purple).

### Requirements

numpy - Array operations
cv2 (OpenCV) - For OpenCV visualization and MBR computation
matplotlib - For matplotlib visualization
scipy - For convex hull computation
concave_hull - Concave hull algorithm
alphashape - Alphashape algorithm
shapely - Polygon operations for area calculation

### Notes

Point filtering uses radius = 30% of shorter MBR edge length
MBR computed using OpenCV's minAreaRect
Convex hull uses scipy's ConvexHull
Supports both single Polygon and MultiPolygon from alphashape results
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: wangyendt
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T08:03:17.925Z
- Expires at: 2026-05-10T08:03:17.925Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/geometric-hull-calculator)
- [Send to Agent page](https://openagent3.xyz/skills/geometric-hull-calculator/agent)
- [JSON manifest](https://openagent3.xyz/skills/geometric-hull-calculator/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/geometric-hull-calculator/agent.md)
- [Download page](https://openagent3.xyz/downloads/geometric-hull-calculator)