Primary finding
PARENT_REPO is referenced but never defined, breaking operator-authored skill detection
- skills/contributor-spotlight/SKILL.md:121
- skills/contributor-spotlight/SKILL.md:86-89
The spec relies on ${PARENT_REPO} to differentiate upstream vs operator-authored skills but never derives it. The repo API response can include .parent.full_name for forks, but it is neither requested nor assigned, so the comparison to upstream cannot be performed.
Recommendation
Fetch and store the upstream repo identifier: include parent.full_name in the gh api jq projection and assign PARENT_REPO=$(jq -r '.parent.full_name // "owner/repo"' from a separate call to repos/${FEATURED_FORK}). Use that to list upstream skills and compute OPERATOR_AUTHORED.