소스 정보
- 저장소
- dojoengine/dojo
- 최근 소스 활동
- 2026년 2월 17일 19:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 477
- 포크
- 203
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dojoengine/dojo --skill create-pr명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | create-pr |
| description | Create or update a PR from current branch to main, watch CI, and address feedback |
The user likes the state of the code.
There are $git status --porcelain | wc -l | tr -d ' ' uncommitted changes.
The current branch is $git branch --show-current.
The target branch is origin/main.
$git rev-parse --abbrev-ref @{upstream} 2>/dev/null && echo "Upstream branch exists." || echo "There is no upstream branch yet."
Existing PR: $gh pr view --json number,title,url --jq '"#\(.number): \(.title) - \(.url)"' 2>/dev/null || echo "None"
The user requested a PR.
Follow these exact steps:
git diff to review uncommitted changesgit diff origin/main... to review the full PR diff/tmp/pr-body.txt)../.agents/skills/create-pr/scripts/pr-body-update.sh --file /tmp/pr-body.txtgh pr view --json body --jq .body to confirm it changed.gh pr create --base main to create a new PR. Keep the title under 80 characters and the description under five sentences.The PR description should summarize ALL commits in the PR, not just the latest changes.
Note: Keep commands CI-safe and avoid interactive gh prompts. Ensure GH_TOKEN or GITHUB_TOKEN is set in CI.
gh in a loop):./.agents/skills/create-pr/scripts/poll-pr.sh --triage-on-change --exit-when-green (polls every 30s for 10 mins).gh pr checks or gh run list to find the failing run id, then:
gh run view <run-id> --log-failedgit fetch origin main && git merge origin/maingh):./.agents/skills/create-pr/scripts/triage-pr.sh once.gh pr view --comments or gh api ....Once CI passes and the PR is approved, ask the user if they want to merge the PR.
If the user confirms, merge the PR:
gh pr merge --squash --delete-branch to squash-merge and delete the remote branchAfter successful merge, check if we're in a git worktree:
[ "$(git rev-parse --git-common-dir)" != "$(git rev-parse --git-dir)" ]request_user_input) to ask if they want to clean up the worktree. If yes, run wt remove --yes --force to remove the worktree and local branch, then switch back to the main worktree.git checkout main && git pullReport the final PR status to the user, including:
If any step fails in a way you cannot resolve, ask the user for help.
SOC 직업 분류 기준