ワンクリックで
pr
WHEN drafting PR descriptions or sizing/splitting work; NOT for commit messages; provides reviewer-first templates and gh pr steps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
WHEN drafting PR descriptions or sizing/splitting work; NOT for commit messages; provides reviewer-first templates and gh pr steps.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
WHEN scraping iOS/macOS App Store data (apps, reviews, ratings, search); NOT for installing or testing apps; retrieves structured JSON data using iTunes/App Store APIs with curl and jq formatting
Comprehensive guide for implementing on-device AI models on iOS using Foundation Models and MLX Swift frameworks. Use WHEN building iOS apps with (1) Local LLM inference, (2) Vision Language Models (VLMs), (3) Text embeddings, (4) Image generation, (5) Tool/function calling, (6) Multi-turn conversations, (7) Custom model integration, or (8) Structured generation.
WHEN building ChatGPT apps using the OpenAI Apps SDK and MCP; create conversational, composable experiences with proper UX, UI, state management, and server patterns.
WHEN building SwiftUI views, managing state, setting up shared services, or making architectural decisions; NOT for UIKit or legacy patterns; provides pure SwiftUI data flow without ViewModels using @State, @Binding, @Observable, and @Environment.
WHEN building design systems or component libraries with Tailwind CSS; covers design tokens, CVA patterns and dark mode.
WHEN building React components/pages/apps; enforces scalable architecture, state management, API layer, performance patterns.
| name | pr |
| description | WHEN drafting PR descriptions or sizing/splitting work; NOT for commit messages; provides reviewer-first templates and gh pr steps. |
Guidelines for creating comprehensive pull request descriptions and submitting PRs efficiently.
Before creating a PR, gather information about the changes:
# Compare branch changes against main
git diff main...HEAD
# List modified files
git diff main...HEAD --name-only
# Review commit history
git log main..HEAD --oneline
# Get detailed commit messages
git log main..HEAD --format="%B---"
# Get files changed with stats
git diff main...HEAD --stat
| Task | Guide |
|---|---|
| Sizing and splitting PRs | pr-sizing.md |
| Writing PR descriptions | pr-description.md |
Creating PRs with gh CLI | pr-creation.md |
Use pr-sizing.md when you need:
Use pr-description.md when you need:
Use pr-creation.md when you need:
gh pr create command syntax and options