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
+8
View File
@@ -0,0 +1,8 @@
namespace ClawdDotNet.Models;
public sealed class AgentToolDisplayEntry
{
public bool Assigned { get; set; }
public string ToolName { get; set; } = "";
public string Description { get; set; } = "";
}