Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section.
/install juya-ai-daily-skills
Juya AI Daily (AI 日报)
Fetch the latest daily AI news brief from the public repo imjuya/juya-ai-daily and return the summary / overview section.
When to use (trigger phrases)
- “AI 日报 / AI 早报 / 今日 AI 新闻”
- “拉取今天最新的 AI 新闻总结”
- “juya ai daily”
What you should return
- The latest available date (from the repo)
- The
## 概览section only (this is the repo’s “summary view”) - A short note: “Reply with #n if you want the detailed explanation for item n”
Fetch latest summary (bash)
This repo stores daily posts under BACKUP/*.md (public, no auth required).
If you run this frequently and hit GitHub rate limits, set GITHUB_TOKEN (or GH_TOKEN) to increase limits.
set -euo pipefail
API="https://api.github.com/repos/imjuya/juya-ai-daily/contents/BACKUP?ref=master"
latest_url="$(
auth=()
if [ -n "${GITHUB_TOKEN:-}" ]; then
auth=(-H "Authorization: Bearer $GITHUB_TOKEN")
elif [ -n "${GH_TOKEN:-}" ]; then
auth=(-H "Authorization: Bearer $GH_TOKEN")
fi
curl -fsSL "${auth[@]}" -H "Accept: application/vnd.github+json" "$API" | node -e '
const fs = require("node:fs");
const items = JSON.parse(fs.readFileSync(0, "utf8"));
const candidates = items
.filter((it) => it && typeof it.name === "string" && typeof it.download_url === "string")
.map((it) => {
const m = it.name.match(/(?:^|_)(\d{4}-\d{2}-\d{2})\.md$/);
return m ? { ...it, date: m[1] } : null;
})
.filter(Boolean);
if (candidates.length === 0) {
throw new Error("No BACKUP markdown files found.");
}
candidates.sort((a, b) => (a.date \x3C b.date ? -1 : a.date > b.date ? 1 : 0));
console.log(candidates[candidates.length - 1].download_url);
'
)"
latest_date="$(basename "$latest_url" .md | sed -E 's/^[0-9]+_//')"
echo "Latest: $latest_date" >&2
curl -fsSL "$latest_url" | awk '
done { next }
/^## 概览/ { in_section=1 }
in_section && /^---$/ { in_section=0; done=1 }
in_section && /^\\* \\* \\*$/ { in_section=0; done=1 }
in_section { print }
'
Optional: fetch detailed explanation for a specific item #n
If the user asks for details for item #3, fetch the same latest file and extract that block:
set -euo pipefail
n="3"
API="https://api.github.com/repos/imjuya/juya-ai-daily/contents/BACKUP?ref=master"
latest_url="$(
auth=()
if [ -n "${GITHUB_TOKEN:-}" ]; then
auth=(-H "Authorization: Bearer $GITHUB_TOKEN")
elif [ -n "${GH_TOKEN:-}" ]; then
auth=(-H "Authorization: Bearer $GH_TOKEN")
fi
curl -fsSL "${auth[@]}" -H "Accept: application/vnd.github+json" "$API" | node -e '
const fs = require("node:fs");
const items = JSON.parse(fs.readFileSync(0, "utf8"));
const candidates = items
.filter((it) => it && typeof it.name === "string" && typeof it.download_url === "string")
.map((it) => {
const m = it.name.match(/(?:^|_)(\d{4}-\d{2}-\d{2})\.md$/);
return m ? { ...it, date: m[1] } : null;
})
.filter(Boolean);
candidates.sort((a, b) => (a.date \x3C b.date ? -1 : a.date > b.date ? 1 : 0));
console.log(candidates[candidates.length - 1].download_url);
'
)"
curl -fsSL "$latest_url" | awk -v n="$n" '
done { next }
$0 ~ /^## \\[/ {
if (in_section && $0 !~ ("`#" n "`")) {
in_section=0
done=1
}
if (!in_section && $0 ~ ("`#" n "`")) {
in_section=1
}
}
in_section && /^\\* \\* \\*$/ { in_section=0; done=1 }
in_section { print }
'
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install juya-ai-daily-skills - 安装完成后,直接呼叫该 Skill 的名称或使用
/juya-ai-daily-skills触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section. 是什么?
Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 297 次。
如何安装 Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section.?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install juya-ai-daily-skills」即可一键安装,无需额外配置。
Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section. 是免费的吗?
是的,Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section. 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section. 支持哪些平台?
Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section. 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Fetch the latest AI daily brief from imjuya/juya-ai-daily (GitHub) and return the Overview (summary) section.?
由 Haoxuan Ma(@hunter-wrynn)开发并维护,当前版本 v1.0.0。