ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

pipeworx-advice

Crowdsourced life advice — search, browse, or grab a random slip of wisdom from the Advice Slip API

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/brucegutman/pipeworx-advice
Or

Advice Slip

Sometimes you just need a nudge in the right direction. This pack taps the Advice Slip API — a crowd-curated collection of short, practical life advice — and lets you pull random slips, search by topic, or fetch a specific one by ID.

Tools

ToolWhat it does
random_adviceReturns a single random piece of advice
search_adviceFull-text search across all advice slips by keyword
get_adviceRetrieve a specific advice slip by its numeric ID

When to reach for this

  • A user asks for motivation or a pick-me-up during a conversation
  • Building a "tip of the day" widget or notification
  • Searching for advice on a specific topic like "money", "friendship", or "patience"
  • Populating placeholder content with real human-written sentences

Quick example

Searching for advice about sleep:

curl -s -X POST https://gateway.pipeworx.io/advice/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_advice","arguments":{"query":"sleep"}}}'

Response shape:

{
  "total_results": 3,
  "slips": [
    { "id": 87, "advice": "Get enough sleep." },
    { "id": 143, "advice": "Don't use your phone before bed..." }
  ]
}

MCP client config

{
  "mcpServers": {
    "pipeworx-advice": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/advice/mcp"]
    }
  }
}

Good to know

  • The API caches random results for 2 seconds, so rapid consecutive calls to random_advice may return the same slip
  • Search is case-insensitive and matches partial words
  • No auth needed, free for everyone

Metadata

Stars4190
Views1
Updated2026-04-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-brucegutman-pipeworx-advice": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.