원클릭으로
release
Automated release workflow for oh-my-claudecode
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Automated release workflow for oh-my-claudecode
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Spawn recursive agent armies — swarms that spawn swarms, sandbox armadas, full lifecycle assault
Full rebuild — tear down broken service, scaffold fresh, migrate data, deploy, verify
Dynamic swarm orchestration — decompose any task into parallel agent waves, execute, merge results
One-command deployment — detect stack, build, ship, verify, report URL
Production incident response — triage, diagnose, fix, restore, document
Generate complete runnable projects from a description — API, CLI, MCP server, full-stack app
| name | release |
| description | Automated release workflow for oh-my-claudecode |
| level | 3 |
Automate the release process for oh-my-claudecode.
/oh-my-claudecode:release <version>
Example: /oh-my-claudecode:release 2.4.0 or /oh-my-claudecode:release patch or /oh-my-claudecode:release minor
Execute these steps in order:
Update version in all locations:
package.jsonsrc/installer/index.ts (VERSION constant)src/__tests__/installer.test.ts (expected version).claude-plugin/plugin.json.claude-plugin/marketplace.json (both plugins[0].version and root version)docs/CLAUDE.md (<!-- OMC:VERSION:X.Y.Z --> marker)README.md (version badge and title)npm run test:run
All 231+ tests must pass before proceeding.
git add -A
git commit -m "chore: Bump version to <version>"
git tag v<version>
git push origin main
git push origin v<version>
npm publish --access public
gh release create v<version> --title "v<version> - <title>" --notes "<release notes>"
| File | Field/Line |
|---|---|
package.json | "version": "X.Y.Z" |
src/installer/index.ts | export const VERSION = 'X.Y.Z' |
src/__tests__/installer.test.ts | expect(VERSION).toBe('X.Y.Z') |
.claude-plugin/plugin.json | "version": "X.Y.Z" |
.claude-plugin/marketplace.json | plugins[0].version + root version |
docs/CLAUDE.md | <!-- OMC:VERSION:X.Y.Z --> |
README.md | Title + version badge |