# Repo:pr

> Kagenti PR format - title, summary, issue linking

- Skill: `majiayu000/repo-pr` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/repo-pr`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/repo-pr/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/repo-pr

---


# Kagenti PR Conventions

## PR Title

```
<emoji> <Short descriptive title>
```

Same emoji prefixes as commits (see `repo:commit`).

## PR Body

```markdown
## Summary

<Clear description of what the PR does>

Key changes:
- <Bullet point 1>
- <Bullet point 2>

## Related issue(s)

Fixes #<number>
```

## Creating a PR

```bash
gh pr create --title "🌱 Add E2E tests" --body "$(cat <<'EOF'
## Summary

Description of changes.

Key changes:
- Point 1
- Point 2

## Related issue(s)

Fixes #309
EOF
)"
```

## Requirements

- **Summary section is REQUIRED**
- **Related issue(s) is OPTIONAL** — include if fixing an issue
- Use `Fixes #N` or `Closes #N` to auto-close issues
- Keep title under 72 characters

## Related Skills

- `repo:commit` - Commit format
- `git:rebase` - Rebase before PR
- `tdd:ci` - TDD workflow that creates PRs

