Use INFYNON as a coordination layer when multiple agents or humans are working on related tasks.
- Main agent owns the parent task
- Child agents handle focused subtasks
- Every subtask has a real task record
- Notes and results are added back into INFYNON
- Main agent reviews before completion
infynon task create parent-task --mutate --workspace app --prompt "Review and fix auth risk."
infynon task fork backend-task --from parent-task --mutate --agent codex --folder-name backend --prompt "Implement backend fix only."
infynon task fork review-task --from parent-task --mutate --agent gemini --folder-name backend --status queued --prompt "Review backend-task after it finishes."
infynon task complete backend-task --mutate --result "Backend fix completed."
infynon task start review-task --mutateAvoid assigning two agents to edit the same files unless a human is coordinating the merge.