-
Notifications
You must be signed in to change notification settings - Fork 116
feat: implement complete subagent system with explore and plan agents #479
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
base: master
Are you sure you want to change the base?
Conversation
|
augment review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review completed. 4 suggestions posted. Main themes: progress-event contract/shape and forked-context normalization.
Comment augment review to trigger a new review at any time.
|
augment review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review completed. 4 suggestions posted.
Comment augment review to trigger a new review at any time.
|
augment review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review completed. 1 suggestion posted.
Comment augment review to trigger a new review at any time.
| } | ||
|
|
||
| if (name === 'write') { | ||
| return `Write(${args.path || ''})`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
formatToolUse() formats write/edit using args.path, but both tools take file_path (so the overlay will often render Write()/Edit() with an empty filename). This makes the sub-agent progress display less actionable (also applies to the edit branch just below).
🤖 Was this useful? React with 👍 or 👎
subagent mvp