-
Notifications
You must be signed in to change notification settings - Fork 1
Fix process name to show as 'agent' instead of 'bun' in process monitoring tools #145
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
Conversation
Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: #144
…oring tools - Set both process.title and process.argv0 to 'agent' at CLI startup - This addresses issue #144 where agent processes appeared as 'bun' in top/ps - The fix enables proper identification of running agent processes - Both properties are set for maximum compatibility across different tools Issue: #144
top as agent not bun commandThis reverts commit 5684028.
🤖 Solution Draft LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
🔄 Auto-restart 1/3Detected uncommitted changes from previous run. Starting new session to review and commit them. Uncommitted files: Auto-restart will stop after changes are committed or after 2 more iterations. Please wait until working session will end and give your feedback. |
🔄 Auto-restart 1/3 LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
🔄 Auto-restart 2/3Detected uncommitted changes from previous run. Starting new session to review and commit them. Uncommitted files: Auto-restart will stop after changes are committed or after 1 more iteration. Please wait until working session will end and give your feedback. |
🔄 Auto-restart 2/3 LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
🤖 Solution Draft LogThis log file contains the complete execution trace of the AI solution draft process.
|
🐛 Bug Fix
Fixes #144 - Agent CLI should be identified as 'agent' not 'bun' in process monitoring tools like
topandps.🔧 Solution
Set both
process.titleandprocess.argv0to 'agent' at CLI startup in/js/src/index.js:4-5. This ensures:🧪 Testing
📝 Changes
js/src/index.js- Added process title setting at startupThis minimal change addresses the core issue while maintaining full backward compatibility.
Fixes #144