self-assessment

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Self-Assessment & Learning Path Advisor

自我评估与学习路径顾问

Comprehensive interactive assessment that evaluates Claude Code proficiency across 10 feature areas, identifies specific skill gaps, and generates a personalized learning path to level up.
全面的交互式评估,可评估你在10个功能领域的Claude Code熟练度,识别具体技能缺口,并生成个性化的提升学习路径。

Instructions

操作说明

Step 1: Welcome & Choose Assessment Mode

步骤1:欢迎与评估模式选择

Present the user with a choice of assessment depth:
Use AskUserQuestion with these options:
  • Quick Assessment — "8 questions, ~2 minutes. Determines your overall level (Beginner/Intermediate/Advanced) and gives a learning path."
  • Deep Assessment — "5 categories with detailed questions, ~5 minutes. Gives per-topic skill scores, identifies specific gaps, and builds a prioritized learning path."
If user chooses Quick Assessment, go to Step 2A. If user chooses Deep Assessment, go to Step 2B.

为用户提供评估深度选项:
使用AskUserQuestion功能提供以下选项:
  • 快速评估 — "8个问题,约2分钟。确定你的整体水平(初级/中级/高级)并给出学习路径。"
  • 深度评估 — "5个类别,含详细问题,约5分钟。提供分主题技能得分,识别具体缺口,并构建优先排序的学习路径。"
如果用户选择快速评估,进入步骤2A。 如果用户选择深度评估,进入步骤2B。

Step 2A: Quick Assessment

步骤2A:快速评估

Present TWO multi-select questions (AskUserQuestion supports max 4 options each):
Question 1 (header: "Basics"): "Part 1/2: Which of these Claude Code skills do you already have?" Options:
  1. "Start Claude Code and chat" — I can run
    claude
    and interact with it
  2. "Created/edited CLAUDE.md" — I have set up project or user memory
  3. "Used 3+ slash commands" — e.g., /help, /compact, /model, /clear
  4. "Created custom command/skill" — Written a SKILL.md or custom command file
Question 2 (header: "Advanced"): "Part 2/2: Which of these advanced skills do you have?" Options:
  1. "Configured an MCP server" — e.g., GitHub, database, or other external data source
  2. "Set up hooks" — Configured hooks in ~/.claude/settings.json
  3. "Created/used subagents" — Used .claude/agents/ for task delegation
  4. "Used print mode (claude -p)" — Used
    claude -p
    for non-interactive or CI/CD use
Scoring:
  • 0-2 total = Level 1: Beginner
  • 3-5 total = Level 2: Intermediate
  • 6-8 total = Level 3: Advanced
Go to Step 3 with the level result, listing which specific items were NOT checked as gaps.

呈现两道多选问题(AskUserQuestion支持最多4个选项):
问题1(标题:基础能力): "第1/2部分:你已掌握以下哪些Claude Code技能?" 选项:
  1. "启动Claude Code并进行对话" — 我可以运行
    claude
    并与其交互
  2. "创建/编辑CLAUDE.md" — 我已设置项目或用户记忆
  3. "使用3个以上斜杠命令" — 例如/help、/compact、/model、/clear
  4. "创建自定义命令/技能" — 编写过SKILL.md或自定义命令文件
问题2(标题:进阶能力): "第2/2部分:你已掌握以下哪些进阶技能?" 选项:
  1. "配置MCP服务器" — 例如GitHub、数据库或其他外部数据源
  2. "设置钩子" — 在~/.claude/settings.json中配置钩子
  3. "创建/使用子代理" — 使用.claude/agents/进行任务委派
  4. "使用打印模式(claude -p)" — 使用
    claude -p
    进行非交互式或CI/CD场景使用
评分规则:
  • 0-2分 = 1级:初级
  • 3-5分 = 2级:中级
  • 6-8分 = 3级:高级
携带水平结果进入步骤3,列出未勾选的具体技能作为待提升项。

Step 2B: Deep Assessment

步骤2B:深度评估

Present 5 rounds of questions, one AskUserQuestion call per round. Each round covers 2 related feature areas. Use multi-select for all rounds.
IMPORTANT: AskUserQuestion supports max 4 options per question. Each round has exactly 1 question with 4 options covering 2 topics (2 options per topic).

Round 1 — Slash Commands & Memory (header: "Commands")
"Which of these have you done? Select all that apply." Options:
  1. "Created a custom slash command or skill" — Written a SKILL.md file with frontmatter, or created .claude/commands/ files
  2. "Used dynamic context in commands" — Used
    $ARGUMENTS
    ,
    $0
    /
    $1
    , backtick
    !command
    syntax, or
    @file
    references in skill/command files
  3. "Set up project + personal memory" — Created both a project CLAUDE.md and personal ~/.claude/CLAUDE.md (or CLAUDE.local.md)
  4. "Used memory hierarchy features" — Understand the 7-level priority order, used .claude/rules/ directory, path-specific rules, or @import syntax
