随机返回一句中文名言,支持按主题筛选和指定数量。
# 名言模式 —— 随机返回一句(所有主题混合抽取)
python ~/.openclaw/workspace/skills/random-quote/random_quote.py
# 指定名言主题
python ~/.openclaw/workspace/skills/random-quote/random_quote.py --theme 励志
python ~/.openclaw/workspace/skills/random-quote/random_quote.py --theme 搞笑 --count 3
# 诗歌模式 —— 指定作者,随机返回诗歌
python ~/.openclaw/workspace/skills/random-quote/random_quote.py --author 李白
python ~/.openclaw/workspace/skills/random-quote/random_quote.py --author 苏轼 --count 2
| 参数 | 说明 | 可选值 | 默认值 |
|---|---|---|---|
| ------ | ------ | -------- | -------- |
--theme | 名言主题(与 --author 互斥) | 励志 / 搞笑 / 古风 | 不填则混合随机 |
--author | 诗歌作者(与 --theme 互斥) | 李白 / 杜甫 / 苏轼 / 陆游 | — |
--count | 数量 | 整数 >= 1 | 1 |
共 1 个版本