-
Notifications
You must be signed in to change notification settings - Fork 0
docs: replace obsolete Copilot Delegation with daemon-native workflow #63
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -73,13 +73,18 @@ cause, propose rebuild. Band-aid chains = REJECTED. | |||||
|
|
||||||
| ## Copilot Delegation | ||||||
|
|
||||||
| | Need | Command | | ||||||
| Copilot delegation is handled natively by the Convergio daemon: | ||||||
|
|
||||||
| | Need | How | | ||||||
| |---|---| | ||||||
| | Single task | `copilot-worker.sh <db_task_id> --model claude-opus-4.6` | | ||||||
| | Full plan | `copilot-plan-runner.sh <plan_id>` | | ||||||
| | Task prompt | `copilot-task-prompt.sh <db_task_id> [role]` | | ||||||
| | Execute plan | `/execute {plan_id}` — auto-delegates mechanical tasks to Copilot | | ||||||
| | Launch Copilot session | `cvg copilot <name>` — registers with daemon, spawns `gh copilot` | | ||||||
| | Manual delegation | Claude agents read TASK.md header and call `gh copilot --model claude-opus-4-6` | | ||||||
|
||||||
| | Manual delegation | Claude agents read TASK.md header and call `gh copilot --model claude-opus-4-6` | | |
| | Manual delegation | Claude agents read TASK.md header and call `gh copilot -p "<prompt>"`; model selection is not available via the repo-supported `gh copilot` flow | |
Copilot
AI
Apr 5, 2026
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.
This section states “NEVER delegate via … external scripts. The daemon handles all orchestration.” However, the repository still contains and references delegation scripts (e.g., claude-config/scripts/copilot-worker.sh, copilot-plan-runner.sh, copilot-task-prompt.sh). Either those scripts should be removed/marked deprecated consistently, or this rule should be narrowed to the specific obsolete scripts so the docs don’t contradict the actual supported tooling.
| NEVER delegate via GitHub Issues or external scripts. The daemon handles all orchestration. | |
| NEVER delegate via GitHub Issues or via ad hoc, undocumented external scripts. Use the daemon-managed flow or documented repository tooling only. |
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.
PR description says references to
copilot-worker.sh,copilot-plan-runner.sh, andcopilot-task-prompt.share removed/replaced, but there are still multiple references across the repo (e.g.,claude-config/reference/...and other docs). Either expand this PR to update the remaining references, or adjust the PR description/scope so readers don’t assume the scripts are fully retired.