GB-Power-Market-JJ request-random-jokes
Get random fun content (joke, funny story/duanzi, poisonous chicken soup/dujitang) from public APIs. Use when the user asks you to tell a joke, share a funny story, or give a dujitang quote.
install
source · Clone the upstream repo
git clone https://github.com/GeorgeDoors888/GB-Power-Market-JJ
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.claude/skills && cp -r "$T/openclaw-skills/skills/aolinlu/request-random-jokes" ~/.claude/skills/georgedoors888-gb-power-market-jj-request-random-jokes && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/openclaw-skills/skills/aolinlu/request-random-jokes" ~/.openclaw/skills/georgedoors888-gb-power-market-jj-request-random-jokes && rm -rf "$T"
manifest:
openclaw-skills/skills/aolinlu/request-random-jokes/SKILL.mdsource content
Request Random Jokes
Overview
This skill provides a lightweight Python script that fetches random fun content from three public APIs, supports optional type selection. Supported content types:
: Random joke (笑话)xiaohua
: Random funny story (段子)duanzi
: Random poisonous chicken soup quote (毒鸡汤)dujitang
Usage
Run the script directly to get random content (automatically selects one of the three APIs randomly):
python request_random_jokes.py
Specify content type with an optional parameter:
# Get random joke python request_random_jokes.py xiaohua # Get random funny story python request_random_jokes.py duanzi # Get random poisonous chicken soup python request_random_jokes.py dujitang
Files
: Main script, returns content as plain text outputrequest_random_jokes.py
: Skill documentationSKILL.md