npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

real-time-design

v0.1.2

Published

Realtime voice-to-Codex terminal for hands-free coding.

Downloads

16

Readme

Real Time Design

██████╗ ███████╗ █████╗ ██╗         ████████╗██╗███╗   ███╗███████╗
██╔══██╗██╔════╝██╔══██╗██║         ╚══██╔══╝██║████╗ ████║██╔════╝
██████╔╝█████╗  ███████║██║            ██║   ██║██╔████╔██║█████╗
██╔══██╗██╔══╝  ██╔══██║██║            ██║   ██║██║╚██╔╝██║██╔══╝
██║  ██║███████╗██║  ██║███████╗       ██║   ██║██║ ╚═╝ ██║███████╗
╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝╚══════╝       ╚═╝   ╚═╝╚═╝     ╚═╝╚══════╝

██████╗ ███████╗███████╗██╗ ██████╗ ███╗   ██╗
██╔══██╗██╔════╝██╔════╝██║██╔════╝ ████╗  ██║
██║  ██║█████╗  ███████╗██║██║  ███╗██╔██╗ ██║
██║  ██║██╔══╝  ╚════██║██║██║   ██║██║╚██╗██║
██████╔╝███████╗███████║██║╚██████╔╝██║ ╚████║
╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═════╝ ╚═╝  ╚═══╝

Real Time Design is a terminal voice surface for coding. You open it in one folder, point it at the repo you want to edit, and talk continuously. OpenAI Realtime listens for coding instructions, turns them into structured tasks, and dispatches those tasks to a local coding CLI.

Codex is the default backend when installed. Claude CLI is also supported, defaulting to sonnet.

No push-to-talk. No separate transcription step. Speak, correct yourself, interrupt, and let coding agents work.

What It Does

  • Streams microphone audio to the OpenAI Realtime API.
  • Uses semantic VAD to detect when a spoken coding instruction is complete.
  • Extracts structured tasks such as edit header, run tests, or create component.
  • Splits multi-part voice requests into separate tasks when they can run independently.
  • Starts local Codex or Claude agents against the target repo.
  • Runs independent voice tasks in parallel.
  • Supports barge-in corrections like "actually make it green instead" or "stop that."
  • Shows a compact TUI with listening state, created tasks, agent status, and the current step.

Quick Start

Install globally:

npm install -g real-time-design

Create a local .env in the repo where you want to use voice coding:

cd /path/to/your/project
printf "OPENAI_API_KEY=sk-...\n" > .env

Make sure at least one coding CLI is installed and logged in:

codex login
# or
claude auth

Start Real Time Design from that project folder:

rtd

Example:

cd /Users/pmarques/Dev/lilapps/bikepark-atlas
rtd

For local development on this repo:

npm install
npm run dev -- --cwd /path/to/project

Requirements

  • Node.js 20+
  • A working Codex CLI or Claude CLI login
  • OpenAI API key for Realtime voice
  • Microphone access in your terminal
  • SoX on macOS if local audio capture needs it:
brew install sox

How It Works

microphone
   │
   ▼
OpenAI Realtime
   │  semantic VAD + structured code_intent tool call
   ▼
Real Time Design scheduler
   │  parallel task dispatch + barge-in handling
   ▼
codex exec -m gpt-5.3-codex-spark
   │
   ├─ or
   ▼
claude --print --model sonnet
   │
   ▼
local repo edits

The voice model never writes code directly. It only decides whether your speech contains an actionable coding task. Real Time Design then routes that task into the selected coding CLI, which edits the target workspace.

Controls

  • q or Ctrl+C: quit
  • m: mute or unmute microphone streaming
  • u: ask the selected agent to undo the last change
  • a: open the agent/model picker for future tasks

In the picker:

  • Up/Down or j/k: move
  • Enter: select
  • Esc: close

Choosing A Coding CLI

Real Time Design defaults to Codex when both Codex and Claude are installed:

rtd

Pick a backend explicitly:

rtd --agent codex
rtd --agent claude

Customize models:

rtd --codex-model gpt-5.3-codex-spark
rtd --claude-model sonnet

Inside the TUI, press a to choose from the installed backend/model combinations. Active tasks keep the model they started with; the picker changes future tasks only.

Parallel Agents

By default, Real Time Design can run up to four coding agents at once:

rtd --max-agents 4

Separate tasks run in parallel. For example:

"Make the header red."
"Also tighten the card spacing."
"Run the typecheck."

Those can become separate agent runs.

Multi-part requests can also become separate runs from one utterance:

"Make the nav red, widen the filter to 300px, and run the typecheck."

Realtime should split that into independent tasks so separate agents can start immediately.

Barge-In

Correction language interrupts the matching active task:

"Make the header red."
"Actually make it blue instead."

The first agent is stopped and restarted with the correction as the source of truth.

Stop language cancels without restarting:

"Stop that."
"Cancel the footer change."
"Never mind."

This is heuristic. If you want a separate new task, avoid correction words and name a different target:

"Also update the footer spacing."

Current Status

This is an early prototype. The core loop works:

  • Realtime voice session
  • Task extraction
  • Parallel Codex/Claude dispatch
  • Barge-in restart/cancel behavior
  • Compact task/status TUI

Still rough:

  • Barge-in classification is heuristic.
  • Agent progress is inferred from CLI output.
  • Parallel agents can still conflict if you ask them to edit the same files.
  • Realtime session reconnect is basic.

Safety Notes

Real Time Design can edit files in the target repo. Commit or stash important work before using it heavily.

Secrets belong in .env, which is ignored by git. Do not commit API keys.