code-changelog

Record untracked code changes as Markdown entries and serve a live HTML viewer.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/wedosoft/project-a --skill code-changelog-wedosoft
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-changelog
Source: https://github.com/wedosoft/project-a/tree/main/.claude/skills/code-changelog
Command: npx skills add https://github.com/wedosoft/project-a --skill code-changelog-wedosoft

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automatically document code changes, generate HonKit docs, and serve a live changelog website for easy navigation.

Core Features & Use Cases

  • Auto-documentation: Create MD changelogs on every modification.
  • HonKit Server: Lightweight, portable docs server for browsing changes.
  • Auto Navigation: SUMMARY.md and index auto-update.
  • Real-time Server: Simple Python server for live viewing.

Quick Start

Run in the codebase: python code_changelog_tracker.py init and start server with cd reviews && python3 -m http.server 4000.

Frequently Asked Questions about code-changelog

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically document code changes in a changelog?

Automatically document code changes by running the code changelog tracker to capture file creations, modifications, deletions, bug fixes, and refactorings. It generates Markdown entries for each change and updates an index automatically, creating a complete change record without manual effort.

Can I serve a live HTML changelog viewer for my project?

Yes. The Skill runs a local Python server that serves a live HTML viewer of your changelog. Start the server on a configurable port to browse all recorded changes in real time through an auto-updated interface.

What code changes can the tracker capture and log?

The tracker captures file creations, modifications, deletions, bug fixes, and refactorings. Each change type has a dedicated logging method, and all entries are recorded as Markdown with automatic navigation updates via SUMMARY.md and index.html.

Do I need HonKit installed to use this changelog tool?

The Skill uses HonKit-backed documentation format for generating docs, but the core logging and server functionality work independently. You get Markdown changelogs and a live HTML viewer with minimal dependencies.

How do I set up the changelog tracker in my codebase?

Initialize the tracker by running `python code_changelog_tracker.py init` in your codebase root. Start the server with `cd reviews && python3 -m http.server 4000` to access the live changelog viewer on port 4000.