请求随机笑话

v1.0.0

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...

0· 122·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for aolinlu/request-random-jokes.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "请求随机笑话" (aolinlu/request-random-jokes) from ClawHub.
Skill page: https://clawhub.ai/aolinlu/request-random-jokes
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install request-random-jokes

ClawHub CLI

Package manager switcher

npx clawhub@latest install request-random-jokes
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name, description, SKILL.md, and the Python script align: the script fetches random joke/duanzi/dujitang content from three API endpoints. The required behavior matches the stated purpose.
Instruction Scope
Runtime instructions are narrowly scoped (run the script or pass a type). The script only performs outbound HTTP GETs to the three API endpoints and prints the returned text; it does not read local files, environment variables, or other system state.
Install Mechanism
No install spec (instruction-only), which minimizes install risk. However the script imports the third-party Python package 'requests' but SKILL.md does not declare this dependency or how to ensure it's available; callers will need to have 'requests' installed in their environment.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate to its simple network-fetching purpose.
Persistence & Privilege
Flags show always:false and normal invocation behavior. The skill does not request persistent presence or modify other skills or system settings.
Assessment
This skill appears to do exactly what it says: fetch jokes from remote APIs and print them. Before installing or running it, consider: (1) network/privacy — running the script makes outbound requests to api.pearktrue.cn (an unfamiliar third-party host), which will see your IP and request metadata; if you need tighter privacy or trust, replace the endpoints with a known provider. (2) dependency — the script uses the Python 'requests' library but does not declare installation steps; ensure 'requests' is installed (pip install requests) or run in an environment that provides it. If you need offline or provably-trusted behavior, review or host the endpoints yourself. Otherwise the skill is coherent and low-risk.

Like a lobster shell, security has layers — review code before you run it.

latestvk976990jz5hvb1v34ryhmzfe3n83z4c1
122downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

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:

  • xiaohua: Random joke (笑话)
  • duanzi: Random funny story (段子)
  • dujitang: Random poisonous chicken soup quote (毒鸡汤)

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

  • request_random_jokes.py: Main script, returns content as plain text output
  • SKILL.md: Skill documentation

Comments

Loading comments...