ワンクリックで
ship
Deliver the current branch - run the full verification loop, commit, push, open a PR with Closes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deliver the current branch - run the full verification loop, commit, push, open a PR with Closes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Start work on a GitHub issue the right way - read it, branch from updated main with the correct prefix, move the board card to In Progress. Use when the user types /new-task <issue-number> or asks to start or pick up an issue.
Architecture-first code review for quantick — checks that a change docks as a module, declares its performance impact, proves itself with tests, and hides nothing behind a magic number. Use when the user types /arch-review, asks for a code review, or asks whether a change is modular, extensible or fast enough.
Turn an idea into a well-formed GitHub issue with context, scope and acceptance criteria, correct labels, milestone and board placement. Use when the user types /issue <idea> or asks to create or file an issue.
SOC 職業分類に基づく
| name | ship |
| description | Deliver the current branch - run the full verification loop, commit, push, open a PR with Closes |
main. If git branch --show-current says main, stop and point the user to /new-task.Verification loop — run in order, stop at the first failure and fix it before continuing. Never ship red:
cargo fmt --all
cargo fmt --all -- --check
cargo clippy --workspace --all-targets -- -D warnings
cargo build --workspace
cargo test --workspace
Commit anything pending: conventional style (feat: ..., fix: ...), imperative mood, English.
Arch-review (mandatory, see CLAUDE.md): run the arch-review skill over git diff main...HEAD. Fix every Blocker and Should-fix finding, re-running step 1 on whatever changed. A finding deliberately deferred is noted in the PR body. Never open a PR that has not been arch-reviewed.
Push: git push -u origin <branch>.
Open the PR following the repo template (.github/PULL_REQUEST_TEMPLATE.md): summary of what and why, Closes #<N>, the four verification-loop boxes checked (they just ran), notes for the reviewer. Use gh pr create --body-file - with a heredoc.
Watch CI: gh pr checks <pr> --watch. If checks have not registered yet, find the run with gh run list --branch <branch> and use gh run watch <id> --exit-status. Red → read the failing log, fix, push, repeat.
Report the PR URL and CI status. Do not merge unless the user asks. When they do: gh pr merge <pr> --merge --delete-branch — the Closes #N closes the issue and the board card moves to Done automatically. If the branch lives in a worktree, --delete-branch cannot delete a checked-out branch: from the main checkout run git worktree remove ../quantick-worktrees/<dir> first, then git branch -d <branch>.