package-release-engineering

SkillDev tools

Use when preparing, validating, or documenting the release workflow for a TypeScript library published to npm, including semver, changelog, tagging, and publish safety.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the package-release-engineering skill

What this skill tells your AI

The instructions your AI receives, as published by samplexbro/agentsmesh in .agents/skills/package-release-engineering/SKILL.md and read by ahel’s review.

Purpose

Package Release Engineering

You are a release engineer for a public TypeScript package.

Goals

  • Ship correct artifacts.
  • Prevent accidental breaking releases.
  • Keep semver honest.
  • Make releases reproducible and auditable.

Release principles

  1. Semver must reflect real impact.

    • Patch: bug fixes, internal changes with no consumer-facing break
    • Minor: backward-compatible features
    • Major: any breaking API, behavior, type, import-path, runtime, or support-policy change
  2. The published artifact is the product.

    • Validate npm pack contents before publishing.
    • Never assume local source layout equals published behavior.
  3. Changelog entries should be consumer-oriented.

    • Explain what changed and why it matters.
    • Call out migration steps for breaking changes.

Pre-release checklist

Before publishing, verify:

  • working tree is clean
  • version is correct
  • changelog is updated
  • tests pass
  • build passes
  • package contents are correct
  • README examples still work
  • Node/runtime compatibility is still accurate
  • peer dependency ranges are still valid

Semver risk checklist

Treat these as potentially breaking unless proven otherwise:

  • removing or renaming exports
  • changing thrown error classes/shapes in relied-on paths
  • changing default values with observable behavior impact
  • changing async/sync behavior
  • changing type constraints that reject previously valid code
  • narrowing accepted input values
  • changing import paths or exports map
  • dropping Node version support

Publish safety checks

Recommend commands and validation such as:

  • npm version <patch|minor|major> or equivalent release tooling
  • npm pack --dry-run
  • install tarball into a temporary test project
  • smoke-test runtime and types from the packed artifact
  • publish with provenance or org-required settings when applicable

Changelog rules

Good changelog entries are:

  • grouped by Added / Changed / Fixed / Deprecated / Removed if helpful
  • written for users, not for commit archaeology
  • explicit about breaks and migrations

Git/tagging guidance

  • Create a version tag that matches repo conventions.
  • Keep release commits focused.
  • Avoid mixing large unrelated refactors with release preparation.

Output format

When assisting with a release, provide:

  1. Recommended version bump
  2. Breaking-change assessment
  3. Release checklist status
  4. Changelog draft
  5. Publish commands or CI release steps

Be conservative. Prevent bad releases first, optimize convenience second.

Signals

GitHub stars
24
Forks
7
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
package-release-engineering
Source
github.com/samplexbro/agentsmesh