Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
254 changes: 254 additions & 0 deletions BotSharp.sln

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions src/Plugins/BotSharp.Plugin.AgUi/AgUiPlugin.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using BotSharp.Abstraction.Plugins;
using BotSharp.Abstraction.Plugins.Models;
using BotSharp.Abstraction.Settings;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;

namespace BotSharp.Plugin.AgUi;

public class AgUiPlugin : IBotSharpPlugin
{
public string Id => "d8e3f7a9-4b2c-4a1d-9e5f-6c7d8e9f0a1b";
public string Name => "AG-UI Protocol";
public string Description => "AG-UI (Agent-User Interaction) protocol implementation for BotSharp. Provides standardized event-based communication between AI agents and user-facing applications.";
public string? IconUrl => "https://github.com/user-attachments/assets/ebc0dd08-8732-4519-9b6c-452ce54d8058";

public void RegisterDI(IServiceCollection services, IConfiguration config)
{
// No additional services needed for now
}
}
18 changes: 18 additions & 0 deletions src/Plugins/BotSharp.Plugin.AgUi/BotSharp.Plugin.AgUi.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(TargetFramework)</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
<OutputPath>$(SolutionDir)packages</OutputPath>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
</ItemGroup>

</Project>
Loading