Opus finding
PARENT_REPO referenced but never defined
- skills/contributor-spotlight/SKILL.md:144-146
`${PARENT_REPO}` is referenced as the comparison baseline but is never defined in the skill. It cannot be inferred from `FEATURED_FORK` (a fork knows its parent only via the GitHub API). The implementer has to guess — and a wrong guess (e.g. assuming AntFleet/aeon-bench when the fork was forked from a different upstream) silently inverts OPERATOR_AUTHORED labeling: skills the operator actually imported from upstream get falsely marked with ★ as "operator-authored."
Recommendation
Either hardcode the canonical parent (`AntFleet/aeon-bench`) with a comment, or derive it from `gh api repos/${FEATURED_FORK} --jq .parent.full_name` (which is already a free byproduct of Step 4 if you ask for `.parent`).