소스 정보
- 저장소
- TypedDevs/bashunit
- 최근 소스 활동
- 2026년 7월 10일 12:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 424
- 포크
- 56
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/TypedDevs/bashunit --skill pr명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | pr |
| description | Push branch and create a GitHub PR with concise, issue-linked description |
| user-invocable | true |
| argument-hint | [#issue] |
| allowed-tools | Bash, Read, Grep, Glob |
Push branch and create a PR with a concise, issue-linked description.
IMPORTANT: This skill MUST be used for ALL pull request creation — even when the user says "create pr" without
/pr. Never create a PR without following these steps.
git branch --show-currentgit log main..HEAD --oneline 2>/dev/nullgit diff main..HEAD --stat 2>/dev/null$ARGUMENTS - Issue reference (optional, e.g., #42 or 42). If provided, the PR will be linked to this issue.Review the branch context above — the commits and changed files are already loaded.
MANDATORY: Update CHANGELOG.md — Read CHANGELOG.md and check the ## Unreleased section. If the changes from this branch are NOT already listed there, you MUST update it before proceeding. Do NOT skip this step. Do NOT proceed to push without verifying.
### Added, ### Changed, ### Fixed, etc.)(Issue #123))git add CHANGELOG.md && git commit -m "docs: update changelog"
git push -u origin HEAD
pre-commit hook runs tests, shellcheck, and linting automatically on commit. Ensure all checks passed before pushing.--no-verify to bypass.$ARGUMENTS contains an issue number, fetch the issue title:
gh issue view <number> --json title -q '.title'
<type>(<scope>): <short description> (conventional commit style, under 70 chars)feat/ → feat, fix/ → fix, docs/ → docs).github/PULL_REQUEST_TEMPLATE.md:gh pr create --title "<title>" --assignee @me --label "<label>" --body "$(cat <<'EOF'
## 🤔 Background
Related #<issue-number>
<1-2 sentences: motivation and context for the changes>
## 💡 Changes
- <bullet 1: what changed and why>
- <bullet 2>
- <bullet 3> (optional)
- <bullet 4> (optional)
EOF
)"
MANDATORY: Always follow the PR template structure (## 🤔 Background + ## 💡 Changes). Never use a different format.
Assignee: Always assign to @me (the PR creator).
Labels: Add the single most relevant label based on the branch prefix and change context:
bug — branch starts with fix/ and addresses a defectenhancement — branch starts with feat/ or adds new functionalitydocumentation — branch starts with docs/ or only changes docsrefactor — code restructuring with no behavior changeui — visual/frontend-only changesinvestigation — spikes, research, or exploratory workBody guidelines:
Related #<number>, then 1-2 sentences of context. NEVER use Closes or Fixes.# Read project config from .claude/github-project.json
ITEM_ID=$(gh project item-list PROJECT_NUMBER --owner OWNER --format json \
| jq -r '.items[] | select(.content.number == ISSUE_NUMBER) | .id')
gh project item-edit \
--id "$ITEM_ID" \
--project-id "PROJECT_ID" \
--field-id "STATUS_FIELD_ID" \
--single-select-option-id "IN_REVIEW_OPTION_ID"
Note: Requires project scope. Run gh auth refresh -s project if needed.
/pr
/pr #42
/pr 15