Scenario run
Runs a Version9 scenario from backend/load/Scenario_
Version 4 registers Agent-Core built-ins (`get_time`, `get_date`) and Agent-Addons (weather, applications, C# scaffolders) into Lilith’s Ollama tool loop. Cards below are generated from the Version 4 source tree.
Runs a Version9 scenario from backend/load/Scenario_
Execute a specific tool by name with the provided arguments.
Returns today's local date on this machine.
Returns the current local time on this machine.
Search for available tools by keyword. Returns a JSON list of matching tool names and descriptions. Call with an empty query to list all tools.
Creates a new Blazor Web App C# project (dotnet new blazor). Requires JSON: name (project name), optional output (folder path).
Creates a new Blazor WebAssembly Standalone App C# project (dotnet new blazorwasm). Requires JSON: name (project name), optional output (folder path).
Creates a new Class Library C# project (dotnet new classlib). Requires JSON: name (project name), optional output (folder path).
Creates a new Console App C# project (dotnet new console). Requires JSON: name (project name), optional output (folder path).
Creates a new ASP.NET Core gRPC Service C# project (dotnet new grpc). Requires JSON: name (project name), optional output (folder path).
Creates a new MSTest Test Project C# project (dotnet new mstest). Requires JSON: name (project name), optional output (folder path).
Creates a new MSTest Playwright Test Project C# project (dotnet new mstest-playwright). Requires JSON: name (project name), optional output (folder path).
Creates a new ASP.NET Core Web App (MVC) C# project (dotnet new mvc). Requires JSON: name (project name), optional output (folder path).
Creates a new NUnit Test Project C# project (dotnet new nunit). Requires JSON: name (project name), optional output (folder path).
Creates a new NUnit Playwright Test Project C# project (dotnet new nunit-playwright). Requires JSON: name (project name), optional output (folder path).
Creates a new ASP.NET Core Web App (Razor Pages) C# project (dotnet new webapp). Requires JSON: name (project name), optional output (folder path).
Creates a new Razor Class Library C# project (dotnet new razorclasslib). Requires JSON: name (project name), optional output (folder path).
Creates a new ASP.NET Core Empty C# project (dotnet new web). Requires JSON: name (project name), optional output (folder path).
Creates a new ASP.NET Core Web API C# project (dotnet new webapi). Requires JSON: name (project name), optional output (folder path).
Creates a new ASP.NET Core Web API (native AOT) C# project (dotnet new webapiaot). Requires JSON: name (project name), optional output (folder path).
Creates a new Windows Forms App C# project (dotnet new winforms). Requires JSON: name (project name), optional output (folder path).
Creates a new Windows Forms Control Library C# project (dotnet new winformscontrollib). Requires JSON: name (project name), optional output (folder path).
Creates a new Windows Forms Class Library C# project (dotnet new winformslib). Requires JSON: name (project name), optional output (folder path).
Creates a new Worker Service C# project (dotnet new worker). Requires JSON: name (project name), optional output (folder path).
Creates a new WPF Application C# project (dotnet new wpf). Requires JSON: name (project name), optional output (folder path).
Creates a new WPF Custom Control Library C# project (dotnet new wpfcustomcontrollib). Requires JSON: name (project name), optional output (folder path).
Creates a new WPF Class Library C# project (dotnet new wpflib). Requires JSON: name (project name), optional output (folder path).
Creates a new WPF User Control Library C# project (dotnet new wpfusercontrollib). Requires JSON: name (project name), optional output (folder path).
Creates a new xUnit Test Project C# project (dotnet new xunit). Requires JSON: name (project name), optional output (folder path).
Returns example weather for a city (demo addon; not a live forecast API).
Opens Google Chrome on this machine.
Opens Notepad on this machine.