Release gocron
SkillDev toolsPrepare or publish a safe gocron release by choosing a SemVer bump, updating AppVersion and migrations, invoking the complete verification gate, committing, checking CI, and creating an annotated tag. Use when asked to release, 发版, bump the version, cut a release, 打 tag, or assess release readiness.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Release gocron skill
What this skill tells your AI
The instructions your AI receives, as published by gocronx-team/gocron in .agents/skills/release/SKILL.md and read by ahel’s review.
Keep preparation separate from publication. A version-bump request authorizes the local version edit and verification, but not a push, merge, or tag unless the user also asks to publish the release.
Compatibility evidence (required)
Before tagging, record evidence for every affected case:
Nfrontend/client withN-1andNbackend;Nbackend withN-1andNfrontend/client;Ngocron withN-1andNgocron-node, in both directions;Nupgrading an existing SQLite, MySQL, and PostgreSQL database;- rolling upgrade with temporary
N/N-1HA members when HA is affected.
Use automated compatibility tests, previous-version fixtures, or a documented reproducible check. Current/current tests and a fresh install are not enough. If a case cannot remain compatible, stop before tagging: obtain explicit approval, use a major version, and document migration, deployment order, rollback limits, and recovery.
Performance evidence (required when affected)
- Identify affected hot paths and record the workload, data size, environment, command, baseline, and release-candidate result.
- Compare latency, throughput, memory/allocations, goroutines, query count, database writes, and migration duration as applicable.
- Include SQLite concurrent read/write and lock behavior when database write frequency, logging, polling, migrations, or scheduler state changed.
- Require a benchmark or regression test for a material fix or risk. Do not publish a material unexplained regression; an accepted tradeoff needs the user's explicit approval and release-note disclosure.
1. Establish the release
- Inspect the current branch, working tree, latest
v*tag,AppVersion, and changes since the latest release. - Never develop or commit directly on
master; create or use a release branch. - Choose the SemVer bump from user-facing changes: features bump minor and fixes or chores bump patch. Ask when the intended version cannot be inferred safely. Honor an explicit version supplied by the user.
- Check that the target version and
vX.Y.Ztag do not already exist.
2. Update version and migrations
- Update
AppVersionincmd/gocron/gocron.go. - Update
helm/gocron/Chart.yamlappVersionto the same application version. Increment the Chartversionwhenever the packaged Chart changes; the chart release workflow skips versions that have already been published. - If the release changes the schema, add the model to the
Installtables slice where applicable, append a unique migration version id and matchingupgradeForNNNfunction ininternal/models/migration.go, add it to the upgrade chain, and add a migration test. - Derive the migration id using the repository's existing version conversion
convention. Confirm it with
ToNumberVersion; do not guess or reuse an id. - If there is no schema change, do not add an empty migration.
- For migrations that rewrite existing data, tell the user to back up the database and include the impact in release notes.
3. Pass the mandatory gate
Invoke $verify and require every backend, frontend, lint, test, and Docker
check to pass. Do not commit, merge, push, or tag while any check is failed,
skipped, or unavailable.
Review the final diff and confirm AppVersion, Helm appVersion and Chart
version, migration id, tests, and user-facing release notes agree.
4. Publish only when requested
- Commit with
chore(release): bump version to X.Y.Z; keep the subject under 100 characters and omitCo-Authored-By. - Push the branch and merge it into
masteraccording to the repository's normal review process. - Confirm the GitHub Actions CI run for the exact release commit is green.
- Confirm local
master, remotemaster, and the green CI SHA all identify the same commit. - Create and push an annotated tag:
git tag -a vX.Y.Z -m "vX.Y.Z"followed bygit push origin vX.Y.Z. - Confirm the tag-triggered release workflow starts successfully.
Never move or replace an existing release tag, and never tag an unverified commit.
Signals
- GitHub stars
- 808
- Forks
- 62
- Last commit
- Sep 2026
- Hacker News mentions
- 20
Advanced
- Catalog kind
- skill
- Gateway key
release-gocronx-team- Source
- github.com/gocronx-team/gocron