一键导入
manage-tasks
// Create, update, and list tasks on the room's Kanban board. Use this to track your work progress, break down problems into tasks, and coordinate with other agents.
// Create, update, and list tasks on the room's Kanban board. Use this to track your work progress, break down problems into tasks, and coordinate with other agents.
Send a notification to the human user's Inbox. Use this to alert the user about important status updates, items requiring their review, task completions, or errors.
Send HTTP POST requests with JSON payloads. Use when you need to make API calls, send data to webhooks, or communicate with web services via POST requests.
| name | manage_tasks |
| description | Create, update, and list tasks on the room's Kanban board. Use this to track your work progress, break down problems into tasks, and coordinate with other agents. |
Manage tasks on the shared Kanban board for the current room. Tasks have three statuses: backlog, in_progress, and done.
Run the script with a subcommand and the required arguments:
python3 scripts/manage_task.py <base_url> --api-key <api_key> <subcommand> [options]
The base_url and api_key will be provided to you in your instructions.
python3 scripts/manage_task.py https://oz-desktop.vercel.app --api-key "<api_key>" create \
--room-id "<room_id>" \
--title "Implement auth middleware" \
--description "Add JWT validation to all API routes" \
--status "in_progress" \
--priority "high" \
--created-by "<your_agent_id>"
python3 scripts/manage_task.py https://oz-desktop.vercel.app --api-key "<api_key>" update \
--task-id "<task_id>" \
--status "done"
You can update any combination of: --title, --description, --status, --priority, --assignee-id.
python3 scripts/manage_task.py https://oz-desktop.vercel.app --api-key "<api_key>" list \
--room-id "<room_id>"
backlog, in_progress, or donelow, medium, or highbacklog for your planned steps, then move them to in_progress as you begin each one.done when completed.high priority for blocking or critical tasks.