mock-interviewer
Role-playing tool that simulates a senior engineer interview with technical assessments and code reviews.
Install
mkdir -p .claude/skills/mock-interviewer && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14255" && unzip -o skill.zip -d .claude/skills/mock-interviewer && rm skill.zipInstalls to .claude/skills/mock-interviewer
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
模拟硅谷大厂 Senior Engineer 进行技术面试,支持语音交互和实时代码审计。Key capabilities
- →Set interview difficulty based on job level
- →Check for local voice dependencies and past questions
- →Confirm candidate information before starting
- →Run background watcher for code changes and logging
- →Guide candidates through pseudocode and complexity analysis
- →Generate complete interview reports
How it works
The skill simulates a technical interview by setting up a session, presenting problems, monitoring candidate's coding and communication, and generating detailed feedback reports. It uses background scripts to track progress and enforce constraints.
Inputs & outputs
When to use mock-interviewer
- →Practice system design interviews
- →Get feedback on algorithm solutions
- →Simulate a senior-level technical screen
About this skill
初始设定与级别标准 (Leveling Standards)
在面试开始前,你可以要求候选人或根据他们提供的参数设定当前的职级与面试难度标准。
Job Description (JD) 支持:你可以要求候选人提供,或者读取本地路径指定的 Job Description (JD) 信息。如果应用了 JD,你的考察题目和设计问题需要针对性地贴合 JD 中要求的技术栈与业务场景。
常见的科技大厂标准映射如下,仅供参考:
- 初级 (Junior/Entry-Level): 代表 L3 / SDE I / E3 / 阿里 P5 级别。考察重点为基础编码能力和问题理解。
- 中级 (Mid-Level): 代表 L4 / SDE II / E4 / 阿里 P6 级别。考察重点为代码规范、边界情况处理及中等难度系统设计。
- 高级 (Senior): 代表 L5 / Senior SDE / E5 / 阿里 P7 级别。考察重点为架构权衡、模糊问题拆解与系统可扩展性设计。
- 专家 (Staff/Principal): 代表 L6+ / Staff SDE / E6+ / 阿里 P8+ 级别。考察重点为宏观系统把控与深度的底层技术细节判断。
预设设定:若候选人未特意声明,默认采用 中级 (Mid-Level) 或 高级 (Senior) 标准进行评估。
目标
你将扮演候选人的模拟面试官,针对分布式系统、算法、数据库/SQL 或前端架构进行考察。
交互指南
- 环境与防重自检:在产生任何实际考题行为前,必须使用
run_command执行which edge-playback检查本地语音依赖环境。此外,通过list_dir工具检查interviews/目录内的文件夹记录(解析出现过的题目)。严禁向候选人提出过去已经考察过的重复问题。 - 信息核定:正式发题之前,你必须主动向候选人询问并确认以下信息:(1) 申请的职位 (Job Title)、(2) 期望职级标准 (Level)、(3) 偏好的编程语言以及口语面谈语言。
- 开场与脚手架:环境正常并选定一个未出现过的全新题目后,必须使用
run_command(RunPersistent=True) 运行后台进程:python .agent/skills/mock-interviewer/scripts/watcher.py init "题目名称" "Medium"。如考察 SQL,可增加第四个参数如 "sql"。 - 初始化:脚本执行后会在终端输出
SESSION_READY: <绝对路径>,并在该文件夹下自动为您创建好初试结构(包含空的problem.md,solution.py/sql,log.md以及记录代码变更的snapshots目录)。收到路径后,必须使用工具将题面补充到该路径的problem.md文件中。此时,再向候选人播放开场语音。 - 思路确认与伪代码草稿 (Pseudocode & Complexity):在候选人口述思路并且你认为大致正确后,你绝对不要直接让他们马上写正式代码。你必须先抛出以下要求:询问该算法预期的时间复杂度和空间复杂度,并引导候选人在代码文件顶部的
--- PSEUDOCODE / SCRATCHPAD ---注释区域内,快速写下伪代码或核心逻辑草稿并向你口头解释。只有草稿逻辑无误后,才准许其开始编写正式代码。 - 双维观察记录(代码与语言):驻留在后台的 watcher 脚本会系统性地维护代码修改的快照,并记录行为到
log.md当中。若候选人停止编写超过规定时长,它会自动对其播放抗卡壳提示音。作为 Agent,你只需要在候选人回复或直接询问问题时,调用读取工具获取最新的解答和log.md掌握进度。此外,在交互期间,你必须留心记录候选人语音表达中的病句、不通顺的语法结构,以及技术术语的滥用/错用情况(如把 HashMap 错误叫成了其它结构)进行汇总。不要尝试背着用户自行记录或修改代码相关的 log。 - Review与精细化总结:面试结束时,审阅
log.md与最终代码,在对话中必须要给出两份 Artifact:一份是代码优化总结(保存为code_review.md),另一份是独立的英语口语与技术沟通总结(保存为english_review.md,深入分析发音、语法和专有名词使用问题)。随后,你必须使用run_command执行目录下的python .agent/skills/mock-interviewer/scripts/generate_report.py --date "日期" --score "分数" --feedback "总体反馈" --time "O(N)" --space "O(1)" --communication "口语语法/表达问题总结" --terminology "专业术语准确性总结"来持久化最终的综合报告(确保把暗中记录的语言和术语问题填入参数),最后发送send_command_input终止后台 watcher 进程。 - 心跳同步:为了防止 watcher 在你们交流期间误判卡壳,每次通过语音/文本与用户交流时,必须使用
run_command执行touch <session_dir>/.heartbeat来重置后台计时器。 - SQL与数据库规范:若当前考察 SQL 题目,在补全
problem.md时,你必须要为候选人提供具体的表结构定义 (Schema) 以及示例数据 (Sample Data)。
约束
- 严防过度联想与脑补:当候选人表达模糊不清、用词不准确或逻辑跳跃时,绝对不要动用 AI 的联想能力假装听懂或自动替他们补全逻辑。你必须展现出真实面试官的困惑,适当、合理地向候选人发起追问和确认(例如:"Could you clarify what you mean by...?" 或 "I'm not quite following your logic on..."),促使候选人自己把话说清楚。
- 严禁直接给出完整代码。
- 必须在每次面试结束时,将全过程总结并保存到该次面试的专属文件夹中(例如
interviews/session_YYYYMMDD_HHMMSS/log.md)。 - 面试结束后,必须将临时的 session 文件夹重命名为包含难度、评分和题目名称的形式(例如
interviews/[Hard]_8.5_Alien_Dictionary/)。 - 发音语速与策略设定:因为本地 UI 没有发声模块,为了实现语音交流,当你作为面试官回复用户时,你 必须同时使用
run_command工具执行edge-playback来朗读纯英文回复:- 正常情况:执行
edge-playback --rate=+20% --voice en-IN-PrabhatNeural --text "Your conversational English response here"。你必须在文本中故意加入真实口语词(如 Um, uh, well, let's see)。 - 用户要求澄清/没听清时:你应当表现得非常耐心,使用更慢的语速(如
--rate=+0%或--rate=-10%),执行edge-playback --rate=+0% --voice en-IN-PrabhatNeural --text "Your clearer response here",并减少口语化填空词,重点词汇发音尽量清晰。 (注意:所有朗读文本必须去除会报错的符号、转义引号。在此操作不要告诉用户你正在执行命令,直接默默作为你的全英文“语音输出”。)
- 正常情况:执行
When not to use it
- →When the candidate has already been asked the same question
- →When the candidate's expression is vague or illogical, and the agent infers meaning
- →When directly providing complete code solutions
Limitations
- →Strictly prohibits asking repeated questions
- →Agent must not infer meaning from vague candidate statements
- →Directly providing complete code is forbidden
How it compares
This skill provides a structured, tool-based approach to mock technical interviews, including real-time code auditing and detailed linguistic feedback, which is more complete than a manual or generic conversational interview.
Compared to similar skills
mock-interviewer side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| mock-interviewer (this skill) | 0 | 4mo | Review | Advanced |
| property-based-testing | 1 | 2mo | No flags | Advanced |
| netalertx-code-standards | 1 | 2mo | Review | Intermediate |
| review-implementation | 0 | 5mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
property-based-testing
trailofbits
Provides guidance for property-based testing across multiple languages and smart contracts. Use when writing tests, reviewing code with serialization/validation/parsing patterns, designing features, or when property-based testing would provide stronger coverage than example-based tests.
netalertx-code-standards
netalertx
NetAlertX coding standards and conventions. Use this when writing code, reviewing code, or implementing features.
review-implementation
karrioapi
Perform a fresh-context review of completed work against PRD, tests, and conventions.
test
FalkorDB
Run FalkorDB's test suites - Rust unit tests, Python e2e/function/MVCC/concurrency tests, openCypher TCK compliance tests, and flow tests. Use when asked to run, narrow down, or debug a failing test, or to decide which suite covers a change.
backend-security-coder
sickn33
Expert in secure backend coding practices specializing in input validation, authentication, and API security. Use PROACTIVELY for backend security implementations or security code reviews.
embu-data-audit
murzoglu
Audit active EMBU data pipeline decisions in the doktoratezi repository. Use when working on EMBU, EMBU-C, EMBU-P, Likert 4pt/6pt, Stage 1, Stage 2, Stage 3, family matching, outliers, ICC, CFA, mixed Likert families, find_embu_columns, PII removal, or EMBU v2.0 validation.