npx claudepluginhub stringke/ai-agents --plugin ai-agentsThis skill is limited to using the following tools:
按以下步骤依次执行,不要跳过任何步骤。
Drafts structured weekly software development reports from git logs, Obsidian work logs, YAML schedules, GitHub PRs, 云效 tasks, and calendars. Use for 周报 or end-of-week summaries.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
按以下步骤依次执行,不要跳过任何步骤。
DOW=$(date +%u)
MONDAY=$(date -v-$((DOW - 1))d +%Y-%m-%d)
TODAY=$(date +%Y-%m-%d)
echo "周一: $MONDAY"
echo "今天: $TODAY"
current="$MONDAY"
while [[ "$current" < "$TODAY" ]] || [[ "$current" == "$TODAY" ]]; do
echo "$current"
current=$(date -j -f "%Y-%m-%d" "$current" -v+1d +%Y-%m-%d)
done
使用 Glob 工具查找 ~/docs/reports/*/report-daily-*.txt,筛选本周一到今天范围内的日报文件。
使用 Read 工具逐个读取。
对本周每一天,使用 Glob 工具查找 ~/docs/[DATE]/*.md。
使用 Read 工具读取,用于补充没写日报那天的工作。
数据合并策略:
归纳规则:
内容板块:
好的周报示例:
本周工作:
1. 完成接口层时区统一和文档补充
2. 测试环境基础设施迁移
3. 数据映射层规范化重构
4. 代码质量全量复查与修复
先创建目录:
mkdir -p ~/docs/reports/$(date +%Y-%m-%d)
使用 Write 工具将周报写入 ~/docs/reports/[TODAY]/report-weekly-[TODAY].txt。
格式要求:
完成后输出:
周报已生成:~/docs/reports/[TODAY]/report-weekly-[TODAY].txt
并将周报内容完整展示给用户,方便直接复制粘贴到群聊。