원클릭으로
start
Switch to main branch, pull latest changes, and optionally begin work on a task.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Switch to main branch, pull latest changes, and optionally begin work on a task.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Commit current work, push, open a pull request, wait for CI to pass, then merge.
Commit current work, push, and open a pull request against main.
Manually test your work against the locally running app by making real API or HTTP requests.
Scaffold a new project from the fullstack or Rust CLI boilerplate. Use when starting a new codebase.
Comprehensive analysis of testing strategy and coverage across the codebase. Evaluates all test types and identifies gaps.
Reviews test coverage and testing strategy for recent code changes. Use before creating PRs to ensure changes are well-tested.
| name | start |
| description | Switch to main branch, pull latest changes, and optionally begin work on a task. |
| user_invocable | true |
Run the following steps:
git rev-parse --git-common-dir with git rev-parse --git-dir. If they differ, you're in a worktree.git fetch origin main && git reset --hard origin/main (you cannot checkout main — it belongs to the parent worktree)git checkout main && git pull