Opus finding
Repo owner mismatch: SKILL.md targets aaronjmars/aeon while project is AntFleet/aeon-bench
- skills/show-hn-draft/SKILL.md:56-58
- skills/show-hn-draft/SKILL.md:84-85
- skills/show-hn-draft/SKILL.md:141
The skill instructions hard-code the repo `aaronjmars/aeon` for the `gh api` stats fetch, the install one-liner the operator will paste publicly, and the issue-list check. The project itself is `AntFleet/aeon-bench`. If this skill is run from this repo, it will (a) fetch stats from an unrelated repo (aaronjmars/aeon) and embed them as if they were this repo's stats, and (b) instruct the operator to publish an install command that clones the wrong repo. Both are real correctness bugs for any fork that uses this skill: bad numbers in the launch post and a broken install command pointing readers to a different project.
Recommendation
Parameterize the owner/repo (read from git remote or a config variable) so the skill uses the current repository for `gh api`, the repo URL in paragraph 4, the install one-liner, and the `gh issue list` checklist entry. At minimum, replace the hard-coded `aaronjmars/aeon` references with the active repo slug.