Skip to content
Skillv1.0.0

entertainment

获取娱乐内容,包括一言名句、英文笑话、中文段子、运势预测、KFC梗文案和摸鱼日历。Use when users want fun content, jokes, quotes, daily luck predictions, or entertainment.

by vikiboss(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from vikiboss/60s-skills (skills/entertainment/SKILL.md). Install upstream with npx skills add vikiboss/60s-skills --skill entertainment. Copyright stays with the author (MIT).

Entertainment Content Skill

Get fun and entertaining content including quotes, jokes, luck predictions, and memes.

Available Content

  1. Hitokoto (一言) - Random meaningful quotes
  2. Dad Jokes - English dad jokes
  3. Duanzi (段子) - Chinese jokes/funny stories
  4. Luck Prediction - Daily fortune telling
  5. KFC Meme - Crazy Thursday meme text
  6. Moyu Calendar - Slacking off calendar

API Endpoints

Content Endpoint Method
Hitokoto /v2/hitokoto GET
Dad Joke /v2/dad-joke GET
Duanzi /v2/duanzi GET
Luck /v2/luck GET
KFC Meme /v2/kfc GET
Moyu /v2/moyu GET

Quick Examples

Get Random Quote (Hitokoto)

import requests

# Get random quote
response = requests.get('https://60s.viki.moe/v2/hitokoto')
quote = response.json()

print(f"📖 {quote['hitokoto']}")
print(f"   —— {quote['from']}")

# With category
params = {'category': 'anime'}  # anime, comic, game, literature, original, internet, other
response = requests.get('https://60s.viki.moe/v2/hitokoto', params=params)

Get Dad Joke

response = requests.get('https://60s.viki.moe/v2/dad-joke')
joke = response.json()

print(f"😄 {joke['setup']}")
print(f"   {joke['punchline']}")

Get Chinese Joke (Duanzi)

response = requests.get('https://60s.viki.moe/v2/duanzi')
duanzi = response.json()

print(f"😂 {duanzi['content']}")

Get Daily Luck

response = requests.get('https://60s.viki.moe/v2/luck')
luck = response.json()

print(f"🔮 今日运势")
print(f"综合运势:{luck['总运势']}")
print(f"爱情运势:{luck['爱情运势']}")
print(f"事业运势:{luck['事业运势']}")
print(f"财富运势:{luck['财富运势']}")
print(f"幸运颜色:{luck['幸运颜色']}")
print(f"幸运数字:{luck['幸运数字']}")

Get KFC Meme Text

response = requests.get('https://60s.viki.moe/v2/kfc')
meme = response.json()

print(f"🍗 {meme['text']}")

Get Moyu Calendar

response = requests.get('https://60s.viki.moe/v2/moyu')
# Returns image
with open('moyu.jpg', 'wb') as f:
    f.write(response.content)

Use Cases

Daily Entertainment Bot

def get_morning_entertainment():
    quote = requests.get('https://60s.viki.moe/v2/hitokoto').json()
    luck = requests.get('https://60s.viki.moe/v2/luck').json()
    
    message = f"""
☀️ 早安!

📖 每日一言
{quote['hitokoto']}
—— {quote['from']}

🔮 今日运势
综合:{luck['总运势']}
幸运色:{luck['幸运颜色']}
    """
    return message

Chatbot Fun Commands

def handle_fun_command(command):
    if 'joke' in command or '笑话' in command:
        joke = requests.get('https://60s.viki.moe/v2/duanzi').json()
        return f"😂 {joke['content']}"
    
    elif 'quote' in command or '名言' in command:
        quote = requests.get('https://60s.viki.moe/v2/hitokoto').json()
        return f"📖 {quote['hitokoto']} —— {quote['from']}"
    
    elif 'luck' in command or '运势' in command:
        luck = requests.get('https://60s.viki.moe/v2/luck').json()
        return f"🔮 今日运势:{luck['总运势']}\n幸运色:{luck['幸运颜色']}"
    
    elif 'kfc' in command:
        meme = requests.get('https://60s.viki.moe/v2/kfc').json()
        return f"🍗 {meme['text']}"

Example Interactions

User: "讲个笑话"

duanzi = requests.get('https://60s.viki.moe/v2/duanzi').json()
print(f"😂 {duanzi['content']}")

User: "今天运势怎么样?"

luck = requests.get('https://60s.viki.moe/v2/luck').json()
response = f"""
🔮 您今日的运势:

综合运势:{luck['总运势']}
爱情运势:{luck['爱情运势']}
事业运势:{luck['事业运势']}
财富运势:{luck['财富运势']}

💡 幸运提示
幸运颜色:{luck['幸运颜色']}
幸运数字:{luck['幸运数字']}
"""

User: "给我一句励志的话"

params = {'category': 'literature'}
quote = requests.get('https://60s.viki.moe/v2/hitokoto', params=params).json()
print(f"✨ {quote['hitokoto']}\n   —— {quote['from']}")

Related Resources

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/vikiboss-60s-skills-entertainment/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

vikiboss-60s-skills-entertainment.ocm.jsonjson
{
  "ocm": "1",
  "id": "vikiboss-60s-skills-entertainment",
  "kind": "skill",
  "name": "entertainment",
  "description": "获取娱乐内容,包括一言名句、英文笑话、中文段子、运势预测、KFC梗文案和摸鱼日历。Use when users want fun content, jokes, quotes, daily luck predictions, or entertainment.",
  "publisher": "vikiboss",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "entertainment",
      "fun",
      "jokes",
      "quotes",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "获取娱乐内容,包括一言名句、英文笑话、中文段子、运势预测、KFC梗文案和摸鱼日历。Use when users want fun content, jokes, quotes, daily luck predictions, or entertainment."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/vikiboss/60s-skills",
      "path": "skills/entertainment/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/vikiboss/60s-skills/blob/HEAD/skills/entertainment/SKILL.md",
      "key": "vikiboss/60s-skills/skills/entertainment/SKILL.md"
    },
    "license": "MIT"
  },
  "instructions": "# Entertainment Content Skill\n\nGet fun and entertaining content including quotes, jokes, luck predictions, and memes.\n\n## Available Content\n\n1. **Hitokoto (一言)** - Random meaningful quotes\n2. **Dad Jokes** - English dad jokes\n3. **Duanzi (段子)** - Chinese jokes/funny stories\n4. **Luck Prediction** - Daily fortune telling\n5. **KFC Meme** - Crazy Thursday meme text\n6. **Moyu Calendar** - Slacking off calendar\n\n## API Endpoints\n\n| Content | Endpoint | Method |\n|---------|----------|--------|\n| Hitokoto | `/v2/hitokoto` | GET |\n| Dad Joke | `/v2/dad-joke` | GET |\n| Duanzi | `/v2/duanzi` | GET |\n| L",
  "cost": {
    "context_tokens": 982
  }
}

Fetch it by URL: GET /api/v1/registry/vikiboss-60s-skills-entertainment/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.