소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill create-handoff명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | create-handoff |
| description | Create unified artifact document for checkpoint, handoff, or finalize |
This skill is the canonical generator for unified artifacts (checkpoint, handoff, finalize). Use it to capture session state in a consistent schema under the canonical directory.
If a bead is active, capture it. For handoff/finalize, a bead is required:
bd list --status=in_progress
Preferred path: use the core generator script (handles timestamps + git metadata):
~/.claude/scripts/cc-artifact --mode <checkpoint|handoff|finalize> [--bead <BEAD_ID>] [--session-title "<short title>"]
Artifacts are written to:
thoughts/shared/handoffs/<session>/YYYY-MM-DD_HH-MM_<title>_<mode>.yaml
Filename format:
YYYY-MM-DD_HH-MM: Date and time (UTC) with hyphen separators<title>: Slugified session title (or derived from session)<mode>: checkpoint | handoff | finalize2026-01-14_01-23_auth-refactor_handoff.yamlCore fields (all artifacts):
schema_version: "1.0.0"mode: "checkpoint" | "handoff" | "finalize"date: ISO 8601 date or date-time (e.g., "2026-01-14T01:23:45.678Z")session: Session folder name (bead + slug)goal: What this session accomplishednow: Current focus / next actionoutcome: SUCCEEDED | PARTIAL_PLUS | PARTIAL_MINUS | FAILEDprimary_bead: Required for handoff/finalize, optional for checkpointHandoff-specific fields (optional):
related_beads: Related bead IDsfiles_to_review: Array of {path, note}continuation_prompt: Resume instructionsFinalize-specific fields (optional but recommended):
final_solutions: Array of {problem, solution, rationale}final_decisions: Array of decision objectsartifacts_produced: Array of {path, note}Optional but recommended:
session_id: 8-char hex identifierdone_this_session: Array of completed tasks with filesnext: Array of next stepsblockers: Array of blocking issuesquestions: Array of unresolved questionsdecisions: Record of key decisions (simple format) or array of Decision objectsworked: What worked wellfailed: What didn't work and whyfindings: Record of key discoveriesgit: Branch, commit, remotefiles: Object with created, modified, deleted arraystest: Command to verify the work---
schema_version: "1.0.0"
mode: handoff
date: 2026-01-14T01:23:45.678Z
session: Continuous-Claude-v3-ug8.6-auth-refactor
outcome: PARTIAL_PLUS
primary_bead: Continuous-Claude-v3-ug8.6
session_id: abc12345
---
goal: What this session accomplished
now: What next session should do first
done_this_session:
- task: First completed task
files:
- path/to/file1.ts
- path/to/file2.ts
- task: Second completed task
files:
- path/to/file3.ts
next:
- First step for next session
- Second step
IMPORTANT: Before responding to the user, you MUST ask about the session outcome.
Use the AskUserQuestion tool with these exact options:
Question: "How did this session go?"
Options:
- SUCCEEDED: Task completed successfully
- PARTIAL_PLUS: Mostly done, minor issues remain
- PARTIAL_MINUS: Some progress, major issues remain
- FAILED: Task abandoned or blocked
After the user responds, the outcome is included in the YAML.
Respond to the user:
Artifact created! Outcome: [OUTCOME]
Resume in a new session with:
/resume_handoff thoughts/shared/handoffs/<session>/[filename]
src/file.ts:42-56)This skill provides a single, structured artifact format for checkpoints, handoffs, and finalize events.