Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

zen-koan-daily禅宗公案日报

Agent Skill

zen-koan-daily 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,097

周安装

169

GitHub Stars

公开资料未说明

下载量

1,338
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:zen-koan-daily(禅宗公案日报)
来源仓库:https://github.com/yumyumtum/zen-koan-daily
安装命令:
openclaw skills install zen-koan-daily
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install zen-koan-daily

简介

每日推送禅宗公案讲解,含中文水墨插图与TTS音频。

  • 提供起源背景、解释模式与文化脉络系统解析。zen-koan-daily 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适合传统文化学习者与冥想实践者日常修习使用。
  • 自动生成图文音视频组合内容,支持离线缓存播放。
  • 知识类输出需标明出处,避免断章取义或过度解读。

SKILL.md

name
zen-koan-daily
description
Daily Zen Buddhist koan (禅宗公案) lecture with Chinese ink wash illustration and TTS audio. Generates detailed lecture (origin, background, interpretation, modern insights), zen ink wash painting, and audio narration. Use when: /koan, /公案, zen/禅宗 content requests, or daily spiritual content.
homepage
https://github.com/yumyumtum/YumSkills/tree/main/zen-koan-daily
metadata
openclaw
emoji
🎋
requires
bins
["python3", "edge-tts"]
triggers

Zen Koan Daily | 每日禅宗公案 🎋

Daily Zen Buddhist koan with ink wash art and audio narration

每日禅宗公案配水墨画和语音讲解


🎯 What This Skill Does | 功能说明

Delivers a complete Zen koan experience every day:

每天提供完整的禅宗公案体验:

  1. 📜 Koan Lecture | 公案讲解

- Original text (classical Chinese + English) - Historical background - Deep interpretation - Modern-life insights

  1. 🎨 Zen Ink Wash Art | 禅宗水墨画

- AI-generated Chinese ink wash painting - Minimalist aesthetic with vast empty space (留白) - Mood matches the koan theme

  1. 🔊 Audio Narration | 语音讲解

- TTS audio (Edge TTS, free) - Chinese: Calm, contemplative voice - English: Narrative, meditative style


🤖 Agent Instructions | AI助手指令

Trigger Commands | 触发命令

User says any of:

  • /koan or /公案 → Generate today's koan
  • /koan next → Next koan in sequence
  • /koan random → Random koan
  • /koan 1 → Specific koan by ID
  • zen koan, 禅宗公案, tell me a koan → Conversational trigger

Workflow | 工作流程

Dynamic Generation Mode (动态生成模式)

This skill uses LLM-powered dynamic generation instead of a fixed database:

  • Only 2 reference koans are stored as examples
  • All other koans are generated fresh by the LLM
  • Sources: 无门关, 碧岩录, 从容录, 景德传灯录, 五灯会元

When triggered:

Step 1: Generate Koan Content (LLM生成公案)

The LLM will:

  1. Select an appropriate koan from classical Zen literature
  2. Generate complete content:

- Original text (classical Chinese + English) - Historical background - Deep interpretation - Modern-life insights - Visual elements for image generation

  1. Optional: Use stored reference koans (ID 1-2) for testing
  2. Optional: Use web_search to find contemporary Zen teachings

Step 2: Format Lecture Text Step 2: Format Lecture Text

For stored koans (testing):

   python3 ~/clawd/skills/zen-koan-daily/scripts/generate_koan.py --id 1 --lang zh

For LLM-generated koans: - LLM directly generates the full lecture in the correct format - Use the same structure as reference koans: - Title + Collection - Original text (📜) - Background (📖) - Interpretation (💡) - Modern Insight (🌏) - Optional: Personal Insight (🧘 为你而讲)

Options: - --lang zh → Chinese lecture - --lang en → English lecture - --personal "..." → Add personalized insight based on recent context

Step 3: Get Koan JSON (for image generation) Step 3: Get Koan JSON (for image generation)

Option A - Use stored koan:

   python3 ~/clawd/skills/zen-koan-daily/scripts/generate_koan.py --id 1 --format json

Option B - LLM generates koan metadata: LLM creates JSON with visual elements:

   {
     "id": 3,
     "title_zh": "俱胝竖指",
     "visual_elements": ["finger", "mountain", "clouds"],
     "mood": "sudden, shocking, direct"
   }

Step 4: Generate Zen Ink Wash Image

   # Get the prompt command
   python3 ~/clawd/skills/zen-koan-daily/scripts/generate_image.py \
     --koan-json '{"id": 1, "visual_elements": ["dog", "bamboo"], "mood": "serene"}'
   
   # Then run the displayed uv command via exec tool

Step 5: Generate TTS Audio

   # Save lecture text to temp file
   echo "<lecture_text>" > /tmp/koan.txt
   
   ~/clawd/skills/zen-koan-daily/scripts/generate_tts.sh \
     --text-file /tmp/koan.txt \
     --lang zh \
     --output ~/.openclaw/media/outbound/zen-koan/koan-$(date +%Y%m%d).mp3

Step 6: Send to User - Image (PNG) - Audio (MP3) - Lecture text (formatted)


📚 Koan Database | 公案数据库

Generation Mode: Dynamic (动态生成)

