원클릭으로
auto-deploy
Automatically deploy oh-my-gemini to npm and GitHub
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Automatically deploy oh-my-gemini to npm and GitHub
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Full autonomous execution from idea to working code
Fix build and TypeScript errors with minimal changes
Cancel any active OMC mode (autopilot, ralph, ultrawork, ecomode, ultraqa, swarm, ultrapilot, pipeline)
Run a comprehensive code review
Deep executor mode for complex goal-oriented tasks
Deep codebase initialization with hierarchical AGENTS.md documentation
| name | auto-deploy |
| description | Automatically deploy oh-my-gemini to npm and GitHub |
| triggers | ["deploy","배포","publish","release","자동배포"] |
Automatically deploy oh-my-gemini to npm and create a GitHub release.
Enable automated deployment workflow:
Verify Build
npm run build
Run Tests
npm test
Check Lint
npm run lint
Type Check
npx tsc --noEmit
Verify Git Status
Determine Version
Update package.json
npm version <version> --no-git-tag-version
Update CHANGELOG.md
Create Git Tag
git tag v<version>
git push origin v<version>
Push Changes
git add package.json package-lock.json CHANGELOG.md
git commit -m "chore: release v<version>"
git push origin main
Trigger GitHub Actions
Verify npm Publication
Verify GitHub Release
> deploy: 버전 0.1.0으로 배포해줘
> 배포: 패치 버전으로 배포해줘
> publish: 마이너 버전으로 배포해줘
> release: 메이저 버전으로 배포해줘
/oh-my-gemini:auto-deploy
/oh-my-gemini:auto-deploy --version 0.1.0
/oh-my-gemini:auto-deploy --patch
/oh-my-gemini:auto-deploy --minor
/oh-my-gemini:auto-deploy --major
Pre-Deployment Checks
Dry Run Mode
--dry-run to preview changesConfirmation
Rollback Plan
Can be configured via .gemini-cli/GEMINI.md:
## Auto-Deploy Settings
- Auto-confirm: false (always ask)
- Pre-deploy-tests: true
- Pre-deploy-lint: true
- Pre-deploy-build: true
- Create-changelog: true
Auto-deploy can be combined with self-improve:
> self-improve: 모든 버그를 수정하고 배포해줘
This will: