Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

todo4-onboardtodo4 机载

Agent Skill

todo4-onboard 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,363

周安装

180

GitHub Stars

公开资料未说明

下载量

1,426
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:todo4-onboard(todo4 机载)
来源仓库:https://github.com/panitw/todo4-onboard
安装命令:
openclaw skills install todo4-onboard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install todo4-onboard

简介

todo4-onboard 协助注册 Todo4 并通过 MCP 协议连接代理,实现第三方工具集成。

  • 适用于希望接入 Todo4 生态的用户,简化账号配置与通信链路建立过程。
  • 安装后通过自然语言指令触发,如“设置 Todo4”或“注册账号”,需联网完成绑定。
  • 使用前请阅读 Todo4 官方文档,确认账户类型与服务条款;注意 API 密钥安全。
  • 建议在非生产环境先行测试连接稳定性,避免影响主工作流程。

SKILL.md

name
todo4-onboard
description
Sign up for Todo4 and connect this agent via MCP. Use whenever the user says things like 'set me up with Todo4', 'sign me up for Todo4', 'install Todo4', 'connect Todo4', 'get started with Todo4', 'I want to use Todo4', 'onboard me to Todo4', or any similar request to create a Todo4 account or start using Todo4. Creates the account via email OTP and wires up the MCP connection — no browser, no password.
metadata
openclaw
bins
[curl, jq]

Todo4 Onboarding Skill

This is a fixed 4-step procedure. Follow it exactly, in order, one step at a time. Do not improvise, summarize, or skip steps.

Language

Reply in the user's language. Detect it from their messages — if they write in Thai, reply in Thai; Japanese, reply in Japanese; and so on. Default to English only if the language is unclear.

The SAY lines in each step are reference wording in English. Translate them into the user's language while preserving the meaning, the information requested, and any placeholders (e.g., <email>, <WEB_LOGIN_URL>). Do NOT translate: command output, URLs, tokens, or the literal bash scripts.

When to run this skill

Run this whole procedure, starting at STEP 1, whenever the user asks to sign up for, install, connect, onboard, or start using Todo4. Examples of triggering requests:

  • "Set me up with Todo4"
  • "Sign me up for Todo4"
  • "Install Todo4" / "Connect Todo4"
  • "Get started with Todo4"
  • "I want to use Todo4"
  • "Onboard me to Todo4"

DO NOT

  • DO NOT explain what Todo4 is, list features, or ask "are you sure?" — just start STEP 1.
  • DO NOT ask for more than one piece of information per message.
  • DO NOT skip or combine steps.
  • DO NOT continue past a failed step until the error is resolved.
  • DO NOT echo the verification code, any token, or raw script JSON back to the user.

STEP 1 — Ask for email

SAY (verbatim):

I'll set you up with Todo4. I just need your email so I can send a verification code. What email should I use?

WAIT for the user's reply.

CHECK the reply contains "@" and a "." after the "@". If not, SAY: "That doesn't look like a valid email — could you try again?" and WAIT again.

Store the valid email as <email> and go to STEP 2.


STEP 2 — Send verification code

RUN:

scripts/register.sh <email>

CHECK exit code:

  • 0 → SAY (verbatim):

> I've sent a 6-digit verification code to <email>. Please paste it here when it arrives.

Then WAIT for the code and go to STEP 3.

  • 2 and the error mentions HTTP 429 → SAY: "We've hit a rate limit. Please wait a moment and try again." STOP.
  • 2 otherwise → SAY: "That email was rejected. Could you try another one?" Go back to STEP 1.
  • 1 → SAY: "I couldn't reach the Todo4 server. Please check your connection and try again." STOP.

STEP 3 — Verify the code

Extract the 6 digits from the user's reply as <code>.

CRITICAL: Call verify.sh EXACTLY ONCE per code. OTP codes are single-use — the server will reject any second call with the same code, even if the first call succeeded. Do NOT run verify.sh to "peek" at the output first and then again to capture. Run only the single command below, exactly once:

ACCESS_TOKEN=$(scripts/verify.sh <email> <code> | jq -r '.accessToken')

CHECK the exit code of the pipeline ($?):

  • 0 and $ACCESS_TOKEN is non-empty → SAY: "Email verified. Connecting myself as your agent…" and go to STEP 4. Do not re-run verify.sh. $ACCESS_TOKEN is already captured; proceed directly to STEP 4.
  • 2 → SAY: "That code didn't work. Please double-check and try again." WAIT for a new code and repeat STEP 3 with the new code. After 3 failures, SAY: "Let me send you a new code." and go back to STEP 2.
  • 1 → SAY: "I couldn't reach the Todo4 server. Please check your connection and try again." STOP.

Never echo $ACCESS_TOKEN or the script's JSON output.


STEP 4 — Connect this agent

Pick <agent_name> — use your own assistant name (e.g., "Claude", "GPT", "Gemini"). If unknown, use "OpenClaw".

RUN this exact command — it captures the script's stdout so you can extract the one-time web login link:

CONNECT_OUT=$(scripts/connect.sh "$ACCESS_TOKEN" <agent_name>)

CHECK the exit code of the pipeline ($?):

  • 0 → the script wrote the MCP config and agent token automatically. Extract the one-time web login URL:
  WEB_LOGIN_URL=$(echo "$CONNECT_OUT" | grep '^WEB_LOGIN_URL=' | cut -d= -f2- | tr -d '\
\
')

If $WEB_LOGIN_URL is non-empty, send the following as three separate messages — one per bullet, flushed individually so the user sees three distinct chat bubbles. Do NOT combine them into one message.

1. SAY (verbatim): > Done — I'm connected to your Todo4 account and the MCP tools are ready. 2. SAY (substitute the URL literally — no backticks, no code block): > Open your tasks in the browser — you'll be signed in automatically (link is single-use, valid for 5 minutes): > <WEB_LOGIN_URL> 3. SAY (verbatim): > Or just tell me to create your first task — e.g., "Create a task to review the Q2 report by Friday."

If $WEB_LOGIN_URL is empty, SAY (verbatim): > Done — I'm connected to your Todo4 account and the MCP tools are ready. Try: "Create a task to review the Q2 report by Friday."

Then WAIT for the user's first task request. When it arrives, use the Todo4 MCP tools (e.g., create_task) to fulfill it.

  • 2 with HTTP 422 → SAY: "Your account has reached the maximum number of connected agents. You can manage them at todo4.io." STOP.
  • 2 otherwise → SAY: "Connection failed. Let me try again from the start." Go back to STEP 1.
  • 1 → SAY: "I couldn't reach the Todo4 server. Please check your connection and try again." STOP.

Never print $ACCESS_TOKEN, the agent token, or the MCP config contents. The $WEB_LOGIN_URL is safe to display once (single-use, 5-minute expiry).


Security rules (apply to every step)

  • NEVER echo the OTP verification code back to the user. If you must reference it, say "the code you entered."
  • NEVER display the access token, refresh token, agent token, or MCP config contents.
  • If a script produces unexpected output, summarize the problem in plain English — do not quote raw JSON that may contain secrets.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.36%
按下载量换算1,189

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills