push
Push the current branch to its remote, setting upstream on the first push. Use when asked to "push", "push the branch", or invokes /push.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Push the current branch to its remote, setting upstream on the first push. Use when asked to "push", "push the branch", or invokes /push.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Research products on amazon.com.au (Australia) and return options with title-verified links, indicative AUD prices, and stock status. Use when asked to research a product, "find me options for X", compare prices, or for help shopping or buying something on Amazon. Australian marketplace only — this skill does not cover amazon.com or other marketplaces.
Create a Git worktree for a new task. This skill should be used when the user asks to "start working on", "implement", "fix", "add", "refactor", "migrate", or otherwise begin a code task that requires a new branch. Do not use for trivial tasks like reading files, answering questions, or changes to the current dotfiles repo.
Drive Apple Reminders as a GTD system from the command line — capture to an inbox, read and search across lists, enrich items with notes, complete, delete, and triage with the 2-minute rule. Use when asked to add/capture a task or idea, "add to my inbox / Stuff list", reschedule or move an item, process/triage the inbox, find 2-minute items, or write research findings into a reminder's note. macOS + iCloud only, via the `reminders` CLI (keith/reminders-cli). Read/capture/enrich is fully supported; moving between lists and rescheduling due dates are not (see Gaps).
Append a timestamped, super-condensed summary of the current session — plus any open loops to close later — to today's dump file at ~/.me/quick-dumps/YYYY-MM-DD.md. Use when asked to "dump state", "dump the session", "jot this down", "save where we're at", or invokes /dump-state.
Review one or more GitHub PRs and write a per-PR findings file (with a go/no-go call at the top) into ~/Developer/ai-workspace/code-reviews/. Use when asked to "review this PR", "review my PRs", "write review notes", or given a PR URL / a search criteria for PRs to review. Produces documents for later human review or handoff to another agent that posts the comments — it does NOT post anything to GitHub.
Check CI status for PRs and Buildkite builds, diagnose failures, auto-fix when possible. Use when asked to "check CI", "check PR status", "how's the build", "monitor CI", "what's failing", or given a Buildkite build URL. Also use after pushing code when the user wants to track the build.
| name | push |
| description | Push the current branch to its remote, setting upstream on the first push. Use when asked to "push", "push the branch", or invokes /push. |
| allowed-tools | Bash(git *), Bash(git -C *) |
| user-invocable | true |
Push the current branch and report what landed.
git status -sb to learn: branch name, upstream presence, ahead/behind counts.git pushgit push -u <remote> <branch> (use origin if present, otherwise the only remote from git remote)/pull. No analysis, no recovery menu.If the working tree has uncommitted hunks you authored this session, mention them — git push ships commits only, so unstaged work stays local.
--force. If the user explicitly asks for a force-push, use --force-with-lease and refuse on main/master/trunk unless they confirm again.