Add --quiet/-q flag to suppress non-data output#168
Open
titouanmathis wants to merge 1 commit into
Open
Conversation
Implements global --quiet/-q flag that: - Suppresses spinners, status messages, and decorative output - Only allows data to go to stdout, errors to stderr - For JSON + quiet: outputs just resource data without status wrapper - Error messages still appear but without emoji in quiet mode Changes: - Add quiet/q fields to CommandOptions interface - Update OutputFormatter to accept quiet parameter and suppress messages - Add successWithData method for proper JSON quiet mode handling - Update createSpinner to return no-op spinner when quiet - Add --quiet/-q to CLI help text - Update time command handlers to use new successWithData method - Add comprehensive tests for quiet behavior Closes #162 Co-authored-by: Claude <claude@anthropic.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #168 +/- ##
==========================================
+ Coverage 97.40% 97.42% +0.01%
==========================================
Files 237 237
Lines 8008 8031 +23
Branches 2563 2582 +19
==========================================
+ Hits 7800 7824 +24
+ Misses 203 202 -1
Partials 5 5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Closes #162
Adds a global
--quiet/-qflag that suppresses spinners, status messages, and decorative output. Only data goes to stdout, errors to stderr.success(),warning(),info()become no-opsoutput()still works (data flows through)error()still writes to stderr (without emoji)All tests pass (1603 tests across 97 files).