用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bastani-inc/atomic --skill gh-create-pr命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | gh-create-pr |
| description | Commit unstaged changes, push changes, submit a pull request. |
| metadata | {"internal":true} |
Commit changes, push to remote, and create a pull request with a conventional commit-style title and comprehensive description: $ARGUMENTS
git status --porcelaingit branch --show-currentgit rev-parse --abbrev-ref origin/HEAD 2>/dev/null | sed 's|origin/||' || echo maingit diff --cached --statgit diff --statgit log --oneline -10gh pr view --json number,title,body 2>/dev/null || echo "No existing PR"git push -u origin <branch> to set upstream trackinggit diff origin/<default-branch>...HEAD to review the full scope of changes<type>[optional scope]: <description>feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert! after type/scope for breaking changes: feat(api)!: change response formatgh pr create --title "TITLE" --body "DESCRIPTION"gh pr edit <number> --title "TITLE" --body "DESCRIPTION"feat(auth): add JWT token refresh endpoint
fix(ui): resolve layout shift on mobile navigation
docs: update API reference for v2 endpoints
refactor(db): migrate from raw SQL to query builder
feat(api)!: change pagination response format
chore(deps): bump TypeScript to 5.x
Use this structure for the PR body. Omit sections that are not applicable.
## Summary
[1-2 sentence overview of what this PR does and why]
## Changes
- [Key change 1]
- [Key change 2]
- [Key change 3]
## Breaking Changes
[Describe what breaks and required migration steps]
## Notes
[Additional context, testing instructions, or deployment considerations]
feat/123-add-auth), reference it in the description with Closes #123 or Refs #123.prek.toml) will run to ensure code quality
gh CLI is not authenticated, prompt the user to run gh auth login first