feat(kugetsu): cmd_delegate should call cmd_start directly for parallelization #75
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Currently
kugetsu delegatesends a message to the PM session, which then needs to callkugetsu startto create a dev agent. This has issues:Solution
Make
cmd_delegatecallcmd_startdirectly:Benefits
kugetsu delegatecreates dev agent immediatelyTasks
Notes
PM (issue #56) can be updated later to only handle complex coordination.
Simple tasks go direct via cmd_start.
PR created: #77
Changes:
extract_issue_ref_from_message()to parse issue ref from delegation messagecmd_delegateto callcmd_startdirectly when issue ref is foundPR created: #110
Changes:
extract_issue_ref_from_message()to parse issue ref from delegation messagecmd_delegateto callcmd_startdirectly when issue ref is foundPR created (v2): #111
Changes:
extract_issue_ref_from_message()to parse issue ref from delegation messagecmd_delegateto callcmd_startdirectly when issue ref is foundUpdated PR: #111
Changes:
extract_issue_ref_from_message()functioncmd_delegateto callcmd_startdirectly when issue ref is found