daily-fun-content
每日趣味内容生成器 - 每天早上搜索网络,预缓存一天的笑话、热梗、聊天技巧。包括搞笑段子、网络热梗解释、高情商对话示例。用 cron 触发,内容缓存到文件,心跳时随机取用。
Best use case
daily-fun-content is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
每日趣味内容生成器 - 每天早上搜索网络,预缓存一天的笑话、热梗、聊天技巧。包括搞笑段子、网络热梗解释、高情商对话示例。用 cron 触发,内容缓存到文件,心跳时随机取用。
Teams using daily-fun-content should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/daily-fun-content/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How daily-fun-content Compares
| Feature / Agent | daily-fun-content | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
每日趣味内容生成器 - 每天早上搜索网络,预缓存一天的笑话、热梗、聊天技巧。包括搞笑段子、网络热梗解释、高情商对话示例。用 cron 触发,内容缓存到文件,心跳时随机取用。
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
Best AI Agents for Marketing
A curated list of the best AI agents and skills for marketing teams focused on SEO, content systems, outreach, and campaign execution.
Best AI Skills for ChatGPT
Find the best AI skills to adapt into ChatGPT workflows for research, writing, summarization, planning, and repeatable assistant tasks.
SKILL.md Source
# Daily Fun Content
每天早上自动搜索网络,生成并缓存一天的趣味内容。
## 功能
- **搞笑段子** - 从网络搜索最新笑话、段子
- **网络热梗** - 搜索最近流行的梗、表情包梗、流行语
- **聊天技巧** - 高情商对话示例、接话技巧
- **预缓存** - 每天早上生成 6-8 条内容,存到 `cache/daily-fun.json`
- **随机取用** - 心跳时从缓存随机取一条分享
## 使用方式
### 1. 每日生成(Cron)
每天早上 6:00 自动生成:
```bash
openclaw cron add \
--name "Daily Fun Content Generator" \
--cron "0 6 * * *" \
--tz "Asia/Shanghai" \
--session isolated \
--wake now \
--message "Generate daily fun content: search web for jokes, memes, and chat tips. Cache 6-8 items to cache/daily-fun.json"
```
### 2. 手动生成
```bash
node {baseDir}/scripts/generate.mjs
```
### 3. 获取内容
心跳时调用:
```bash
node {baseDir}/scripts/get-content.mjs
```
返回随机一条缓存的内容。
## 内容格式
缓存文件 `cache/daily-fun.json`:
```json
{
"date": "2026-03-09",
"generated": "2026-03-09T06:00:00Z",
"items": [
{
"type": "joke",
"content": "朋友问我'你周末干嘛了',我说'躺了一天'。他说'那多无聊啊'。我说'你不懂,躺平也是一种技术,我得练'。"
},
{
"type": "meme",
"title": "我悟了",
"content": "最近'我悟了'这个梗挺火。用法:当别人说了个常识,你装作恍然大悟。\n朋友:'多喝水对身体好'\n你:'我悟了'"
},
{
"type": "chat_tip",
"content": "别人问'在干嘛',别说'没干嘛'。说'刚在想你上次说的那个事'或者'在发呆,你呢?'— 把球抛回去,对话才能继续。"
}
]
}
```
## 内容类型
| 类型 | 说明 | 来源 |
|------|------|------|
| `joke` | 搞笑段子、生活笑话 | 搜索"最新笑话 2026"、"搞笑段子" |
| `meme` | 网络热梗、流行语 | 搜索"最近流行梗"、"网络热词 2026" |
| `chat_tip` | 聊天技巧、高情商对话 | 搜索"聊天技巧"、"高情商回复" |
## 搜索策略
生成时会搜索:
1. 中文搞笑内容(豆瓣、知乎、微博等)
2. 最近 7 天的网络热梗
3. 实用的聊天技巧
确保内容:
- 真正好笑,不冷
- 热梗解释清楚用法
- 聊天技巧实用不油腻
- 不冒犯、不敏感
## 心跳集成
更新 `HEARTBEAT.md`:
```markdown
### 6. 趣味内容分享(每 2-3 小时)
- **条件**:距离上次分享 > 2 小时
- **动作**:`node skills/daily-fun-content/scripts/get-content.mjs`
- **报告**:直接分享返回的内容
- **回退**:如果缓存为空,现场生成一条
```
## 文件结构
```
skills/daily-fun-content/
├── SKILL.md # 本文件
├── scripts/
│ ├── generate.mjs # 每日生成脚本
│ └── get-content.mjs # 获取随机内容
└── cache/
└── daily-fun.json # 缓存文件(gitignore)
```
## 依赖
- 需要网络搜索能力(可用 `perplexity` skill 或 `glm-web-search` skill)
- Node.js 18+
## 发布到 ClawHub
```bash
# 1. 测试
node scripts/generate.mjs
node scripts/get-content.mjs
# 2. 发布
clawhub publish ./skills/daily-fun-content \
--slug daily-fun-content \
--name "Daily Fun Content" \
--version 1.0.0 \
--changelog "Initial release - daily jokes, memes, and chat tips"
```
## 示例输出
**笑话:**
> 去面试,面试官问"你最大的缺点是什么",我说"太诚实"。他说"我不觉得这是缺点"。我说"我不在乎你怎么想"。
**热梗:**
> "破防了" - 原意是游戏里防御被打破,现在指心理防线崩溃。
> 用法:看到戳中自己的内容时用。
> 朋友:发了个扎心的视频
> 你:"破防了"
**聊天技巧:**
> 如何优雅地结束对话?
> 别说"我去洗澡了"(太假)。
> 说"我得去处理点事,回头聊"或者"不早了,你先忙"。
> 给对方台阶,也给自己留余地。
---
**原则**:轻松、有趣、不油腻。质量 > 数量。Related Skills
daily-report-generator
Automatically generate daily/weekly work reports from git commits, calendar events, and task lists. Use when you need to quickly create professional work reports without manual effort.
错敏信息检测 API (Sensitive Content Detection)
一个基于 FastAPI 的错敏信息检测服务,用于检测文本中的敏感词、错别字和规范表述问题。
email-daily-summary
Automatically logs into email accounts (Gmail, Outlook, QQ Mail, etc.) and generates daily email summaries. Use when the user wants to get a summary of their emails, check important messages, or create daily email digests.
content-parser
Extract and parse content from URLs. Triggers on: user provides a URL to extract content from, another skill needs to parse source material, "parse this URL", "extract content", "解析链接", "提取内容".
content-creator-pro
AI-powered content creation assistant for YouTube creators and social media influencers. Generate scripts, titles, hooks, thumbnail concepts, and social captions using natural language.
Content Repurposer - Multi-Platform Content Adaptor
Transform any single piece of content (article, idea, notes, transcript) into optimized versions for multiple platforms in one shot.
daily-every
每天早上生成简报:上海天气 + V2EX 热帖前 5 条。 Use when: 用户说"生成今日简报",或 cron 在早上 8 点触发。 NOT for: 详细的天气预报或深度新闻分析。
web3-daily-mcp
MCP Server for Web3 Daily - Real-time Web3 research digest with macro news, KOL sentiment, market data, and personalized wallet analysis. This is an MCP server that provides tools for AI agents to fetch real data from the J4Y backend.
content-automation
内容创作自动化工具 Skill。支持社交媒体内容生成、视频脚本创作、定时发布任务管理。当用户需要批量生成内容、自动化社交媒体运营或创建视频脚本时触发。
wechat-content-creator
Create high-quality WeChat public account articles with high eCPM. Use when writing WeChat articles, optimizing titles, selecting topics, or improving content quality. Covers 8 golden opening templates, SCQA structure, long-tail keyword integration, high-value niches like legal, finance, career, and compliance guidelines. Triggers on requests like write WeChat article, 公众号文章, 爆款文案, title optimization, 选题, eCPM optimization, or 长尾关键词.
content-factory
Multi-agent content production system. One piece of source content becomes many formats — social posts, email, scripts, headlines, and more. Five specialized agent personas: Writer, Remixer, Editor, Scriptwriter, and Headline Machine.
obsidian-daily
Manage Obsidian Daily Notes via obsidian-cli. Create and open daily notes, append entries (journals, logs, tasks, links), read past notes by date, and search vault content. Handles relative dates like "yesterday", "last Friday", "3 days ago". Requires obsidian-cli installed via Homebrew (Mac/Linux) or Scoop (Windows).