Agentics.Extensions.Aspire.Testkit 0.2.6

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

Agentics integration testkit for Aspire

Runs the public Agentics integration testkit as one Aspire container and injects its API, OAuth, and hosted-Git settings into an integrator application.

The default image is registry.agentics.dk/agentics/agentics-testkit:latest. Log in to registry.agentics.dk with a pull-only, image-scoped credential before starting Aspire. Override it through AppHost configuration with AGENTICS_TESTKIT_IMAGE and AGENTICS_TESTKIT_TAG, or set options.Image / options.Tag in the callback for one resource.

var agentics = builder.AddAgenticsTestkit("agentics")
    .WithIntegrationAppRegistration(
        owner: "arvoworks",
        appId: "arvoworks-local",
        appName: "Arvo Works local integration")
    .WithDataVolume("arvoworks-agentics-testkit-data")
    .AddAdminUser(
        email: "admin@arvo.local",
        name: "Arvo Admin",
        handle: "arvo-admin",
        password: "local-development-only");

builder.AddNpmApp("arvo", "../portal")
    .WithAgenticsTestkit(agentics);

WithAgenticsTestkit supplies AGENTICS_BASE_URL, AGENTICS_TOKEN_URL, AGENTICS_GIT_URL, AGENTICS_CLIENT_ID, AGENTICS_CLIENT_SECRET, and AGENTICS_SPONSOR_OWNER, and waits for the testkit health check. The resource becomes healthy only after Agentics, Keycloak, hosted Git, and the integration bootstrap are ready, so dependent applications cannot start against a half-seeded fixture.

The Aspire dashboard shows the three testkit endpoints as Agentics API, Keycloak, and Hosted Git.

The testkit container maps host.docker.internal to the local container host. Integrator webhook URLs can therefore call a host-process resource with, for example, http://host.docker.internal:{port}/api/webhooks on both Linux and Docker Desktop.

AddAdminUser creates a deterministic interactive Keycloak identity, its Agentics profile/personal handle, and grants the global-admin realm role. This is login and platform administration only; it deliberately does not bypass private-project membership.

The fixture is ephemeral by default. Call WithDataVolume() for a persistent named Docker volume. Credentials are deterministic and test-only: never expose the resource publicly or use it for production data.

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.6 92 9/3/2026
0.2.5 109 8/29/2026
0.2.4 111 8/20/2026
0.2.3 129 8/3/2026
0.2.2 118 8/1/2026
0.2.1 109 8/1/2026
0.2.0 114 8/1/2026