ワンクリックで
pr
Push a branch and open a PR with pre-flight checks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Push a branch and open a PR with pre-flight checks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Bump the manifold3d pin, add FFI + safe wrappers for new upstream C API functions, bump versions, open a PR
Run a deep code review across the manifold-csg crates
Publish crates to crates.io with pre-flight checks
Run a deep code review across the manifold-csg crates
| name | pr |
| description | Push a branch and open a PR with pre-flight checks |
| user-invocable | true |
Push the current branch and open a pull request, with pre-flight hygiene checks.
--dry-run: run checks only, don't push or create PRRun these steps in order. Stop on first failure.
git fetch origin main
git rebase origin/main
If rebase fails, stop and report the conflict.
cargo build --features nalgebra
cargo clippy --all-targets --features nalgebra -- -D warnings
cargo test --features nalgebra
git status
If there are unstaged changes, stop and ask the user what to do.
Run git diff origin/main...HEAD --stat and git log --oneline origin/main..HEAD to summarize what's being pushed. Show this to the user.
Only after all checks pass:
git push -u origin <branch-name>mcp__github__create_pull_requestmain## Summary section with bullet points describing changes, and a ## Test plan sectionmain directly — always use a feature branch--dry-run was passed, stop after the checks and report resultsAPI_COVERAGE.md in sync if any safe wrappers were added or changed