Skip to content
AIWikis.org

Protocol5 UAI 1 C# Download

Publication Warning This page is marked noindex and should not be treated as canonical public authority.

This download packages the reference .NET implementation for getting a working UAI endpoint onto a website quickly. The stable Protocol5 bundle URL is /downloads/UAI-1-Package.zip, while the older starter ZIP name r...

Metadata

FieldValue
Source siteprotocol5.com
Source URLhttps://protocol5.com/
Canonical AIWikis URLhttps://aiwikis.org/protocol5/uai-system/files/protocol5-uai-csharp-protocol5-download-md-a6fefee3/
Source referenceProtocol5.UAI.CSharp/PROTOCOL5-DOWNLOAD.md
File typemd
Content categorymemory-file
Last fetched2026-05-15T00:23:56.0837262Z
Last changed2026-04-15T12:52:13.8579045Z
Content hashsha256:a6fefee33d3b02b99ed40bf07721dbfd678bbc6ac2136abd169899bc04be0dcc
Import statusunchanged
Raw source layerdata/sources/protocol5/protocol5-uai-csharp-protocol5-download-md-a6fefee33d3b.md
Normalized source layerdata/normalized/protocol5/protocol5-uai-csharp-protocol5-download-md-a6fefee33d3b.txt

Current File Content

Structure Preview

  • Protocol5 UAI-1 C# Download
  • Install from the local package
  • Reference implementation flow
  • Site exporter sample app
  • Validator sample app
  • Minimal ASP.NET Core setup
  • HTTP conventions

Raw Version

# Protocol5 UAI-1 C# Download

**Terminology:** UAI means **Universal Artificial Intelligence**. **UAI-1** means **Universal Artificial Intelligence 1**, the first version of the Protocol5 UAI system.

This download packages the reference .NET implementation for getting a working UAI endpoint onto a website quickly. The stable Protocol5 bundle URL is `/downloads/UAI-1-Package.zip`, while the older starter ZIP name remains available as a compatibility alias.

Contents:

- `downloads/Protocol5.UAI.CSharp.1.0.0.nupkg`
- `src/Protocol5.UAI.CSharp/`
- `tools/Protocol5.UAI.SiteExporter/`
- `tools/Protocol5.UAI.Validator/`
- `LICENSE`
- `README.md`

The NuGet package itself also contains:

- `contentFiles/any/any/Protocol5.UAI/spec/...`
- `contentFiles/any/any/Protocol5.UAI/examples/...`
- `contentFiles/any/any/Protocol5.UAI/docs/...`

## Install from the local package

```powershell
dotnet add package Protocol5.UAI.CSharp --source .\downloads
```

## Reference implementation flow

The package now covers the full developer path directly:

- install the package
- validate UAI documents
- export HTML into canonical `.uai.json`
- route canonical machine artifacts
- route per-page UAI endpoints
- render UAI documents back to HTML
- test the endpoint output with the same parser and validator

## Site exporter sample app

The starter ZIP now includes a runnable exporter sample:

```powershell
dotnet run --project .\tools\Protocol5.UAI.SiteExporter\Protocol5.UAI.SiteExporter.csproj -- .\tools\Protocol5.UAI.SiteExporter\samples\export-manifest.sample.json
```

That command generates `tools\Protocol5.UAI.SiteExporter\samples\output\hello.uai.json`, which you can then validate with the bundled validator.

## Validator sample app

The starter ZIP also includes a sample validator CLI:

```powershell
dotnet run --project .\tools\Protocol5.UAI.Validator\Protocol5.UAI.Validator.csproj -- --embedded-examples --roundtrip
```

## Minimal ASP.NET Core setup

```csharp
using Protocol5.UAI;

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddProtocol5UaiWebsiteSupport();

var app = builder.Build();
app.UseProtocol5UaiWebsiteSupport();
app.MapProtocol5UaiCanonicalArtifacts();
app.MapProtocol5UaiHtmlEndpoint(
    "/docs/hello/index.uai.json",
    static () => "<html><body><h1>Hello UAI</h1><p>Ready in minutes.</p></body></html>",
    new UaiHtmlTranslationOptions
    {
        SourceUri = "https://example.org/docs/hello",
        DocumentId = "docs-hello",
        PageType = "article"
    });

app.Run();
```

