diff --git a/apps/mana/apps/web/src/lib/app-registry/apps.ts b/apps/mana/apps/web/src/lib/app-registry/apps.ts index 6caf33f68..35455147e 100644 --- a/apps/mana/apps/web/src/lib/app-registry/apps.ts +++ b/apps/mana/apps/web/src/lib/app-registry/apps.ts @@ -81,6 +81,7 @@ import { Globe, CoatHanger, NotePencil, + FilmStrip, } from '@mana/shared-icons'; // ── Apps with entity capabilities ─────────────────────────── @@ -1355,6 +1356,30 @@ registerApp({ ], }); +registerApp({ + id: 'comic', + name: 'Comic', + color: '#f97316', + icon: FilmStrip, + views: { + // /comic/new (StoryForm) and /comic/[id] (DetailView) live as + // SvelteKit routes; the workbench card hosts the ListView root. + // Quick-action "Neue Story" navigates to /comic/new directly — + // the create flow has its own page, no inline modal in the card. + list: { load: () => import('$lib/modules/comic/ListView.svelte') }, + }, + contextMenuActions: [ + { + id: 'new-story', + label: 'Neue Story', + icon: Plus, + action: () => { + window.location.href = '/comic/new'; + }, + }, + ], +}); + registerApp({ id: 'spaces', name: 'Spaces', diff --git a/apps/mana/apps/web/src/lib/app-registry/help-content.ts b/apps/mana/apps/web/src/lib/app-registry/help-content.ts index 7ed49beb0..82693ff8d 100644 --- a/apps/mana/apps/web/src/lib/app-registry/help-content.ts +++ b/apps/mana/apps/web/src/lib/app-registry/help-content.ts @@ -967,6 +967,24 @@ export const MODULE_HELP: Record = { ], tips: ['System-Auto folgt deinem OS-Dark-Mode automatisch zur richtigen Uhrzeit'], }, + comic: { + description: + 'Aus Text wird ein Comic — Tagebuch-Eintrag, Notiz oder Library-Review als Vorlage, gpt-image-2 oder Nano Banana rendert Panels in fünf Stilen (Comic, Manga, Cartoon, Graphic Novel, Webtoon). Du selbst bist der Protagonist — Face-Ref aus deinem Profil-Modul wird automatisch genutzt.', + features: [ + 'Drei Generate-Modi: Einzel-Panel, Batch (2-4 parallel), KI-Storyboard aus existierendem Text', + 'Fünf Stil-Presets pro Story fix gewählt — alle Panels nutzen denselben Prefix für Konsistenz', + 'Sprechblasen + Captions werden direkt ins Bild gerendert (kein SVG-Overlay)', + 'Modell wählbar pro Klick: OpenAI gpt-image-2, Nano Banana Pro, Nano Banana 2', + 'Cross-Modul-Storyboard: Claude liest Journal/Notes/Library und schlägt 4-6 Panels vor', + 'MCP-Tools: listStories / createStory / generatePanel / reorderPanels für Agents', + ], + tips: [ + 'Ohne Face-Ref im aktiven Space kein Comic — Banner führt direkt zum Upload.', + 'Englische Captions/Dialoge rendern stabiler als deutsche; kurze Sätze funktionieren am besten.', + 'Style-Wechsel ist nicht möglich nach Story-Create — dafür einfach neue Story anlegen.', + 'Ab ~8 Panels pro Story wird Character-Konsistenz spürbar schwerer (gpt-image-2-Limit).', + ], + }, wardrobe: { description: 'Dein digitaler Kleiderschrank — fotografiere Kleidungsstücke und Accessoires, komponiere Outfits, und probiere sie mit KI an dir selbst an. Pro Space ein eigener Schrank: was im Family-Space liegt, taucht im Brand-Space nicht auf.',