feat: add /gentle:shy command to toggle startup role and title animation#14
Open
yuritoledo wants to merge 1 commit into
Open
feat: add /gentle:shy command to toggle startup role and title animation#14yuritoledo wants to merge 1 commit into
yuritoledo wants to merge 1 commit into
Conversation
When shy mode is ON, the rose startup intro, pen-writing logo, and runtime stats panel are skipped entirely. Pi starts directly on a clean prompt. - /gentle:shy, /gentle-ai:shy, /gentleman:shy to toggle - Config persisted in .pi/gentle-ai/shy.json - Status shown in /gentle-ai:status - Default OFF (no behavior change for existing users) Closes: remove startup role and title animation with toggle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds shy mode — a per-project toggle to disable the rose startup intro, pen-writing logo animation, and runtime stats panel. Inspired by the "shy gentle pi" concept: let users who prefer a clean, quiet startup opt out without modifying the extension.
Changes
New file:
lib/shy-config.tsShared config module providing
isShyMode(),setShyMode(), andtoggleShyMode(). Persists state in.pi/gentle-ai/shy.json.Modified:
extensions/startup-banner.tsAdded a
isShyMode(ctx.cwd)early return at the top of thesession_starthandler. When shy mode is ON, the entire startup animation block is skipped — no screen clear, no ASCII art, no pen writing, no stats panel.Modified:
extensions/gentle-ai.ts/gentle:shy,/gentle-ai:shy, and/gentleman:shycommands that toggle shy mode and notify the user./gentle-ai:statusnow reports shy mode status (ON/OFF).Modified:
README.mdDesign decisions
/gentle:shyget the silent startup..pi/gentle-ai/pattern used by persona config./gentle:persona,/gentle-ai:persona, and/gentleman:personawork./gentle-ai:statusshows whether shy mode is active.