npx skillsauth add tmp-chainopera/daily-quote daily-quoteInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
获取随机的励志名言,支持中英文。
curl -s "https://api.quotable.io/random" | jq -r '"\(.content) - \(.author)"'
# 使用数组随机选择一句中文名言
quotes=(
"路漫漫其修远兮,吾将上下而求索。 - 屈原"
"天行健,君子以自强不息。 - 周易"
"学而不思则罔,思而不学则殆。 - 孔子"
"千里之行,始于足下。 - 老子"
"不积跬步,无以至千里。 - 荀子"
)
echo "${quotes[$RANDOM % ${#quotes[@]}]}"
如果没有安装 jq,可以直接获取纯文本:
curl -s "https://zenquotes.io/api/random" | grep -o '"q":"[^"]*","a":"[^"]*"' | sed 's/"q":"\([^"]*\)","a":"\([^"]*\)"/\1 - \2/'
The only way to do great work is to love what you do. - Steve Jobs
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.