oh-my-githubcopilot: Skill for Claude Code

.github/skills/resume-claude/SKILL.md

resume-claude is a skill for Claude Code, Codex from jmstar85/oh-my-githubcopilot. It costs 0 tokens per session (702 once invoked), scanned A, original, MIT.

A session-import tool for moving interrupted work from Claude Code or OMC into GitHub Copilot. OMC is a separate tool that can keep fuller session state than standard Claude Code.

In plain words
What is it for?
It finds available external sessions, compares their checkpoints, asks which one to use, and imports the selected session. Standard Claude Code imports may lose some state.
Why use it?
It helps continue work after a session is interrupted, including after a usage limit, without starting again from the beginning.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions Claude Code.

This is jmstar85/oh-my-githubcopilot's own configuration. It tells Claude Code and Codex how to work on oh-my-githubcopilot itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything oh-my-githubcopilot configures →

Reuse

Borrowing it

Nothing to install: this file belongs to jmstar85/oh-my-githubcopilot. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/jmstar85/oh-my-githubcopilot/main/.github/skills/resume-claude/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/jmstar85/oh-my-githubcopilot

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for resume-claude

README.md
[![agentmods](https://agentmods.dev/badge/skills/jmstar85/oh-my-githubcopilot/resume-claude/github.svg)](https://agentmods.dev/skills/jmstar85/oh-my-githubcopilot/resume-claude)
Your own site
<a href="https://agentmods.dev/skills/jmstar85/oh-my-githubcopilot/resume-claude"><img src="https://agentmods.dev/badge/skills/jmstar85/oh-my-githubcopilot/resume-claude/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for resume-claude

Your own site · 80×15
<a href="https://agentmods.dev/skills/jmstar85/oh-my-githubcopilot/resume-claude"><img src="https://agentmods.dev/badge/skills/jmstar85/oh-my-githubcopilot/resume-claude.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 702 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00702
Opus 5 $0.00000 $0.00351
Sonnet 5 $0.00000 $0.00140
Haiku 4.5 $0.00000 $0.00070

Measured 9d ago against content hash 0d7e504da3f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

resume-claude scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/skills/resume-claude/SKILL.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/resume-claude — Resume Interrupted Claude Code / OMC Session

Trigger

  • Slash command: /resume-claude
  • Keywords: "resume claude", "claude 이어받기", "이어서 작업", "rate limit"

Purpose

Import an interrupted Claude Code or OMC session so GitHub Copilot can continue the work seamlessly. Handles both OMC (full state import) and vanilla Claude Code (lossy JSONL import).

Workflow

Step 1 — Detect

Call omg_detect_external_session to scan for available sessions.

If no sessions found:

"외부 세션을 찾을 수 없습니다. .omc/ 디렉토리나 ~/.claude/projects/ 의 JSONL 파일이 존재하는지 확인해주세요."

Step 2 — Compare

Call omg_compare_checkpoints to show timestamps side-by-side.

Display to user:

현재 OMG 체크포인트: {timestamp or "없음"}
외부 세션:
  - {source}: {timestamp} {newer_than_omg ? "← 더 최신" : ""}

Step 3 — Confirm

Use vscode_askQuestions to confirm import:

header: "resume-external"
question: "외부 세션을 import하시겠습니까?"
options:
  - label: "{source} 세션 이어받기"
    description: "{timestamp}, {details}"
    recommended: true
  - label: "취소"
allowFreeformInput: false

If multiple sources exist, let user pick which one.

Step 4 — Import

Call omg_import_external_session with the selected source.

  • If OMG checkpoint already exists and is newer, warn but allow force: true
  • Previous checkpoint is automatically backed up to session-checkpoint.previous.json

Step 5 — Summarize

Display the imported checkpoint summary:

✅ {source} 세션 import 완료

📋 Import 결과:
- 소스: {source} (세션 {session_id})
- Import된 파일: {imported_files count}개
- 충돌 건너뜀: {conflicts count}개

📝 마지막 작업 요약:
{imported_summary}

📁 수정된 파일:
{modified_files list}

Step 6 — Continue

Ask the user what to do next:

header: "resume-next-action"
question: "어떤 작업부터 이어갈까요?"
options:
  - label: "마지막 작업 이어서 진행"
    recommended: true
  - label: "PRD/Story 상태 확인"
  - label: "수정된 파일 리뷰"
  - label: "새로운 작업 시작"

Error Handling

  • If JSONL parsing fails partially: show what was extracted, note incomplete import
  • If .omc/ state files are corrupted: skip corrupted files, import what works
  • If checkpoint backup fails: abort import, do not overwrite

Read the full file on GitHub · 91 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 91 lines · 0 tokens per session scan A 0d7e504da3f1

Subscribe to this mod's changes

resume-claude is a skill published in the GitHub repository jmstar85/oh-my-githubcopilot (155 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 702 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.