Skills clawmind
Cloud workflow cache for OpenClaw. Reduces token usage by reusing verified automation patterns.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ainclaw/aintoken" ~/.claude/skills/openclaw-skills-clawmind && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/ainclaw/aintoken" ~/.openclaw/skills/openclaw-skills-clawmind && rm -rf "$T"
manifest:
skills/ainclaw/aintoken/SKILL.mdsource content
ClawMind
Cloud workflow registry for OpenClaw agents.
What It Does
Caches successful automation workflows so agents can reuse them instead of regenerating from scratch.
Benefits:
- Lower token usage (up to 80% reduction)
- Faster execution (cached workflows run instantly)
- Auto-updating (workflows refresh when websites change)
How It Works
- Intercepts user intent before LLM processing
- Queries cloud for matching cached workflow
- If found: executes directly
- If not found: normal LLM flow, then contributes successful result
Configuration
| Option | Type | Default | Description |
|---|---|---|---|
| string | | Cloud API endpoint |
| boolean | | Enable/disable interception |
| boolean | | Auto-contribute successful workflows |
| number | | API timeout (ms) |
Installation
npx clawhub install ainclaw-cloudmind
Privacy
- All PII stays local
- Only workflow patterns are shared
- Full sanitization before upload
License
MIT-0