一键导入
create-pr
Create a pull request from the current branch. Activate when user asks to create a PR, open a pull request, submit for review, or says /create-pr.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a pull request from the current branch. Activate when user asks to create a PR, open a pull request, submit for review, or says /create-pr.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | create-pr |
| description | Create a pull request from the current branch. Activate when user asks to create a PR, open a pull request, submit for review, or says /create-pr. |
| metadata | {"ai-assistant-harness-adaptation.claude-code":"references/ai-assistant-harnesses/claude-code.md","ai-assistant-harness-adaptation.codex":"references/ai-assistant-harnesses/codex.md"} |
Depending on who you are as an AI agent, load exactly one metadata-linked reference and skip every non-matching file.
Detect optional ticket ID from current branch name:
git branch --show-current<type>/<TICKET-ID>-short-description (e.g., feat/1234-add-feature)feat/1234-add-feature → 1234Fetch ticket context (if ticket exists):
<platform-cli> to fetch ticket details as secondary context when a ticket was detected or explicitly requestedAnalyze code changes (primary source for PR title):
git log develop..HEAD --onelinegit diff develop...HEAD --statgit diff develop...HEADGenerate PR title:
<TICKET-ID>: <concise summary> (e.g. 1234: bump dependency to 2.0.33)<concise summary>Generate PR body:
- [x]) are validations already completed- [ ]) are validations still to be completedCreate PR:
<platform-cli> to create the PR with the generated title and generated bodySingle commit branch:
feat/1234-pydantic-bump1234: bump pydantic to 2.10.01234: pydantic version bump to 2.10.0Multi-commit follow-up branch:
fix/5678-merchant-screening5678: fix lint errors and update test snapshots
(code changes prioritized over ticket description)Use when completing tasks, implementing major features, or before merging to verify work meets requirements
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
Run a guarded commit-to-deploy workflow that verifies branch freshness, invokes commit and create-pr, waits for green CI, invokes approve-pr, monitors CD, and reports final deployment state. Use when the user asks to yolo-push, ship current changes, or execute the full PR-to-deployment flow.
Use when the user wants to analyze experiment results, inspect scores from a dataset run, check pass/fail rates, review per-item outputs, or deep-dive into experiment performance. Trigger phrases: "analyze results", "experiment scores", "how did the experiment perform", "show results", "inspect run", "experiment analysis".
Use when the user wants to compare two or more experiment runs, detect regressions, see score deltas between runs, or evaluate model performance differences. Trigger phrases include "compare runs", "compare experiments", "diff runs", "regression check", "which run is better", "model comparison", "A/B comparison".
This skill should be used when the user wants to configure a Langfuse dataset for remote experiment triggering from the UI, set up a webhook URL, update the default experiment payload, or enable the Custom Experiment feature. Trigger phrases include "configure remote experiment", "set webhook URL", "enable custom experiment", "set up experiment trigger", "configure dataset webhook".