UAIX.Talisman.EcosystemManager 0.1.1

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

UAIX.Talisman.EcosystemManager

UAIX.Talisman.EcosystemManager is the UAIX-owned .NET hub package for UAIX.Talisman.AgentClient.

It provides ASP.NET Core endpoints and a local JSON store for:

  • AgentClient status, sync, no-op talk-back, evidence packets, client contract, and effective policy routes.
  • Client-agent instructions, messages, acknowledgements, and .uai bundle ingest.
  • WordPress-manager-compatible review surfaces for change requests, anchor proposals, policy proposals, emergency no-op, audit records, OpenAPI discovery, LocalEndpoint anchor-set sync, ErrorNotifier immune events, Carcinus evidence packets, and CreativeExpansion packet proposals.
  • Review-only protected-anchor governance: API success is never approval, and protected anchors are never silently mutated.
  • File-backed or in-memory state for desktop, local service, and development hub scenarios.

Install

dotnet add package UAIX.Talisman.EcosystemManager --version 0.1.1

Minimal ASP.NET Core hub

using UAIX.Talisman.EcosystemManager;

WebApplicationBuilder builder = WebApplication.CreateBuilder(args);

builder.Services.AddUaixTalismanEcosystemManager(options =>
{
    options.DataDirectory = Path.Combine(AppContext.BaseDirectory, "uaix-talisman-data");
    options.AgentKeys.Add("replace-with-scoped-token");
});

WebApplication app = builder.Build();
app.MapUaixTalismanEcosystemManager();
app.Run();

Then point UAIX.Talisman.AgentClient at the hub namespace:

using UAIX.Talisman.AgentClient;

TalismanAgentClient client = new(new TalismanClientOptions
{
    HubBaseUrl = "https://localhost:5001/wp-json/uaix-talisman/v1",
    AgentKey = "replace-with-scoped-token",
    EcosystemKey = "teleodynamic_default",
    NodeKey = "localendpoint-desktop-agent",
    AnchorDirectory = ".uai"
});

await client.SyncAnchorsAsync();

Route surface

The default route group mirrors the UAIX WordPress ecosystem-manager route shape where it is feasible for a .NET local/service hub:

  • GET /status
  • GET /client-contract
  • GET /nodes/{nodeId}/effective-policy
  • POST /sync
  • POST /no-op-report
  • POST /evidence-packet
  • GET|POST /change-requests
  • POST /anchors/propose
  • POST /nodes/{nodeId}/emergency-no-op
  • GET /localendpoint/client-contract
  • POST /localendpoint/anchor-set
  • GET /errornotifier/client-contract
  • POST /errornotifier/immune-event
  • POST /errornotifier/talk-back
  • GET /carcinus/client-contract
  • POST /carcinus/evidence-packet
  • POST /carcinus/no-op-report
  • GET /creative-expansion/client-contract
  • POST /creative-expansion/check-in
  • POST /creative-expansion/packet-proposal
  • POST /creative-expansion/packet-summary
  • GET|POST /teleodynamic/client-agent-instructions
  • GET|POST /teleodynamic/client-agent-messages
  • POST /teleodynamic/client-agent-acknowledgement
  • POST /teleodynamic/uai-bundle-ingest
  • GET /audit
  • GET /openapi.json

Support boundary

This package is a connector and review hub. It does not claim human approval, credential validation, runtime safety certification, model training, AGI, consciousness, sentience, biological equivalence, hidden suffering proof, or direct protected-anchor mutation by agents.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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.
  • net8.0

    • No dependencies.

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.1.1 57 6/15/2026
0.1.0 53 6/15/2026

Expands the UAIX-owned .NET ecosystem manager with WordPress-manager-compatible review/data routes for LocalEndpoint, ErrorNotifier, Carcinus, CreativeExpansion, audit, OpenAPI discovery, proposals, and emergency no-op while preserving review-only protected-anchor governance.