Agent Skills
› anthropics/claude-for-legal
› session
session
GitHub提供法律备考的定向刷题功能,支持MBE、论述题和闪卡模式。根据用户指定的科目和数量生成题目,解析答案并标记管辖权差异,同时记录历史成绩以动态调整后续学习计划。
Trigger Scenarios
用户要求运行特定数量的题目练习
用户指定进行某种题型(如MBE、essay、flashcards)的复习
Install
npx skills add anthropics/claude-for-legal --skill session -g -y
SKILL.md
Frontmatter
{
"name": "session",
"description": "Run a focused N-question study session on a subject — MBE, essay, or flashcards. Tracks performance and updates the study plan. Use when the user says \"run me 10 questions on [subject]\", \"do a session on [subject]\", \"let's do 5 cards on [subject]\", or wants to drill a fixed number of questions and have the plan adapt.\n",
"argument-hint": "<subject> <n> [--mbe | --essay | --flashcards]"
}
/session
- Parse
$ARGUMENTS— subject and N. If missing, ask:What subject, and how many questions? (e.g.,
Evidence 10orContracts 5 --essay.) - Load
~/.claude/plugins/config/claude-for-legal/law-student/CLAUDE.md→ jurisdiction, exam format, weak subjects. - Load
~/.claude/plugins/config/claude-for-legal/law-student/study-plan.yamlif it exists. Readsession_historyfor this subject to weight subtopics toward where the student has been weak. - Route by method flag:
--mbe(default for bar prep subjects): loadbar-prep-questionsskill, run N MBE-style questions. Apply jurisdiction handling (see that skill's## Jurisdiction handling). Label each[UBE/majority]or[state-specific].--essay: loadbar-prep-questions, run N essay prompts. Grade per essay-mode rubric.--flashcards: loadflashcardsskill, run N cards in--drillmode.
- Run N questions one at a time. After each, explain right/wrong and flag rule-body when jurisdictions diverge.
- At session end, write session results:
- If
study-plan.yamlexists: append tosession_historyper the schema in thestudy-planskill. - If not: write to
~/.claude/plugins/config/claude-for-legal/law-student/session-history.yaml.
- If
- Report:
- Score: X/N (percentage)
- Missed: list with subtopic tags
- Weak subtopics this session
- Pattern vs. prior sessions on this subject (if history has 2+ prior)
- What the plan now recommends next
Version History
- 5ceb305 Current 2026-07-05 15:36


