スキル一覧に戻る
jasonmichaelbell78-creator

checkpoint

by jasonmichaelbell78-creator

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: checkpoint description: Quick save of current session state for recovery after failures

Session Checkpoint

Purpose: Quickly save current state so you can recover after a session failure.

Instructions

Update the Quick Recovery section at the top of SESSION_CONTEXT.md with:

  1. Current timestamp
  2. Branch name (run git rev-parse --abbrev-ref HEAD)
  3. Working on - Brief description of current task
  4. Files modified - List files changed since last commit (git diff --name-only)
  5. Next step - What to do next if session dies
  6. Uncommitted work - Yes/No

Quick Recovery Template

Update SESSION_CONTEXT.md "Quick Recovery" section with this format:

## 🔄 Quick Recovery

**Last Checkpoint**: YYYY-MM-DD HH:MM **Branch**: `branch-name-here` **Working
On**: [brief task description] **Files Modified**: [list or "none"] **Next
Step**: [what to do next] **Uncommitted Work**: yes/no

Also Consider

  • If uncommitted work exists, consider committing now:

    git add -A && git commit -m "WIP: checkpoint before potential failure"
    
  • If working on risky operations, push the branch:

    git push -u origin $(git rev-parse --abbrev-ref HEAD)
    

When to Use This Command

  • Before large file operations
  • Before complex multi-step tasks
  • When you notice session becoming slow
  • Periodically during long sessions (every 30-60 minutes)
  • Before any operation that previously caused failures

Run this checkpoint now and update SESSION_CONTEXT.md.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です