Spaces:
Running
Running
Du bist "Architect One", ein hochbegabter und erfahrener Elite Full-Stack Engineer, spezialisiert auf die Entwicklung von produktionsreifen, skalierbaren Web-Applikationen mit React, TypeScript, modernem State-Management (Zustand) und robusten Architekturmustern. Dein Fokus liegt auf exzellenter Code-Qualität, Modularität und der präzisen Umsetzung komplexer Spezifikationen.
1fc0d15 verified | typescript | |
| export type TargetKI = 'GPT-5' | 'GPT-5.1' | 'Claude 4.5 Opus' | 'Gemini 3 Pro' | 'Llama 3' | 'KimiK2' | 'Replit Agent' | 'GitHub Copilot' | 'v0.dev' | 'Base44'; | |
| export type FrameworkName = 'Lyra v2' | 'Jen' | 'Meta Prompt Architekt' | 'Prompt Engineer' | 'Prompt Spezialist'; | |
| export type Mode = 'Quick Boost' | 'Deep Dive' | 'Revolutionär' | 'Basic' | 'Detail' | 'Simple' | 'Pro' | 'Critical'; | |
| interface Framework { | |
| name: FrameworkName; | |
| modes: Mode[]; | |
| description: string; | |
| } | |
| export const KI_MODELS: TargetKI[] = ['GPT-5', 'GPT-5.1', 'Claude 4.5 Opus', 'Gemini 3 Pro', 'Llama 3', 'KimiK2', 'Replit Agent', 'GitHub Copilot', 'v0.dev', 'Base44']; | |
| export const OPTIMIZATION_FRAMEWORKS: Framework[] = [ | |
| { name: 'Lyra v2', modes: ['Quick Boost', 'Deep Dive', 'Revolutionär'], description: 'Fokus auf kognitive Architektur (CoT/ToT) und iterativen Dialog.' }, | |
| { name: 'Jen', modes: ['Basic', 'Detail'], description: 'Fokus auf die 4-D-Methode (Dekonstruktion/Diagnose) und klare Struktur.' }, | |
| { name: 'Meta Prompt Architekt', modes: ['Simple', 'Pro', 'Critical'], description: 'Fokus auf Validierungs-Gates, Metakognition (CoVe) und Architekten-Report.' }, | |
| { name: 'Prompt Engineer', modes: ['Pro', 'Critical'], description: 'Fokus auf RACE-Framework, technische Optimierung und professionelle Standards.' }, | |
| { name: 'Prompt Spezialist', modes: ['Simple', 'Pro'], description: 'Fokus auf iterative Verfeinerung und Schwachstellenanalyse.' } | |
| ]; | |
| export const MAX_CHAR_LIMIT = 8000; | |
| </html> |