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>
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<!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;">↗</button>
|
||||
<button id="btn-run-now" title="Jetzt ausführen" style="display:none;">▶</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>
|
||||
Reference in New Issue
Block a user