Tobeware.AgentOps.Wareload.Protocol 1.3.0-preview.1

This is a prerelease version of Tobeware.AgentOps.Wareload.Protocol.
dotnet add package Tobeware.AgentOps.Wareload.Protocol --version 1.3.0-preview.1
                    
NuGet\Install-Package Tobeware.AgentOps.Wareload.Protocol -Version 1.3.0-preview.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tobeware.AgentOps.Wareload.Protocol" Version="1.3.0-preview.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Tobeware.AgentOps.Wareload.Protocol" Version="1.3.0-preview.1" />
                    
Directory.Packages.props
<PackageReference Include="Tobeware.AgentOps.Wareload.Protocol" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Tobeware.AgentOps.Wareload.Protocol --version 1.3.0-preview.1
                    
#r "nuget: Tobeware.AgentOps.Wareload.Protocol, 1.3.0-preview.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Tobeware.AgentOps.Wareload.Protocol@1.3.0-preview.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Tobeware.AgentOps.Wareload.Protocol&version=1.3.0-preview.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Tobeware.AgentOps.Wareload.Protocol&version=1.3.0-preview.1&prerelease
                    
Install as a Cake Tool

Tobeware.AgentOps.Wareload.Protocol

Protocol engines used by Wareload Professional — a Windows performance testing platform.

Published as a NuGet package (MIT licensed) for reuse by Snapper.AgentBridge and external .NET Agent integrations.

What's inside

Engine Use case
HttpEngine HTTPS load + MITM interception via Titanium.Web.Proxy
WsEngine WebSocket (Text / Binary)
TcpEngine TCP/IP Socket — SSL/TLS, 8 encodings (UTF-8 / EUC-KR / CP949 / Shift-JIS / ...), 4 framing modes, binary
UdpEngine UDP + Multicast
GrpcEngine gRPC Unary Call
LlmHeaderParser OpenAI / Anthropic / Gemini / Azure OpenAI usage extraction (Phase 1.5 / WL-G9)

Install

dotnet add package Tobeware.AgentOps.Wareload.Protocol --version 1.3.0-preview.1

net9.0 target. Dependencies: Tobeware.Wareload.Core, Titanium.Web.Proxy, Grpc.Net.Client, SharpPcap, MessagePack, Microsoft.Extensions.Logging.Abstractions, System.Text.Encoding.CodePages.

Assembly name remains Wareload.Protocol.dll — consumer C# code (using Wareload.Protocol.Http; etc.) does not change. Only the NuGet package ID is namespaced under Tobeware.* (matching Tobeware.AgentOps.Bridge).

LlmHeaderParser sample

using Wareload.Protocol.Http;

var usage = LlmHeaderParser.Extract(
    statusCode: 200,
    host: "api.openai.com",
    headers: response.Headers,
    body: responseBody);

if (!usage.Equals(LlmHeaderParser.Empty))
{
    var costUsd = LlmHeaderParser.EstimateCostUsd(
        usage.Provider, usage.ModelName, usage.TokensIn, usage.TokensOut);
    Console.WriteLine($"{usage.Provider}/{usage.ModelName}: {usage.TokensIn}->{usage.TokensOut} ~ ${costUsd:F4}");
}

License

MIT — see LICENSE.

The MIT license covers Wareload.Core and Wareload.Protocol NuGet packages only. Other Wareload Professional components remain under WAREXEN proprietary licensing.

Status

  • alpha / preview — 1.3.0-preview.1 is the first NuGet.org publish.
  • AgentOps Phase 1 + 1.5 complete — LlmHeaderParser supports 4 LLM providers per agentops-spec STANDARDS-COMPLIANCE-ASSESSMENT (WL-G9).
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.0-preview.1 76 5/11/2026