Scoring for Round 1:
  • Options 1-2 map to Slash Commands (0-2 points)
  • Options 3-4 map to Memory (0-2 points)

Round 2 — Skills & Hooks (header: "Automation")
"Which of these have you done? Select all that apply." Options:
  1. "Installed and used an auto-invoked skill" — A skill that triggers automatically based on its description, without manual /command invocation
  2. "Controlled skill invocation behavior" — Used
    disable-model-invocation
    ,
    user-invocable
    , or
    context: fork
    with agent field in SKILL.md frontmatter
  3. "Set up a PreToolUse or PostToolUse hook" — Configured a hook that runs before/after tool execution (e.g., command validator, auto-formatter)
  4. "Used advanced hook features" — Configured prompt-type hooks, component-scoped hooks in SKILL.md, HTTP hooks, or hooks with custom JSON output (updatedInput, systemMessage)
Scoring for Round 2:
  • Options 1-2 map to Skills (0-2 points)
  • Options 3-4 map to Hooks (0-2 points)

Round 3 — MCP & Subagents (header: "Integration")
"Which of these have you done? Select all that apply." Options:
  1. "Connected an MCP server and used its tools" — e.g., GitHub MCP for PRs/issues, database MCP for queries, or any external data source
  2. "Used advanced MCP features" — Project-scope .mcp.json, OAuth authentication, MCP resources with @mentions, Tool Search, or
    claude mcp serve
  3. "Created or configured custom subagents" — Defined agents in .claude/agents/ with custom tools, model, or permissions
  4. "Used advanced subagent features" — Worktree isolation, persistent agent memory, background tasks with Ctrl+B, agent allowlists with
    Task(agent_name)
    , or agent teams
Scoring for Round 3:
  • Options 1-2 map to MCP (0-2 points)
  • Options 3-4 map to Subagents (0-2 points)

Round 4 — Checkpoints & Advanced Features (header: "Power User")
"Which of these have you done? Select all that apply." Options:
  1. "Used checkpoints for safe experimentation" — Created checkpoints, used Esc+Esc or /rewind, restored code and/or conversation, or used Summarize option
  2. "Used planning mode or extended thinking" — Activated planning via /plan, Shift+Tab, or --permission-mode plan; toggled extended thinking with Alt+T/Option+T
  3. "Configured permission modes" — Used acceptEdits, plan, dontAsk, or bypassPermissions mode via CLI flags, keyboard shortcuts, or settings
  4. "Used remote/desktop/web features" — Used
    claude remote-control
    ,
    claude --remote
    ,
    /teleport
    ,
    /desktop
    , or worktrees with
    claude -w
Scoring for Round 4:
  • Option 1 maps to Checkpoints (0-1 point)
  • Options 2-4 map to Advanced Features (0-3 points, cap at 2)

Round 5 — Plugins & CLI (header: "Mastery")
"Which of these have you done? Select all that apply." Options:
  1. "Installed or created a plugin" — Used a bundled plugin from marketplace, or created a .claude-plugin/ directory with plugin.json manifest
  2. "Used plugin advanced features" — Plugin hooks, plugin MCP servers, LSP configuration, plugin namespaced commands, or --plugin-dir flag for testing
  3. "Used print mode in scripts or CI/CD" — Used
    claude -p
    with --output-format json, --max-turns, piped input, or integrated into GitHub Actions / CI pipelines
  4. "Used advanced CLI features" — Session resumption (-c/-r), --agents flag, --json-schema for structured output, --fallback-model, --from-pr, or batch processing loops
Scoring for Round 5:
  • Options 1-2 map to Plugins (0-2 points)
  • Options 3-4 map to CLI (0-2 points)

呈现5轮问题,每轮调用一次AskUserQuestion。每轮涵盖2个相关功能领域,所有轮次均使用多选模式。
重要提示: AskUserQuestion每个问题最多支持4个选项。每轮包含1个问题,4个选项对应2个主题(每个主题2个选项)。

第1轮 — 斜杠命令与记忆(标题:命令功能)
"你已完成以下哪些操作?请选择所有适用项。" 选项:
  1. "创建自定义斜杠命令或技能" — 编写带前置元数据的SKILL.md文件,或创建.claude/commands/文件
  2. "在命令中使用动态上下文" — 在技能/命令文件中使用
    $ARGUMENTS
    $0
    /
    $1
    、反引号
    !command
    语法或
    @file
    引用
  3. "设置项目+个人记忆" — 同时创建项目CLAUDE.md和个人~/.claude/CLAUDE.md(或CLAUDE.local.md)
  4. "使用记忆层级功能" — 了解7级优先级顺序,使用.claude/rules/目录、路径特定规则或@import语法
第1轮评分:
  • 选项1-2对应斜杠命令(0-2分)
  • 选项3-4对应记忆功能(0-2分)

