logo

The new standard for agentic interviews.

Meet the AI-native technical interview; custom challenges tailored to your codebase, local coding environments, and infinitely scalable.

logo

Ameliorated Capital

logologo
logo

LUCY

Generate custom challenges tailored to your codebase.

Codebase

acme/api-server

a3f92c1

Job Description

Senior Engineer

Updated yesterday

Candidate

Sarah Chen

Open Profile >

Role & Responsibilities

Engineering Lead

Updated yesterday

Add rate limiting middleware to the authentication endpoints

2 files changed+648

Refactor UserService to use the repository pattern

4 files changed+232189

Write integration tests for the payment processing flow

5 files changed+3183

Fix race condition in the WebSocket session handler

1 file changed+824

Migrate user schema to support multi-tenancy

3 files changed+14297

Understand exactly how they prompt and why.

Evaluate thousands more candidates.

Interview Active
·src/utils/slug.ts19:00
1import Rand from 'rand-seed'
2
3const rng = new Rand(process.env.SLUG_SEED)
4
5export function generateSlug() {
6return rng.next().toString(36).slice(2, 10)
7}
neutrino

I noticed you used a deterministic randomness library for the slug generator, why?

logo