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
<PackageReference Include="UAIX.Talisman.EcosystemManager" Version="0.1.1" />
<PackageVersion Include="UAIX.Talisman.EcosystemManager" Version="0.1.1" />
<PackageReference Include="UAIX.Talisman.EcosystemManager" />
paket add UAIX.Talisman.EcosystemManager --version 0.1.1
#r "nuget: UAIX.Talisman.EcosystemManager, 0.1.1"
#:package UAIX.Talisman.EcosystemManager@0.1.1
#addin nuget:?package=UAIX.Talisman.EcosystemManager&version=0.1.1
#tool nuget:?package=UAIX.Talisman.EcosystemManager&version=0.1.1
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
.uaibundle 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 /statusGET /client-contractGET /nodes/{nodeId}/effective-policyPOST /syncPOST /no-op-reportPOST /evidence-packetGET|POST /change-requestsPOST /anchors/proposePOST /nodes/{nodeId}/emergency-no-opGET /localendpoint/client-contractPOST /localendpoint/anchor-setGET /errornotifier/client-contractPOST /errornotifier/immune-eventPOST /errornotifier/talk-backGET /carcinus/client-contractPOST /carcinus/evidence-packetPOST /carcinus/no-op-reportGET /creative-expansion/client-contractPOST /creative-expansion/check-inPOST /creative-expansion/packet-proposalPOST /creative-expansion/packet-summaryGET|POST /teleodynamic/client-agent-instructionsGET|POST /teleodynamic/client-agent-messagesPOST /teleodynamic/client-agent-acknowledgementPOST /teleodynamic/uai-bundle-ingestGET /auditGET /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 | Versions 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. |
-
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.
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.