一键导入
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