approve-qa
QA passed — merge branch to main, move ticket to Done, delete branch. Use after QA sign-off on a completed feature.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
QA passed — merge branch to main, move ticket to Done, delete branch. Use after QA sign-off on a completed feature.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Explore the codebase and write a discovery brief. Use when discovering scope, surveying a codebase, or starting a feature.
Run one fully-autonomous development iteration. Picks a ticket (from --focus or backlog via ideator), then runs the `orchestrator autopilot <slug>` workflow subcommand. This skill should be used when the user says 'autopilot', 'autonomous', 'self-improve'.
Create commits in logical groups. This skill should be used when the user says 'commit-group', 'group commits', 'organize commits', or when there are multiple unstaged changes that should be organized into atomic commits.
Complete feature — verify, signoff, archive. Runs only the complete phase of the orchestrate workflow. This skill should be used when the user says 'complete feature', 'finish feature', 'merge to main'.
Fetch curated, agent-optimized library documentation via Context Hub (chub). Use when implementing features that use external libraries, when Context7 returns noisy/incomplete docs, when you need language-specific or version-specific API docs, or when the user says "chub", "context hub", "get docs for X". Prefer this over Context7 for libraries in chub's registry — curated docs have less noise and better code examples.
Review design.md and tasks.yaml for completeness and quality. Use when reviewing a design before implementation.
| name | approve-qa |
| description | QA passed — merge branch to main, move ticket to Done, delete branch. Use after QA sign-off on a completed feature. |
| user-invocable | true |
| args | [{"name":"change-id","description":"Change ID (e.g. orc-86). Auto-detected from current branch if omitted.","required":false}] |
$ARGUMENTS or the current git branch name.orchestrator complete <change-id> — the complete workflow
(config/workflows/complete.yaml): learn →
mark-change-completed → workflow-report →
archive-completed-change → ticket-done → merge → teardown.REPO_ROOT=$(git rev-parse --show-toplevel)
CHANGE_ID="${ARGUMENTS:-$(git branch --show-current | sed 's|.*/||')}"
cd "$REPO_ROOT" && orchestrator complete "$CHANGE_ID"