# Send GEDCOM Explorer 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": "gedcom-explorer",
    "name": "GEDCOM Explorer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/justinhartbiz/gedcom-explorer",
    "canonicalUrl": "https://clawhub.ai/justinhartbiz/gedcom-explorer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gedcom-explorer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gedcom-explorer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/build_explorer.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gedcom-explorer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T11:44:34.802Z",
      "expiresAt": "2026-05-10T11:44:34.802Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gedcom-explorer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gedcom-explorer",
        "contentDisposition": "attachment; filename=\"gedcom-explorer-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gedcom-explorer"
      },
      "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/gedcom-explorer"
    },
    "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/gedcom-explorer",
    "downloadUrl": "https://openagent3.xyz/downloads/gedcom-explorer",
    "agentUrl": "https://openagent3.xyz/skills/gedcom-explorer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gedcom-explorer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gedcom-explorer/agent.md"
  }
}
```
## Documentation

### GEDCOM Explorer

Parse any GEDCOM file and generate a self-contained interactive HTML dashboard.

### Quick Start

python3 scripts/build_explorer.py <input.ged> [output.html] [--title "Title"] [--subtitle "Subtitle"]

### Examples

# Basic — outputs family-explorer.html in current directory
python3 scripts/build_explorer.py ~/my-family.ged

# Custom output path and title
python3 scripts/build_explorer.py ~/my-family.ged ~/Desktop/hart-family.html \\
  --title "Hart Family Tree" --subtitle "Six generations of history"

# Demo with bundled US Presidents data
python3 scripts/build_explorer.py assets/demo-presidents.ged presidents.html \\
  --title "Presidential Family Explorer" --subtitle "US Presidents & Their Ancestors"

### Features

Dashboard — Stats grid (people, families, places, generations), On This Day events, top surnames, geographic origins, people by century, party breakdown (for presidential data)
Family Tree — Interactive tree visualization with zoom/pan, select any person as root, color-coded by gender/president status
People — Searchable/filterable directory with gender and president filters, pagination, click for full detail modal
Timeline — Chronological events (births, deaths, marriages) with filters and search
Daily Alerts — Today's anniversaries, random ancestor spotlight, fun facts
Person Modal — Full detail view with parents, spouses, children (all clickable links)
Global Search — Search across all tabs by name, place, or year

### How It Works

build_explorer.py parses the GEDCOM, extracts all individuals + families, computes stats, and embeds everything as inline JSON in a single HTML file. No server needed — just open the HTML.

Auto-detects US Presidents from OCCU (occupation) fields. Works with any GEDCOM; presidential features simply won't appear if no president data exists.

### GEDCOM Sources

Users can export .ged files from:

Ancestry.com → Tree Settings → Export Tree
FamilySearch.org → Download GEDCOM
MyHeritage → Family Tree → Export → GEDCOM
Any genealogy software (Gramps, RootsMagic, Legacy, etc.)

### Demo Data

assets/demo-presidents.ged — Public domain US Presidents GEDCOM (2,322 people, 1,115 families, 44 presidents). Source: webtreeprint.com.

### Serving Locally

cd /path/to/output/dir
python3 -m http.server 8899
# Open http://localhost:8899/family-explorer.html

### Extending

The generated HTML is fully self-contained. To customize:

Edit CSS variables in :root for theming
The dashboard adapts to whatever data is in the GEDCOM — no presidential data required
For OpenClaw cron integration: parse GEDCOM daily events and send "On This Day" notifications via Telegram
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: justinhartbiz
- Version: 1.0.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-03T11:44:34.802Z
- Expires at: 2026-05-10T11:44:34.802Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gedcom-explorer)
- [Send to Agent page](https://openagent3.xyz/skills/gedcom-explorer/agent)
- [JSON manifest](https://openagent3.xyz/skills/gedcom-explorer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gedcom-explorer/agent.md)
- [Download page](https://openagent3.xyz/downloads/gedcom-explorer)