Install the Splashify Skill
This guide connects Splashify Pro to OpenClaw, end to end. It takes about 5 minutes.
There are three layers, installed in order:
- OpenClaw — the AI assistant.
- The
splashifyCLI — the tool the skill drives. It is its own product; full setup details live in the splashify CLI section. This page covers just enough to get the skill working. - The Splashify skill — the bundle that teaches OpenClaw to use the CLI.
Prerequisites
| You need | How to get it |
|---|---|
| OpenClaw installed | npm install -g openclaw@latest then openclaw onboard --install-daemon |
The splashify CLI | Build it from source — see Step 2, or the CLI install guide |
| A Splashify Pro account | With an active trial or paid plan |
The skill does not require an MCP server. Earlier versions of this integration used
splashify-mcp; that path has been replaced by the skill. If you set up the old MCP integration, remove it withopenclaw mcp remove splashify.
Step 1 — Install OpenClaw
npm install -g openclaw@latest
openclaw onboard --install-daemonStep 2 — Install the splashify CLI
The CLI is a Go program. Build it from source:
cd cli && go build -o splashify ./...Place splashify on your system PATH. If you do not want to build it, ask
your Splashify Pro provider for a pre-built binary. (The skill no longer needs
a separate splashify-mcp binary.)
For the complete CLI install and configuration guide, see splashify CLI → Install.
Step 3 — Create an access token
In Splashify Pro, go to Settings → Developer → Access Tokens & OpenClaw,
click New Token, give it a name (e.g. “OpenClaw on my laptop”), and
copy the oc_live_… value.
The token is shown only once. Store it now — you cannot retrieve it later.
You can also create one from the CLI later — see Access Tokens.
Step 4 — Connect the CLI
Run:
splashify connectIt asks for:
- the Backend URL —
https://apis.splashifypro.com(press Enter to accept) - your
oc_live_token — paste it
The CLI validates the token and saves it to ~/.splashify/config.json.
Confirm with:
splashify whoamiThis is the only credential in the whole setup — the skill carries none of its own. It reads the same config file through the CLI.
Step 5 — Install the Splashify skill into OpenClaw
splashify link openclawThis installs the Splashify skill bundle into OpenClaw’s workspace skills
directory (~/.openclaw/workspace/skills/splashify/). The bundle is embedded in
the splashify binary, so no extra download is needed.
To preview the target path without writing anything:
splashify link openclaw --printIf OpenClaw’s workspace cannot be located, the command says so — install
OpenClaw first, or pass an explicit path with --path.
Step 6 — Restart OpenClaw
openclaw dashboard(or restart the OpenClaw Gateway) so it picks up the newly installed skill.
Step 7 — Confirm it works
splashify doctorAll checks should show ✓:
✓ config — found
✓ access token — valid (you@example.com)
✓ openclaw — installed
✓ splashify skill — installed
All checks passed.Then ask your OpenClaw assistant something simple — “List my Splashify contacts”. If it returns your contacts, the skill is live. 🎉
Removing the skill
To uninstall the Splashify skill, delete its bundle from OpenClaw:
rm -rf ~/.openclaw/workspace/skills/splashifyTo disable the underlying token entirely, see Access Tokens. Revoking a token stops both the skill and the CLI at once.
Next
- Using the skill — example assistant prompts.
- splashify CLI — run the same tasks directly from your terminal.