feat(cli): wire --bare and --no-plugins (+ doc-fix --permission-mode)#163
Merged
Conversation
Both flags were parsed (and parse-tested) but ignored: - --bare: suppress the REPL startup banner (▎ DeepCode line + "Working in" + "Type /help") for scripting / minimal output. - --no-plugins: skip plugin discovery (empty contributions) + wirePlugins — faster start, or to bypass a broken plugin. Threaded through ReplOpts → startRepl. Also flips stale BEHAVIOR_PARITY rows: --permission-mode → ✅ (already wired in #159), --bare → ✅, --no-plugins → 🟡 (--strict still parsed-only). Parsing is covered by the existing parse-args "boolean flags" test; the wiring is smoke-verified against a throwaway HOME (--bare → 0 banner lines vs 1 without; --bare/--no-plugins both run + exit cleanly). cli 137. Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
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.
Two parsed-but-ignored CLI flags, now wired:
--bare— suppresses the REPL startup banner (▎ DeepCode · model · mode · effort+Working in+Type /help) for scripting / minimal output.--no-plugins— skips plugin discovery (empty contributions) +wirePlugins(faster start, or to bypass a broken plugin).Threaded through
ReplOpts→startRepl. Also de-stales threeBEHAVIOR_PARITYrows:--permission-mode→ ✅ (already wired in #159, doc lagged),--bare→ ✅,--no-plugins→ 🟡 (--strictstill parsed-only).Verification: parsing is covered by the existing parse-args
boolean flagstest (p.bare/p.noPlugins); the wiring is smoke-verified against a throwawayHOME—--bareyields 0 banner lines vs 1 without, and--bare/--no-pluginsboth run + exit cleanly. cli 137, typecheck clean, repo-wideformat:checkclean.🤖 Generated with Claude Code