Doctor travel hub
Audit the Eidos Travel Hub for stale data, missing skills, broken playbook steps, and index misalignment. Returns a scored health report with severity-ranked findings and copy-pasteable fixes.From its SKILL.md
npx -y skills add eidos-agi/eidos-travel-hub --skill doctor-travel-hubAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.5 KB, 610 tokens by cl100k_base, as published. Nobody here has run it
Doctor Travel Hub Contract
Contract
{
"$schema": "https://json-schema.org/draft/2020-12",
"title": "Travel Hub Health Report",
"purpose": "Audit every skill in the hub for data freshness, completeness, and index alignment. Flag stale bonus data, broken URLs, missing transfer partners, and outdated award charts.",
"constraints": [
"Read every SKILL.md in skills/ before scoring",
"Check bonus-radar historical highs against current DoC data — flag if any are >6 months stale",
"Verify all URLs in playbook skills are reachable",
"Check index alignment: every skills/ dir in .well-known/agent-skills/index.json",
"Score is 0–100: start at 100, deduct per finding (critical: -20, warning: -5, info: -1)"
],
"required": ["score", "status", "findings", "summary"],
"properties": {
"score": { "type": "number", "minimum": 0, "maximum": 100 },
"status": { "enum": ["healthy", "needs_work", "not_ready"] },
"findings": {
"type": "array",
"items": {
"required": ["severity", "skill", "issue", "fix"],
"properties": {
"severity": { "enum": ["critical", "warning", "info"] },
"skill": { "type": "string" },
"issue": { "type": "string" },
"fix": { "type": "string" }
}
}
},
"summary": { "type": "string" }
}
}
Audit checklist
Data freshness (warning if stale)
bonus-radarhistorical highs: verify top 5 cards against current DoC — flag if offer amounts differtransfer-partner-mapratios: flag any partner ratio that changed (programs occasionally devalue)- Playbook URLs: fetch each tool URL, verify 200 response
Skill completeness (warning if missing)
- Every skill has
accepts,done_when, or aContractblock withrequired[] - Every skill has a practical example or reference table
booking-processphase timings match current transfer time reality
Index alignment (critical if wrong)
- Every dir in
skills/is in.well-known/agent-skills/index.json - Every index entry has
name,path,description
Repo standards (warning if missing)
.claude-plugin/plugin.jsonand.codex-plugin/plugin.jsonboth presentAGENTS.mdpresentCHANGELOG.mdfollows Keep a Changelog formatimprove-travel-hubanddoctor-travel-hubin index
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.