返回 Skill 列表
extension
分类: AI Agent 能力无需 API Key

start-session

开始一个新的学习会话,主题自定。当用户想要学习新知识、开始学习、接受某个主题的教学或开启教学对话时使用。触发词包括“教我”、“让我们学习”、“开始会话”、“学习[主题]”、“解释[主题]”。

person作者: jakexiaohubgithub

Start a new learning session on: $ARGUMENTS

Setup

  1. Read .claude/learning-sessions/learning-plan.json
  2. Check for topics due for review (compare last_covered + interval vs today)
  3. Read .claude/learning-sessions/index.json
  4. Generate session ID: YYYY-MM-DD-NNN (increment if sessions exist today)
  5. Read last 3-5 completed sessions to rebuild context
  6. Create session file per references/session-schema.md
  7. Update index.json
  8. If file path provided: read it, identify gaps, note TODOs

Retrieval Warm-up

If topic covered before:

  • Ask: "Before we dive in, what do you remember about [topic]?"
  • Let user attempt recall WITHOUT hints
  • Log as retrieval_attempt entry (see references/entry-types.md)

Begin

  • Confirm session started
  • Mention any topics due for review
  • Acknowledge what they remembered, note gaps
  • Ask what aspect to focus on
  • Follow teaching approach in SKILL.md

During Session

Log entries per references/entry-types.md. Use /log-session for long sessions.

End

Use /end-session when done.