GPT-5 finding
YAML enabled-skill extraction only matches inline-map style; misses multi-line mappings
- skills/contributor-spotlight/SKILL.md
The grep pattern only detects entries where enabled: true appears inline on the same line within { ... }. Many Aeon configs use multi-line YAML mappings (skill-name: on one line, enabled: true on the next). This will undercount enabled skills, skewing ENABLED_COUNT and potentially the operator-authored detection.
Recommendation
Support both styles. For example: parse YAML with yq (preferred), or extend grep/awk to also match multi-line mappings (capture keys then detect enabled: true in subsequent indented lines until next top-level key).