handoff
Route durable Infiquetra lifecycle artifacts into mission-control prepared issue drafts.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Route durable Infiquetra lifecycle artifacts into mission-control prepared issue drafts.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Route proposed Team Mimir profile behavior changes to target-owned Hermes dialogue.
Build a versioned Antigravity teammate delegation envelope and route it through the guarded agy wrapper.
Create durable Infiquetra implementation plans with issue, review, test, and deploy gates. Interrogates HOW work gets built, writes an agent-consumable plan artifact, records a plan saga, and routes to doc-review and /work. Triggers on "plan this", "how should we build this", "create a plan", "break this down", or a handoff issue ready for planning.
Coordinate a whole outcome as a durable DAG of leaf sagas. A level-triggered reconcile loop that dispatches the ready frontier to executors, harvests completion, and pages the operator only at gates and exceptions. The coordinator routes and never runs leaf work; status is derived on read. Thin coordinator verbs only — start, graph, advance, attend, resume, discover, handoff, attach — leaf work stays the native /resume, /work, /code-review, /qa.
Execute a settled Infiquetra plan to PR-ready, then own the round-N PR continuation loop. Restores and writes the work-thread saga (the primary writer), recommends an execution backend, runs risk-gated tests, calls /code-review programmatically and reads its envelope, gates hard on P0/P1 and stale reviews, and coordinates PR-open/review-request/merge under explicit confirmation — without owning deploy. Triggers on "build it", "work this plan", "execute the plan", "resume work on
Deep-dive one chosen Infiquetra idea into a right-sized requirements document before planning.
| name | handoff |
| description | Route durable Infiquetra lifecycle artifacts into mission-control prepared issue drafts. |
Use this when the user wants another team, agent team, or later session to pick up work from an Infiquetra lifecycle artifact.
saga owns the handoff moment:
mission-control.mission-control owns the issue artifact:
Do not copy SDLC issue templates into this skill.
The mission-control boundary above governs the saga -> mission-control handoff. A separate,
narrower contract governs the saga -> deploy edge, when a merged item's destination includes
deploy: a sibling module, plugins/saga/scripts/deploy_handoff.py, mints an offer (an ack
token + a gate-or-auto payload) and requires deploy to explicitly accept before ownership
is considered transferred.
Offer. The releasing side (/work, at or after merge) mints the offer:
python3 plugins/saga/scripts/deploy_handoff.py offer \
--saga-id <saga-id> --offered-by <identity>
The payload is never supplied at the command line — it is read from the saga record's
deploy_autonomy field (gate or auto, captured once at /plan intent time; absent reads
the safe gate default). A repeat offer rotates the token and supersedes the prior one, so a
stale token can never be acked.
Accept. deploy explicitly accepts (see plugins/deploy/skills/deploy-state/SKILL.md,
"Accepting a saga handoff"). The ack is write-once and durable
(.claude/saga/sagas/<saga_id>/deploy_handoff.json).
Unacknowledged, never silently done. Until the ack is recorded, deploy_handoff.py reconcile
derives handed-off-unacknowledged — the item is never read as deployed/done on an offer
alone.
Gate never auto-fires. A gate payload always blocks pending explicit confirmation on the
deploy side; only auto authorizes unattended nonprod promotion. This posture travels with the
offer and cannot be widened at accept time.
This is additive to the mission-control boundary, not a replacement for it — /work still routes
issue comments and board moves through mission-control; only deploy-bound ownership transfer
uses this ack contract.
Prefer an explicit source path or URL from the command arguments.
If no source is explicit, inspect .claude/saga/state.json and durable docs.
Build the envelope:
python3 plugins/saga/scripts/handoff_envelope.py \
--source docs/plans/example.md \
--target-team Asgard \
--target-repo infiquetra-claude-plugins
If the helper finds no source, ask for one.
If multiple durable artifacts are plausible, ask the user to choose.
Route with the envelope's suggested_command, shaped like
/issue --prepare --from <source> --maturity <maturity>.
Review the prepared issue draft before mutation.
Use issue create-prepared only after confirmation.
docs/ideation/ -> idea-readydocs/brainstorms/ -> requirements-readydocs/specs/ -> requirements-readydocs/plans/ or docs/reviews/ -> plan-readydocs/work-sessions/ or branch refs -> resume-readydeferred-context when the user says execution should waitPrepared issues must be self-contained for recipients without saga.
When a recipient does have saga, the issue may suggest:
/plan <issue> for idea-ready or requirements-ready;/work <issue> for plan-ready or resume-ready.Do not suggest /loop for normal team handoff.