بنقرة واحدة
init-pr
Create a placeholder PR from the current branch to warm CI caches.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a placeholder PR from the current branch to warm CI caches.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Review PR changes for missing or outdated documentation, comments, and doc site content.
Audit the codebase for code quality, DRY violations, modularity, LaTeX/asm parity, doc freshness, and doc structure.
Write or update a PR title and description for the current branch, matching the style of recent PRs.
استنادا إلى تصنيف SOC المهني
| name | init-pr |
| description | Create a placeholder PR from the current branch to warm CI caches. |
| disable-model-invocation | true |
| user-invocable | true |
init-prCreate a placeholder PR on the current branch so CI caches start warming while work continues.
Get the current branch name:
git branch --show-current
Extract the ticket ID from the branch name.
The branch name follows the pattern ENG-###
(possibly with a suffix). Use the ENG-###
portion as the placeholder title.
Confirm there is no existing PR for this branch:
gh pr list --head <branch> --json number
If a PR already exists, print its URL and stop.
Push the branch if it has not been pushed yet:
git push -u origin <branch>
Create a draft PR with the placeholder title and an empty body:
gh pr create --draft \
--title "<ENG-###>" \
--body ""
Print the new PR URL.