create-pr

Creates a GitHub pull request for the current session's changes via the GitHub MCP server.

1|Updated Apr 8, 2026
One-click install
npx skills add https://github.com/voidful/Aixlarity --skill create-pr-voidful
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: create-pr
Source: https://github.com/voidful/Aixlarity/tree/main/aixlarity-ide/src/vs/sessions/skills/create-pr
Command: npx skills add https://github.com/voidful/Aixlarity --skill create-pr-voidful

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning an AI coding session's changes into a proper pull request normally requires manually running build checks, committing leftover changes, reviewing diffs, and writing a PR title and description. This Skill automates that entire handoff so the session's work lands in a reviewable PR without manual steps. ## Core Features & Use Cases - Pre-PR Hygiene: Runs compile and hygiene tasks first, fixing any errors before the PR is opened. - Automatic Committing: Detects uncommitted changes and delegates to the /commit skill so nothing is left behind. - Structured PR Content: Generates a concise title with an area prefix (e.g. "sessions: ...") and a description covering what changed, why, and reviewer notes. - Use Case: After an AI session refactors the editor module, invoke this Skill to run checks, commit the work, and open a PR titled "editor: refactor ..." ready for team review. ## Quick Start Create a pull request for all the changes made in this session.

Frequently Asked Questions about create-pr

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a pull request from an AI coding session?

Invoke the create-pr skill after your session. It runs compile and hygiene tasks, commits any uncommitted changes via the /commit skill, reviews the session's changes, and opens a PR with a prefixed title and description.

Does this skill use the gh CLI to open pull requests?

No. The skill explicitly uses the GitHub MCP server to create pull requests and instructs not to use the gh CLI, so the GitHub MCP integration must be available in the environment.

What happens if there are uncommitted changes when creating a PR?

The skill detects uncommitted changes and delegates to the /commit skill to commit them first, ensuring the pull request includes all work from the session.

What PR title format does the skill generate?

It writes a clear, concise title with a short area prefix such as "sessions: ..." or "editor: ...", followed by a description covering what changed, why, and notes for reviewers.

Can I customize the create-pr skill behavior?

Yes. The skill file notes you can customize it and save to override the built-in behavior; deleting that copy restores the default behavior.