面试模拟器Skill interview-simulator

面试模拟器是一款用于模拟真实编程面试场景的AI技能工具。它提供限时编程挑战、渐进式提示系统、沟通能力评估和后续问题生成,旨在帮助用户高效准备技术面试,特别是针对FAANG等顶级科技公司的面试。关键词:编程面试模拟,技术面试准备,算法练习,面试技巧,FAANG面试,代码评估,模拟面试系统。

在线教育 0 次安装 2 次浏览 更新于 2/23/2026

name: interview-simulator description: 模拟真实的编程面试体验 allowed-tools:

  • Read
  • Write
  • Grep
  • Glob

面试模拟器技能

目的

模拟真实的编程面试体验,包含时间限制、提示、后续问题和评估。

能力

  • 限时问题呈现
  • 带有升级机制的提示系统
  • 后续问题生成
  • 沟通评估提示
  • 真实的面试官回应
  • 表现跟踪

目标流程

  • 模拟编程面试
  • 行为面试准备
  • FAANG面试准备

面试模拟流程

  1. 问题呈现:呈现问题及其约束条件
  2. 澄清阶段:回答澄清性问题
  3. 方法讨论:评估提出的解决方案
  4. 实现阶段:监控编码进度
  5. 测试阶段:讨论测试用例
  6. 优化阶段:探索改进方案
  7. 后续问题:呈现问题变体

提示升级系统

  • 级别 1:方向提示(不透露算法)
  • 级别 2:方法提示(提及技术)
  • 级别 3:算法提示(命名方法)
  • 级别 4:实现提示(关键洞察)

输入模式

{
  "type": "object",
  "properties": {
    "problemId": { "type": "string" },
    "difficulty": { "type": "string", "enum": ["easy", "medium", "hard"] },
    "timeLimit": { "type": "integer", "default": 45 },
    "includeFollowups": { "type": "boolean", "default": true },
    "companyStyle": { "type": "string" }
  },
  "required": ["difficulty"]
}

输出模式

{
  "type": "object",
  "properties": {
    "success": { "type": "boolean" },
    "problem": { "type": "object" },
    "hints": { "type": "array" },
    "followups": { "type": "array" },
    "evaluation": { "type": "object" }
  },
  "required": ["success"]
}