Primary finding
Stargazer field name mismatch between metadata and notification template
- skills/fork-first-run-alert/SKILL.md:159
- skills/fork-first-run-alert/SKILL.md:182
The metadata section defines the field as stargazers_count, but the notification template references fork.stargazers. This inconsistency will produce empty/missing values in rendered notifications or lead to incorrect implementation mapping.
Recommendation
Use a single canonical name throughout. Prefer GitHub’s stargazers_count in both state and templates (e.g., "Stars: {fork.stargazers_count}") or rename everywhere to stargazers for consistency and map accordingly in code.