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:
Richard
2026-07-26 18:21:46 +02:00
co-authored by Claude Opus 4.8
commit 2fed388c99
154 changed files with 29736 additions and 0 deletions
+65
View File
@@ -0,0 +1,65 @@
namespace ClawdDotNet
{
partial class frm_chat
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_chat));
webView_chat2 = new Microsoft.Web.WebView2.WinForms.WebView2();
((System.ComponentModel.ISupportInitialize)webView_chat2).BeginInit();
SuspendLayout();
//
// webView_chat2
//
webView_chat2.AllowExternalDrop = true;
webView_chat2.CreationProperties = null;
webView_chat2.DefaultBackgroundColor = Color.White;
webView_chat2.Dock = DockStyle.Fill;
webView_chat2.Location = new Point(0, 0);
webView_chat2.Name = "webView_chat2";
webView_chat2.Size = new Size(1003, 706);
webView_chat2.TabIndex = 0;
webView_chat2.ZoomFactor = 1D;
//
// frm_chat
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1003, 706);
Controls.Add(webView_chat2);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "frm_chat";
Text = "ClawdDotNet - Chat: AgentName";
((System.ComponentModel.ISupportInitialize)webView_chat2).EndInit();
ResumeLayout(false);
}
#endregion
private Microsoft.Web.WebView2.WinForms.WebView2 webView_chat2;
}
}