| name | taskflow |
| description | Coordinate durable multi-step work with goals, tasks, waits, wakeups, autonomous cycles, and child/delegated tasks. |
TaskFlow
Tool Map
cognitive_goal_create
cognitive_commitment_record
cognitive_commitment_update
cognitive_wakeup_schedule
cognitive_trigger_record
autonomous_task_graph_create
autonomous_queue_status
autonomous_cycle_run
multi_agent_coordinate
multi_agent_board
Use this skill when work should outlive one prompt, wait on external events, delegate subtasks, or require resumable progress.
When To Use
- Multi-step tasks with one owner.
- Work that needs scheduled follow-up.
- Work waiting on a person, channel reply, file change, or external system.
- Background tasks that need status, cancellation, or resumption.
- Delegated coding or research jobs with child tasks.
Humungousaur Shape
Use cognitive tools and stores for:
- goals;
- tasks;
- wakeups;
- triggers;
- runtime event queue;
- autonomous cycles;
- memories and learning records.
Workflow
- Create or reuse an active goal.
- Add tasks with success criteria.
- For work that cannot continue now, schedule a wakeup or trigger.
- For background progress, run an autonomous cycle.
- For delegation, link the child run or worker result back to the goal/task.
- On completion, record evidence and learning.
Wait States
Use a waiting state when:
- credentials are missing;
- approval is required;
- a user reply is needed;
- a remote channel must deliver a response;
- a scheduled time has not arrived.
Record the reason and the exact next stimulus that should resume the work.
Verification
- Every durable task should have an owner, status, reason, and evidence refs.
- Do not create background loops without a stopping condition.
- Do not mark a task complete merely because a run started.
Safety And Approval
- Durable goals, commitments, wakeups, triggers, and delegated tasks should be created only when they represent real user intent or model-supported task state.
- Do not schedule external-visible actions, live sends, installs, deploys, or destructive work without explicit approval.
- Keep waiting states honest: name the exact blocker, owner, and resume stimulus.
- Do not mark a task complete until evidence proves the requested end state, not merely a plan, queued run, or worker handoff.
Native Implementation Boundaries
- Use Humungousaur cognitive goal, commitment, wakeup, trigger, autonomous task graph, queue, cycle, and multi-agent board tools.
- TaskFlow is a native orchestration contract, not an imported external reference/external reference scheduler.
- The model decides semantic task decomposition and completion judgments; deterministic code persists exact records, IDs, statuses, and evidence.