Interview Buddy
by @krishnakumarmahadevan-cmd
AI-powered mock interview practice with real-time feedback. Use when preparing for job interviews, practicing behavioral questions, doing technical interview...
clawhub install interview-buddyπ About This Skill
name: interview-buddy description: AI-powered mock interview practice with real-time feedback. Use when preparing for job interviews, practicing behavioral questions, doing technical interview prep, conducting mock interviews, or getting interview coaching for any role or industry. version: 1.0.0 homepage: https://portal.toolweb.in metadata: openclaw: emoji: "π―" requires: env: - TOOLWEB_API_KEY bins: - curl primaryEnv: TOOLWEB_API_KEY os: - linux - darwin - win32 category: productivity
Interview Buddy β AI Mock Interview Coach π―πΌ
AI-powered mock interview practice tool. Get realistic interview questions, real-time feedback on your answers, and coaching tips for any role, industry, or interview type. Supports behavioral, technical, situational, and competency-based interview formats with streaming responses for a natural conversational experience.
Built by a CISSP/CISM certified professional at ToolWeb.in
When to Use
Prerequisites
TOOLWEB_API_KEY β Get your API key from portal.toolweb.incurl must be available on the systemCRITICAL: Always Call the API
API Endpoint
POST https://portal.toolweb.in/apis/tools/interview-buddy
Endpoints
| Path | Method | Description |
|------|--------|-------------|
| /auth/send-otp | POST | Send OTP to registered email |
| /auth/verify-otp | POST | Verify OTP and get session |
| /auth/me | GET | Check current session |
| /chat/stream | POST | Send interview question/answer and get AI response |
| /auth/logout | POST | End session |
Workflow
1. Authenticate β The user needs a registered account on ToolWeb.in. Authentication uses OTP (One-Time Password) via email.
Step 1: Send OTP
curl -s -X POST "https://portal.toolweb.in/apis/tools/interview-buddy" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{"email": ""}'
Endpoint path: /auth/send-otpStep 2: Verify OTP
curl -s -X POST "https://portal.toolweb.in/apis/tools/interview-buddy" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{"email": "", "otp": ""}'
Endpoint path: /auth/verify-otp2. Start the interview β Send questions and answers via the chat endpoint:
curl -s -X POST "https://portal.toolweb.in/apis/tools/interview-buddy" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{"question": "I want to practice for a Senior Software Engineer interview at a FAANG company. Start with behavioral questions."}'
Endpoint path: /chat/stream3. Continue the conversation β The AI interviewer will ask questions, evaluate your answers, and provide feedback. Keep sending responses:
curl -s -X POST "https://portal.toolweb.in/apis/tools/interview-buddy" \
-H "Content-Type: application/json" \
-H "X-API-Key: $TOOLWEB_API_KEY" \
-d '{"question": "In my previous role, I led a team of 5 engineers to deliver a microservices migration that reduced latency by 40%..."}'
4. Present the AI's response with feedback and follow-up questions.
Output Format
π― Interview Buddy
ββββββββββββββββββπ€ Interviewer:
[AI-generated interview question or feedback]
π‘ Coaching Tips:
[Suggestions for improving the answer]
π Answer Rating:
[Strengths and areas for improvement]
π Follow-up Question:
[Next question based on the conversation]
Error Handling
TOOLWEB_API_KEY is not set: Tell the user to get an API key from https://portal.toolweb.inExample Interaction
User: "I have a product manager interview at Google next week. Help me practice."
Agent flow: 1. Authenticate the user via OTP if not already logged in 2. Send initial context to the chat endpoint:
{"question": "I'm preparing for a Product Manager interview at Google. Start with a product design question."}
3. AI responds with an interview question
4. User answers, agent sends the answer back
5. AI provides feedback and asks the next question
6. Continue until the user is satisfiedInterview Types Supported
Pricing
About
Created by ToolWeb.in β a security-focused MicroSaaS platform with 200+ security APIs, built by a CISSP & CISM certified professional. Trusted by security teams in USA, UK, and Europe and we have platforms for "Pay-per-run", "API Gateway", "MCP Server", "OpenClaw", "RapidAPI" for execution and YouTube channel for demos.
Tips
β‘ When to Use
βοΈ Configuration
TOOLWEB_API_KEY β Get your API key from portal.toolweb.incurl must be available on the system