第2轮 — 技能与钩子(标题:自动化)
"你已完成以下哪些操作?请选择所有适用项。" 选项:
  1. "安装并使用自动触发技能" — 根据描述自动触发、无需手动/command调用的技能
  2. "控制技能调用行为" — 在SKILL.md前置元数据中使用
    disable-model-invocation
    user-invocable
    context: fork
    与agent字段
  3. "设置PreToolUse或PostToolUse钩子" — 配置在工具执行前后运行的钩子(例如命令验证器、自动格式化器)
  4. "使用进阶钩子功能" — 配置提示型钩子、SKILL.md中的组件范围钩子、HTTP钩子或带自定义JSON输出(updatedInput、systemMessage)的钩子
第2轮评分:
  • 选项1-2对应技能系统(0-2分)
  • 选项3-4对应钩子功能(0-2分)

第3轮 — MCP与子代理(标题:集成能力)
"你已完成以下哪些操作?请选择所有适用项。" 选项:
  1. "连接MCP服务器并使用其工具" — 例如用于PR/议题的GitHub MCP、用于查询的数据库MCP或任何外部数据源
  2. "使用进阶MCP功能" — 项目范围的.mcp.json、OAuth认证、带@提及的MCP资源、工具搜索或
    claude mcp serve
  3. "创建或配置自定义子代理" — 在.claude/agents/中定义带自定义工具、模型或权限的代理
  4. "使用进阶子代理功能" — 工作树隔离、持久代理记忆、带Ctrl+B的后台任务、带
    Task(agent_name)
    的代理白名单或代理团队
第3轮评分:
  • 选项1-2对应MCP(0-2分)
  • 选项3-4对应子代理(0-2分)

第4轮 — 检查点与进阶功能(标题:高级用户)
"你已完成以下哪些操作?请选择所有适用项。" 选项:
  1. "使用检查点进行安全实验" — 创建检查点,使用Esc+Esc或/rewind,恢复代码和/或对话,或使用总结选项
  2. "使用规划模式或扩展思考" — 通过/plan、Shift+Tab或--permission-mode plan激活规划;使用Alt+T/Option+T切换扩展思考
  3. "配置权限模式" — 通过CLI标志、键盘快捷键或设置使用acceptEdits、plan、dontAsk或bypassPermissions模式
  4. "使用远程/桌面/网页功能" — 使用
    claude remote-control
    claude --remote
    、/teleport、/desktop或带
    claude -w
    的工作树
第4轮评分:
  • 选项1对应检查点(0-1分)
  • 选项2-4对应进阶功能(0-3分,上限2分)

第5轮 — 插件与CLI(标题:精通级)
"你已完成以下哪些操作?请选择所有适用项。" 选项:
  1. "安装或创建插件" — 使用市场中的捆绑插件,或创建带plugin.json清单的.claude-plugin/目录
  2. "使用插件进阶功能" — 插件钩子、插件MCP服务器、LSP配置、插件命名空间命令或用于测试的--plugin-dir标志
  3. "在脚本或CI/CD中使用打印模式" — 使用带--output-format json、--max-turns、管道输入的
    claude -p
    ,或集成到GitHub Actions/CI流水线
  4. "使用进阶CLI功能" — 会话恢复(-c/-r)、--agents标志、用于结构化输出的--json-schema、--fallback-model、--from-pr或批处理循环
第5轮评分:
  • 选项1-2对应插件系统(0-2分)
  • 选项3-4对应CLI(0-2分)

Step 3: Calculate & Present Results

步骤3:计算并呈现结果

3A: For Quick Assessment

3A:快速评估结果

Count total selections and determine level. Then present:
markdown
undefined
统计总选中项并确定水平,然后呈现:
markdown
undefined

Claude Code Skill Assessment Results

Claude Code技能评估结果

Your Level: [Level 1: Beginner / Level 2: Intermediate / Level 3: Advanced]

你的水平: [1级:初级 / 2级:中级 / 3级:高级]

You checked N/8 items.
[One-line motivational summary based on level]
你已掌握N/8项技能。
[基于水平的一句激励总结]

Your Skill Profile

你的技能档案

AreaStatus
Basic CLI & Conversations[Checked/Gap]
CLAUDE.md & Memory[Checked/Gap]
Slash Commands (built-in)[Checked/Gap]
Custom Commands & Skills[Checked/Gap]
MCP Servers[Checked/Gap]
Hooks[Checked/Gap]
Subagents[Checked/Gap]
Print Mode & CI/CD[Checked/Gap]
领域状态
基础CLI与对话[已掌握/待提升]
CLAUDE.md与记忆[已掌握/待提升]
内置斜杠命令[已掌握/待提升]
自定义命令与技能[已掌握/待提升]
MCP服务器[已掌握/待提升]
钩子功能[已掌握/待提升]
子代理[已掌握/待提升]
打印模式与CI/CD[已掌握/待提升]

Identified Gaps

识别出的待提升项

