1 line
828 B
JSON
1 line
828 B
JSON
{"content": "# Create Pull Request Command\n\nCreate a new branch, commit changes, and submit a pull request.\n\n## Behavior\n- Creates a new branch based on current changes\n- Formats modified files using Biome\n- Analyzes changes and automatically splits into logical commits when appropriate\n- Each commit focuses on a single logical change or feature\n- Creates descriptive commit messages for each logical unit\n- Pushes branch to remote\n- Creates pull request with proper summary and test plan\n\n## Guidelines for Automatic Commit Splitting\n- Split commits by feature, component, or concern\n- Keep related file changes together in the same commit\n- Separate refactoring from feature additions\n- Ensure each commit can be understood independently\n- Multiple unrelated changes should be split into separate commits"} |