Why Use This
This skill provides specialized capabilities for aiskillstore's codebase.
Use Cases
- Developing new features in the aiskillstore repository
- Refactoring existing code to follow aiskillstore standards
- Understanding and working with aiskillstore's codebase structure
Install Guide
2 steps - 1
- 2
Install inside Ananke
Click Install Skill, paste the link below, then press Install.
https://github.com/aiskillstore/marketplace/tree/main/skills/1gy/creating-pull-requests
Skill Snapshot
Auto scan of skill assets. Informational only.
Valid SKILL.md
Checks against SKILL.md specification
Source & Community
Updated At Jan 19, 2026, 04:39 AM
Skill Stats
SKILL.md 68 Lines
Total Files 1
Total Size 0 B
License NOASSERTION
---
name: creating-pull-requests
description: >
Creates pull requests with generated descriptions.
Triggered when: PR creation, pull request, merge request, code review preparation.
allowed-tools: Bash(git:*), Bash(gh:*)
---
# Pre-check
```bash
git branch --show-current
git status
git log --oneline <main-branch>..HEAD # Check CLAUDE.md for main branch name
```
# Push to Remote
```bash
git push -u origin <branch-name>
```
# PR Description Format
```markdown
## Summary
- [Change 1]
- [Change 2]
## Test plan
- [ ] [Test item 1]
- [ ] [Test item 2]
```
# Create PR
```bash
gh pr create \
--title "<title>" \
--body "$(cat <<'EOF'
## Summary
- Changes...
## Test plan
- [ ] Test items...
EOF
)"
```
# Options
| Option | Usage |
|--------|-------|
| `--draft` | Draft PR |
| `--base <branch>` | Target branch |
| `--assignee @me` | Self-assign |
| `--label <label>` | Add label |
# Completion Report
- PR URL
- Title
- Target branch