Install
$ agentstack add skill-skillx-run-skillx-release ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- Read
cli/Cargo.tomlto get the current version - Read
CHANGELOG.mdto check the[Unreleased]section - Run
git statusto confirm the working tree is clean (no uncommitted changes) - 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:
- Find the latest version tag:
git describe --tags --abbrev=0 - List non-merge commits since that tag:
git log ..HEAD --no-merges --pretty=format:"%h %s" - If there are no commits since the last tag, abort — nothing to release
- 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 |
- 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.
- Present the draft changelog to the user for review. Wait for confirmation or edits before proceeding.
- Write the approved changelog entries into
CHANGELOG.mdunder## [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 at0.1.0)web/src/content/docs/cli/upgrade.mdandweb/src/content/docs/reference/config-toml.md— thev0.6.0 → v0.7.0strings are illustrative examples, not live version referencesweb/src/content/blog/**— archival posts keep their original version mentionsdocs/**(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.xrow (e.g.,0.8.x) with the newX.Y.x - Replace the existing
< X.Yrow (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
- Replace
## [Unreleased]with:
``` ## [Unreleased]
## [X.Y.Z] - YYYY-MM-DD ``` Use today's date.
- 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
- Stage all changed files
- Create a commit with message:
Release vX.Y.Z - 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.
- Author: skillx-run
- Source: skillx-run/skillx
- License: Apache-2.0
- Homepage: https://skillx.run
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.