homingo map
Generate a capability map for your skill fleet with no API calls.
Usage
bash
homingo map [options]What It Does
- Loads all skills from your configured
skillsDir - Computes overlap relationships across the full fleet
- Groups skills into heuristic capability clusters
- Builds per-skill profiles with nearest neighbors and overlap degree
- Highlights merge candidates, overlap hubs, and overloaded skills
Output
- Terminal tables for capability clusters and overlap hubs
- Self-contained HTML report with clusters, skill profiles, merge candidates, and overload findings
- JSON output suitable for handbook-style export or downstream tooling
Flags
| Flag | Description | Default |
|---|---|---|
--skills-dir <path> | Path to skills directory | From config |
--enhanced | Enable bigram matching for better overlap detection | Off |
--json | Output JSON instead of terminal tables | Off |
--no-open | Don't auto-open the HTML report | Off |
Examples
bash
# Build a capability map with defaults
homingo map
# Use enhanced matching
homingo map --enhanced
# Export JSON only
homingo map --json --no-openWhy Use It
homingo map complements scan and audit:
scantells you where obvious overlap and overload existmaptells you how the fleet is structuredaudittells you whether risky boundaries actually fail at routing time
Use map when you want a handbook-style view of the fleet before making routing or sharding changes.
