소스 정보
- 저장소
- bhauman/clojure-mcp
- 최근 소스 활동
- 2026년 6월 19일 20:32
- 감지된 SKILL.md 언어
- 영어
- 스타
- 775
- 포크
- 83
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bhauman/clojure-mcp --skill source-command-release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | source-command-release |
| description | Create a new release with version bump, changelog, and tags |
Use this skill when the user asks to run the migrated source command release.
When the user invokes this command, create a new release by following these steps:
Ensure you are on the main branch. If not, warn the user and stop — releases should only be cut from main.
git branch --show-current
Determine the current version from git tags:
git describe --tags --abbrev=0
Parse the version number (e.g., v0.1.13 -> 0.1.13).
Use the AskUserQuestion tool to ask the user which version component to bump:
Calculate the new version (e.g., v0.1.14).
Get all commits since the last tag:
git log --oneline $(git describe --tags --abbrev=0)..HEAD
Parse the commit messages to understand what changed.
Read the existing CHANGELOG.md file and:
## [Unreleased] and before the previous version## [X.X.X] - YYYY-MM-DD (use today's date)Focus on user-facing changes. Internal refactoring should be de-emphasized unless it has user-visible benefits.
Stage and commit the changelog update:
git add CHANGELOG.md
git commit -m "Release vX.X.X"
Replace X.X.X with the actual new version number.
Create a new annotated tag for the release:
git tag -a vX.X.X -m "Release vX.X.X"
Push the commit and tags to the remote repository:
# Push the commit
git push
# Push tags
git push --tags
Use gh release create to publish the release on GitHub. Use the same release notes from the CHANGELOG entry as the body:
gh release create vX.X.X --title "vX.X.X" --notes "RELEASE_NOTES_HERE"
Display a summary to the user:
Release v0.1.14 created successfully!
Changes:
- 8 commits since v0.1.13
- CHANGELOG.md updated with release notes
Tags:
- Created tag: v0.1.14
Pushed to remote: origin
GitHub release: https://github.com/bhauman/clojure-mcp/releases/tag/v0.1.14