skills/dcjanus/github-pr-issue/SKILL.md
查看/更新 GitHub Issue、PR(含评论与 diff),并按团队规范非交互创建或修改 PR;涉及 GitHub Issue/PR 的操作时使用。
npx skillsauth add aiskillstore/marketplace github-pr-issueInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
gh issue view <url>。gh 没有简单的一条命令可一次性获取多类 PR 信息,因此封装 read_pr.py 按需拉取并拼接输出。gh 带来的额外开销。SKILL.md 所在目录执行:./scripts/read_pr.py https://github.com/OWNER/REPO/pull/123--with-diff:包含 diff。--with-body:包含 PR body。--with-reviews / --with-review-comments / --with-comments:按需包含评审/评审评论/评论。--with-files / --with-commits / --with-stats:按需包含文件/提交/统计。--with-rate-limit:输出 rate limit 信息(limit/remaining/reset_at)。--reviews-limit 50 / --comments-limit 50 / --review-comments-limit 50:调整拉取数量。--files-limit 100 / --commits-limit 100:调整文件/提交数量。--body-file 传多行描述,避免交互式编辑:
gh issue create --title "feat: short summary" --body-file - <<'EOF'
# 按上面的格式填充正文
EOF
以下标题与描述规范为默认推荐格式;如与团队/仓库/平台等既有约束冲突,以既有约束为准。若有明确要求(如需中文),则优先遵循。
git status 干净,git push 到远端。feat(scope): short summary),简洁且描述核心目的;即使标题要求中文,语义化前缀仍需英文。## Summary:用 1-2 条短句从功能层面概述目的与影响,强调功能变更而非逐条代码变更;跨层(如 Service/DAO)且语义一致的改动应合并为一次功能描述。## Key changes:3-5 条要点列出主要变更。## Constraints / tradeoffs:若存在约束、限制或非理想选择,简要说明。## Testing:验证方式、命令或场景;未测试需注明原因。## Notes(可选):reviewers 关注点、发布注意事项或后续计划。--body-file 传入:
gh pr new --title "feat(scope): short semantic summary" --body-file - <<'EOF'
# 按上面的格式填充正文
EOF
--base <branch>、--draft 等参数。--body-file 传入,避免在 --body 中写 \n。gh pr edit 与 gh pr new 参数一致,需修改时复用。在更新 Issue 或 PR 的标题/描述之前,必须先读取当前标题/正文(即将被修改的内容),再进行修改。
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.