4todoManage 4todo (4to.do) from chat. Capture tasks, prioritize with the Eisenhower Matrix, reorder, complete, and manage recurring tasks across workspaces.
Install via ClawdBot CLI:
clawdbot install blackstorm/4todo4to.do Eisenhower Matrix To‑Do List
curl to call the 4todo API (https://4to.do/api/v0) to manage:FOURTODO_API_TOKEN: your 4todo API token (Bearer token)curl must be available on PATH (and inside the sandbox container, if the agent is sandboxed).ws_..., todo_..., rec_todo_... unless the user asks.IU | IN | NU | NN internally for API calls. Only show codes if the user uses codes first or explicitly asks.Workspaces:
Your workspaces:
1) Haoya (default)
2) 4todo
3) Echopark
Todos (summary):
Urgent & important:
1) UK company dissolution
2) Hetzner monthly payment (recurring, monthly)
Important (not urgent):
1) Weekly review (recurring, Fridays)
OpenClaw can inject environment variables only for the duration of an agent run (then restores the original env), which helps keep secrets out of prompts.
Recommended (production): set FOURTODO_API_TOKEN in your Gateway process environment using your hosting provider’s secret store, and do not store tokens in chat logs.
skills.entriesEdit ~/.openclaw/openclaw.json:
{
skills: {
entries: {
"4todo": {
enabled: true,
env: {
FOURTODO_API_TOKEN: "YOUR_4TODO_API_TOKEN"
}
}
}
}
}
Notes:
skills.entries..env is injected only if the variable is not already set.agents.defaults.sandbox.docker.envWhen a session is sandboxed, skill env injection does not propagate into the Docker container. Provide the token via Docker env:
{
agents: {
defaults: {
sandbox: {
docker: {
env: {
FOURTODO_API_TOKEN: "YOUR_4TODO_API_TOKEN"
}
}
}
}
}
}
Authorization: Bearer .Content-Type: application/json.GET /todos requires a workspace query parameter.IU | IN | NU | NN (internal).Copy this checklist and keep it updated while executing:
Task checklist:
- [ ] List workspaces (pick `ws_...`)
- [ ] List todos for that workspace
- [ ] Perform the requested mutation (create / complete / reorder / recurring)
- [ ] Re-fetch to verify the change
GET /workspaces: pick a target ws_... (usually the default workspace).GET /todos?workspace=ws_...: fetch todos (grouped by quadrant).POST /todos.POST /todos/:id/complete (idempotent).POST /todos/reorder./recurring-todos endpoints.This skill intentionally uses curl for maximum portability across OSes and environments.
Notes:
https://4to.do/api/v0).FOURTODO_API_TOKEN (never paste tokens into chat).curl -sS -H "Authorization: Bearer $FOURTODO_API_TOKEN" -H "Accept: application/json" "https://4to.do/api/v0/workspaces"
curl -sS -H "Authorization: Bearer $FOURTODO_API_TOKEN" -H "Accept: application/json" "https://4to.do/api/v0/todos?workspace=ws_...&show=all"
curl -sS -X POST -H "Authorization: Bearer $FOURTODO_API_TOKEN" -H "Accept: application/json" -H "Content-Type: application/json" --data-raw '{"name":"...","quadrant":"IU","workspace_id":"ws_..."}' "https://4to.do/api/v0/todos"
curl -sS -X POST -H "Authorization: Bearer $FOURTODO_API_TOKEN" -H "Accept: application/json" "https://4to.do/api/v0/todos/todo_.../complete"
curl -sS -X POST -H "Authorization: Bearer $FOURTODO_API_TOKEN" -H "Accept: application/json" -H "Content-Type: application/json" --data-raw '{"moved_todo_id":"todo_...","previous_todo_id":"todo_...","next_todo_id":null,"quadrant":"IN"}' "https://4to.do/api/v0/todos/reorder"
Note: if moved_todo_id starts with rec_todo_, the API updates only the recurring todo quadrant and ignores previous_todo_id/next_todo_id.
401 token_expired / invalid_token: stop retrying; ask the user to create a new token in 4todo settings and update OpenClaw config.402 WORKSPACE_RESTRICTED: the workspace is read-only; do not retry mutations; switch workspace or prompt user to upgrade/unlock.429 rate_limited: honor Retry-After / X-RateLimit-* and back off before retry.400 Invalid quadrant type: ensure quadrant is one of IU|IN|NU|NN.{baseDir}/references/api_v0.mdAI Usage Analysis
Analysis is being generated… refresh in a few seconds.
Manage Trello boards, lists, and cards via the Trello REST API.
Sync and query CalDAV calendars (iCloud, Google, Fastmail, Nextcloud, etc.) using vdirsyncer + khal. Works on Linux.
Manage tasks and projects in Todoist. Use when user asks about tasks, to-dos, reminders, or productivity.
Master OpenClaw's timing systems. Use for scheduling reliable reminders, setting up periodic maintenance (janitor jobs), and understanding when to use Cron v...
Calendar management and scheduling. Create events, manage meetings, and sync across calendar providers.
Kanban-style task management dashboard for AI assistants. Manage tasks via CLI or dashboard UI. Use when user mentions tasks, kanban, task board, mission con...