Build capture
Skill nataliacorrea03/claude-code-skills/skills/build-capture
Reusable Claude Code skills: teach-while-building, factual rigor, an automation system-map generator, and Anthropic's best practices distilled.
npx -y skills add nataliacorrea03/claude-code-skills --skill build-captureAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
A hands-off daily log of everything you build in Claude Code. Once a day it reads that day's sessions and the files that changed, and appends a short entry per real build (what it is, what shipped) to a local markdown file. No /wrap, no manual step. Perfect for standups, changelogs, or a running record of what you've made.
SKILL.md
2.0 KB, as published. Nobody here has run it
build-capture
The stuff you build in Claude Code never gets written down unless you stop and do it. You won't. This does it for you.
Once a day a cron reads that day's Claude Code sessions plus the files that changed in a folder you watch, figures out what you actually built or shipped, and appends a short entry for each to a markdown file. Hands-off. Routine chatter and pure Q&A are skipped.
What you get, per build
- Name — short title of the thing you built
- What it is — one plain sentence
- Latest — what happened today (built, shipped, fixed, refactored)
- Type (skill / script / app / fix) + date
Setup (2 minutes)
- Requires the
claudeCLI on your PATH and Python 3. - Set
WATCH_DIRto the folder you build in (default: the current repo /~/.claude/skills), andLOG_FILEfor the log (default~/build-log.md). - Install the daily cron:
(On Linux, use thecp com.example.build-capture-daily.plist ~/Library/LaunchAgents/ # edit the path inside to point at this folder, then: launchctl load ~/Library/LaunchAgents/com.example.build-capture-daily.plistcrontabline indaily-sweep.sh's header.)
Run it by hand
./daily-sweep.sh # log today's builds now
./daily-sweep.sh dry # print what it would log, write nothing
How it works
build_digest.py (pure local, no LLM) collects the last day's session text, the files that changed under WATCH_DIR, and recent git commits, into one digest. A headless claude pass reads it per SWEEP_PROMPT.md and appends the builds to your log, deduping by name so re-runs don't pile up. Additive only, it never edits past entries.