ワンクリックで
resume
Preflight current git/OMX state, then continue the user's attached in-flight task on the right branch context.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Preflight current git/OMX state, then continue the user's attached in-flight task on the right branch context.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create, repair, validate, visually QA, and package Codex-compatible v2 animated pets from character art, generated images, company or prospect brand cues, or visual references. Use for any new Codex pet, custom mascot, non-pixel pet style, brand-inspired pet, existing-pet repair, or 8x11 spritesheet workflow requiring all 9 standard animation rows, 16 look directions, deterministic assembly, QA artifacts, and spriteVersionNumber 2 packaging.
Rewrite current branch into N semantic commits with a legacy backup branch and optional rebase onto origin/main.
Merge origin/main into current branch while preserving branch intent, context, and ownership decisions.
Chain branch onboarding, code-health, and non-test analysis into a branch-scoped remediation plan.
Summarize current branch diff from fork point with intent, scope, risks, and context for follow-on work.
Audit codebase architecture: module dependencies, layering, circular imports, ownership, and structural decay.
| name | resume |
| description | Preflight current git/OMX state, then continue the user's attached in-flight task on the right branch context. |
Treat this skill as a resume preflight wrapper. First reconstruct the correct continuation context for the current worktree or latest local commit. Then use that context to perform the user’s actual attached task immediately.
This is not a report-only skill by default. If the user says:
$resume 이어서 구현해$resume 지금 상태 기준으로 버그 고쳐$resume 이 커밋 이어서 테스트까지 마무리해the attached task is the real deliverable. The resume analysis is the onboarding step.
Only switch into report-only behavior when the user explicitly asks for analysis, handoff text, briefing, summary, or state explanation.
Interpret the rest of the user message after $resume as the task to execute.
Run this once before any repo-scoped analysis:
git rev-parse --is-inside-work-tree
Stop and report if the result is not true.
Prefer the bundled script over ad-hoc command chains:
CODEX_HOME=${CODEX_HOME:-$HOME/.codex}
SKILL_DIR="$CODEX_HOME/skills/resume"
python "$SKILL_DIR/scripts/collect_resume_context.py" --repo-root . --format markdown
Use JSON only when structured follow-up is needed:
python "$SKILL_DIR/scripts/collect_resume_context.py" --repo-root . --format json
The collector gathers:
.omx/notepad.md tail entries.omx/state/*.json signalsUse the reported focus_mode to decide what to analyze next:
working-tree: prioritize staged and unstaged diffs; this is the primary continuation surface.latest-commit: working tree is clean, so treat HEAD as the handoff unit.branch-context: there is no meaningful in-flight delta; summarize branch state only.Open, in order:
Suggested Inspection Order.omx/notepad.md entries.omx/state/*.json files.omx/context/*.md or active plans if they explain intent or verification stateDo not start with broad repo-wide scanning. This skill is for fast continuation, not full repository archaeology.
Stop expanding context once you can safely continue the attached task.
After preflight:
Do not spend the whole turn explaining the current state unless the user asked for that.
Answer in Korean unless the user asked for another language.
State clearly:
staged, unstaged, mixed, or clean tree + HEAD.omx/state/skill-active-state.json or related OMX mode state is still active, mention whether it looks resumable or stale.추정.main/base rather than a resume packet, switch to or combine with branch-onboarding-brief after the working-state summary.When the user attached a concrete task:
재개 기준점 note only if neededDo not force the long resume brief structure in this mode.
Only when the user explicitly asks for a briefing, summary, handoff, or state explanation, return:
한줄 요약현재 경계핵심 변경 묶음OMX/세션 단서바로 읽을 파일 순서다음 액션리스크/불확실성Keep the report compact but specific. Include file paths, counts, and whether each statement is evidence or 추정 when needed.
collect_resume_context.py: deterministic git + .omx collector for resume analysis.