Stored Reference Koans: 2

  • 赵州狗子 (Zhaozhou's Dog)
  • 平常心是道 (Ordinary Mind is the Way)

Additional Koans: Generated dynamically by LLM from:

  • *The Gateless Gate* (无门关) - 48 cases
  • *Blue Cliff Record* (碧岩录) - 100 cases
  • *Book of Serenity* (从容录) - 100 cases
  • *Transmission of the Lamp* (景德传灯录)
  • *Five Lamps Meeting at the Source* (五灯会元)

Why Dynamic Generation?

  • ✅ LLM quality is excellent (verified through testing)
  • ✅ No need to store 50-100 koans manually
  • ✅ Unlimited variety from classical sources
  • ✅ Fresh interpretations each time
  • ✅ Optional web_search for contemporary teachings

Quality Assurance:

  • LLM trained on authentic Zen literature
  • Cross-references classical sources
  • Maintains consistent format
  • Verified through testing (see reference koans)
  1. 赵州狗子 (Zhaozhou's Dog) - The first barrier
  2. 平常心是道 (Ordinary Mind is the Way) - Non-seeking

Coming Soon:

  • 德山棒 (Deshan's Stick)
  • 临济喝 (Linji's Shout)
  • 庭前柏树子 (The Cypress Tree)
  • 青原三境 (Three Stages)
  • ...and 42+ more classical koans

Location: ~/clawd/skills/zen-koan-daily/references/koans.json


🎨 Image Style | 图片风格

Zen Ink Wash Aesthetic:

Chinese zen ink wash painting (禅宗水墨画),
minimalist composition, vast empty space (留白),
subtle gradations of black ink on rice paper,
sparse brushstrokes, meditative atmosphere,
traditional Chinese calligraphy style,
serene and contemplative mood

Visual Elements by Koan:

  • Dog/Buddha-nature koans → Dog silhouette, bamboo, moon
  • Void/Emptiness koans → Vast sky, simple tea cup
  • Nature koans → Misty mountain, pine tree, plum blossom

🔊 TTS Configuration | 语音配置

Voices:

  • Chinese (中文): zh-CN-XiaoxiaoNeural

- Warm, calm, suitable for contemplative content - 温暖、平静、适合讲解内容

  • English: en-US-AriaNeural

- Calm, narrative, meditative style - 平静、叙述风格、冥想氛围

Audio Format:

  • MP3 (compressed)
  • Saved to ~/.openclaw/media/outbound/zen-koan/

📖 Output Example | 输出示例

Text (Chinese):

🎋 每日禅宗公案 | Daily Zen Koan

━━━━━━━━━━━━━━━━━━━━━━━━

**赵州狗子**
*无门关 第1则*

━━━━━━━━━━━━━━━━━━━━━━━━

📜 **原文**

僧问赵州:「狗子还有佛性也无?」州云:「无。」

━━━━━━━━━━━━━━━━━━━━━━━━

📖 **背景**

赵州从谂禅师(778-897)是唐代著名禅师...

━━━━━━━━━━━━━━━━━━━━━━━━

💡 **白话解读**

赵州答「无」,并非否定佛性...

━━━━━━━━━━━━━━━━━━━━━━━━

🌏 **现代启示**

现代人陷入「有用/无用」「成功/失败」的二元思维...

Files Generated:

  • koan-1-20260405-090000.png (Zen ink wash image)
  • koan-1-20260405-090000.mp3 (TTS audio narration)
  • Lecture text (sent via message)

🔄 Progress Tracking | 进度追踪

Automatic tracking:

  • references/progress.json tracks which koans have been delivered
  • Cycles through all koans, then repeats
  • Stores delivery history

Check progress:

cat ~/clawd/skills/zen-koan-daily/references/progress.json

🛠️ Installation | 安装

Requirements:

  • Python 3.10+
  • Edge TTS: pipx install edge-tts
  • Gemini API key (for images): export GEMINI_API_KEY="..."

Install:

clawhub install zen-koan-daily

Or from GitHub:

git clone https://github.com/yumyumtum/yumskills.git
cd yumskills/zen-koan-daily

📅 Cron Scheduling | 定时任务

Daily delivery at 6:00 AM:

Create OpenClaw cron task:

{
  "name": "Daily Zen Koan",
  "schedule": {
    "kind": "cron",
    "expr": "0 6 * * *",
    "tz": "America/Los_Angeles"
  },
  "sessionTarget": "isolated",
  "payload": {
    "kind": "agentTurn",
    "message": "/koan next"
  }
}

🏷️ Tags & Metadata | 标签与元数据

Difficulty Levels:

  • beginner - Foundational koans (赵州狗子, 平常心)
  • intermediate - Deeper practice (德山棒, 临济喝)
  • advanced - Subtle realization (庭前柏树子, 青原三境)

Schools:

  • rinzai - Sudden enlightenment tradition
  • soto - Gradual cultivation tradition
  • both - Universal teachings

🔗 Related Skills | 相关技能

  • Continuance - Daily spiritual guidance
  • Nano Banana Pro - AI image generation
  • Azure TTS - Alternative TTS option

📜 License | 许可证

GPL-3.0-or-later

Open source, free to use and modify.


*"When you meet a swordsman on the road, draw your sword. Don't recite poetry to one who is not a poet."*

*"路逢剑客须呈剑,不是诗人莫献诗。"*

— Zen saying | 禅宗古语

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.69%
按下载量换算946

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills