skills$openclaw/interview-gen
lxgicstudios160

by lxgicstudios

interview-gen – OpenClaw Skill

interview-gen is an OpenClaw Skills integration for coding workflows. Generate interview questions from your codebase. Use when hiring developers.

160 stars7.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameinterview-gen
descriptionGenerate interview questions from your codebase. Use when hiring developers. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/interview-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/interview-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains interview-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
1.4 KB
index.ts
1.5 KB
_meta.json
290 B
package-lock.json
46.2 KB
package.json
626 B
README.md
664 B
SKILL.md
2.0 KB
tsconfig.json
217 B
SKILL.md

name: interview-gen description: Generate interview questions from your codebase. Use when hiring developers.

Interview Generator

Generic interview questions tell you nothing. This tool reads your actual codebase and generates questions that test skills relevant to your project.

One command. Zero config. Just works.

Quick Start

npx ai-interview ./src/

What It Does

  • Analyzes your codebase for technologies and patterns
  • Generates relevant technical questions
  • Supports different seniority levels
  • Focuses on your actual stack

Usage Examples

# Generate mid-level questions
npx ai-interview ./src/

# Senior-level questions
npx ai-interview ./src/ --level senior --count 15

# Save to file
npx ai-interview ./src/ -o questions.md

# Junior level
npx ai-interview ./src/ --level junior

Best Practices

  • Match to role - don't ask senior questions to juniors
  • Mix theory and practice - both matter
  • Include follow-ups - good questions lead to discussions
  • Update periodically - as your stack evolves

When to Use This

  • Preparing for candidate interviews
  • Standardizing technical screens
  • Building question banks for your team
  • Onboarding interviewers to your codebase

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.

npx ai-interview --help

How It Works

Scans your codebase to identify technologies, patterns, and complexity. Then generates interview questions that would test a candidate's ability to work on your specific project.

License

MIT. Free forever. Use it however you want.

README.md

ai-interview

Generate interview questions tailored to your actual codebase. Great for hiring people who'll work on your specific stack.

Install

npm install -g ai-interview

Usage

npx ai-interview ./src/
# → 10 mid-level questions based on your code

npx ai-interview ./src/ --level senior --count 15
# → 15 senior-level questions

npx ai-interview ./src/ -o questions.md
# → Save to file

Setup

export OPENAI_API_KEY=sk-...

Options

  • -l, --level - junior, mid, or senior (default: mid)
  • -n, --count - Number of questions (default: 10)
  • -o, --output - Save questions to a file

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-interview --help ```

FAQ

How do I install interview-gen?

Run openclaw add @lxgicstudios/interview-gen in your terminal. This installs interview-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/interview-gen. Review commits and README documentation before installing.