AgentSkillsCN

catch-up

分析当前分支的变更,帮助用户快速恢复工作进度。当用户需要了解自己曾从事的工作内容,或希望获得当前分支变更的概要时,可选用此技能。

SKILL.md
--- frontmatter
name: catch-up
description: Analyze current branch's changes to help resume work. Use when user needs to understand what they were working on or wants a summary of their current branch changes.

Catch-up

Analyze the current branch's changes to help resume work:

  1. Check if docs/plans/ exists and read any implementation plans related to current work
  2. Find the default branch (try: main, master, development, develop in that order)
  3. Get current branch name
  4. Show summary: git diff --stat <default-branch>...HEAD
  5. Show actual changes: git diff <default-branch>...HEAD
  6. Provide 3-4 line summary combining:
    • What the plan says (if plan exists)
    • What's been implemented based on diff
    • What appears to be left

Keep summary concise - just key status. Don't elaborate unless asked.