engram-branch-pr

📁 gentleman-programming/engram 📅 5 days ago
8
总安装量
6
周安装量
#34791
全站排名
安装命令
npx skills add https://github.com/gentleman-programming/engram --skill engram-branch-pr

Agent 安装分布

opencode 6
antigravity 6
github-copilot 6
codex 6
kimi-cli 6
gemini-cli 6

Skill 文档

When to Use

Use this skill when:

  • Starting a new feature, fix, or refactor
  • Splitting work into multiple PRs
  • Preparing a PR for review and merge

Core Rules

  1. Create a focused branch (feat/*, fix/*, chore/*).
  2. Keep one logical scope per branch.
  3. Push early and often to avoid large risky diffs.
  4. Open PRs with intent, risk, and validation evidence.
  5. Do not mix unrelated changes in the same PR.

PR Structure

Include:

  • Problem statement (why this change exists)
  • Solution summary (what changed)
  • Risk notes (what could break)
  • Validation (tests/commands executed)
  • Follow-ups (what is intentionally out of scope)

Merge Checklist

  • Branch name matches scope
  • Diff is focused and reviewable
  • Tests relevant to the change pass
  • No temporary files or local artifacts included
  • PR description explains why, not only what