Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage tasks, boards, thoughts, and reviews in Todokan via MCP
Manage tasks, boards, thoughts, and reviews in Todokan via MCP
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
Todokan is a kanban-style task manager. You can manage the user's tasks, boards, and projects through MCP tools.
A Todokan MCP server must be available (see README for setup) Required env vars: TODOKAN_API_KEY, TODOKAN_MCP_URL (declared in skill metadata)
Activate the Todokan skill when the user has one of the following intents: IntentExampleCreate / edit / delete a task"Create a task: review PR"Show boards or tasks"Show me my tasks", "What's on the dev board?"Change status"Mark task X as done"Save research results"Save this as a task / document in Todokan"Briefing / summary from tasks"Give me a briefing of my open tasks"Attach a document to a task"Write a note on task X"Search topics across boards"What did I note about the investor meeting?"Retrieve changes since last check"What's new since this morning?" Do not activate when the user is just talking about tasks in general without referencing Todokan.
Follow this order to achieve consistent results:
1. list_habitats โ Which workspaces exist? 2. list_boards โ Which boards exist? (note the IDs) 3. list_tasks โ Tasks on a board (with filters) 4. search_across_habitats โ Full-text search across boards/habitats 5. get_events_since โ Retrieve changes since a timestamp 6. list_board_labels โ Available labels + usage counts 7. list_task_documents โ Documents attached to a task 8. read_document โ Content of a document
9. create_task / create_board / create_habitat 10. update_task / update_task_by_title 11. create_document / add_document_to_task 12. delete_task โ Only after explicit confirmation
13. propose_task_variants โ Generate 2-3 variants 14. confirm_task_fields โ Review fields before creation Golden rule: Never write blindly. Always call list_boards first to discover IDs โ never guess UUIDs.
Before executing write actions, clarify the following:
Board: Which board? (If unclear โ show list_boards, let the user choose) Title: Short, precise, imperative (max 80 characters) Priority: low / normal / high โ default to normal if unclear Due date: Only set if mentioned by the user
Correct task? State the title + board for confirmation Which fields? Only change the fields the user requested
Always ask for explicit confirmation โ "Should I permanently delete task '[Title]' on board '[Board]'? This cannot be undone."
Clarify format: markdown, text, or html Link: Attach to which task (or standalone)?
Use only real data from MCP tool responses. Never fabricate task IDs, board names, or content. If a tool call fails or returns empty data: inform the user, do not improvise. When in doubt, show the actual results and ask.
Do not store passwords, API keys, tokens, or personal data in task titles or descriptions. If the user mentions sensitive information, warn them: "This may contain sensitive data โ should I really store it in Todokan?"
When storing content from external research (web, files, other tools) in Todokan, note the source in the task description or document: Source: [URL or filename] Created by: Agent on [date]
Worker endpoint (/mcp-worker): Read-only + comments (add_comment). No task/board CUD, no document creation. Planner endpoint (/mcp): Full access. Still ask before destructive actions. On scope errors: explain to the user that the current endpoint does not have the required permissions.
On network errors: do not blindly retry the same action. First check whether the action was already performed (list_tasks).
## Task Draft | Field | Value | |-------------|-------------------------------| | Board | [Board Name] | | Title | [Title, max 80 chars] | | Description | [Description, max 500 chars] | | Status | todo | | Priority | [low / normal / high] | | Due | [YYYY-MM-DD or โ] | | Labels | [label1, label2] | Should I create this task?
## Document Draft **Title:** [Title] **Format:** markdown **Linked to:** [Task Title] on [Board Name] --- [Document content] --- Should I create this document?
Habitat (workspace/project) โโโ Board (kanban board, type: "task" or "thought") โโโ Task (individual item with status, priority, labels, due date) โโโ Document (attached notes/docs in markdown, text, or html) Habitats group boards. A user can have multiple habitats. Boards are kanban boards. Type task for actionable items, thought for ideas/notes. Tasks live on a board and move through status columns. Documents are rich text attached to tasks.
StatusMeaningtodoNot starteddoingIn progressdoneCompleted
PriorityMeaninglowLow prioritynormalDefault priorityhighHigh/urgent priority
list_habitats โ List all workspaces list_boards โ List all boards (returns id, name, version) list_tasks โ List tasks with filters: boardId, status, label/labels, limit, cursor search_across_habitats โ Full-text search over habitats/boards/tasks in one call get_events_since โ Unified feed since timestamp (task events + comments + documents) list_board_labels โ Get unique labels on a board with usage counts list_task_documents โ Get documents attached to a task read_document โ Read a document's content list_task_comments โ List comments on a task
create_habitat โ Create a new workspace (name) create_board โ Create a new board (name, optional habitatId, boardType) create_task โ Create a task (title, boardId or boardName, optional description, dueDate, priority, labels) update_task โ Update a task by ID (taskId, plus fields to change) update_task_by_title โ Update a task by exact title match (titleExact, boardId or boardName) delete_task โ Permanently delete a task (taskId) create_document โ Create a document (optional relatedTaskId to attach) add_document_to_task โ Attach a new document to a task add_comment โ Add a comment to a task
propose_task_variants โ Generate 2-3 task variants (short/standard/detailed) from a rough description confirm_task_fields โ Preview a variant's fields before creating it
By default, the MCP server only returns tasks where aiEnabled: true. Tasks with aiEnabled: false are invisible to MCP agents โ they will not appear in list_tasks, search_across_habitats, get_events_since, or get_task. Users control this via a "Send to AI" button on each task card. When clicked, it sets aiEnabled: true, assignee: 'ai', and status: 'doing'. To see only AI-assigned tasks: list_tasks { "assignee": "ai" } To see all AI-enabled tasks: list_tasks {} (default โ only AI-enabled tasks are returned) To explicitly include non-AI tasks: list_tasks { "aiEnabled": false } (override, useful for reporting)
OAuth 2.1 with PKCE (RS256 JWT) Token lifetime: 30 days, no refresh token Planner (/mcp): Full CRUD access โ all scopes Worker (/mcp-worker): boards:read, tasks:read, labels:read, docs:read, comments:read, comments:write No rate limiting โ still be conservative with calls Activity logging: Every tool call is logged server-side
list_boards to find the board ID list_tasks with boardId to get tasks
create_task { "title": "Review PR #42", "boardName": "Development", "priority": "high", "dueDate": "2026-03-01" }
update_task { "taskId": "<uuid>", "status": "done" }
update_task { "taskId": "<uuid>", "labels": ["bug", "frontend"] }
list_tasks { "boardId": "<uuid>", "labels": ["bug"] }
search_across_habitats { "query": "investor meeting", "limit": 20 }
get_events_since { "since": "2026-02-24T08:00:00Z", "limit": 200 }
Always call list_boards first to discover available board IDs โ don't guess UUIDs. Use boardName instead of boardId when the user refers to boards by name. Due dates use YYYY-MM-DD format. Task titles are max 80 characters, descriptions max 500 characters. Labels are free-form strings (max 10 per task). The update_task tool requires the task's UUID. Use list_tasks to find it, or update_task_by_title if you only know the title.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.