ワンクリックで
pr
Create a PR from dev to main following project merge flow. Runs version bump, syncs dev with main first, creates PR with --auto merge.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a PR from dev to main following project merge flow. Runs version bump, syncs dev with main first, creates PR with --auto merge.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run analyzer + tests sequentially via make check. Full pre-commit validation.
Create a git commit following project conventions. Checks docs. Pre-commit hook handles analyzer + tests. Use when user says "commit" or "commit and push".
Check test coverage via SonarCloud API. Shows overall, new code, and per-file coverage.
Look up a section of docs/ARCHITECTURE.md without reading the whole file. Given a task description OR a § identifier (numeric like "3.6", "§11" or header fragment like "Security", "Tags", "Transfer Queue"), returns the relevant ARCHITECTURE.md section(s) verbatim. Executes Grep + Read itself in a single invocation — does not ask the user to run anything. Trigger phrases: "/doc <anything>", "docs on X", "architecture of X", "find the ARCHITECTURE § about X". Use when you need to consult docs/ARCHITECTURE.md for a specific topic instead of reading the full 3000-line file.
Map the blast radius of changing a Dart file — find importers (call sites) and the paired test file. Use when user says "what uses X", "who imports X", "impact of X", "find callers of X", or invokes /find-impact with a path.
Fetch GitHub security alerts (Dependabot, code scanning, secret scanning) and fix them. Use when user wants to resolve security issues.
| name | pr |
| description | Create a PR from dev to main following project merge flow. Runs version bump, syncs dev with main first, creates PR with --auto merge. |
Follow the project's branching & release flow strictly.
dev branch. If not, STOPgit status — working tree must be clean. If dirty, STOP and tell user to commit firstgit fetch origin main && git merge origin/main
If conflicts: STOP and tell user. If fast-forward or clean merge, push: git push
Run the bump script to calculate and apply the version bump from conventional commits:
dev/scripts/bump-version.sh
git pushgit log origin/main..HEAD --oneline — all commits going into this PRgit diff origin/main...HEAD --stat — changed files summarygh pr create --base main --head dev --title "TITLE" --body "$(cat <<'EOF'
## Summary
- bullet points from commits
## Test plan
- CI passes (ci, osv-scan, semgrep-scan, codeql-scan)
EOF
)" && gh pr merge --auto --merge
Tell user: "After PR merges, sync dev with main: git fetch origin main && git merge origin/main && git push"
If user passes a custom title: $ARGUMENTS