docs: add devlog system for development iteration tracking#4
Merged
Conversation
- devlog/README.md: usage guide, naming convention (YYYY-MM-DD_short-title) - REQ.template.md: problem statement, acceptance criteria, constraints - WORKLOG.template.md: commits, key files, test results, lessons learned - DESIGN.template.md: architecture decisions (required for major changes) - Backfilled 4 past iterations: acp-rebrand, test-infrastructure, ci-setup, msgid-expansion - AGENTS.md Section 5.1.2: devlog mandatory for every PR - Updated: test count 343→350, CI status, module map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a structured development log (
devlog/) system for tracking every development iteration with REQ + WORKLOG + optional DESIGN documents.What's included
REQ.template.md,WORKLOG.template.md,DESIGN.template.mdYYYY-MM-DD_short-title), rules, directory layout2026-05-15_acp-rebrand— DCP→ACP rebrand, 35 bug fixes2026-05-16_test-infrastructure— 95→350 test suite, 4 tiers2026-05-17_ci-setup— GitHub Actions CI2026-05-18_msgid-expansion— 4→5 digit message ref expansionWhy
Git history tells you what changed, but not why or how the decision was made. The devlog system provides structured, searchable context for each iteration — especially valuable for AI-assisted development where context can be lost between sessions.