Agent Skills: Pull Request

Creating pull requests with concise descriptions

UncategorizedID: mgreenly/ikigai/pull-request

Install this agent skill to your local

pnpm dlx add-skill https://github.com/mgreenly/ikigai/tree/HEAD/.claude/library/pull-request

Skill Files

Browse the full folder contents for pull-request.

Download Skill

Loading file tree…

.claude/library/pull-request/SKILL.md

Skill Metadata

Name
pull-request
Description
Creating pull requests with concise descriptions

Pull Request

Creating PRs

This is a jj repository. Use gh pr create --repo to create PRs without needing a git repository.

No test plan section - CI runs the full quality suite automatically.

Template

<concise description of what changed and why>

πŸ€– Generated with Ralph harness

Command

gh pr create \
  --repo mgreenly/ikigai \
  --base main \
  --head <bookmark-name> \
  --title "<title>" \
  --body "$(cat <<'EOF'
<description>

πŸ€– Generated with Ralph harness
EOF
)"

Parameters:

  • --repo: Repository in owner/repo format (required for jj repos)
  • --base: Target branch (usually main)
  • --head: Source bookmark name (e.g., rel-09-rc5)
  • --title: PR title (imperative mood, concise)
  • --body: PR description

Guidelines

  • Title: Imperative mood, concise (e.g., "Add user authentication", "Fix memory leak in parser")
  • Description: One line or short paragraph explaining what and why
  • No headers: They add noise for typical PRs
  • No test plan: Implicit - CI runs quality checks
  • Footer: Attribution preserved

Examples

Simple change:

Remove dead code: ik_content_block_thinking

πŸ€– Generated with Ralph harness

Feature addition:

Add JSON export for metrics data

Enables users to export their usage metrics in JSON format
for integration with external tools.

πŸ€– Generated with Ralph harness

Bug fix:

Fix null pointer dereference in config parser

The parser didn't handle missing optional fields correctly
when the config file used the legacy format.

πŸ€– Generated with Ralph harness