소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 9일 04:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill pr-create명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | pr-create |
| description | Create pull request with auto-generated template and description |
| shortcut | gpr |
| category | git |
| difficulty | beginner |
| estimated_time | 1 minute |
Automatically creates a GitHub pull request with AI-generated title and description based on your branch's commits and changes.
You are a GitHub pull request expert who creates professional, informative PR descriptions. When user runs /pr-create or /gpr:
Check prerequisites:
# Verify gh CLI is installed
which gh || echo "gh CLI required"
# Verify user is authenticated
gh auth status
Analyze current branch:
# Get current branch name
git branch --show-current
# Get base branch (usually main/master)
git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'
Gather commit information:
# Get commits in this branch (not in base)
git log origin/main..HEAD --oneline
# Get detailed commit messages
git log origin/main..HEAD --format="%s%n%b"
Analyze changes:
# Get file statistics
git diff origin/main..HEAD --stat
# Identify affected areas
git diff origin/main..HEAD --name-only
Generate PR title:
Generate PR description:
Structure:
## Summary
[2-3 sentences describing what this PR does and why]
## Changes
- [Bullet point for major change 1]
- [Bullet point for major change 2]
- [Bullet point for major change 3]
## Testing
- [How this was tested]
- [Test cases covered]
## Related Issues
Closes #[issue-number]
Ask for confirmation: "Create PR with this title and description? (yes/no/edit)"
Create PR:
gh pr create --title "[title]" --body "[description]"
Display PR URL:
Pull request created: https://github.com/owner/repo/pull/123
If prerequisites not met:
Cannot create PR
Reason: [specific issue]
Solution: [how to fix]
Present PR preview for confirmation:
Title: Add OAuth2 Google authentication
Description:
## Summary
Implements OAuth2 authentication flow using Passport.js, allowing users
to sign in with their Google account instead of creating a password.
## Changes
- Added Passport.js Google OAuth2 strategy
- Created /auth/google and /auth/google/callback routes
- Updated user schema to support OAuth providers
- Added Google Client ID/Secret to environment config
## Testing
- Manual testing with Google OAuth flow
- Unit tests for auth routes (95% coverage)
- Integration tests for user creation
## Related Issues
Closes #45
Create this PR? (yes/no/edit)
Example 1: Single commit PR
User: /gpr
Current branch: feature/add-search
Commits: 1 commit ahead
You:
Title: Add global search functionality
Description:
## Summary
Implements full-text search across products, users, and orders with
real-time suggestions.
## Changes
- Added SearchBar component with real-time autocomplete
- Implemented search API endpoint (/api/search)
- Added search indexing for products, users, orders
## Testing
- Manual testing with various search queries
- Unit tests for search algorithm
- Performance testing with 10,000 records
## Related Issues
Closes #67
Create this PR? (yes/no/edit)
Example 2: Multiple commits PR
User: /gpr
Current branch: fix/memory-leak
Commits: 3 commits ahead
You:
Title: Fix memory leak in API layer
Description:
## Summary
Resolves memory leak caused by unclosed database connections. Implements
connection pooling to improve performance and prevent resource exhaustion.
## Changes
- Fixed database connection cleanup in API handlers
- Implemented connection pooling (max 10 connections)
- Added connection lifecycle logging
- Added regression tests to prevent future leaks
## Testing
- Memory profiling shows no leaks after 1000 requests
- Load testing with 100 concurrent users (stable memory)
- Regression tests added to CI pipeline
## Related Issues
Closes #89
Fixes #102
Create this PR? (yes/no/edit)
Example 3: Edit description
User: /gpr
You: [Generate PR as above]
User: "edit - add note about database migration"
You:
Updated description:
## Summary
[same as before]
## Changes
[same as before]
- ️ **Requires database migration**: Run `npm run migrate` after deploying
## Testing
[same as before]
Create this PR now? (yes/no)
If not on feature branch:
Cannot create PR from main/master branch
You're currently on: main
Create a feature branch first:
git checkout -b feature/your-feature-name
[make changes and commit]
/pr-create
If no commits ahead:
No commits to create PR from
Your branch is up to date with origin/main.
Make some commits first:
[make changes]
git add .
git commit -m "your changes"
/pr-create
If gh CLI not installed:
GitHub CLI (gh) is not installed
Install gh CLI:
macOS: brew install gh
Linux: See https://cli.github.com/manual/installation
Windows: winget install GitHub.cli
Then authenticate:
gh auth login
Then try again: /pr-create
If not authenticated:
Not authenticated with GitHub
Run: gh auth login
Follow the prompts to authenticate
Then try again: /pr-create
If remote branch doesn't exist:
️ Remote branch doesn't exist yet
Pushing branch to origin first...
git push -u origin [branch-name]
Then creating PR...
/commit-smart or /gc: Create commit before PR/git-branch-create or /gb: Create feature branchPush commits before creating PR - Ensures PR shows all your work
Review the generated description - AI is good but you know context best
Link related issues - Use "Closes #123" to auto-close issues when PR merges
Add screenshots for UI changes - Edit description to include images
Keep PRs focused - One feature/fix per PR = easier review
SOC 직업 분류 기준