Draft
Conversation
Introduces MinimalConsole that suppresses agent internals (thoughts, goals, plans, step numbers) and shows tool calls as spinners with brief result summaries. Adds global --verbose flag to opt into full AgentConsole output. Removes redundant _create_console() overrides from individual agents.
…tion - Add verbose/trace/max_steps to excluded_params preventing crash on gaia prompt - Wire verbose through BlenderAgent, JiraApp, DockerApp to their agents - Fix MinimalConsole: add download methods, match signatures with AgentConsole - Add None guards on print_warning/print_streaming_text for all consoles - Fix SilentConsole stale print_file_modified signature - Remove dead hasattr(args, "verbose") checks from jira/docker handlers - Remove unused AgentConsole import from BlenderAgent - Update docs: cli.mdx, console.mdx, agent-system.mdx, spec/console.mdx, guides/chat.mdx, guides/code.mdx with MinimalConsole and --verbose
27 tasks
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
MinimalConsoleas the default output handler for all agents, replacing the verboseAgentConsole--verboseflag to opt into fullAgentConsoleoutput when needed_create_console()overrides from Blender, Code, Docker, and Jira agents (now inherit cleanly from base)Files changed (9)
agents/base/console.pyMinimalConsoleclass (+354 lines)agents/base/agent.pyverboseparam, updated_create_console()priority chainagents/chat/agent.pyverbosethrough configagents/code/cli.py--verboseflag for gaia-codecli.py--verboseflag, removed duplicate flags from subcommandsagents/{blender,code,docker,jira}/agent.py_create_console()overridesTest plan
gaia chat— verify minimal output (no thoughts/goals/plans, spinners for tools)gaia chat --verbose— verify full AgentConsole outputgaia-code --verbose— verify verbose mode in code agentgaia chat --silent— verify SilentConsole still worksgaia jira,gaia docker,gaia blender— verify they inherit MinimalConsole correctly🤖 Generated with Claude Code