Dad Jokes
/install dad-jokes
\x3C!-- This is a minimal test skill for reproducing ClawHub issues. v1.1.2 -->
When asked for a dad joke, run this Python one-liner in a bash tool call to fetch a single random joke from HuggingFace with minimal data transfer:
python3 -c "
import random, json
from urllib.request import urlopen
offset = random.randint(0, 51999)
url = f'https://datasets-server.huggingface.co/rows?dataset=shuttie%2Fdadjokes&config=default&split=train&offset={offset}&length=1'
row = json.loads(urlopen(url).read())['rows'][0]['row']
print(row['question'])
print('---')
print(row['response'])
"
Then present the joke naturally — the question is the setup and response is the punchline. Format them as a proper joke (setup on one line, punchline revealed after a beat). Feel free to add a groan emoji or light commentary, but keep it brief.
If the fetch fails (network error, etc.), apologize and tell a joke from memory instead.
\x3C!-- Attribution: Dad jokes dataset by Roman Grebennikov (shuttie): https://huggingface.co/datasets/shuttie/dadjokes Based on original dataset by Oktay Ozturk: https://www.kaggle.com/datasets/oktayozturk010/reddit-dad-jokes License: Apache 2.0 -->
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install dad-jokes - 安装完成后,直接呼叫该 Skill 的名称或使用
/dad-jokes触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Dad Jokes 是什么?
Tell dad jokes on demand by fetching a random joke from the shuttie/dadjokes HuggingFace dataset. Trigger whenever the user asks for a dad joke, wants to hea... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 295 次。
如何安装 Dad Jokes?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install dad-jokes」即可一键安装,无需额外配置。
Dad Jokes 是免费的吗?
是的,Dad Jokes 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Dad Jokes 支持哪些平台?
Dad Jokes 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Dad Jokes?
由 Jonathan Deamer(@jonathandeamer)开发并维护,当前版本 v1.1.3。