Files
ClawdDotNet/configs/stock-team.json
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

56 lines
1.5 KiB
JSON

{
"instanceId": "stock-01",
"instanceName": "Aktien-Team",
"openRouterApiKey": "sk-or-DEIN-API-KEY-HIER",
"workingDirectory": "./data/stock/",
"logDirectory": "./Logs",
"webServerPort": 8081,
"agents": [
{
"agentId": "market-analyst",
"displayName": "Marktanalyse",
"model": "anthropic/claude-sonnet-4-5",
"systemPrompt": "Du bist ein erfahrener Marktanalyst. Analysiere Marktdaten und erstelle Berichte.",
"tools": {
"Database": {
"connectionString": "Server=localhost;Database=stocks;User=agent_analyst;Password=changeme;",
"type": "mysql",
"allowedTables": ["quotes", "indicators", "news"]
},
"FileRW": {
"rootPath": "./data/stock/analyst/",
"allowWrite": true,
"allowedExtensions": [".json", ".txt", ".md"]
}
},
"scheduler": {
"cron": "0 7 * * 1-5",
"runOnStart": false
},
"loopGuard": {
"maxSteps": 25,
"maxTokens": 100000,
"timeoutSeconds": 600
}
},
{
"agentId": "webdev",
"displayName": "Web-Entwickler",
"model": "google/gemini-flash-1.5",
"systemPrompt": "Du erstellst HTML-Dashboards aus bereitgestellten Daten.",
"tools": {
"FileRW": {
"rootPath": "./data/stock/wwwroot/",
"allowWrite": true,
"allowedExtensions": [".html", ".css", ".js", ".json"]
}
},
"loopGuard": {
"maxSteps": 10,
"maxTokens": 40000,
"timeoutSeconds": 300
}
}
]
}