Devlog
📜 Never write changelogs or release notes by hand again — automate your entire docs lifecycle (ADR · changelog · release · devlog · index) with 6 zero-dependency Claude Code skills.
npx -y skills add sp-daewoon/chronicle --skill devlogAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 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
Turn every working session into a clean, dated development journal, automatically. Use when writing a development session log — it captures the session into a self-contained, dependency-free HTML page and updates a running index. Creates a new sequenced file per call so it never overwrites past logs, adapting to any repo via config.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.4 KB, as published. Nobody here has run it
Devlog Workflow
Capture a development session as a dated HTML log.
Gather the session
Summarize what happened this session into the configured sections (default: Summary, Changes, Decisions, Next). Each section's content must be a fragment of valid HTML (e.g. <p>...</p>, <ul><li>...</li></ul>).
Build a JSON object:
{
"title": "Short session title",
"sections": [
{ "heading": "Summary", "html": "<p>...</p>" },
{ "heading": "Changes", "html": "<ul><li>...</li></ul>" }
]
}
Render
Pipe the JSON into the helper with today's date:
echo "$JSON" | node "${CLAUDE_PLUGIN_ROOT}/scripts/devlog-render.mjs" --date <today>
The helper writes <devlog.dir>/YYYY-MM-DD.html (sequencing -2, -3 on repeat calls the same day — it never overwrites) and rebuilds index.html.
Rules
- Use today's real date (never guess).
- Repeat calls the same day create new sequenced files; do not overwrite prior logs.
- Keep HTML fragments self-contained — no external scripts or stylesheets.