GPT-5 finding
Several output template variables (e.g., ${stars}, ${html_url}) are used but never assigned in the spec
lowmaintainabilityhigh
- skills/contributor-spotlight/SKILL.md:148
- skills/contributor-spotlight/SKILL.md:186
- skills/contributor-spotlight/SKILL.md:86-89
stars and html_url are read into a JSON file but the spec omits the step that assigns them to shell variables for later template rendering. This invites implementation mistakes and runtime undefined-variable issues.
Recommendation
Add explicit extraction steps, e.g., stars=$(jq -r '.stars // 0' /tmp/contrib-repo.json); html_url=$(jq -r '.html_url // ""' /tmp/contrib-repo.json), and reference those variables in all subsequent steps.