askill
release

releaseSafety 80Repository

Automated release workflow for oh-my-codex

0 stars
1.2k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

Release Skill

Automate the release process for oh-my-codex.

Usage

/oh-my-codex:release <version>

Example: /oh-my-codex:release 2.4.0 or /oh-my-codex:release patch or /oh-my-codex:release minor

Release Checklist

Execute these steps in order:

1. Version Bump

Update version in all locations:

  • package.json
  • src/installer/index.ts (VERSION constant)
  • src/__tests__/installer.test.ts (expected version)
  • .codex-plugin/plugin.json
  • README.md (version badge and title)

2. Run Tests

npm run test:run

All 231+ tests must pass before proceeding.

3. Commit Version Bump

git add -A
git commit -m "chore: Bump version to <version>"

4. Create & Push Tag

git tag v<version>
git push origin main
git push origin v<version>

5. Publish to npm

npm publish --access public

6. Create GitHub Release

gh release create v<version> --title "v<version> - <title>" --notes "<release notes>"

7. Verify

Version Files Reference

FileField/Line
package.json"version": "X.Y.Z"
src/installer/index.tsexport const VERSION = 'X.Y.Z'
src/__tests__/installer.test.tsexpect(VERSION).toBe('X.Y.Z')
.codex-plugin/plugin.json"version": "X.Y.Z"
README.mdTitle + version badge

Semantic Versioning

  • patch (X.Y.Z+1): Bug fixes, minor improvements
  • minor (X.Y+1.0): New features, backward compatible
  • major (X+1.0.0): Breaking changes

Notes

  • Always run tests before publishing
  • Create release notes summarizing changes
  • Plugin marketplace syncs automatically from GitHub releases

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

68/100Analyzed 2/20/2026

A well-structured release workflow skill with clear step-by-step instructions, command examples, and a version reference table. Covers the full release process from version bump to GitHub release. However, it is highly specific to the oh-my-codex project with hardcoded file paths and repo references, significantly limiting reusability. The skill includes helpful metadata (tags, usage examples) and follows good documentation practices."

80
85
30
75
70

Metadata

Licenseunknown
Version-
Updated2/13/2026
Publishersigridjineth

Tags

githubtesting