Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计未展示

developer-interview-loop-design开发者面试循环设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

264

周安装

11

GitHub Stars

公开资料未说明

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:developer-interview-loop-design(开发者面试循环设计)
来源仓库:https://github.com/clous-ai/agents
仓库路径:skills/developer-interview-loop-design
安装命令:
npx skills add clous-ai/agents --skill "developer-interview-loop-design"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add clous-ai/agents --skill "developer-interview-loop-design"

简介

developer-interview-loop-design 优化技术面试流程与问题结构设计。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中提升评估客观性与深度。
  • 通过 npx 从 GitHub 仓库安装后可生成定制化题库与评分标准。
  • 注意平衡广度与深度,避免过度侧重冷门知识点。
  • 适合资深工程师参与面试官培训与题库共建。

SKILL.md

name
developer-interview-loop-design
description
This skill should be used when the user asks to "design an interview loop", "create interview process", "build interview rubric", "structure interviews by competency", "define interview stages", or "plan technical interviews". Designs structured, competency-based interview loops that assess technical, leadership, and collaboration skills while ensuring legal compliance and candidate experience.
version
0.1.0
license
MIT

Developer Interview Loop Design

Design structured, fair, and effective interview loops that assess engineering candidates across technical, leadership, and collaboration competencies.

Purpose

Create interview loops that:

  • Assess all competencies from role scorecard
  • Minimize bias through structured questions
  • Provide excellent candidate experience
  • Enable data-driven hiring decisions
  • Comply with employment law

When to Use

Invoke when:

  • Creating new interview process for role
  • Redesigning existing interview loop
  • Standardizing interviews across team
  • Training new interviewers
  • Ensuring legal compliance in assessments

Core Process

1. Map Competencies to Interview Stages

Based on role scorecard, design loop structure:

Standard Engineering Loop:

StageDurationCompetencyInterviewer(s)Format
Recruiter Screen30 minBasic fit, communicationRecruiterPhone/Video
Technical Screen60 minTechnical (coding)EngineerLive coding
Coding Interview90 minTechnical (algorithms, problem-solving)2 EngineersWhiteboard/CoderPad
System Design60 minTechnical (architecture)Senior+ EngineerWhiteboard
Behavioral45 minLeadership, CollaborationHiring ManagerStructured Q&A
Team Fit45 minCollaboration, CultureTeam memberConversational

Total Time: 5-6 hours

Competency Coverage:

  • Technical: 70% (Screen + Coding + Design)
  • Leadership: 15% (Behavioral)
  • Collaboration: 15% (Behavioral + Team Fit)

2. Create Interview Rubrics

For each interview stage, define:

Rubric Structure:

{
  "interview_stage": "System Design Interview",
  "duration_minutes": 60,
  "competencies_assessed": ["Technical Architecture", "Communication"],
  "evaluation_criteria": [
    {
      "criterion": "Problem decomposition",
      "weight": 0.3,
      "scoring": {
        "5": "Breaks down complex system into clear components with trade-offs",
        "3": "Identifies major components, some gaps in analysis",
        "1": "Struggles to decompose problem"
      }
    },
    {
      "criterion": "Scale considerations",
      "weight": 0.25,
      "scoring": {
        "5": "Proactively discusses scaling, bottlenecks, data volumes",
        "3": "Addresses scale when prompted",
        "1": "Does not consider scale"
      }
    },
    {
      "criterion": "Communication clarity",
      "weight": 0.2,
      "scoring": {
        "5": "Clearly explains thinking, uses diagrams effectively",
        "3": "Communicates adequately with some prompting",
        "1": "Difficult to follow reasoning"
      }
    },
    {
      "criterion": "Technical depth",
      "weight": 0.25,
      "scoring": {
        "5": "Deep understanding of databases, caching, queuing, etc.",
        "3": "Solid fundamentals, some depth",
        "1": "Surface-level understanding"
      }
    }
  ],
  "pass_threshold": 3.0,
  "strong_hire_threshold": 4.0
}

Scoring Scale (1-5):

  • 5: Exceptional - exceeds expectations for level
  • 4: Strong - clearly meets expectations
  • 3: Adequate - meets minimum bar
  • 2: Weak - concerns about fit
  • 1: Poor - does not meet bar

3. Develop Structured Questions

Create question banks with consistent rubrics:

Behavioral Interview Questions (STAR Method):

Must assess: Leadership, Collaboration

Leadership Questions:

  • "Tell me about a time you mentored a junior engineer. What was your approach?"
  • "Describe a situation where you had to influence a technical decision you weren't directly responsible for."
  • "Give an example of when you improved a team process or practice."

Collaboration Questions:

  • "Describe a time you disagreed with a teammate on a technical approach. How did you resolve it?"
  • "Tell me about working with a difficult stakeholder. How did you manage the relationship?"
  • "Give an example of when you had to explain a complex technical concept to a non-technical audience."

STAR Evaluation:

  • Situation: Context clearly described?
  • Task: Responsibility/goal clear?
  • Action: Specific actions taken?
  • Result: Measurable outcome?

Technical Questions (Coding):

Create bank organized by difficulty:

## Easy (Warm-up, Junior level)
- Two Sum
- Valid Palindrome
- Reverse String

## Medium (Core assessment, Mid-Senior)
- Longest Substring Without Repeating Characters
- Merge Intervals
- LRU Cache

## Hard (Senior+ differentiation)
- Serialize/Deserialize Binary Tree
- Word Ladder
- Design In-Memory File System