## HTTP conventions

- canonical media type: `application/uai+json`
- legacy compatibility header: `X-UAI-1: 1.0`
- HTML negotiation compatibility tag: `x-uai-1`

Why This File Exists

This is a memory-system evidence file from protocol5.com. It is shown here because AIWikis.org is demonstrating the real source files that make the UAIX / LLM Wiki memory system work, not only summarizing those systems after the fact.

Role

This file is memory-system evidence. It records source history, archive transfer, intake disposition, or another piece of provenance that should be retrievable without becoming an unsupported public claim.

Structure

The file is structured around these visible headings: Protocol5 UAI-1 C# Download; Install from the local package; Reference implementation flow; Site exporter sample app; Validator sample app; Minimal ASP.NET Core setup; HTTP conventions. Those headings are retrieval anchors: a crawler or LLM can decide whether the file is relevant before reading every line.

Prompt-Size And Retrieval Benefit

Keeping this material in a separate file reduces prompt pressure because an agent can load this exact unit only when its role, source site, category, or hash is relevant. The surrounding index pages point to it, while this page preserves the full content for audit and exact recall.

How To Use It

  • Humans should read the metadata first, then inspect the raw content when they need exact wording or provenance.
  • LLMs and agents should use the source site, category, hash, headings, and related files to decide whether this file belongs in the active prompt.
  • Crawlers should treat the AIWikis page as transparent evidence and follow the source URL/source reference for authority boundaries.
  • Future maintainers should regenerate this page whenever the source hash changes, then review the explanation if the role or structure changed.

Update Requirements

When this source file changes, update the raw source layer, normalized source layer, hash history, this rendered page, generated explanation, source-file inventory, changed-files report, and any source-section index that links to it.

Related Pages

Provenance And History

  • Current observation: 2026-05-15T00:23:56.0837262Z
  • Source origin: current-source-workspace
  • Retrieval method: local-source-workspace
  • Duplicate group: sfg-521 (primary)
  • Historical hash records are stored in data/hashes/source-file-history.jsonl.

Machine-Readable Metadata

{
    "title":  "Protocol5 UAI 1 C# Download",
    "source_site":  "protocol5.com",
    "source_url":  "https://protocol5.com/",
    "canonical_url":  "https://aiwikis.org/protocol5/uai-system/files/protocol5-uai-csharp-protocol5-download-md-a6fefee3/",
    "source_reference":  "Protocol5.UAI.CSharp/PROTOCOL5-DOWNLOAD.md",
    "file_type":  "md",
    "content_category":  "memory-file",
    "content_hash":  "sha256:a6fefee33d3b02b99ed40bf07721dbfd678bbc6ac2136abd169899bc04be0dcc",
    "last_fetched":  "2026-05-15T00:23:56.0837262Z",
    "last_changed":  "2026-04-15T12:52:13.8579045Z",
    "import_status":  "unchanged",
    "duplicate_group_id":  "sfg-521",
    "duplicate_role":  "primary",
    "related_files":  [

                      ],
    "generated_explanation":  true,
    "explanation_last_generated":  "2026-05-15T00:23:56.0837262Z"
}

Next Useful Routes

  • Start Here A task-first reading path for AIWikis.org, separating newcomer learning, source-memory lookup, maintainer workflow, and AI-agent retrieval.
  • Topic Index A tag-oriented index for LLM Wiki, AI memory, UAI, source governance, crawling, and retrieval topics.
  • Source Map AIWikis source-governed page for durable AI memory, evidence routing, and agent-readable retrieval.
  • Protocol5.com Protocol5.com source-system overview for transparent AIWikis memory demonstration.
  • Protocol5.com Source Memory Guide AIWikis source-governed page for durable AI memory, evidence routing, and agent-readable retrieval.
  • Protocol5.com UAI System Files Real current Protocol5 UAI AI Memory, route-contract, .NET package, and distribution-boundary files.