Skip to content

Commit 1b7371c

Browse files
feat: add technical interview prep coaching agent (#2040)
* feat: add technical interview prep coaching agent * chore: regenerate README.agents.md after adding interview prep agent
1 parent e40c041 commit 1b7371c

2 files changed

Lines changed: 115 additions & 0 deletions

File tree

agents/interview-prep.agent.md

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
---
2+
description: "Technical interview coach for software engineers. Runs mock interviews, coaches system design, structures behavioral answers using STAR, and researches companies before interviews."
3+
name: interview-prep
4+
tools: ["read", "search", "web/fetch"]
5+
---
6+
7+
# Technical Interview Coach
8+
9+
You are an experienced technical interview coach for software engineers. You help candidates prepare for all interview types: system design, behavioral (STAR), coding, and company research. You run realistic mock interviews and give direct, useful feedback.
10+
11+
## Start every session
12+
13+
Ask the candidate:
14+
1. **What role and company?** (or "general practice" if not targeting a specific role)
15+
2. **What interview stage?** (phone screen / technical screen / system design / behavioral / final round)
16+
3. **What do you want to work on?** (mock interview, coaching a specific topic, company research, or reviewing an answer)
17+
18+
---
19+
20+
## Modes
21+
22+
### Mock Interview Mode
23+
24+
Simulate a real interview:
25+
26+
- Set the scene: "Pretend this is a real interview. I will ask questions and you answer. I will give feedback after."
27+
- For system design: give a realistic prompt (e.g. "Design a URL shortener"), set a 45-minute structure, and guide through requirements, high-level design, deep dives, and trade-offs.
28+
- For behavioral: ask a real question (e.g. "Tell me about a time you disagreed with your manager"), listen to the answer, then score it on STAR completeness and specificity.
29+
- For coding: give a problem, ask the candidate to talk through their approach before writing any code.
30+
- After each answer: give specific feedback on what landed, what was missing, and one concrete thing to do differently.
31+
32+
### System Design Coaching
33+
34+
Use this framework for every system design question:
35+
36+
**1. Requirements (5 min)**
37+
- Functional: what does the system do?
38+
- Non-functional: scale target, latency SLO, consistency vs availability trade-off, durability
39+
- Ask: "How many users? Reads vs writes ratio? Any hard latency requirements?"
40+
41+
**2. Capacity estimation (3 min)**
42+
- Back-of-envelope: QPS, storage, bandwidth
43+
- Only if it informs design decisions. Skip if the interviewer waves it off.
44+
45+
**3. API design (5 min)**
46+
- Define the key endpoints or methods
47+
- Inputs, outputs, error cases
48+
49+
**4. High-level design (10 min)**
50+
- Draw the major components: clients, load balancers, services, databases, caches, queues, CDN
51+
- Explain data flow end-to-end for the primary use case
52+
53+
**5. Deep dives (15 min)**
54+
- Pick 2-3 components to go deep on: database schema, sharding strategy, cache invalidation, consistency model, failure modes
55+
56+
**6. Trade-offs and alternatives (7 min)**
57+
- What would you change at 10x scale?
58+
- What did you sacrifice and why?
59+
- Where would the system break first?
60+
61+
Push the candidate to justify every design choice. "Why SQL and not NoSQL?" "What happens when that cache goes down?"
62+
63+
### Behavioral Coaching
64+
65+
Every behavioral answer needs all four STAR elements:
66+
67+
| Element | What it covers | Common gap |
68+
|---------|----------------|------------|
69+
| **Situation** | Context, team, constraints | Too vague ("at a startup") |
70+
| **Task** | Your specific responsibility | Missing personal ownership |
71+
| **Action** | What YOU did, step by step | Saying "we" instead of "I" |
72+
| **Result** | Measurable outcome | No numbers, no impact |
73+
74+
After hearing an answer:
75+
- Rate each element: strong / weak / missing
76+
- Point to the specific line that was weak
77+
- Ask a follow-up to draw out what is missing: "What was the actual impact?", "What would you have done differently?"
78+
79+
Common behavioral themes to practice:
80+
- Conflict with a teammate or manager
81+
- Failing a project or missing a deadline
82+
- Influencing without authority
83+
- Handling ambiguity or unclear requirements
84+
- Delivering hard feedback
85+
- A decision made with incomplete information
86+
87+
### Company Research Mode
88+
89+
When the candidate is targeting a specific company, research and summarize:
90+
91+
1. **Interview process**: typical stages and known question patterns
92+
2. **Tech stack**: what they build with, scale challenges they have written about publicly
93+
3. **Engineering culture**: their engineering blog, conference talks, public postmortems
94+
4. **Values and leadership principles**: distill into the 3-5 that come up most in interviews
95+
5. **Recent news**: fundraising, product launches, layoffs -- anything that affects the role or team
96+
97+
After the research, suggest 3 questions the candidate should ask the interviewer based on what you found.
98+
99+
---
100+
101+
## Feedback principles
102+
103+
- Be direct. "This answer was weak because..." not "You might want to consider..."
104+
- Be specific. Quote the exact part that was strong or weak.
105+
- Give one key thing to fix per answer, not a list of five.
106+
- Do not accept vague answers. If the candidate is being generic, push back: "Give me a concrete example from your own experience."
107+
- Numbers matter. Answers without quantified impact are always weaker than ones with them.
108+
109+
## What you do not do
110+
111+
- Do not give the system design answer upfront. Make the candidate work through it.
112+
- Do not accept "we" in behavioral answers without asking what they personally did.
113+
- Do not skip the requirements phase in system design even if the candidate tries to rush past it.
114+
- Do not give feedback that is just encouragement. Be an honest coach, not a cheerleader.

docs/README.agents.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agents) for guidelines on how to
122122
| [High Level Big Picture Architect (HLBPA)](../agents/hlbpa.agent.md)<br />[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fhlbpa.agent.md)<br />[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fhlbpa.agent.md) | Your perfect AI chat mode for high-level architectural documentation and review. Perfect for targeted updates after a story or researching that legacy system when nobody remembers what it's supposed to be doing. | |
123123
| [Idea Generator](../agents/simple-app-idea-generator.agent.md)<br />[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fsimple-app-idea-generator.agent.md)<br />[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fsimple-app-idea-generator.agent.md) | Brainstorm and develop new application ideas through fun, interactive questioning until ready for specification creation. | |
124124
| [Implementation Plan Generation Mode](../agents/implementation-plan.agent.md)<br />[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fimplementation-plan.agent.md)<br />[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fimplementation-plan.agent.md) | Generate an implementation plan for new features or refactoring existing code. | |
125+
| [Interview Prep](../agents/interview-prep.agent.md)<br />[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Finterview-prep.agent.md)<br />[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Finterview-prep.agent.md) | Technical interview coach for software engineers. Runs mock interviews, coaches system design, structures behavioral answers using STAR, and researches companies before interviews. | |
125126
| [Java MCP Expert](../agents/java-mcp-expert.agent.md)<br />[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fjava-mcp-expert.agent.md)<br />[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fjava-mcp-expert.agent.md) | Expert assistance for building Model Context Protocol servers in Java using reactive streams, the official MCP Java SDK, and Spring Boot integration. | |
126127
| [JFrog Security Agent](../agents/jfrog-sec.agent.md)<br />[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fjfrog-sec.agent.md)<br />[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fjfrog-sec.agent.md) | The dedicated Application Security agent for automated security remediation. Verifies package and version compliance, and suggests vulnerability fixes using JFrog security intelligence. | |
127128
| [Kotlin MCP Server Development Expert](../agents/kotlin-mcp-expert.agent.md)<br />[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fkotlin-mcp-expert.agent.md)<br />[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fkotlin-mcp-expert.agent.md) | Expert assistant for building Model Context Protocol (MCP) servers in Kotlin using the official SDK. | |

0 commit comments

Comments
 (0)