HoneAI.Agents 0.2.2

dotnet add package HoneAI.Agents --version 0.2.2
                    
NuGet\Install-Package HoneAI.Agents -Version 0.2.2
                    
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="HoneAI.Agents" Version="0.2.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HoneAI.Agents" Version="0.2.2" />
                    
Directory.Packages.props
<PackageReference Include="HoneAI.Agents" />
                    
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 HoneAI.Agents --version 0.2.2
                    
#r "nuget: HoneAI.Agents, 0.2.2"
                    
#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 HoneAI.Agents@0.2.2
                    
#: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=HoneAI.Agents&version=0.2.2
                    
Install as a Cake Addin
#tool nuget:?package=HoneAI.Agents&version=0.2.2
                    
Install as a Cake Tool

HoneAI.Agents

MLOps agent engine wiring for HoneAI — hosts IronHive.Agent's AgentLoop over mloop-mcp tools, driven by a system prompt (persona) the consumer supplies. The engine is persona-neutral: HoneAI.Agents owns the agent loop and MCP tool wiring, while the persona (e.g. the MLOps autonomous-FE Orchestrator) lives in HoneAI.Core.RolePersona and is passed in as MloopAgentOptions.SystemPrompt.

Relocated from the (now-deprecated) mloop-agent package as part of the HoneAI role-play ②a promotion.

Usage

using HoneAI.Agents;
using HoneAI.Agents.Mcp;

// The consumer supplies the persona (typically HoneAI.Core RolePersona) as the system prompt.
await using var tools = new McpMloopToolProvider(
    mcpEntryPath: "mcp/build/index.js",   // built mloop-mcp entry
    mloopPath:    "/path/to/mloop");       // mloop executable (via MLOOP_PATH)

var agent = await MloopAgent.CreateAsync(
    new MloopAgentOptions
    {
        ChatClient  = chatClient,          // any Microsoft.Extensions.AI IChatClient
        SystemPrompt = systemPrompt,       // e.g. RolePersona.BuildInstructions(orchestratorRole)
    },
    tools);

await foreach (var chunk in agent.RunStreamingAsync("이 프로젝트의 데이터로 자율 FE 루프를 시작하세요."))
{
    // render chunk (text / tool-call deltas)
}

Types

  • MloopAgent — wraps IronHive.Agent's AgentLoop; multi-turn history across RunAsync/RunStreamingAsync.
  • MloopAgentOptionsChatClient + required SystemPrompt (persona), optional ModelId/Temperature/MaxTokens.
  • IMloopToolProvider / McpMloopToolProvider — connects mloop-mcp as an MCP stdio plugin and exposes its tools (fail-fast if zero tools).

Known transitive advisory (NU1903)

The IronHive.Agent dependency transitively pulls SQLitePCLRaw.lib.e_sqlite3 ≤ 2.1.11, which carries CVE-2025-6965 (High) with no patched version available upstream. If your project audits transitive packages (NuGetAuditMode=all, the NuGet default) together with warnings-as-errors, restoring this package will fail with NU1903. Mitigate until upstream ships a patch:

<PropertyGroup>
  <NuGetAuditMode>direct</NuGetAuditMode>
  
</PropertyGroup>

License

Apache-2.0

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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
0.2.2 61 9/9/2026
0.2.1 160 7/17/2026
0.2.0 127 7/8/2026
0.1.0 116 7/5/2026