Anti-Pattern: Don't just test algorithm memorization. Assess:

  • Problem-solving approach
  • Code quality and organization
  • Testing and edge cases
  • Communication while coding

4. Train Interviewers

Ensure consistent, fair interviews:

Interviewer Calibration:

  • Shadow 3-5 interviews before conducting independently
  • Compare scores with experienced interviewers
  • Attend calibration sessions quarterly
  • Review unconscious bias training

Interview Guidelines:

  • Use structured questions from question bank
  • Take detailed notes during interview
  • Score immediately after interview
  • Don't be influenced by other interviewers' feedback until debrief

Red Flags to Avoid:

  • Asking questions about protected characteristics
  • Making hiring decisions based on "gut feeling"
  • Asking different questions to different candidates
  • Failing to document decision rationale

5. Plan Logistics

Scheduling:

  • Book interview rooms/video links in advance
  • Send calendar invites with prep materials
  • Include 15-min buffer between interviews
  • Provide candidate with schedule and interviewer info

Candidate Experience:

  • Send confirmation email with loop details
  • Provide parking/office directions
  • Assign "candidate host" for day-of coordination
  • Offer water, snacks, breaks
  • Set expectations: duration, format, what to prepare

Interviewer Preparation:

  • Share candidate resume 24hrs before interview
  • Provide interview rubric and questions
  • Clarify which competency to assess
  • Set expectation to submit feedback within 24hrs

6. Conduct Debrief

Debrief Structure:

  • Each interviewer presents score + rationale (2-3 min)
  • Discuss discrepancies (if 2+ point difference)
  • Hiring manager summarizes consensus
  • Make decision: Strong Hire / Hire / No Hire / Strong No Hire

Decision Framework:

  • Strong Hire: All interviews ≥ 4.0, move to offer immediately
  • Hire: Average ≥ 3.5, no red flags
  • No Hire: Average < 3.0 or any critical red flag
  • Strong No Hire: Multiple poor interviews, clear misfit

Anti-Bias Techniques:

  • Hiring manager speaks last (avoid anchoring)
  • Focus on evidence, not impressions
  • Reference specific rubric criteria
  • Challenge "culture fit" concerns for specificity

7. Generate Loop Documentation

Output comprehensive interview guide:

{
  "role": "Senior Backend Engineer",
  "loop_structure": [
    {
      "stage": "Recruiter Screen",
      "duration_minutes": 30,
      "interviewer_type": "Recruiter",
      "competencies": ["Basic qualification", "Communication"],
      "key_questions": ["Why interested in role?", "Salary expectations?"],
      "pass_criteria": "Meets must-haves, good communication"
    },
    {
      "stage": "Technical Screen",
      "duration_minutes": 60,
      "interviewer_type": "Engineer (any level)",
      "competencies": ["Coding fundamentals"],
      "problem": "Medium difficulty coding problem",
      "pass_criteria": "Solves problem with hints, clean code"
    }
  ],
  "rubrics": {
    "coding_interview": { /* detailed rubric */ },
    "system_design": { /* detailed rubric */ },
    "behavioral": { /* detailed rubric */ }
  },
  "interviewer_training": {
    "required_shadowing": 3,
    "calibration_frequency": "quarterly",
    "bias_training_required": true
  },
  "decision_criteria": {
    "strong_hire_threshold": 4.0,
    "hire_threshold": 3.5,
    "must_pass_all_competencies": true
  }
}

Save to interview-loop-{role}-{date}.json.

Using Supporting Resources

Templates

  • templates/interview-rubric.json - Rubric schema with scoring
  • templates/question-bank.md - STAR behavioral questions by competency
  • templates/coding-problems.md - Technical problems by difficulty

References

  • references/legal-interview-questions.md - Permissible vs prohibited questions
  • references/anti-bias-techniques.md - Structured interview best practices
  • references/candidate-experience.md - Logistics, communication, follow-up

Scripts

  • scripts/validate-loop.py - Check competency coverage, time allocation
  • scripts/generate-scorecard.py - Create interviewer scorecards

Example Workflow

User: "Design interview loop for senior backend engineer position"

Steps:

  1. Load role scorecard (technical 70%, leadership 20%, collaboration 10%)
  2. Design 6-stage loop: Screen, Coding, System Design, Behavioral, Team Fit, Hiring Manager
  3. Create rubrics for each stage with 3-5 criteria
  4. Build question banks (STAR behavioral, coding problems by difficulty)
  5. Define pass thresholds (3.5 average, all competencies ≥ 3.0)
  6. Plan logistics (5-6 hour loop, virtual or onsite)
  7. Generate loop documentation + interviewer training guide
  8. Validate with loop validator script

Output: Complete interview loop ready for execution

Legal Compliance

Prohibited Questions:

  • Age, birthdate, graduation year
  • Marital status, children, pregnancy
  • Disability, health conditions
  • Religion, national origin, race
  • Arrest record (in most states)

Best Practices:

  • Ask same questions to all candidates
  • Focus on job-related scenarios
  • Document scoring immediately
  • Train interviewers on bias

See references/legal-interview-questions.md for detailed guidance.


Progressive Disclosure: Detailed question banks, anti-bias techniques, and legal compliance are in references/. Core loop design framework above covers standard engineering roles.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

27.89%
按下载量换算25

Claude Code

22.41%
按下载量换算20

Gemini CLI

18.73%
按下载量换算16

windsurf

10.82%
按下载量换算10

OpenCode

7.66%
按下载量换算7

Cursor

3.35%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills