원클릭으로
provision-tasks
Track your work on the team's task board. Create tasks, delegate to teammates, add progress notes, and mark complete when done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Track your work on the team's task board. Create tasks, delegate to teammates, add progress notes, and mark complete when done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Publish a reusable skill to your team's Skills library so it appears in the Provision dashboard and can be deployed to other agents.
Send and receive emails via MailboxKit API. Use when the user asks to send an email, check inbox, read messages, reply to emails, search emails, or browse threads.
| name | provision-tasks |
| description | Track your work on the team's task board. Create tasks, delegate to teammates, add progress notes, and mark complete when done. |
| metadata | {"openclaw":{"requires":{"bins":["node"],"env":["PROVISION_API_URL","PROVISION_AGENT_TOKEN"]},"primaryEnv":"PROVISION_AGENT_TOKEN"}} |
Manage tasks on your team's task board using the provision_tasks_tool.js script.
Always use the FULL ABSOLUTE PATH to the script. Do NOT use cd — run the node command directly:
node {baseDir}/provision_tasks_tool.js <command> [args]
NEVER do cd {baseDir} && node ... — this will be blocked by the security preflight.
The following environment variables are loaded automatically from your .env file:
Create a task whenever you start working on something substantive — a research request, a writing task, a multi-step project, debugging, etc. Quick one-line answers don't need a task.
Skip task creation for trivial interactions: greetings, simple factual questions, clarifying questions, or when you're just chatting.
node {baseDir}/provision_tasks_tool.js create "Task title" ["Description"] [--priority medium] [--tags tag1,tag2] [--assign agent-name-or-handle]
Use --assign to delegate a task to another agent on your team. You can use their name or @handle. The assigned agent will be notified immediately.
node {baseDir}/provision_tasks_tool.js note <task_id> "Progress note"
node {baseDir}/provision_tasks_tool.js complete <task_id> ["Completion summary"]
node {baseDir}/provision_tasks_tool.js block <task_id> "Reason for blocking"
node {baseDir}/provision_tasks_tool.js list [--status in_progress] [--assigned mine]
node {baseDir}/provision_tasks_tool.js show <task_id>
node {baseDir}/provision_tasks_tool.js update <task_id> [--title "New title"] [--priority high] [--status in_review]
node {baseDir}/provision_tasks_tool.js claim <task_id>
node {baseDir}/provision_tasks_tool.js unclaim <task_id>
node {baseDir}/provision_tasks_tool.js team-agents
Shows all active agents on your team. Use their names with --assign when creating tasks.
When you use --assign to delegate to a workforce agent (one that runs autonomously), the task enters a todo queue rather than the standard board. The workflow is asynchronous:
--assign max (or whatever the agent's name or @handle is)tasks_list — the system will message you automaticallyUse tasks_show <task_id> if you need to check status before the notification arrives.
tasks_list --assigned mine), claim it and work on itresearch, writing, code, analysis, etc.high for urgent requeststeam-agents to see who's available, then create "title" --assign "Agent Name"