Opus finding
`heartbeat` is the only enabled skill but aeon.yml comment elsewhere says skills run in parallel when enabled — fine, but `telegram.enabled: true` with no token configuration risks runtime failure
- aeon.yml:175-178
`telegram.enabled: true` is set at repo level, but there is no accompanying token/chat configuration visible in this file and no other channel block (discord/slack). If the runtime polls Telegram every 5 minutes as the comment claims, missing credentials will cause continuous auth failures or noisy logs. This is low-confidence because the credentials may live in repo secrets outside this file, but the contract is not enforced here.
Recommendation
Either gate `telegram.enabled` on the presence of the required secret at startup (fail fast with a clear message), or default it to `false` in the template and document the secret requirement inline.