[For each unchecked item, provide a 1-line description of what to learn and a link to the tutorial]
[针对每个未勾选项,提供1行学习内容说明及教程链接]

Your Personalized Learning Path

你的个性化学习路径

[Output the level-specific learning path — see Step 4]
undefined
[输出对应水平的学习路径 — 参见步骤4]
undefined

3B: For Deep Assessment

3B:深度评估结果

Calculate per-topic scores from the 5 rounds. Each topic gets 0-2 points. Then present:
markdown
undefined
计算5轮的分主题得分,每个主题得分为0-2分,然后呈现:
markdown
undefined

Claude Code Skill Assessment Results

Claude Code技能评估结果

Overall Level: [Level 1 / Level 2 / Level 3]

整体水平: [1级 / 2级 / 3级]

Total Score: N/20 points
[One-line motivational summary]
总得分: N/20分
[一句激励总结]

Your Skill Profile

你的技能档案

Feature AreaScoreMasteryStatus
Slash CommandsN/2[None/Basic/Proficient][Learn/Review/Mastered]
MemoryN/2[None/Basic/Proficient][Learn/Review/Mastered]
SkillsN/2[None/Basic/Proficient][Learn/Review/Mastered]
HooksN/2[None/Basic/Proficient][Learn/Review/Mastered]
MCPN/2[None/Basic/Proficient][Learn/Review/Mastered]
SubagentsN/2[None/Basic/Proficient][Learn/Review/Mastered]
CheckpointsN/1[None/Proficient][Learn/Mastered]
Advanced FeaturesN/2[None/Basic/Proficient][Learn/Review/Mastered]
PluginsN/2[None/Basic/Proficient][Learn/Review/Mastered]
CLIN/2[None/Basic/Proficient][Learn/Review/Mastered]
Mastery key: 0 = None, 1 = Basic, 2 = Proficient
功能领域得分掌握程度状态
斜杠命令N/2[未掌握/基础/熟练][学习/复习/已精通]
记忆功能N/2[未掌握/基础/熟练][学习/复习/已精通]
技能系统N/2[未掌握/基础/熟练][学习/复习/已精通]
钩子功能N/2[未掌握/基础/熟练][学习/复习/已精通]
MCPN/2[未掌握/基础/熟练][学习/复习/已精通]
子代理N/2[未掌握/基础/熟练][学习/复习/已精通]
检查点N/1[未掌握/熟练][学习/已精通]
进阶功能N/2[未掌握/基础/熟练][学习/复习/已精通]
插件系统N/2[未掌握/基础/熟练][学习/复习/已精通]
CLIN/2[未掌握/基础/熟练][学习/复习/已精通]
掌握程度说明: 0 = 未掌握, 1 = 基础, 2 = 熟练

Strength Areas

优势领域

[List topics with score 2/2 — these are mastered]
[列出得分2/2的主题 — 这些已精通]

Priority Gaps (Learn Next)

优先待提升项(下一步学习)

[List topics with score 0 — these need attention first, ordered by dependency]
[列出得分0的主题 — 这些需优先关注,按依赖顺序排序]

Review Areas

复习领域

[List topics with score 1/2 — basics known but advanced features not yet used]
[列出得分1/2的主题 — 已掌握基础但未使用进阶功能]

Your Personalized Learning Path

你的个性化学习路径

[Output gap-specific learning path — see Step 4]

**Overall level calculation for Deep Assessment:**
- 0-6 total points = Level 1: Beginner
- 7-13 total points = Level 2: Intermediate
- 14-20 total points = Level 3: Advanced

---
[输出针对缺口的学习路径 — 参见步骤4]

**深度评估整体水平计算规则:**
- 0-6分 = 1级:初级
- 7-13分 = 2级:中级
- 14-20分 = 3级:高级

---

Step 4: Generate Personalized Learning Path

步骤4:生成个性化学习路径

Based on the assessment results, generate a learning path that is specific to the user's gaps. Do NOT just repeat the generic level path — adapt it.
根据评估结果,生成针对用户技能缺口的学习路径。请勿重复通用水平路径 — 需进行适配。

Rules for Path Generation

