← 返回
未分类 Key 中文

Things Cloud

Manage Things 3 tasks through Things Cloud using the maintained things-cloud-sdk CLI and MCP server, with dry-run safety for agent writes.
使用 things‑cloud‑sdk CLI 与 MCP 服务器管理 Things 3 任务,写操作支持 dry‑run 安全。
pdurlej pdurlej 来源
未分类 clawhub v0.1.1 2 版本 100000 Key: 需要
★ 0
Stars
📥 65
下载
💾 1
安装
2
版本
#latest

概述

Things Cloud

Use this skill when the user wants an agent to inspect or safely update Things 3

tasks through Things Cloud.

Works with OpenClaw, Codex, and Claude Code through MCP when available, with a

CLI fallback for hosts that prefer shell commands.

Prefer the MCP server when the host supports MCP. Use the CLI as the fallback or

when the user asks for explicit shell commands.

Setup

Install the maintained CLI and MCP server:

go install github.com/pdurlej/things-cloud-sdk/cmd/things-cloud-cli@v0.2.3
go install github.com/pdurlej/things-cloud-sdk/cmd/things-mcp@v0.2.3

Set credentials:

export THINGS_USERNAME="you@example.com"
export THINGS_TOKEN="your-things-cloud-password-or-token-alias"

THINGS_PASSWORD also works when THINGS_TOKEN is not set. Do not store

credentials in the repository or in skill files.

MCP Configuration

Use this stdio MCP server config for OpenClaw, Claude Code, Codex hosts, or any

MCP-compatible agent runtime:

{
  "mcpServers": {
    "things": {
      "command": "things-mcp",
      "env": {
        "THINGS_USERNAME": "you@example.com",
        "THINGS_TOKEN": "your-things-cloud-password-or-token-alias"
      }
    }
  }
}

Agent Policy

  • Read before writing.
  • Prefer MCP tools for task operations.
  • Use CLI --simple output for compact task lists.
  • Use --dry-run before any user-visible write generated by an agent.
  • Summarize the planned change and get confirmation before non-dry-run writes.
  • Never write to the local Things SQLite database.
  • Do not infer completion from absence in active views; use

completed/logbook.

  • Use task UUIDs returned by Things Cloud output. Do not invent UUIDs.

Common Reads

With MCP:

  • list_tasks with view set to today, inbox, anytime, someday, or

upcoming

  • search_tasks for title/note search
  • list_projects, list_areas, and list_tags for metadata

With CLI:

things-cloud-cli today --simple
things-cloud-cli inbox --simple
things-cloud-cli anytime --simple
things-cloud-cli someday --simple
things-cloud-cli upcoming --simple
things-cloud-cli search "invoice" --simple

Completion Evidence

Use completed/logbook commands when the user asks whether something was done:

things-cloud-cli completed --since 2026-05-20T00:00:00Z --format full
things-cloud-cli logbook --since 2026-05-20 --limit 50 --format full

Safe Writes

Preview first:

things-cloud-cli create "Follow up with Marta" --when today --dry-run
things-cloud-cli edit <task-uuid> --title "New title" --dry-run
things-cloud-cli complete <task-uuid> --dry-run

After user confirmation, run the same command without --dry-run.

Recurring tasks:

things-cloud-cli create "Check car listings" --repeat every-day --dry-run
things-cloud-cli create "Weekly review" --repeat weekly:mon --dry-run
things-cloud-cli create "Follow up after reply" --repeat after-completion:every-day --dry-run

Clear recurrence:

things-cloud-cli edit <task-uuid> --repeat none --dry-run

Output Rules

  • Keep raw command output as JSON.
  • Summaries should mention the task title, UUID, view/status, and whether the

write was dry-run or executed.

  • If a task reference is ambiguous, search first and ask the user to choose.
  • If credentials are missing, ask the user to set THINGS_USERNAME and either

THINGS_TOKEN or THINGS_PASSWORD.

版本历史

共 2 个版本

  • v0.1.1 当前
    2026-06-12 00:42
  • v0.1.0
    2026-06-09 19:26

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

ai-agent

self-improving agent

pskoett
记录自身发现以实现自我改进的技能
★ 4,153 📥 925,379
ai-agent

Find Skills

root
帮助用户发现和安装智能体技能,当用户询问如「如何做X」、「找X的技能」、「有能做...的吗」等问题时
★ 1,507 📥 567,054
ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 859 📥 339,911