원클릭으로
git-branch-workflow
Manage git branches, commits, and pull requests for ResumeAI development workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage git branches, commits, and pull requests for ResumeAI development workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run accessibility tests to ensure the ResumeAI application is accessible to all users.
Analyze test coverage reports to identify areas needing more tests.
Run linters, formatters, and type checkers for both frontend and backend code.
Inspect and query the SQLite database used by the ResumeAI application.
Build and run Docker containers for the ResumeAI application.
Detect unused npm dependencies in the ResumeAI frontend project.
| name | git-branch-workflow |
| description | Manage git branches, commits, and pull requests for ResumeAI development workflow. |
This skill provides a complete workflow for managing git branches, making commits, and creating pull requests in the ResumeAI project.
gh) is installed and authenticatedorigin# Ensure main is up to date
git checkout main
git pull origin main
# Create feature branch
git checkout -b feature/issue-XXX-description
# Or bugfix branch
git checkout -b fix/issue-XXX-description
# Check status
git status
# Stage all changes
git add -A
# Or stage specific files
git add path/to/file.ts
# Commit with conventional message
git commit -m "feat: add new feature for issue #XXX
- Implemented feature X
- Added tests for Y
- Fixed linting issues
Co-authored-by: Your Name <your@email.com>"
Use these prefixes:
feat: - New featurefix: - Bug fixdocs: - Documentationchore: - Maintenancerefactor: - Code refactoringtest: - Tests# Push to remote
git push origin feature/issue-XXX-description
# Set upstream for first push
git push -u origin feature/issue-XXX-description
# Using GitHub CLI
gh pr create --title "feat: description (#XXX)" --body "Fixes #XXX"
# Or open in browser
gh pr create --web
# Make additional commits
git add -A
git commit -m "fix: address review comments"
git push
feature/issue-XXX-description - New featuresfix/issue-XXX-description - Bug fixesdocs/issue-XXX-description - Documentationrefactor/issue-XXX-description - Refactoring<type>(<scope>): <description>
[optional body]
[optional footer]
Example:
feat(auth): add OAuth2 login support
Implemented Google and GitHub OAuth2 authentication.
Added token refresh handling.
Closes #123
# View recent commits
git log --oneline -10
# View branch diff
git diff main..feature/issue-XXX
# View file changes
git show --stat HEAD
# Fetch all changes
git fetch --all
# Rebase on main
git rebase main
# Or merge main
git merge main
# Stash changes
git stash
# Apply stash
git stash pop
# Discard changes
git checkout -- path/to/file
# Reset to previous commit (soft)
git reset --soft HEAD~1
gh pr view to check PR status