路径生成规则

  1. Skip mastered topics: If a topic scored 2/2, do not include it in the path.
  2. Prioritize by dependency order: Slash Commands before Skills, Memory before Subagents, etc. The dependency order is:
    • Slash Commands (no deps) -> Skills (depends on Slash Commands)
    • Memory (no deps) -> Subagents (depends on Memory)
    • CLI Basics (no deps) -> CLI Mastery (depends on all)
    • Checkpoints (no deps)
    • Hooks (depends on Slash Commands)
    • MCP (no deps) -> Plugins (depends on MCP, Skills, Hooks)
    • Advanced Features (depends on all previous)
  3. For score 1/2 topics: Recommend the "deep dive" — link to the specific advanced section they're missing.
  4. Estimate time: Sum only the topics they need to learn/review.
  5. Group into phases: Organize remaining topics into logical phases of 2-3 topics each.
  1. 跳过已精通主题: 如果某主题得分2/2,请勿将其纳入路径。
  2. 按依赖顺序优先: 斜杠命令优先于技能系统,记忆功能优先于子代理,以此类推。依赖顺序为:
    • 斜杠命令(无依赖)-> 技能系统(依赖斜杠命令)
    • 记忆功能(无依赖)-> 子代理(依赖记忆功能)
    • CLI基础(无依赖)-> CLI精通(依赖所有)
    • 检查点(无依赖)
    • 钩子功能(依赖斜杠命令)
    • MCP(无依赖)-> 插件系统(依赖MCP、技能系统、钩子功能)
    • 进阶功能(依赖所有前置内容)
  3. 针对得分1/2的主题: 推荐“深度探索” — 链接到他们缺失的具体进阶章节。
  4. 估算时间: 仅汇总他们需要学习/复习的主题所需时间。
  5. 分阶段组织: 将剩余主题按逻辑分为2-3个主题一组的阶段。

Path Output Format

路径输出格式

markdown
undefined
markdown
undefined

Your Personalized Learning Path

你的个性化学习路径

Estimated time: ~N hours (adjusted for your current skills)
预估时间: ~N小时(根据当前技能调整)

Phase 1: [Phase Name] (~N hours)

阶段1: [阶段名称] (~N小时)

[Only if they have gaps in these areas]
[Topic Name] — [Learn from scratch / Deep dive into advanced features]
  • Tutorial: [link to tutorial directory]
  • Focus on: [specific sections/concepts they need]
  • Key exercise: [one concrete exercise to do]
  • You'll know it's done when: [specific success criterion]
[Topic Name] — ...

[仅当存在对应领域缺口时显示]
[主题名称] — [从零开始学习 / 深度探索进阶功能]
  • 教程: [教程目录链接]
  • 重点关注: [他们需要掌握的具体章节/概念]
  • 关键练习: [一个具体实践任务]
  • 完成标志: [具体成功标准]
[主题名称] — ...

Phase 2: [Phase Name] (~N hours)

阶段2: [阶段名称] (~N小时)

...

...

Recommended Practice Projects

推荐实践项目

Based on your gaps, try these real-world exercises to solidify your learning:
  1. [Project name]: [1-line description combining 2-3 gap topics]
  2. [Project name]: [1-line description]
  3. [Project name]: [1-line description]
undefined
根据你的技能缺口,尝试以下真实场景练习以巩固学习:
  1. [项目名称]: [结合2-3个缺口主题的1行描述]
  2. [项目名称]: [1行描述]
  3. [项目名称]: [1行描述]
undefined

Topic-Specific Recommendations

主题特定推荐

Use these specific recommendations when a topic is a gap:
Slash Commands (score 0):
  • Tutorial: 01-slash-commands/
  • Focus on: Built-in commands reference, creating your first SKILL.md,
    $ARGUMENTS
    syntax
  • Key exercise: Create a
    /optimize
    command and test it
  • Done when: You can create a custom skill with arguments and dynamic context
Slash Commands (score 1 — review):
  • Focus on: Dynamic context with
    !
    backtick`` syntax,
    @file
    references,
    disable-model-invocation
    vs
    user-invocable
    control
  • Done when: You can create a skill that injects live command output and controls its own invocation behavior
Memory (score 0):
  • Tutorial: 02-memory/
  • Focus on: CLAUDE.md creation,
    /init
    and
    /memory
    commands,
    #
    prefix for quick updates
  • Key exercise: Create a project CLAUDE.md with your coding standards
  • Done when: Claude remembers your preferences across sessions
Memory (score 1 — review):
  • Focus on: 7-level hierarchy and priority order, .claude/rules/ directory with path-specific rules,
    @import
    syntax (max depth 5), Auto Memory MEMORY.md (200-line limit)
  • Done when: You have modular rules for different directories and understand the full hierarchy
Skills (score 0):
  • Tutorial: 03-skills/
  • Focus on: SKILL.md format, auto-invocation via description field, progressive disclosure (3 loading levels)
  • Key exercise: Install the code-review skill and verify it auto-triggers
  • Done when: A skill automatically activates based on conversation context
Skills (score 1 — review):
  • Focus on:
    context: fork
    with
    agent
    field for subagent execution,
    disable-model-invocation
    vs
    user-invocable
    , 2% context budget, bundled resources (scripts/, references/, assets/)
  • Done when: You can create a skill that runs in a subagent with forked context
Hooks (score 0):
  • Tutorial: 06-hooks/
  • Focus on: Configuration structure (matcher + hooks array), PreToolUse/PostToolUse events, exit codes (0=success, 2=block), JSON input/output format
  • Key exercise: Create a PreToolUse hook that validates Bash commands
  • Done when: A hook blocks dangerous commands before execution
