一键导入
verify
Verify your current Claude Code Hero quest level. Use when the learner types /verify, asks to check their work, or wants to see quest progress.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Verify your current Claude Code Hero quest level. Use when the learner types /verify, asks to check their work, or wants to see quest progress.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Claude Code Hero Level 1: The Map Room -- explore the project's .claude/ directory and document what lives there
Claude Code Hero Level 2: The Tome of First Instructions -- create .claude/CLAUDE.md with real personal instructions
Claude Code Hero Level 0: The Threshold -- learn the basics of talking to Claude Code before entering the dungeon
Claude Code Hero Level 9: The Artificer's Workshop -- create a minimal Claude Code plugin (capstone)
Claude Code Hero progress report -- shows the learner's quest log with completed, current, and locked quests
Claude Code Hero Level 3: The Goblin Lair of Commands -- create a custom slash command in .claude/commands/
| name | verify |
| description | Verify your current Claude Code Hero quest level. Use when the learner types /verify, asks to check their work, or wants to see quest progress. |
| argument-hint | [level-number] |
| allowed-tools | Bash("jq '.current_level' .claude/claude-code-hero.json"), Read |
Verify quest completion for Claude Code Hero. The CLI is the source of truth -- do not perform semantic evaluation.
$ARGUMENTS
<current_level>
!jq '.current_level' .claude/claude-code-hero.json
</current_level>
Always pass a level number to the CLI.
/verify 5 -- user gave a level number. Run ruby scripts/cli.rb verify 5. Report PASS or FAIL. Done./verify -- no argument. Run ruby scripts/cli.rb verify <current_level>. Report PASS or FAIL. Done.