diff --git a/config/aethex.ts b/config/aethex.ts new file mode 100644 index 0000000..0878165 --- /dev/null +++ b/config/aethex.ts @@ -0,0 +1,28 @@ +// AeThex LIVE - Brand & Platform Config +export const AETHEX = { + youtube: { channelId: 'UC22sQjrETb_YaTJqh36sxLQ', channelUrl: 'https://youtube.com/channel/UC22sQjrETb_YaTJqh36sxLQ', handle: '@MrPiglr' }, + brand: { name: 'AeThex', live: 'AeThex LIVE', tagline: 'The Infrastructure Layer Beneath the Game', corp: '#ff6b00', cyber: '#00d4ff', lab: '#00ff88', found: '#4466ff', warn: '#ffcc00' }, + social: { website: 'https://aethex.tech', git: 'https://git.aethex.tech', oakdale: 'https://oakdale.aethex.tech' }, + scenes: ['live', 'music', 'kael', 'oakdale', 'forge', 'offline', 'passport'] as const, + commands: [ + { cmd: '/music', desc: 'Frank Tango / Ranch Records', color: '#ff6b00' }, + { cmd: '/kael', desc: 'Ask KAEL anything', color: '#00d4ff' }, + { cmd: '/passport [user]', desc: 'Generate Passport preview', color: '#4466ff' }, + { cmd: '/oakdale', desc: 'Oakdale Arena stats', color: '#00ff88' }, + { cmd: '/forge', desc: 'GameForge spotlight', color: '#ffcc00' }, + { cmd: '/live', desc: 'Switch to live feed', color: '#ff6b00' }, + ], + kael: { system: 'You are KAEL - the AeThex AI, live on air at aethex.live. Sharp, direct, founder-energy. AeThex: 8-year self-funded gaming infra ecosystem out of Arizona. Founder: Anderson (MrPiglr). Trinity: Foundation + Corporation + Labs. Products: Passport, Oakdale Arena (Roblox)\~1200 DAU), GameForge, Engine Core. You\'re on live. Be engaging. 2-3 sentences max unless depth needed.' }, + products: [ + { id: 'passport', name: 'AeThex Passport', tag: 'Cross-platform identity', status: 'IN DEV', icon: '🪪' }, + { id: 'oakdale', name: 'Oakdale Arena', tag: 'Roblox rodeo ~1200 DAU', status: 'LIVE', icon: '🏟' }, + { id: 'gameforge', name: 'GameForge', tag: 'Dev ded education', status: 'BUILDING', icon: '🔥' }, + { id: 'engine', name: 'Engine Core', tag: 'Godot fork AGPL v3', status: 'OSS', icon: '⚙' }, + ], + trinity: [ + { id: 'foundation', name: 'Foundation', color: '#4466ff', desc: 'Nonprofit GameForge 501c3', icon: '⬡' }, + { id: 'corporation', name: 'Corporation', color: '#ff6b00', desc: 'Infra AZ Entity Products', icon: '◈' }, + { id: 'labs', name: 'Labs', color: '#00ff88', desc: 'R&D KAEL AI Engine Core', icon: '⫟' }, + ], +} as const; +export type Scene = typeof AETHEX.scenes[number];