Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
扫描并补齐缺失的每日工作日志。对比 logs/daily/ 已有日志与 git 有提交的日期(按 07:00 边界归属),列出「昨天及之前、有 commit 但无日志」的日期,逐日调用 generate_log.py 生成骨架,再按 SKILL_10b 补写微信通知和改动意义。不执行 git add/commit,不补齐今天。
/daily <今天日期>YYYY-MM-DD.md 覆盖 YYYY-MM-DD 07:00 ~ YYYY-MM-DD+1 07:00 的 commit(凌晨 0-7 点归前一天)/daily:扫描所有缺口并逐一补齐/daily YYYY-MM-DD:只补齐指定日期(允许补今天)/daily 执行步骤ls logs/daily/*.md | grep -oE '[0-9]{4}-[0-9]{2}-[0-9]{2}' | sort -u
# 取出每个 commit 的 ISO 时间戳,再用 awk 按 07:00 归属到日期
git log --all --date=iso --pretty=format:"%cd" \
| awk '{ date=$1; time=$2; if (time < "07:00:00") { cmd="date -d \"" date " -1 day\" +%Y-%m-%d"; cmd | getline date; close(cmd); } print date }' \
| sort -u
集合差:{有提交的日期} − {已有日志的日期} − {今天},得到要补齐的日期列表。
向用户展示:
以下日期有 commit 但无日志,将逐一补齐:
- 2026-04-20(N 次提交)
- 2026-04-21(M 次提交)
共 2 天需补齐。是否继续?
等待用户确认后再执行第 5 步(除非用户已开启自动确认)。
对每个缺失日期 D:
python logs/daily/generate_log.py Dlogs/daily/D.mdgit log --since="D 07:00" --until="D+1 07:00" 统计章节数、新增文件、新增 SKILL· 提交N次代码npx skills add baojie/shiji-kb --skill dailyHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.