feat(kugetsu): cmd_delegate should call cmd_start directly for parallelization #74
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
cmd_delegatesends messages to PM session, which then decides whether to callcmd_start. This causes:Current Flow
Desired Flow
For simple implementation tasks,
cmd_delegateshould callcmd_startdirectly:PM becomes pure planner/coordinator for complex tasks only.
Implementation
Modify
cmd_delegate:cmd_start $issue_ref $messagedirectlyPM skill already says: "You NEVER write code. Use
kugetsu startto delegate ALL implementation tasks"This makes the protocol technically enforced rather than convention-based.
Benefits
Tasks
Related