소스 정보
- 저장소
- coder/mux
- 최근 소스 활동
- 2026년 5월 19일 11:53
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,976
- 포크
- 132
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/coder/mux --skill pull-requests명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | pull-requests |
| description | Guidelines for creating and managing Pull Requests in this repo |
Public work (issues/PRs/commits) must use 🤖 in the title and include this footer in the body:
---
_Generated with `mux` • Model: `<modelString>` • Thinking: `<thinkingLevel>` • Cost: `$<costs>`_
<!-- mux-attribution: model=<modelString> thinking=<thinkingLevel> costs=<costs> -->
Always check $MUX_MODEL_STRING, $MUX_THINKING_LEVEL, and $MUX_COSTS_USD via bash before creating or updating PRs—include them in the footer if set.
main.main before submitting a new PR.main yourself. The user must explicitly merge PRs.make static-check or a targeted test subset) because CI waiting can take 10+ minutes../scripts/wait_pr_ready.sh <pr_number> as the default last-step helper when there's no more useful local work left.wait_pr_ready.sh polls the Codex and checks gates together and fails fast when either gate reaches a terminal failure../scripts/wait_pr_checks.sh <pr_number> and ./scripts/wait_pr_codex.sh <pr_number> directly only when you need to debug a specific gate.wait_pr_ready.sh.| Field | Value | Meaning |
|---|---|---|
mergeable | MERGEABLE | Clean, no conflicts |
mergeable | CONFLICTING | Needs resolution |
mergeStateStatus | CLEAN | Ready to merge |
mergeStateStatus | BLOCKED | Waiting for CI |
mergeStateStatus | BEHIND | Needs rebase |
mergeStateStatus | DIRTY | Has conflicts |
If behind: git fetch origin && git rebase origin/main && git push --force-with-lease.
When posting multi-line comments with gh (e.g., @codex review), do not rely on \n escapes inside quoted --body strings (they will be sent as literal text). Prefer --body-file - with a heredoc to preserve real newlines:
gh pr comment <pr_number> --body-file - <<'EOF'
@codex review
<message>
EOF
Use these scripts to check, resolve, and wait on Codex review comments:
./scripts/check_codex_comments.sh <pr_number> — Lists unresolved Codex comments (both regular comments and review threads). Outputs thread IDs needed for resolution../scripts/resolve_pr_comment.sh <thread_id> — Resolves a review thread by its ID (e.g., PRRT_abc123)../scripts/wait_pr_codex.sh <pr_number> — Waits for Codex-only status (or one-shot status with --once)../scripts/wait_pr_ready.sh <pr_number> — Unified Codex + CI gate poller (preferred for normal PR readiness loops).PR readiness is mandatory. You MUST keep iterating until the PR is fully ready. A PR is fully ready only when: (1) Codex explicitly approves, (2) all Codex review threads are resolved, and (3) all required CI checks pass. You MUST NOT report success or stop the loop before these conditions are met.
When a PR exists, stay in this loop until it is fully ready:
./scripts/resolve_pr_comment.sh <thread_id>.@codex review to re-request review../scripts/wait_pr_ready.sh <pr_number>.When /coder-agents-review is used or the coder-agents-review bot has participated:
/coder-agents-review../scripts/wait_pr_ready.sh <pr_number>.Do not silently resolve coder-agents-review threads. The bot treats resolved-but-unanswered findings as blocked review rounds.
perf|refactor|fix|feat|ci|tests|bench🤖 fix: handle workspace rename edge casestests: for test-only changes (test helpers, flaky test fixes, storybook)ci: for CI config changesPR bodies should generally follow this structure; omit sections that are N/A or trivially inferable from the code.
ran tests; include this section only for novel, change-specific stepsAlways use mktemp to create a unique temp file for the PR body — never use a
hard-coded path like /tmp/pr-body.md (concurrent agents will race):
PR_BODY=$(mktemp /tmp/pr-XXXXXX.md)
Use file edit tools to build the body in $PR_BODY, then:
gh pr edit <num> --body-file "$PR_BODY"
rm -f "$PR_BODY"
When updating the PR body, consider condensing information that is no longer important into a toggle.
Once the code is pushed to the remote (even if not yet a Pull Request), do your best to commit and push all changes before responding to ensure its visible to the user. Commits on the working branch are for yourself to understand the change, they do not have to follow repository conventions as the PR body and title become the commit subject and body respectively.
Whenever generating a compaction summary, include whether or not a Pull Request was opened and the general state of the remote (e.g. CI checks, known reviews, divergence).