一键导入
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