Create GitHub pull requests with properly structured descriptions. Use when the user explicitly asks to create a PR, open a pull request, or says "/create-pr". Analyzes commits and changes to generate clear PR descriptions with summary, changes list, and UI changes when applicable.
Create GitHub pull requests with structured descriptions.
git status to check for uncommitted changes and remote trackinggit diff <base-branch>...HEAD to see all changes since branchinggit log <base-branch>..HEAD --oneline to see all commitsgit push -u origin <branch>gh pr createTitle: Use conventional commit format: <type>(<scope>): <subject>
Body:
## Summary
<What this PR does and why - 1-3 sentences>
## Changes
- <Specific change 1>
- <Specific change 2>
- <Specific change 3>
## UI Changes
<Text description of visual/layout changes - omit section if no UI changes>
Use HEREDOC for proper formatting:
gh pr create --title "<type>(<scope>): <subject>" --body "$(cat <<'EOF'
## Summary
<description>
## Changes
- <change 1>
- <change 2>
EOF
)"
Backend PR:
## Summary
Add email notifications when orders are shipped. Customers receive
an automated email with tracking information when their order status
changes to "shipped".
## Changes
- Add `ShippingNotificationService` to handle email dispatch
- Integrate with SendGrid API for email delivery
- Add email template for shipping confirmation
- Update `OrderController` to trigger notification on status change
PR with UI changes:
## Summary
Add dark mode toggle to application settings.
## Changes
- Add `ThemeContext` for managing theme state
- Create `DarkModeToggle` component in settings page
- Update CSS variables for dark theme colors
- Persist theme preference to localStorage
## UI Changes
- New toggle switch in Settings > Appearance section
- Toggle positioned right-aligned with "Dark Mode" label on left
- Switch uses primary brand color when enabled
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer