Fix this easy agentic coding mistake now!
Are you doing this?
1. Running a process in a terminal.
2. Manually copying errors from the terminal to your agent.
Here's how to skip the copy-pasting:
1. When you run the process, stream the output to an additional log file. Instead of:
`bun run dev` (just an example)
Do:
`bun run dev 2>&1 | tee logs/server.log`
2. Tell the agent to access the log file as needed.
Now you can simply tell the agent: "check the server error" instead of copy-pasting, and it will use a tail command or similar on the log file.
The more related parallel processes you are running (3 in my case), the better, as the agent can decide on its own which logs to check.