Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ LLM-assisted automation:

## Install

Install as a ClawHub skill for OpenClaw/Codex/Claude-style agent workflows:

```bash
openclaw skills install things-cloud
```

ClawHub listing: https://clawhub.ai/pdurlej/things-cloud

Install the preferred CLI:

```bash
Expand Down Expand Up @@ -348,7 +356,14 @@ skills/things-cloud/SKILL.md

Use it when wiring Things Cloud into OpenClaw, ClawHub, Codex, Claude Code, or
another agent runtime that understands `SKILL.md` style instructions. The skill
wraps `things-cloud-cli` and `things-mcp`; it does not duplicate runtime code.
works through MCP when available and falls back to `things-cloud-cli` for hosts
that prefer shell commands; it does not duplicate runtime code.

Install from ClawHub:

```bash
openclaw skills install things-cloud
```

Local OpenClaw test install from this checkout:

Expand Down
7 changes: 5 additions & 2 deletions docs/integrations/openclaw-publishing.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ agent runtimes that can consume `SKILL.md` style instructions. It wraps the
maintained `things-cloud-cli` and `things-mcp` tools instead of duplicating
runtime code.

It works with OpenClaw, Codex, and Claude Code through MCP when available, with
a CLI fallback for hosts that prefer shell commands.

## Install from This Repository

After the skill is merged to `main`, OpenClaw users can install from the raw
Expand Down Expand Up @@ -47,9 +50,9 @@ Publish the skill:
clawhub skill publish ./skills/things-cloud \
--slug things-cloud \
--name "Things Cloud" \
--version 0.1.0 \
--version 0.1.1 \
--tags latest \
--changelog "Initial Things Cloud skill for safe OpenClaw, Codex, and Claude Code task automation." \
--changelog "Document OpenClaw, Codex, and Claude Code support via MCP with CLI fallback." \
--clawscan-note "This skill installs and calls the maintained things-cloud-cli and things-mcp Go binaries. It requires Things Cloud credentials through THINGS_USERNAME plus THINGS_TOKEN or THINGS_PASSWORD. Agent writes should use dry-run before execution."
```

Expand Down
5 changes: 4 additions & 1 deletion skills/things-cloud/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: things-cloud
description: Manage Things 3 tasks through Things Cloud using the maintained things-cloud-sdk CLI and MCP server, with dry-run safety for agent writes.
version: 0.1.0
version: 0.1.1
metadata:
openclaw:
requires:
Expand Down Expand Up @@ -42,6 +42,9 @@ metadata:
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.

Expand Down
Loading