-
Notifications
You must be signed in to change notification settings - Fork 44
Tool execution output not visible when running CLI #328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
bhouston
added a commit
that referenced
this issue
Mar 18, 2025
The CLI was no longer showing tool execution output by default. This change: 1. Fixed the logger's emitMessages method to properly respect log level 2. Changed the default log level to 'log' in the configuration 3. Updated tool execution logs to use info level instead of log level Fixes #328
github-actions bot
pushed a commit
that referenced
this issue
Mar 20, 2025
# [mycoder-agent-v1.5.0](mycoder-agent-v1.4.2...mycoder-agent-v1.5.0) (2025-03-20) ### Bug Fixes * improve resource trackers and fix tests ([c31546e](c31546e)) * properly format agentDone tool completion message ([8d19c41](8d19c41)) * resolve build and test issues ([549f0c7](549f0c7)) * resolve TypeError in interactive mode ([6e5e191](6e5e191)) * restore visibility of tool execution output ([0809694](0809694)), closes [#328](#328) * shell message should reset output on each read ([670a10b](670a10b)) * update CLI cleanup to use ShellTracker instead of processStates ([3dca767](3dca767)) ### Features * add colored console output for agent logs ([5f38b2d](5f38b2d)) * Add interactive correction feature to CLI mode ([de2861f](de2861f)), closes [#326](#326) * add parent-to-subagent communication in agentMessage tool ([3b11db1](3b11db1)) * add stdinContent parameter to shell commands ([5342a0f](5342a0f)), closes [#301](#301) * implement ShellTracker to decouple from backgroundTools ([65378e3](65378e3)) * remove respawn capability, it wasn't being used anyhow. ([8e086b4](8e086b4))
🎉 This issue has been resolved in version mycoder-agent-v1.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
github-actions bot
pushed a commit
that referenced
this issue
Mar 20, 2025
# [mycoder-v1.5.0](mycoder-v1.4.1...mycoder-v1.5.0) (2025-03-20) ### Bug Fixes * list default model correctly in logging ([5b67b58](5b67b58)) * restore visibility of tool execution output ([0809694](0809694)), closes [#328](#328) * update CLI cleanup to use ShellTracker instead of processStates ([3dca767](3dca767)) ### Features * Add interactive correction feature to CLI mode ([de2861f](de2861f)), closes [#326](#326) * add stdinContent parameter to shell commands ([5342a0f](5342a0f)), closes [#301](#301)
🎉 This issue has been resolved in version mycoder-v1.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue: Tool execution output not visible when running CLI
When running the MyCoder CLI with
pnpm build && pnpm cli -i
and providing a task, the tool execution output that used to be visible by default (showing log, warn, and error messages) is no longer displayed.Steps to Reproduce
pnpm build && pnpm cli -i
Expected Behavior
The CLI should show log messages from each tool being executed, including the agent's thoughts and reasoning, by default.
Current Behavior
After providing a task, the CLI shows no output until the final result is returned.
Possible Causes
Possible Solutions
The text was updated successfully, but these errors were encountered: