Sigil Wallet LogoSigil Wallet

Orchestration Tools

Manage sub-agents and schedule recurring tasks programmatically.

The Master Agent (or root agent) has access to a specialized set of Orchestrator Tools. These tools allow the Master Agent to programmatically manage the lifecycle of sub-agents and schedule recurring tasks.

Agent Management

ToolCategoryDescription
manage_agentManagementCreate, start, pause, or destroy sub-agents
list_agentsDiscoveryGet a list of all instantiated agents and statuses
get_agent_infoDiscoveryGet detailed metadata and cron counts for an agent
get_agent_logsMonitoringFetch the most recent reasoning traces for an agent

Cron Scheduling

ToolCategoryDescription
schedule_cron_jobSchedulingSchedule a recurring prompt to be sent to an agent
list_cron_jobsSchedulingView all scheduled tasks for a specific agent
update_cron_jobSchedulingModify the schedule or task prompt of an existing job
toggle_cron_jobSchedulingActivate or deactivate a scheduled task
cancel_cron_jobSchedulingPermanently delete a scheduled task

Autonomous Scaling

With these tools, a Master Agent can act as a manager:

  1. Reasoning: "I need to monitor 10 different meme tokens but I'm currently at capacity."
  2. Action: Master Agent calls manage_agent (create) to spin up a new "Scout" sub-agent.
  3. Delegation: Master Agent calls schedule_cron_job to give the Scout a recurring task.
  4. Supervision: Master Agent periodically calls get_agent_logs to audit the Scout's performance.

On this page