Manage tasks, projects, and notes in tududi (self-hosted task manager). Use for todo lists, task management, project organization.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install tududi或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install tududi⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/tududi/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: tududi description: Manage tasks, projects, and notes in tududi (self-hosted task manager). Use for todo lists, task management, project organization. ---
Uses environment variables (set in openclaw.json under skills.entries.tududi.env):
TUDUDI_URL - Base URL (e.g., http://localhost:3004)TUDUDI_API_TOKEN - API token from tududi Settings → API TokensAll API calls require the header:
Authorization: Bearer $TUDUDI_API_TOKEN
/tasks, /projects, /inbox) for GET (list)/task, /project) for POST/PUT/DELETE (create/update/delete)curl -s $TUDUDI_URL/api/v1/tasks \
-H "Authorization: Bearer $TUDUDI_API_TOKEN"
curl -s -X POST $TUDUDI_URL/api/v1/task \
-H "Authorization: Bearer $TUDUDI_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "Task title", "due_date": "2026-02-10", "priority": 2, "project_id": 1, "tags": [{"name": "bug"}]}'
Priority: 1 (low) to 4 (urgent) Tags: [{"name": "tagname"}, ...]
curl -s -X PATCH $TUDUDI_URL/api/v1/task/{uid} \
-H "Authorization: Bearer $TUDUDI_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"status": 1, "tags": [{"name": "bug"}]}'
Status: 0=not_started, 1=in_progress, 2=completed, 6=archived Tags: [{"name": "tagname"}, ...]
curl -s -X DELETE $TUDUDI_URL/api/v1/task/{uid} \
-H "Authorization: Bearer $TUDUDI_API_TOKEN"
curl -s $TUDUDI_URL/api/v1/projects \
-H "Authorization: Bearer $TUDUDI_API_TOKEN"
curl -s -X POST $TUDUDI_URL/api/v1/project \
-H "Authorization: Bearer $TUDUDI_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "Project name"}'
# List inbox items
curl -s $TUDUDI_URL/api/v1/inbox \
-H "Authorization: Bearer $TUDUDI_API_TOKEN"
# Delete inbox item (use UID)
curl -s -X DELETE $TUDUDI_URL/api/v1/inbox/{uid} \
-H "Authorization: Bearer $TUDUDI_API_TOKEN"
curl -s $TUDUDI_URL/api/v1/tags \
-H "Authorization: Bearer $TUDUDI_API_TOKEN"
not_startedin_progresscompletedarchived$TUDUDI_URL/api/v1/tasks?filter=today - Due today$TUDUDI_URL/api/v1/tasks?filter=upcoming - Future tasks$TUDUDI_URL/api/v1/tasks?filter=someday - No due date$TUDUDI_URL/api/v1/tasks?project_id={id} - By projectSwagger UI available at $TUDUDI_URL/swagger (requires login)
安装 tududi 后,可以对 AI 说这些话来触发它
Help me get started with tududi
Explains what tududi does, walks through the setup, and runs a quick demo based on your current project
Use tududi to manage tasks, projects, and notes in tududi (self-hosted task manager)
Invokes tududi with the right parameters and returns the result directly in the conversation
What can I do with tududi in my documents & notes workflow?
Lists the top use cases for tududi, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/tududi/ 目录(个人级,所有项目可用),或 .claude/skills/tududi/(项目级)。重启 AI 客户端后,用 /tududi 主动调用,或让 AI 根据上下文自动发现并使用。
tududi 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
tududi 可免费安装使用。请查阅仓库了解许可证信息。
Manage tasks, projects, and notes in tududi (self-hosted task manager). Use for todo lists, task management, project organization.
tududi 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using tududi
Identifies repetitive steps in your workflow and sets up tududi to handle them automatically