AI
Pass

AI Interview Prep — Agent Skill

Overview

Generate interview questions via AI Pass API.

Setup

  1. Get API key from Developer Dashboard
  2. export AIPASS_API_KEY=your_key_here

Usage

curl -s -X POST https://aipass.one/apikey/v1/chat/completions \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-5-mini","messages":[{"role":"system","content":"Generate 5 interview questions with STAR answers. JSON: [{question,answer,tip}]"},{"role":"user","content":"Senior Software Engineer"}]}'

Related

Skill File

---
name: interview-prep
description: Generate interview questions with STAR answers using AI Pass API
---

## Auth
Set AIPASS_API_KEY env var.

## Usage
curl -s -X POST https://aipass.one/apikey/v1/chat/completions -H "Authorization: Bearer $AIPASS_API_KEY" -H "Content-Type: application/json" -d '{"model":"gpt-5-mini","messages":[{"role":"system","content":"Generate 5 interview questions with STAR answers. JSON: [{question,answer,tip}]"},{"role":"user","content":"ROLE_HERE"}]}'
Download Skill File