From Daily Agents
Use when the user wants a pull-request title and description generated for the current branch — e.g. "write my PR", "draft a PR description", "summarize this branch for review".
How this skill is triggered — by the user, by Claude, or both
Slash command
/daily-agents:pr-summaryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate a clear pull-request title and description from a branch's git history.
Generate a clear pull-request title and description from a branch's git history.
The user has committed work on a feature branch and wants a PR title + description before opening the PR. Not for summarizing a single commit (just read the commit) or an already-merged branch.
Gather the branch's context. Run the bundled helper, which prints the branch name, base branch, commit log, and changed-files summary:
bash scripts/collect-context.sh
If the helper can't run, gather the same data manually: git branch --show-current, the merge
base against the default branch, git log <base>..HEAD, and git diff --stat <base>..HEAD.
Read the output and identify: the main change, why it was made, and any notable secondary changes (refactors, migrations, test additions).
Write the PR following the structure and rules in references/pr-style.md. Read that file now —
it defines the title format, the section template, and what to leave out.
Present the result to the user as a single markdown block they can copy. Do not open or push the PR unless they explicitly ask.
A PR title (one line) followed by a description with Summary, Changes, and Testing sections, ready to paste into the PR form.
references/pr-style.md — title format, section template, and style rules. Read in step 3.Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub sola1re/awesome-agents --plugin daily-agents