Document /goal, /recap, and terminal display modes - #74
Conversation
There was a problem hiding this comment.
Pull request overview
This PR extends the Hugo wiki’s Workflow Patterns guide with new user-facing documentation for Claude Code’s /goal, /recap, and terminal UI display modes, aligning the guide with the referenced product docs/changelog items.
Changes:
- Adds a Session Recap section documenting
/recapbehavior and configuration/precedence controls. - Adds a Goal-Driven Sessions with
/goalsection describing evaluator-driven completion loops, constraints, and resume/headless behavior. - Adds a Terminal Display Modes section documenting
/tui,/focus, transcript viewing, and related settings/environment variables; updates the page TOC accordingly.
|
|
||
| Run `/recap` to generate a summary on demand. It works from claude.ai and the mobile app when Remote Control is active, and is always skipped in non-interactive (`-p`) mode. | ||
|
|
||
| Session recap is on by default for every plan and provider. Control it three ways, in increasing precedence: |
There was a problem hiding this comment.
Checked this against the authoritative source before changing anything. The official Claude Code docs (https://code.claude.com/docs/en/interactive-mode, "Session recap" section) state verbatim:
Session recap is on by default for every plan and provider. The recap is always skipped in non-interactive mode.
That matches line 422 word-for-word, so the guide is accurate as written and documents current shipped behavior. Any telemetry-disabled-only condition implied by Issue #54 was either historical or doesn't reflect the current default. Leaving the line unchanged.
Adds three sections to the Workflow Patterns guide, all verified against the official Claude Code docs and changelog.
Sections added (
content/guides/workflow-patterns.md)/goal(Document the/goalautonomous completion command #40) -- set a completion condition and Claude works across turns until a fast-model evaluator confirms it. Covers set/check/clear, writing effective conditions, the Stop-hook implementation, requirements, and resume behavior. Sourced fromcode.claude.com/docs/en/goaland changelog 2.1.139./recap(Document session recap (/recap) #54) -- one-line recap on return, with the/configtoggle,awaySummaryEnabledsetting, andCLAUDE_CODE_ENABLE_AWAY_SUMMARYprecedence. Sourced frominteractive-mode#session-recap,settings,env-vars, and changelog 2.1.108/2.1.110./tui fullscreenvsdefault,/focuscondensed view,Ctrl+Overbose transcript, plus thetui/autoScrollEnabledsettings andCLAUDE_CODE_DISABLE_ALTERNATE_SCREEN. Sourced fromfullscreen,settings,interactive-mode, and changelog 2.1.110/2.1.132.TOC updated; Hugo builds clean at 103 pages. No em dashes / banned filler / contrastive reframes in the new content.
Closes #40
Closes #53
Closes #54