ワンクリックで
aigon-feature-transfer
Transfer feature <ID> from its current agent to a different agent — preserves commits and in-flight work
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Transfer feature <ID> from its current agent to a different agent — preserves commits and in-flight work
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Revise the current feature worktree after code review — decide accept/revert/modify
Show Aigon commands
Close feature <ID> [agent] [--adopt] - merges branch, cleans up, optionally adopts from losers
Create feature <name> - creates spec in inbox
Evaluate feature <ID> - code review or comparison
Fast-track feature <name> - create + setup + implement in one step
| name | aigon-feature-transfer |
| description | Transfer feature <ID> from its current agent to a different agent — preserves commits and in-flight work |
Hand a stuck or paywalled in-progress feature from its current agent to a different agent, without losing commits or in-flight work. Intended for:
The worktree, commits, branch, and workflow history are all preserved. Only the active agent changes.
aigon feature-transfer $1 --to=<agent> [--reason="..."] [--no-launch]
Flags:
--to=<agent> (required) — target agent id (e.g. cc, cx, gg, cu).--reason="..." — free-text reason recorded in the transfer briefing.--no-launch — do the transfer but don't auto-spawn the new agent; handy for scripted orchestration.docs/specs/features/logs/feature-<ID>-transfer-<timestamp>.md — last commits, uncommitted diff, pane tails, and next-steps for the new agent.wip(transfer): save <old> state before handoff to <new> so nothing is lost by the directory move.git worktree move — directory renames from feature-<ID>-<old>-<desc>/ to feature-<ID>-<new>-<desc>/. The branch name is preserved (it encodes who originally started the work — not a problem, it's cosmetic after merge).feature.started event so the dashboard and snapshot reflect the new agent. Prior events stay in history.aigon feature-do <ID> --agent=<new> unless --no-launch was passed.The new agent's first task is to read the briefing and the wip(transfer) commit before doing anything else — the briefing lays out exactly where the previous agent stopped and why.
# Codex hit its usage limit — pick up with Claude Code.
aigon feature-transfer 306 --to=cc --reason="cx hit GPT-5 usage limit, 8h wait"
# Same thing, but don't auto-start cc — useful in scripts that want to
# do their own launch or schedule it for later.
aigon feature-transfer 308 --to=cc --reason="auto-failover" --no-launch
aigon feature-reset <ID> — nukes the feature back to backlog (destroys commits). Use this only when you want to start over.aigon sessions-close <ID> — only kills tmux sessions. The transfer command calls this internally.