AgentSkillsCN

recap

全新启程的引导——具备自适应合成能力,并针对各类边缘场景提供万无一失的应对方案。当您开启会话、从跳转中回归、不慎遗失了当前进度,或在切换上下文之前使用。

SKILL.md
--- frontmatter
name: recap
description: Fresh-start orientation—adaptive synthesis with bulletproof edge case handling. Use when starting a session, after /jump, lost your place, or before switching context.
trigger: /recap

/recap — Fresh Start Context

Goal: Orient yourself in <10 seconds. Fast by default, rich on demand.

Usage

code
/recap           # Fast: bash script + LLM suggestions
/recap --rich    # Full: read retro content, detailed analysis

FAST MODE (Default)

Run the script, then add suggestions:

bash
bun ~/.claude/skills/recap/recap.ts

Script outputs formatted data instantly (~0.1s). Then LLM adds:

  • What's next? (2-3 options based on git state + focus)

Total: 1 bash call + LLM analysis = fast + smart


"What's next?" Rules

If you see...Suggest...
Untracked filesCommit them
Focus = completedPick from tracks or start fresh
Branch aheadPush or create PR

RICH MODE (/recap --rich)

Full context with retro/handoff content:

bash
bun ~/.claude/skills/recap/recap-rich.ts

Includes: tracks, retro summary, commits, handoff details.


Hard Rules

  1. ONE bash call — never multiple parallel calls (adds latency)
  2. Filenames only — don't read retro/handoff content in fast mode
  3. Ask, don't suggest — "What next?" not "You should..."

Philosophy: Detect reality. Surface blockers. Be fast.

Version: 6.1 (Bash script + LLM pattern) Updated: 2026-01-14