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/brucegutman/pipeworx-words" ~/.claude/skills/clawdbot-skills-pipeworx-words && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-words/SKILL.mdsource content
Words
A writer's toolkit: synonyms, rhymes, related words, autocomplete, and advanced word search. Powered by the Datamuse API.
find_synonyms
Find synonyms ranked by similarity.
find_synonyms("happy") returns words like joyful, cheerful, content, glad.
find_rhymes
Perfect rhymes ranked by score. Great for poetry and songwriting.
find_related
Find words connected by different relationships:
-- synonymssyn
-- antonymsant
-- rhymesrhy
-- associated/trigger wordstrg
-- adjectives that describe a nounjja
-- nouns that an adjective describesjjb
autocomplete
Word completions from a prefix.
"hel" returns hello, help, helicopter, etc.
find_words
The power tool. Combine constraints:
-- words with similar meaning to a phrasemeaning_like
-- approximate pronunciation matchsounds_like
-- pattern with wildcards (spelled_like
finds bottle, battle, brittle)b*ttle
Example: find rhymes for "code"
curl -X POST https://gateway.pipeworx.io/words/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_rhymes","arguments":{"word":"code","limit":10}}}'
Example: words meaning "ocean" that start with "s"
curl -X POST https://gateway.pipeworx.io/words/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_words","arguments":{"meaning_like":"ocean","spelled_like":"s*"}}}'
{ "mcpServers": { "words": { "url": "https://gateway.pipeworx.io/words/mcp" } } }