What problem does it solve? Raw git logs are too fragmented or too detailed to give agents and humans real architectural context. This Skill maintains a persistent, high-level chronicle (docs/chronicle.md) that records design decisions, architectural shifts, and milestones, updated incrementally via a commit cutoff marker. ## Core Features & Use Cases - Incremental Updates: A cutoff SHA in the chronicle frontmatter means only new commits are processed, in batches of up to 50. - Conceptual Summarization: Commits are grouped into themes like Architectural Shifts, Workflow & Rulesets, Features, Infrastructure, and Documentation rather than listed raw. - Race-Safe Writes: The write step binds the recorded range to an exact TARGET_END_SHA, so it stays correct even if HEAD moves between prepare and write. - Use Case: When onboarding onto an unfamiliar repository, run the chronicle update to generate a decision-level history of how the codebase evolved, then read docs/chronicle.md for context. ## Quick Start Ask the agent to update the project chronicle by running the chronicle workflow to summarize all commits since the last recorded cutoff.