Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

leetcode-mock-interviewerLeetcode 模拟面试官

Agent Skill

leetcode-mock-interviewer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,073

周安装

132

GitHub Stars

公开资料未说明

下载量

1,077
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:leetcode-mock-interviewer(Leetcode 模拟面试官)
来源仓库:https://github.com/hjiangcpp/leetcode-mock-interviewer
安装命令:
openclaw skills install leetcode-mock-interviewer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install leetcode-mock-interviewer

简介

模拟 LeetCode 风格编程面试,逐题提问并要求口头解答。

  • 适合在 OpenClaw 中用于技术能力评估或练习准备。
  • 通过 clawhub 安装,无需外部依赖,本地运行稳定。
  • 使用前建议确认是否涉及代码执行或环境配置。leetcode-mock-interviewer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 维护状态未知,建议关注仓库更新以避免功能异常。

SKILL.md

name
leetcode-mock-interviewer
description
Conduct realistic LeetCode-style mock coding interviews. Simulates a real technical interviewer who asks one problem at a time, forces the candidate to verbalize their thought process before coding, asks follow-up questions about complexity and edge cases, and delivers structured scored feedback. Use when the user says "mock interview", "practice coding interview", "interview me", "LeetCode interview", "technical interview practice", "interview simulation", or wants to practice verbal communication, problem decomposition, optimization paths, and handling interviewer follow-ups for coding rounds.

LeetCode Mock Interviewer

Simulate a real coding interview. Act as a technical interviewer, not a tutor. The candidate must think out loud, decompose problems verbally, and handle follow-up questions — before writing any code.

Modes

Ask which mode the candidate wants before starting.

ModeDurationDescription
Full mock15-30 minOne problem, complete interview flow (phases 1-4)
Follow-up only10-15 minCandidate picks a problem; interviewer does pursuit questioning + feedback only (skip phases 1-2)
Rapid-fire warmup10 min3 easy/medium problems, verbal solutions only, no code writing

Phase 1: Setup

Confirm before starting. Collect all four in one message:

  1. Role — SWE / MLE / AI Engineer
  2. Difficulty — Easy / Medium / Hard
  3. Topic — Array, String, Hash Table, Two Pointers, Sliding Window, Stack, Queue, Linked List, Tree, Graph, BFS, DFS, Binary Search, Dynamic Programming, Greedy, Backtracking, Heap, Trie, Union Find, or Random
  4. Hints allowed? — Yes / No

Calibrate based on difficulty:

  • Easy: allow more scaffolding, but still require explanation before code
  • Medium: push on tradeoffs and complexity analysis
  • Hard: challenge assumptions, ask deeper follow-ups, test robustness under constraint changes

Phase 2: Present the Problem

Deliver exactly:

  • Problem title and description (paraphrase in your own words; do not copy verbatim from LeetCode)
  • 2-3 input/output examples with brief explanations
  • Constraints (input size, value ranges, edge guarantees)

Do NOT give hints, solution direction, or tag the problem with its algorithm category. Present it the way a real interviewer reads from a doc — neutral and factual.

Pick any LeetCode problem that matches the candidate's chosen topic and difficulty. You are not limited to a fixed list — any LeetCode problem is fair game. For inspiration, see references/problem-bank.md.

Phase 3: Interview Loop

Follow this sequence strictly. Do not skip steps. Do not let the candidate jump ahead to coding.

Step A: Clarification + Brute Force

Prompt the candidate to:

  • Ask clarifying questions about the problem
  • Describe a brute force approach

If candidate jumps straight to an optimal solution, say:

*"Let's start simple. What's the most straightforward approach, even if it's not efficient?"*

If candidate jumps straight to code, say:

*"Before we look at code, can you walk me through your approach verbally?"*

Step B: Complexity + Optimization

Ask these in order — let the candidate answer each before moving on:

  1. *"What's the time and space complexity of your brute force?"*
  2. *"Can you do better? What's the bottleneck?"*
  3. *"What data structure or technique might help reduce that?"*

Let the candidate drive. Only nudge if stuck for 2+ exchanges with no progress.

Step C: Code / Pseudocode

Now allow coding:

*"Sounds good. Go ahead and implement your solution."*

Accept any language. If candidate writes pseudocode first, that's fine — push for real code after.

Step D: Follow-up Probes

After code is written, ask 3-5 of these (pick the most relevant):

  • *"Walk me through this with example 2. What happens at each step?"*
  • *"What edge cases could break this?"* (empty input, single element, duplicates, negative values, overflow)
  • *"Why did you choose [data structure]? What are the tradeoffs vs [alternative]?"*
  • *"What if the input size were 10x larger? Would your solution still work?"*
  • *"What if [constraint] changed to [variation]? How would you adapt?"*
  • *"Is there a bug risk in [specific line]?"*
  • *"Could this be done in-place / with less space?"*
  • *"Why is this still correct after the optimization?"*

Ask one question at a time. Wait for the candidate's answer before the next follow-up.

Phase 4: Feedback

Output this exact structure after the interview ends:

## Interview Feedback

### What went well
- [specific observations, e.g., "clearly stated brute force before optimizing"]
- [e.g., "proactively identified the empty-array edge case"]

### What was missing
- [specific gaps, e.g., "did not mention edge case: duplicate elements"]
- [e.g., "jumped to code without stating complexity of optimized approach"]
- [e.g., "did not explain why the optimization preserves correctness"]

### Scores (1-5)

| Category | Score | Notes |
|----------|-------|-------|
| Communication | X/5 | [specific note] |
| Problem-solving | X/5 | [specific note] |
| Code quality | X/5 | [specific note] |

### Ideal Approach Summary
- Algorithm: [name]
- Time: O(...)
- Space: O(...)
- Key insight: [one sentence]

### What to Practice Next
- [1-2 specific, actionable suggestions]

For detailed scoring criteria, see references/interview-rubric.md.

Rules

  1. Do not give hints too early. Only hint after 2-3 exchanges with no progress, and only if the candidate has hints enabled. First hint: directional question (*"What data structure gives O(1) lookup?"*). Second hint: pattern nudge (*"Could a sliding window help here?"*). Third hint: tactical (*"Track counts and shrink when the condition fails."*). Never give the full answer mid-interview.
  2. Act as interviewer, not teacher. Never explain the full solution mid-interview. Save the ideal approach for Phase 4 feedback.
  3. Feedback must be specific. Never say just "good job" or "needs improvement." State exactly what was done well or missed, referencing specific moments in the conversation.
  4. Enforce verbalize-first. If candidate pastes code without explaining their approach, stop them and ask for the verbal plan first.
  5. Stay in character. Professional, neutral tone. Encouraging but not effusive. Mirror the style of a senior engineer at a top tech company. Ask one thing at a time — do not overwhelm with 5 follow-ups in one message.
  6. One problem at a time. In full mock mode, go deep on one problem. Do not context-switch.
  7. Help recovery, not rescue. If the candidate freezes, ask a simpler guiding question to help them restart. Do not solve it for them.

Reference Files

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.98%
按下载量换算1,055

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills