project-daily-progress

project-daily-progress is a skill for Claude Code, Codex from BuildrAI/Buildr. It costs 76 tokens per session (952 once invoked), scanned A, original, MIT.

A workflow for recording a project's daily progress from that day's Git commits and changed files in a local YAML file. Git is a system for tracking code changes over time.

In plain words
What is it for?
It helps synchronize a project, collect the day's commits, compare authors, and summarize what was added, updated, deleted, and problematic.
Why use it?
It separates verified repository activity from task status and prevents unsynced, uncommitted, or fabricated changes from appearing in the daily record.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/buildrai/buildr/project-daily-progress
Any agent
npx skills add BuildrAI/Buildr --skill project-daily-progress
Clone the repo
git clone --depth 1 https://github.com/BuildrAI/Buildr

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for project-daily-progress

README.md
[![agentmods](https://agentmods.dev/badge/skills/buildrai/buildr/project-daily-progress.svg)](https://agentmods.dev/skills/buildrai/buildr/project-daily-progress)
Your own site
<a href="https://agentmods.dev/skills/buildrai/buildr/project-daily-progress"><img src="https://agentmods.dev/badge/skills/buildrai/buildr/project-daily-progress.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 952 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00076 $0.00952
Opus 5 $0.00038 $0.00476
Sonnet 5 $0.00015 $0.00190
Haiku 4.5 $0.00008 $0.00095

Measured 6d ago against content hash e55d70421290, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

project-daily-progress scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

projects/product/services/buildr/resources/workspace/skills/buildr/project-daily-progress/SKILL.md · 53 lines

How it starts

The opening of the file, as written. The whole thing — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.

项目每日演进

本 Skill 帮助 Agent 展示或生成 项目每日演进(Project Daily Progress):按已登记 Project 把当天 Git 提交驱动的四问摘要写入本机 YAML。页面只读;摘要由 Agent 判断后撰写,Buildr 只校验、落盘、解析 Task。

它不是当前认知、Task 状态、Verification 或 Retrospective。产品 Application / HTTP GET 扫描 Git 提交、不读取 git config user.email、不根据 Task updatedAt 自动写摘要,也不内置 cron。写入前由本 Skill 收集 Git。

1. 先同步最新代码

写入前必须执行与「更新 workspace」相同的同步门禁:

  1. 若 Workspace 由 Git 管理,把已选定 upstream 的安全 Git update 交给 buildr.git-operations/v1(workspace update)。working tree dirty、分叉冲突、upstream 不明或 provider blocked 时停止,不要调用 record
  2. 成功后再运行 buildr sync <agent>。最终 Doctor 未 ready 时停止,不要调用 record
  3. 非 Git Workspace 跳过 Git update,但仍须在 sync/Doctor 适用时保持当前资产 current。没有 Git 时不得伪造 commits,也不要调用 record

同步失败时报告 blocked 原因,当天每日演进文件必须保持调用前状态。

2. 收集当日 Git 并由 Agent 总结

同步成功后:

  1. 收集目标日期(本机日历日或用户指定 YYYY-MM-DD)的全部 Git 提交与更改文件。
  2. 读取本机 git config user.email,与 commit author email 做大小写不敏感、去空白比较。
  3. 自己的提交 authorship: self,可挂 0..N 个当前 Workspace 已存在的 Task ID;没有 Task 也要写入。
  4. 他人提交 authorship: other,必须写入且 不得挂 Task。
  5. 撰写日摘要四问:added(新增了什么)、updated(更新了什么)、deleted(删除了什么)、drawbacks(有什么弊端)。

不要手写 YAML,不要写入 Task SQLite。未提交 working tree 改动不要假装已经进日报,可写在弊端里。

3. 通过 CLI 写入

使用 agent-machine 命令,显式指定 Project:

buildr project daily-progress record --project <code> [--date <YYYY-MM-DD>] --input <payload.json> --json
buildr project daily-progress inspect --project <code> [--date <YYYY-MM-DD>] [--group day|person|task] --json
buildr project daily-progress list --project <code> --json

record --schema / --example 可发现 closed payload。省略日期时使用本机本地时区日历日。同一天再次成功 record 会原子覆盖当天文件,不保留 run 历史。任一 Task ID 不存在或他人提交带 Task 时整次 fail closed,不写文件。

--input JSON 只是一次性 CLI 输入,放在操作系统临时目录;成功后立即删除。不要写入 .buildr/local/.buildr/tmp/ 或其他受管目录。

权威文件路径是 .buildr/daily-progress/<project-code>/<YYYY-MM-DD>.yml。该目录被 root .gitignore 忽略,不进 Git、不进 Content Target,也不能跨机器共享。v1 旧文件不可展示,需要按本 Skill 重跑覆盖。

4. 定时器属于 Agent 宿主

若用户询问能否每天自动跑:说明这取决于 Cursor Automation / 会话 loop 等 Agent 宿主定时器;它们只是再次调用本 Skill。不要引导实现 Buildr 产品 cron。

Read the full file on GitHub · 53 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 53 lines · 76 tokens per session scan A e55d70421290

Subscribe to this mod's changes

project-daily-progress is a skill published in the GitHub repository BuildrAI/Buildr (24 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 952 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.