원클릭으로
continue-crash
Continues after a session crash while working on a task
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Continues after a session crash while working on a task
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Performs thorough code review on local changes or PRs. Use this skill proactively after implementing code changes to catch issues before commit/push. Also use when reviewing PRs from other engineers.
Generate a portable session handoff document (task, decisions, state, next steps) as a single copy-pasteable markdown block for resuming on another device or terminal.
Create or update AGENTS.md with repo-specific patterns, conventions, commands, and gotchas for LLM coding agents. Use after implementing features that introduce new patterns worth documenting.
Get multi-model perspectives (Codex + Gemini) on any work product. Use at any development stage — planning, design, implementation, testing — to catch blind spots the primary agent might miss.
Creates or updates PLAN.md based on session - auto-detects create vs update mode
Write, update, or review documentation (README, ARCHITECTURE.md, API docs, guides). Use after implementing features to document new APIs, CLI commands, or behavior changes.
SOC 직업 분류 기준
| name | continue-crash |
| version | 1.0.0 |
| description | Continues after a session crash while working on a task |
| disable-model-invocation | true |
| allowed-tools | Bash, Glob, Grep, Read, TodoWrite |
git status --porcelain 2>/dev/null | head -20 || echo "NOT_IN_GIT"git log --oneline -5 2>/dev/null || echo "NO_COMMITS"git diff --name-only 2>/dev/null | head -10 || echo "NONE"git branch --show-current 2>/dev/null || echo "UNKNOWN"sh -c 'COMMON=$(git rev-parse --path-format=absolute --git-common-dir 2>/dev/null); PROJECT_ROOT=$(dirname "$COMMON" 2>/dev/null); if [ -n "$PROJECT_ROOT" ] && [ "$PROJECT_ROOT" != "." ]; then ls -la "$PROJECT_ROOT"/PLAN__*.md "$PROJECT_ROOT"/TODO.md 2>/dev/null || echo "No TODO files found"; else ls -la PLAN__*.md TODO.md 2>/dev/null || echo "No TODO files found"; fi'Our session crashed. Use the context above to recover and continue where we left off.
Analyze context from pre-executed commands above:
Reconstruct and resume:
Resume work from where it was interrupted.