phpinfo/pflow-skills · Archived

pflow-changelog

Generates a Keep a Changelog entry for the current feature version, prepends it to CHANGELOG.md, then commits and pushes. Requires clean working tree on the dev branch. Invoked manually only.

First seen Jun 8, 2026

Installation

$ npx skills add phpinfo/pflow-skills --skill pflow-changelog

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from phpinfo/pflow-skills · top by installs.

npx skills add phpinfo/pflow-skills

Browse all from phpinfo/pflow-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch master
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseMIT
Allowed toolsBash(.agents/skills/pflow-changelog/scripts/changelog-context.sh), Bash(.agents/skills/pflow-changelog/scripts/changelog-commit-push.sh:*)

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,182 B
  • docs SUMMARY.md 214 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 11 installs

SKILL.md

On any failure (non-zero exit or error field in JSON) print ⚠️ <error message> and stop.

Steps

  1. Get context: .agents/skills/pflow-changelog/scripts/changelog-context.sh. It returns JSON {feature:{title,version}, tasks:[…], commits:"…"} or {error:{…}}.
  2. Analyze the context (tasks + commit messages). Summarize what was done in product terms — no tech internals, no process/dev meta. Then compose a changelog entry using the format below and prepend it to the existing CHANGELOG.md (create the file if absent, starting with the standard header: # Changelog\n\nAll notable changes to this project will be documented in this file.).
  3. Commit and push: .agents/skills/pflow-changelog/scripts/changelog-commit-push.sh. It prints {commithash, branchname, push_status} or {…, error:{…}}. If error is present, print ⚠️ <error.message> and stop.
  4. Reply exactly:

``text ✅ Changelog updated for <featuretitle> (<featureversion>). ``

Changelog format (Keep a Changelog)

Each version entry follows this structure:

## [<version>] - YYYY-MM-DD

### Added
- for new features.

### Changed
- for changes in existing functionality.

### Deprecated
- for soon-to-be removed features.

### Removed
- for now-removed features.

### Fixed
- for any bug fixes.

### Security
- in case of vulnerabilities.

Rules:

  • Use today's date (ISO 8601: YYYY-MM-DD).
  • Omit empty sections (e.g., skip ### Deprecated if nothing was deprecated).
  • Group changes under the most fitting category. Prefer ### Added / ### Changed / ### Fixed.
  • One bullet per notable change, concise, user-facing.
  • The changelog is for people, not machines. Focus on what changed and why from the user's perspective.