Overview
- Skill Key
- banatealab/todokan
- Author
- banatealab
- Source Repo
- openclaw/skills
- Version
- 1.3.2
- Source Path
- skills/banatealab/todokan
- Latest Commit SHA
- 868b01d227d8476489e469101a4512cd197384dc
Manage tasks, boards, thoughts, and reviews in Todokan via MCP
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 todokan 技能。 若已安装,则直接安装 todokan 技能。
# Todokan — Kanban Task Management Todokan is a kanban-style task manager. You can manage the user's tasks, boards, and projects through MCP tools. ## Prerequisites - A Todokan MCP server must be available (see README for setup) - Required env vars: `TODOKAN_API_KEY`, `TODOKAN_MCP_URL` (declared in skill metadata) --- ## Trigger — When to Activate This Skill Activate the Todokan skill when the user has one of the following intents: | Intent | Example | |--------|---------| | Create / 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. --- ## Tool Ordering Follow this order to achieve consistent results: ### Reading (always orient first) ``` 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 ``` ### Writing (only after orientation + confirmation) ``` 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 ``` ### AI-Assis...
# Todokan Skill for OpenClaw Connect [Todokan](https://todokan.com) to OpenClaw so your agent can read/write tasks and run polling workflows. ## Quick Install (ClawHub) ```bash clawhub install todokan ``` When prompted, set: - `TODOKAN_API_KEY` = your Todokan API key (`kb_live_...`) - `TODOKAN_MCP_URL` = MCP endpoint (default: `https://todokan.com/mcp`) If your setup uses environment files, export the same variables in your OpenClaw runtime. ## Manual Setup ### 1. Create Todokan API key 1. Log in to [todokan.com](https://todokan.com) 2. Go to **Settings > API Keys** 3. Create a key for planner or worker usage 4. Copy the key ### 2. Configure MCP server Add a Todokan MCP server entry to your OpenClaw configuration. The skill requires: - **Transport**: `streamable-http` - **URL**: `https://todokan.com/mcp` (planner, full CRUD) or `https://todokan.com/mcp-worker` (read + comments) - **Authentication**: Pass `TODOKAN_API_KEY` via the `Authorization: Bearer` header Refer to the [OpenClaw MCP docs](https://openclaw.dev/docs/mcp) for how to configure MCP servers in your runtime. ## Recommended Agent Loop Use `get_events_since` on an interval (for example every 15 minutes): 1. Persist last checkpoint timestamp (`since`) 2. Call `get_events_since` 3. Process returned events 4. Save returned `until` as next checkpoint For cross-board discovery, use `search_across_habitats` first instead of multiple `list_tasks` calls. ## Key Tools - `search_across_habitats`: one-call full-text search across habitats/boards/tasks - `get_events_since`: unified feed (task events, comments, documents) - `list_tasks`, `get_task`, `update_task`, `add_comment`, `create_document`, `add_document_to_task` ## Endpoints | Endpoint | Access | |----------|--------| | `https://todokan.com/mcp` | Planner (full CRUD) | | `https://todokan.com/mcp-worker` | Worker (read + comments) | | `https://staging--todokan.netlify.app/mcp` | Staging planner | ## Troubleshooting ### Authorization require...
edholofy
University for AI agents. 92 courses, 4400+ scenarios, any model via OpenRouter. Auto-training loops generate per-model SKILL.md documents. Works with Claude Code, OpenClaw, Cursor, Windsurf. No fine-tuning required.
lethehades
macOS WPS Office workflow helper skill for safer document preparation, conversion, export, and compatibility guidance
capt-marbles
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
caqlayan
Tweet Processor Skill
carev01
Full-text search across structured Markdown documentation archives using SQLite FTS5. Use when you need to search large collections of Markdown articles that are separated by "---" delimiters and contain source URLs (marked with "*Source:" pattern). Provides fast BM25-ranked search with automatic source URL extraction for citations. Ideal for research, documentation lookups, and knowledge base exploration. Requires indexing documentation first with `docs.py index`.
caspian9
飞书云盘文件管理技能。用于读取、下载和管理飞书云盘中的文件。 当用户需要:访问飞书文件、下载文档、读取PDF/Word/PPT文件、分析飞书云盘内容时使用。 核心方法:使用 tenant_access_token 调用 Drive API 下载文件,解析内容返回给用户。