Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v2.1.225 Home All releases olderv2.1.224 v2.1.226newer

Verify-skill suggestion suppressed unless the opal circuit is on

Not switched on
Useful2 Signal3
Skills not in their notes

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.

tengu_opal_circuit
What

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.

Details
  • 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 "".
Evidence

if (e.options?.isSkillPreload) return "";

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.225 →