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.207 Home All releases olderv2.1.206 v2.1.208newer
Claude Code v2.1.207

Morning Brief for Non-Cowork Sessions [In Development]

Feature flag
tengu_morning_brief_skill Not enough to say

Nothing here resolved what this flag was doing on this version, so nothing here should be read as on or off.

This account: no value returned · anonymous baseline: no value returned · compiled default in v2.1.207: on

These values were read against a different version of Claude Code, so treat them as the nearest reading available instead of one taken on this release.

tengu_morning_brief_config Not enough to say

Nothing here resolved what this flag was doing on this version, so nothing here should be read as on or off.

This account: no value returned · anonymous baseline: no value returned · compiled default in v2.1.207: not a boolean we can read

These values were read against a different version of Claude Code, so treat them as the nearest reading available instead of one taken on this release.

Read once, for one account on one subscription tier, against v2.1.207. It isn't a statement about your account. What a flag value here can and cannot tell you

What

The Morning Brief skill (/morning) exists in the codebase but is currently only enabled in cowork/remote-trigger entrypoints. Regular interactive sessions will see the skill once tengu_morning_brief_skill is enabled more broadly.

Details
  • The eSb() enablement guard evaluates four conditions in sequence: (1) sessions that are neither CLAUDE_CODE_IS_COWORK nor a remote_cowork/remote_trigger CLAUDE_CODE_ENTRYPOINT are unconditionally disabled; (2) CLAUDE_CODE_ENABLE_MORNING_BRIEF (any truthy value) overrides all other conditions and forces the skill on; (3) remote-cowork and remote-trigger entrypoints return false unless the env-var override fires first — they do not consult the feature flag at all; (4) only non-remote cowork sessions (CLAUDE_CODE_IS_COWORK=1 with a non-remote entrypoint) reach the tengu_morning_brief_skill flag check, which defaults to false.
  • Custom skill prompt resolution follows its own three-step chain in nSb(): CLAUDE_CODE_MORNING_BRIEF_PROMPT env var is checked first (clamped to 500–50 000 characters); for non-remote sessions only, tengu_morning_brief_config feature flag (a JSON object with a skillPrompt string field) is checked second; the built-in prompt is the final fallback. Remote entrypoints always skip the feature-flag config and jump straight to the fallback.
  • When not enabled, the /morning command is simply absent from the skill registry — no help text or invocation trigger is registered, so users see no trace of it.
  • The skill's menuDescription is "Your morning brief — run it now, or set it up as a recurring weekday task", and its invocation trigger list includes "morning brief", "daily brief", "set up my morning brief", "what's my day look like", and "run my brief".
Status

Feature-flagged — tengu_morning_brief_skill defaults to false. Can be forced on with CLAUDE_CODE_ENABLE_MORNING_BRIEF=1.

Evidence

Enablement guard eSb() (lines 839865–839871) — four-path conditional ending with Qe("tengu_morning_brief_skill", !1); prompt resolver nSb() (lines 839878–839887) reads tengu_morning_brief_config.skillPrompt only on non-remote sessions; prompt length bounds tSb = 500 / rSb = 50000 (lines 839971–839972) (search for "tengu_morning_brief_skill")

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.207 →