Install
$ agentstack add skill-choshimwy-agentdevelopmentskills-gh-pr-flow ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
GitHub PR 一条龙流程
Purpose
Execute a GitHub CLI based delivery flow that stages, commits, pushes, and opens a draft pull request with compact, review-ready metadata.
中文说明
该 Skill 只负责基于 gh 的提审执行流。
- 负责:检查
gh可用性、整理提交、推送分支、创建草稿 PR。 - 不负责:定义通用 Git 规范、替代代码审查、替代构建验证结论。
When to Use
- 用户明确要求使用
gh完成git add、git commit、git push和gh pr create。 - 目标是把当前改动整理成可审查的草稿 PR,而不是只做本地提交。
When Not to Use
- 只需要分支命名、commit 文案或 PR 模板时;使用
git-workflow。 - 只需要本地提交,不需要
gh pr create时。 - 任务仍处于实现、测试、审查阶段,尚未准备进入提审交付时。
Agent Rules
- Only run this Skill when the user explicitly asks for a
ghbased PR flow. - Always check
gh --versionandgh auth statusfirst. - Prefer a non-default working branch. If currently on the default branch, create a
codex/branch first. - PR title and body default to Chinese unless the target repository clearly requires English.
- PR body must use real Markdown line breaks, not
\nliterals. - Do not hide missing validation or unresolved review blockers in the PR description.
Inputs
{
"goal": "Create draft PR with gh",
"branch_name": "optional",
"commit_subject": "required",
"pr_title": "optional",
"pr_body_outline": [],
"validation_summary": [],
"constraints": []
}
Outputs
{
"status": "completed | blocked | partial",
"branch_name": "...",
"commit_subject": "...",
"pr_title": "...",
"pr_body_sections": [],
"changed_files": [],
"known_risks": [],
"next_action": "push-and-open-pr | blocked | ask-user | none"
}
Exit Conditions
completed: branch, commit, push, and draft PR metadata are ready or executed successfully.partial: commit or PR text is prepared but final execution is intentionally deferred.blocked:ghunavailable, auth missing, branch/push blocked, or required validation/review state is unresolved.
Escalation Rules
- Escalate to
git-workflowwhen commit subject, branch naming, or PR template needs to be defined first. - Escalate to
code-reviewwhen review blockers or missing verification story prevent safe PR creation. - Escalate to
xcode-build/apple-verificationonly when the user explicitly asks to strengthen build confidence before opening the PR.
Token Budget
- Do not paste full git diff or full PR body drafts multiple times.
- Prefer compact branch / commit / PR summaries.
- Only include the final PR title, key body sections, and validation summary.
Relationship to Other Skills
- Use
git-workflowfor general Git rules, branch naming, commit conventions, and PR templates. - Use this Skill only for the
ghbased execution path. - Use implementation, testing, and review Skills before this Skill when code work is still in progress.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ChoshimWy
- Source: ChoshimWy/AgentDevelopmentSkills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.