The nudge suggesting the verify skill is now silenced unless a gate turns it on.
The verify-skill nudge string exists but returns empty unless the tengu_opal_circuit check passes and a matching skill is loaded.
What's wrong with this entry?
The helper that returns the verify-skill nudge string now returns an empty string early for skill preloads and whenever the opal circuit check is false. The string itself already existed; the gating around it is new.
- Gated on
tengu_opal_circuit. - Even when the circuit passes, the nudge is only produced if a skill matching the verify constant is present in the loaded skill set.
- Skill preload paths always get
"".
if (e.options?.isSkillPreload) return "";
Strings lifted out of the shipped bundle, so the claim above can be checked against them.