Merge wartung/role-metadata-texte: gemeinsame dist-Basis

dist-Konflikt (Hash-Assets beider Builds) durch frischen Build aufgelöst —
damit sind BEIDE Auftragsbuch-Karten in beliebiger Reihenfolge Ein-Klick-fähig
(role-metadata zuerst = sauber; diaet enthält die Rollen-Texte mit).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Hitonabi
2026-07-09 08:52:03 +02:00
4 changed files with 117 additions and 107 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -7,7 +7,7 @@
<link rel="manifest" href="/manifest.webmanifest" /> <link rel="manifest" href="/manifest.webmanifest" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Mission Control 2.0</title> <title>Mission Control 2.0</title>
<script type="module" crossorigin src="/assets/index-1tNxUTCg.js"></script> <script type="module" crossorigin src="/assets/index-ieP3mTAf.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-B7apENt0.css"> <link rel="stylesheet" crossorigin href="/assets/index-B7apENt0.css">
</head> </head>
<body> <body>
+11 -1
View File
@@ -1,5 +1,5 @@
import { useState } from "react" import { useState } from "react"
import { Download, Star, Layers, Check, Zap, Eye, Code, Brain, BrainCircuit, Compass, ChevronDown, ChevronUp } from "lucide-react" import { Download, Star, Layers, Check, Zap, Eye, Code, Brain, BrainCircuit, Compass, ChevronDown, ChevronUp, Scale, Search } from "lucide-react"
import { api } from "@/lib/api" import { api } from "@/lib/api"
import { useModels, useUpdates, useDiscover } from "@/lib/queries" import { useModels, useUpdates, useDiscover } from "@/lib/queries"
import { cn } from "@/lib/utils" import { cn } from "@/lib/utils"
@@ -38,6 +38,16 @@ const ROLE_METADATA: Record<string, { title: string; desc: string; icon: any }>
title: "Multimodal-Allrounder", title: "Multimodal-Allrounder",
desc: "Multimodaler Allrounder für schnelle Antworten, Übersetzungen und Alltag.", desc: "Multimodaler Allrounder für schnelle Antworten, Übersetzungen und Alltag.",
icon: Compass icon: Compass
},
kritiker: {
title: "Kritisches Prüf-Hirn",
desc: "Schärfer Blick für Fehler, Schwachstellen und Sicherheitslücken — denkt skeptisch, bevor du deployst.",
icon: Scale
},
reranker: {
title: "Gedächtnis-Sortierer",
desc: "Sortiert und gewichtet gespeicherte Fakten nach Relevanz — damit die richtige Info sofort da ist.",
icon: Search
} }
} }