Files
ClawdDotNet/EmbeddedUI/overview.html
T
RichardandClaude Opus 4.8 2fed388c99 Initial commit: ClawdDotNet
Import des bestehenden Projektstands in Git.
- .NET 10 WinForms Anwendung (Multi-Agent / Tool-System)
- .gitignore fuer Build-Artefakte, Secrets und Runtime-Daten ergaenzt

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-26 18:21:46 +02:00

40 lines
1.4 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ClawdDotNet Agent Chat</title>
<link rel="stylesheet" href="overview.css">
</head>
<body>
<div id="app">
<aside id="sidebar">
<div id="sidebar-header">
<h2>Agenten</h2>
</div>
<div id="agent-list"></div>
</aside>
<main id="chat-area">
<div id="chat-header">
<span id="chat-agent-name">Wähle einen Agenten</span>
<div id="chat-header-actions">
<button id="btn-open-window" title="In eigenem Fenster öffnen" style="display:none;">&#x2197;</button>
<button id="btn-run-now" title="Jetzt ausführen" style="display:none;">&#x25B6;</button>
</div>
</div>
<div id="chat-messages">
<div id="empty-state">
<p>Wähle einen Agenten aus der Liste, um den Chat zu starten.</p>
</div>
</div>
<div id="chat-input-area" style="display:none;">
<textarea id="chat-input" placeholder="Nachricht eingeben..." rows="1"></textarea>
<button id="btn-send">Senden</button>
</div>
</main>
</div>
<script src="bridge.js"></script>
<script src="overview.js"></script>
</body>
</html>