请求随机笑话
v1.0.0Get 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...
Security Scan
OpenClaw
Benign
high confidencePurpose & 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.
latest
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 outputSKILL.md: Skill documentation
Comments
Loading comments...
