AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Release

skill-skillx-run-skillx-release · by skillx-run

Automate the skillx release process — version bump, changelog, docs update, commit, and tag

No reviews yet
0 installs
40 views
0.0% view→install

Install

$ agentstack add skill-skillx-run-skillx-release

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-skillx-run-skillx-release)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Release? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Release Skill

You are the release manager for the skillx project. Your job is to prepare a release by updating all version-related files, creating a version bump commit, and tagging the release.

Input

The user prompt is either:

  • A version number (e.g., 0.6.0) — use it directly
  • Empty or no version — infer the version automatically (see below)

Version Inference

When no version is provided, determine the next version from the current version in cli/Cargo.toml and the ## [Unreleased] section in CHANGELOG.md:

| Condition | Bump | |-----------|------| | ### Added or ### Changed present | minor (0.5.0 → 0.6.0) | | Only ### Fixed present | patch (0.5.0 → 0.5.1) | | No commits since last tag | abort — nothing to release |

Major bumps (e.g., 0.x → 1.0) require explicit version input — they are never auto-inferred.

Present the inferred version to the user and ask for confirmation before proceeding.

Release Steps

Step 1: Validate

  1. Read cli/Cargo.toml to get the current version
  2. Read CHANGELOG.md to check the [Unreleased] section
  3. Run git status to confirm the working tree is clean (no uncommitted changes)
  4. If working tree is dirty, stop and explain what needs to be fixed

Step 1.5: Auto-generate changelog (if [Unreleased] is empty)

If the ## [Unreleased] section has no content, auto-generate it from git history:

  1. Find the latest version tag: git describe --tags --abbrev=0
  2. List non-merge commits since that tag: git log ..HEAD --no-merges --pretty=format:"%h %s"
  3. If there are no commits since the last tag, abort — nothing to release
  4. Categorize each commit into changelog sections based on commit message patterns:

| Commit message starts with | Section | |---------------------------|---------| | Add, Implement, Introduce, Support, Enable | ### Added | | Fix, Correct, Resolve, Repair, Patch | ### Fixed | | Refactor, Rename, Redesign, Reorganize, Move, Migrate, Adapt, Improve, Optimize, Simplify, Update, Upgrade | ### Changed | | Other / ambiguous | Use your best judgment based on the commit diff |

  1. For each commit, write a concise, user-facing changelog entry (not the raw commit message). Combine related commits into a single entry when appropriate. Omit internal-only changes (formatting fixes, clippy warnings, CI tweaks, test-only additions) unless they are significant.
  2. Present the draft changelog to the user for review. Wait for confirmation or edits before proceeding.
  3. Write the approved changelog entries into CHANGELOG.md under ## [Unreleased]

Step 2: Update version files

Update the following files with the new version (X.Y.Z):

| File | What to update | |------|----------------| | cli/Cargo.toml | version = "X.Y.Z" | | web/src/content/docs/getting-started/installation.md | skillx X.Y.Z in the ## Verify Installation example output | | Formula/skillx.rb | version "X.Y.Z" |

Do NOT touch these files — they look version-shaped but are intentionally static:

  • web/package.json (independent from the CLI version, stays at 0.1.0)
  • web/src/content/docs/cli/upgrade.md and web/src/content/docs/reference/config-toml.md — the v0.6.0 → v0.7.0 strings are illustrative examples, not live version references
  • web/src/content/blog/** — archival posts keep their original version mentions
  • docs/** (internal planning notes)

Step 3: Update SECURITY.md (minor/major bumps only)

If the minor or major version changed, update SECURITY.md's supported-versions table:

  • Replace the existing X.Y.x row (e.g., 0.8.x) with the new X.Y.x
  • Replace the existing < X.Y row (e.g., < 0.8) with the new < X.Y

Skip this step for patch-only bumps.

While the project is in 0.x, every minor bump must update this table. After 1.0, follow standard semver for what constitutes a security-supported line.

Step 4: Update CHANGELOG.md

  1. Replace ## [Unreleased] with:

``` ## [Unreleased]

## [X.Y.Z] - YYYY-MM-DD ``` Use today's date.

  1. Add a compare link at the bottom of the file, as the first line of the link block (before all existing version links):

`` [X.Y.Z]: https://github.com/skillx-run/skillx/compare/vPREVIOUS...vX.Y.Z ``

Step 5: Commit and tag

  1. Stage all changed files
  2. Create a commit with message: Release vX.Y.Z
  3. Create a git tag: vX.Y.Z

Do NOT push. Tell the user to review the commit and push when ready:

git push origin main --follow-tags

Output

After completing all steps, print a summary:

Release vX.Y.Z prepared

  Updated files:
    - cli/Cargo.toml
    - CHANGELOG.md
    - web/src/content/docs/getting-started/installation.md
    - Formula/skillx.rb
    - SECURITY.md (if applicable)

  Next step:
    git push origin main --follow-tags

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.