원클릭으로
git-release
Create consistent releases and changelogs
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create consistent releases and changelogs
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Bootstrap agent configuration and generate AGENTS.md from project config (codi.toml), SCM flow, monorepo structure, MCP ecosystem, and docs/ — template-based and idempotent.
Repository understanding and hierarchical codemap generation
Audit and synchronize local OpenCode context, commands, skills, agents, config, and AGENTS.md with the current repository.
Generate a daily planning Markdown file combining Google Calendar events and Jira tasks. Creates an executable daily agenda with configurable parameters, dynamic emoji detection, and timezone support.
Validate, push the current branch, and create a GitHub pull request from the current diff
Push branch commits and update the existing PR body safely (prefer REST API)
| name | git-release |
| description | Create consistent releases and changelogs |
| license | Proprietary |
glab release create commandUse this when preparing a tagged release. Ask clarifying questions if versioning scheme is unclear.
task validategit log --oneline $(git describe --tags --abbrev=0)..HEADUse .gitlab/merge_request_templates/MERGE_REQUEST_TEMPLATE.md as the base for the MR body and fill it with the specifics of the change.
Prefer to include:
task validateExample (copy/paste):
glab mr create --target-branch main --source-branch "${BRANCH}" \
--title "<title>" \
--description "$(cat <<'EOF'
## Proposed changes
<describe the big picture and link issues>
Testing:
- `task validate`
Migration steps (if any):
- None
Screenshots:
- [ ] N/A
- [ ] <paste screenshot 1>
## Types of changes
- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
## Checklist
- [ ] I have read the [CONTRIBUTING](/docs/contributing.md) doc
- [ ] Lint and unit tests pass locally with my changes
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added necessary documentation (if appropriate)
- [ ] Any dependent changes have been merged and published in downstream modules
## Further comments
<optional>
EOF
)"
Example release command:
glab release create <tag> --notes-file <notes-file>