Hooks (score 1 — review):
  • Focus on: All 25 hook events (including PostToolUseFailure, StopFailure, TaskCreated, CwdChanged, FileChanged, PostCompact, Elicitation, ElicitationResult), 4 hook types (command, http, prompt, agent), component-scoped hooks in SKILL.md frontmatter, HTTP hooks with allowedEnvVars,
    CLAUDE_ENV_FILE
    for SessionStart/CwdChanged/FileChanged
  • Done when: You can create a prompt-based Stop hook and a component-scoped hook in a skill
MCP (score 0):
  • Tutorial: 05-mcp/
  • Focus on:
    claude mcp add
    command, transport types (HTTP recommended), GitHub MCP setup, environment variable expansion
  • Key exercise: Add GitHub MCP server and query PRs
  • Done when: You can query live data from an external service via MCP
MCP (score 1 — review):
  • Focus on: Project-scope .mcp.json (requires team approval), OAuth 2.0 auth, MCP resources with
    @server:resource
    mentions, Tool Search (ENABLE_TOOL_SEARCH),
    claude mcp serve
    , output limits (10k/25k/50k)
  • Done when: You have a project .mcp.json and understand Tool Search auto mode
Subagents (score 0):
  • Tutorial: 04-subagents/
  • Focus on: Agent file format (.claude/agents/*.md), built-in agents (general-purpose, Plan, Explore), tools/model/permissionMode config
  • Key exercise: Create a code-reviewer subagent and test delegation
  • Done when: Claude delegates code review to your custom agent
Subagents (score 1 — review):
  • Focus on: Worktree isolation (
    isolation: worktree
    ), persistent agent memory (
    memory
    field with scopes), background agents (Ctrl+B/Ctrl+F), agent allowlists with
    Task(agent_name)
    , agent teams (
    --teammate-mode
    )
  • Done when: You have a subagent with persistent memory running in worktree isolation
Checkpoints (score 0):
  • Tutorial: 08-checkpoints/
  • Focus on: Esc+Esc and /rewind access, 5 rewind options (restore code+conversation, restore conversation, restore code, summarize, cancel), limitations (bash filesystem ops not tracked)
  • Key exercise: Make experimental changes, then rewind to restore
  • Done when: You can confidently experiment knowing you can rewind
Advanced Features (score 0):
  • Tutorial: 09-advanced-features/
  • Focus on: Planning mode (/plan or Shift+Tab), permission modes (5 types), extended thinking (Alt+T toggle)
  • Key exercise: Use planning mode to design a feature, then implement it
  • Done when: You can switch between planning and implementation modes fluently
Advanced Features (score 1 — review):
  • Focus on: Remote control (
    claude remote-control
    ), web sessions (
    claude --remote
    ), desktop handoff (
    /desktop
    ), worktrees (
    claude -w
    ), task lists (Ctrl+T), managed settings for enterprise
  • Done when: You can hand off sessions between CLI, web, and desktop
Plugins (score 0):
  • Tutorial: 07-plugins/
  • Focus on: Plugin structure (.claude-plugin/plugin.json), what plugins bundle (commands, agents, MCP, hooks, settings), installation from marketplace
  • Key exercise: Install a plugin and explore its components
  • Done when: You understand when to use a plugin vs standalone components
Plugins (score 1 — review):
  • Focus on: Creating plugin.json manifest, plugin hooks (hooks/hooks.json), LSP configuration (.lsp.json),
    ${CLAUDE_PLUGIN_ROOT}
    variable, --plugin-dir for testing, marketplace publishing
  • Done when: You can create and test a plugin for your team
CLI (score 0):
  • Tutorial: 10-cli/
  • Focus on: Interactive vs print mode,
    claude -p
    with piping,
    --output-format json
    , session management (-c/-r)
  • Key exercise: Pipe a file to
    claude -p
    and get JSON output
  • Done when: You can use Claude non-interactively in a script
CLI (score 1 — review):
  • Focus on: --agents flag with JSON config, --json-schema for structured output, --fallback-model, --from-pr, --strict-mcp-config, batch processing with for loops,
    claude mcp serve
  • Done when: You have a CI/CD script that uses Claude with structured JSON output

当某主题为待提升项时,使用以下具体推荐:
斜杠命令(得分0):
  • 教程: 01-slash-commands/
  • 重点关注: 内置命令参考、创建首个SKILL.md、
    $ARGUMENTS
    语法
  • 关键练习: 创建/optimize命令并测试
  • 完成标志: 你可以创建带参数和动态上下文的自定义技能
斜杠命令(得分1 — 复习):
  • 重点关注: 带
    !
    反引号``语法的动态上下文、
    @file
    引用、
    disable-model-invocation
    user-invocable
    控制
  • 完成标志: 你可以创建注入实时命令输出并控制自身调用行为的技能
记忆功能(得分0):
  • 教程: 02-memory/
  • 重点关注: CLAUDE.md创建、/init和/memory命令、用于快速更新的#前缀
  • 关键练习: 创建包含你的编码规范的项目CLAUDE.md
  • 完成标志: Claude在会话间记住你的偏好
记忆功能(得分1 — 复习):
  • 重点关注: 7级层级与优先级顺序、带路径特定规则的.claude/rules/目录、@import语法(最大深度5)、自动记忆MEMORY.md(200行限制)
  • 完成标志: 你拥有针对不同目录的模块化规则并理解完整层级
技能系统(得分0):
  • 教程: 03-skills/
  • 重点关注: SKILL.md格式、通过描述字段自动触发、渐进式披露(3个加载级别)
  • 关键练习: 安装代码审查技能并验证其自动触发
  • 完成标志: 技能根据对话上下文自动激活
技能系统(得分1 — 复习):
  • 重点关注: 用于子代理执行的
    context: fork
    agent
    字段、
    disable-model-invocation
    user-invocable
    、2%上下文预算、捆绑资源(scripts/、references/、assets/)
  • 完成标志: 你可以创建在子代理中运行且带有分叉上下文的技能
钩子功能(得分0):
  • 教程: 06-hooks/
  • 重点关注: 配置结构(匹配器+钩子数组)、PreToolUse/PostToolUse事件、退出码(0=成功, 2=阻止)、JSON输入/输出格式
  • 关键练习: 创建验证Bash命令的PreToolUse钩子
  • 完成标志: 钩子在危险命令执行前阻止其运行
钩子功能(得分1 — 复习):
  • 重点关注: 全部25个钩子事件(包括PostToolUseFailure、StopFailure、TaskCreated、CwdChanged、FileChanged、PostCompact、Elicitation、ElicitationResult)、4种钩子类型(command、http、prompt、agent)、SKILL.md前置元数据中的组件范围钩子、带allowedEnvVars的HTTP钩子、用于SessionStart/CwdChanged/FileChanged的
    CLAUDE_ENV_FILE
  • 完成标志: 你可以创建基于提示的Stop钩子和技能中的组件范围钩子
MCP(得分0):
  • 教程: 05-mcp/
  • 重点关注:
    claude mcp add
    命令、传输类型(推荐HTTP)、GitHub MCP设置、环境变量扩展
  • 关键练习: 添加GitHub MCP服务器并查询PR
  • 完成标志: 你可以通过MCP查询外部服务的实时数据
MCP(得分1 — 复习):
  • 重点关注: 项目范围的.mcp.json(需团队批准)、OAuth 2.0认证、带
    @server:resource
    提及的MCP资源、工具搜索(ENABLE_TOOL_SEARCH)、
    claude mcp serve
    、输出限制(10k/25k/50k)
  • 完成标志: 你拥有项目.mcp.json并理解工具搜索自动模式
子代理(得分0):
  • 教程: 04-subagents/
  • 重点关注: 代理文件格式(.claude/agents/*.md)、内置代理(通用型、Plan、Explore)、tools/model/permissionMode配置
  • 关键练习: 创建代码审查子代理并测试委派
  • 完成标志: Claude将代码审查委派给你的自定义代理
子代理(得分1 — 复习):
  • 重点关注: 工作树隔离(
    isolation: worktree
    )、持久代理记忆(带作用域的
    memory
    字段)、后台代理(Ctrl+B/Ctrl+F)、带
    Task(agent_name)
    的代理白名单、代理团队(
    --teammate-mode
  • 完成标志: 你拥有带持久记忆且在工作树隔离中运行的子代理
检查点(得分0):
  • 教程: 08-checkpoints/
  • 重点关注: Esc+Esc和/rewind访问、5种回退选项(恢复代码+对话、恢复对话、恢复代码、总结、取消)、限制(bash文件系统操作未被跟踪)
  • 关键练习: 进行实验性更改,然后回退恢复
  • 完成标志: 你可以放心进行实验,知道可以回退
进阶功能(得分0):
  • 教程: 09-advanced-features/
  • 重点关注: 规划模式(/plan或Shift+Tab)、权限模式(5种类型)、扩展思考(Alt+T切换)
  • 关键练习: 使用规划模式设计功能,然后实现
  • 完成标志: 你可以流畅切换规划与实现模式
进阶功能(得分1 — 复习):
  • 重点关注: 远程控制(
    claude remote-control
    )、网页会话(
    claude --remote
    )、桌面移交(/desktop)、工作树(
    claude -w
    )、任务列表(Ctrl+T)、企业托管设置
  • 完成标志: 你可以在CLI、网页和桌面之间移交会话
插件系统(得分0):
  • 教程: 07-plugins/
  • 重点关注: 插件结构(.claude-plugin/plugin.json)、插件捆绑内容(命令、代理、MCP、钩子、设置)、从市场安装
  • 关键练习: 安装插件并探索其组件
  • 完成标志: 你理解何时使用插件 vs 独立组件
插件系统(得分1 — 复习):
  • 重点关注: 创建plugin.json清单、插件钩子(hooks/hooks.json)、LSP配置(.lsp.json)、
    ${CLAUDE_PLUGIN_ROOT}
    变量、用于测试的--plugin-dir、市场发布
  • 完成标志: 你可以为团队创建并测试插件
CLI(得分0):
  • 教程: 10-cli/
  • 重点关注: 交互式vs打印模式、带管道的
    claude -p
    --output-format json
    、会话管理(-c/-r)
  • 关键练习: 将文件管道到
    claude -p
    并获取JSON输出
  • 完成标志: 你可以在脚本中非交互式使用Claude
CLI(得分1 — 复习):
  • 重点关注: 带JSON配置的--agents标志、用于结构化输出的--json-schema、--fallback-model、--from-pr、--strict-mcp-config、带for循环的批处理、
    claude mcp serve
  • 完成标志: 你拥有使用Claude生成结构化JSON输出的CI/CD脚本

Step 5: Offer Follow-up Actions

步骤5:提供后续操作选项

After presenting results, ask the user what they'd like to do next:
Use AskUserQuestion with these options:
  • Start learning — "Help me begin the first topic in my learning path right now"
  • Deep dive on a gap — "Explain one of my gap areas in detail so I can learn it here"
  • Practice project — "Set up a practice project that covers my gap areas"
  • Retake assessment — "I want to retake the quiz (maybe the other mode)"
If Start learning: Read the README.md of the first gap tutorial and walk the user through the first exercise. If Deep dive on a gap: Ask which gap topic, then read the relevant tutorial README.md and explain the key concepts with examples. If Practice project: Design a small project that combines 2-3 of their gap topics with concrete steps. If Retake assessment: Go back to Step 1.
呈现结果后,询问用户下一步操作:
使用AskUserQuestion提供以下选项:
  • 开始学习 — "现在帮我开始学习路径中的第一个主题"
  • 深入探索缺口领域 — "详细解释我的一个缺口领域,让我可以在这里学习"
  • 实践项目 — "搭建一个涵盖我的缺口领域的实践项目"
  • 重新评估 — "我想重新参加测验(可能换一种模式)"
如果选择开始学习: 读取第一个缺口教程的README.md并引导用户完成第一个练习。 如果选择深入探索缺口领域: 询问哪个缺口主题,然后读取相关教程README.md并通过示例解释关键概念。 如果选择实践项目: 设计一个结合2-3个缺口主题的小型项目并提供具体步骤。 如果选择重新评估: 返回步骤1。

Error Handling

错误处理

User selects no items in a round

用户在某一轮未选择任何项

Treat as 0 points for that round's topics. Continue to next round.
视为该轮对应主题得0分,继续下一轮。

User selects no items in any round

用户在所有轮次均未选择任何项

Assign Level 1: Beginner. Encourage starting from the beginning. Output the full Level 1 path.
分配1级:初级。鼓励从头开始学习,输出完整的1级路径。

User wants to retake

用户想要重新评估

Re-run from Step 1 with a fresh assessment.
从步骤1重新开始全新评估。

User disagrees with their level

用户对自身水平有异议

Acknowledge their preference. Ask which level they identify with. Present the path for their chosen level with a prerequisites check for topics they may have missed.
认可他们的想法,询问他们认为自己属于哪个水平。呈现对应水平的路径,并检查他们可能遗漏的主题前置要求。

User asks about a specific topic

用户询问特定主题

If the user says something like "tell me about hooks" or "I want to learn MCP" during the assessment, note it. After presenting results, highlight that topic in their learning path regardless of score.
如果用户在评估过程中说“告诉我关于钩子的内容”或“我想学习MCP”,请记录下来。呈现结果后,无论得分如何,在学习路径中突出该主题。

Validation

触发验证

Triggering test suite

应触发场景:

Should trigger:
  • "assess my level"
  • "take the quiz"
  • "find my level"
  • "where should I start"
  • "what level am I"
  • "learning path quiz"
  • "self-assessment"
  • "what should I learn next"
  • "check my skills"
  • "skill check"
  • "level up"
  • "how good am I at Claude Code"
  • "evaluate my Claude Code knowledge"
Should NOT trigger:
  • "review my code"
  • "create a skill"
  • "help me with MCP"
  • "explain slash commands"
  • "what is a checkpoint"
  • "assess my level"
  • "take the quiz"
  • "find my level"
  • "where should I start"
  • "what level am I"
  • "learning path quiz"
  • "self-assessment"
  • "what should I learn next"
  • "check my skills"
  • "skill check"
  • "level up"
  • "how good am I at Claude Code"
  • "evaluate my Claude Code knowledge"

不应触发场景:

  • "review my code"
  • "create a skill"
  • "help me with MCP"
  • "explain slash commands"
  • "what is a checkpoint"