Launch a real-time voice interview session.
Usage
/interview-me {topic}
Steps
Parse the topic from the user's message (everything after
/interview-me). If no topic given, ask: "What do you want to be interviewed on?"Open a new Terminator tab and run the script there:
terminator --new-tab -e "bash -c 'python3 ~/bin/interview_me.py --topic \"{topic}\"; exec bash'"Add
--fullbefore the closing quote for a more rigorous session (uses gpt-realtime, ~4x cost).The
exec bashkeeps the tab open after the script exits so the user can see any output.Tell the user the session is running in the new terminal tab. The transcript will be saved to
~/.claude/transcripts/interview-{topic}-{date}.mdon exit (Ctrl+C).