Skip to content
orbit.Meet the Familiar

A LITTLE DEVICE. YOUR AI.

Take your
agent
with you.

An expressive little device for the AI you use every day. Keep useful context close, talk through your work, and make it your own.

Meet Orbit

A hardware + software prototype, taking shape.

FAMILIAR / 001A little presence
Same little face. A world of possibilities.
Lilac

Explore the form. Turn the device or tap its screen.
Interactive preview · no microphone access.

In your pocket.On your desk.A little more within reach.

01 / THE EXPERIENCE

Life happens
between prompts.

A conversation. A half-formed idea. The thing you meant to come back to. We’re making a little device that helps your AI stay closer to your day.

THE DIRECTION

Pick up where
your mind left off.

Find the idea, the decision, and the conversation around it. Useful memory your existing AI tools can return to, so you don’t have to explain everything again.

We’re exploring transcripts, speaker recognition, and shared memory through MCP.

BACK TO THAT IDEAIllustrative example

“Where did we land
on the enclosure?”

FROM THE CONVERSATION

Keep the circular body. Test whether the mute switch is easy to find by feel.

A decision, with its context.

02 / THE OBJECT

A little presence.
A familiar face.

Soft edges. A simple circle. A face that takes its time looking around. Something that feels at home in your hand, and a little more alive on your desk.

48mmACROSS
12mmDEEP
CURRENT
FORM STUDY

A form we’re exploring, with electronics, acoustics, and assembly still to work through.

Download the CAD study
01

A face, with feeling.

A circular touchscreen gives the Familiar room to look, blink, and react. Subtle movement does the talking.

02

Something to feel for.

A separate physical button is part of the form study. We’re exploring what should be a touch, a hold, or a click.

03

A clear way to go quiet.

A physical mute switch you can see and feel. A small detail we want to get right.

Take a closer look

03 / MAKE IT YOURS

Small device.
Open invitation.

Change an expression. Map a gesture. Build a little program that makes your day easier.

Our TypeScript SDK gives you the screen, touch, and motion inputs to work with. The virtual device gives you somewhere to start.

SDK in development · Bun + TypeScript
Your first frame TypeScript
import orbit from '@orbit/sdk';

const puck = await orbit.connect({
  target: 'simulator',
  control: ['screen'],
});

try {
  await puck.screen.draw(frame => {
    frame.clear('#09090c');
    frame.circle({
      center: frame.center,
      radius: 24,
      fill: '#ffe3c2',
    });
  });
} finally {
  await puck.close();
}

A preview of the SDK we’re building. A public package is not available yet.