1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* One app. Claude, Codex, and CLI.
* Orchestrate everything you run.
*/
import { Terminal, Theme } from '@oyt/core';
import { Tauri } from '@oyt/platform';
const STATUS = 'coming-soon' as const;
interface OYT {
name: 'Oldyon Terminal';
engine: 'Rust';
ui: 'Svelte 5';
shell: 'Tauri v2';
status: typeof STATUS;
}
export const oyt: OYT = {
name: 'Oldyon Terminal',
engine: 'Rust',
ui: 'Svelte 5',
shell: 'Tauri v2',
status: STATUS,
};