Healthie.NET.AI 3.1.4

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Healthie.NET.AI --version 3.1.4
                    
NuGet\Install-Package Healthie.NET.AI -Version 3.1.4
                    
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="Healthie.NET.AI" Version="3.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Healthie.NET.AI" Version="3.1.4" />
                    
Directory.Packages.props
<PackageReference Include="Healthie.NET.AI" />
                    
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 Healthie.NET.AI --version 3.1.4
                    
#r "nuget: Healthie.NET.AI, 3.1.4"
                    
#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 Healthie.NET.AI@3.1.4
                    
#: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=Healthie.NET.AI&version=3.1.4
                    
Install as a Cake Addin
#tool nuget:?package=Healthie.NET.AI&version=3.1.4
                    
Install as a Cake Tool

Healthie.NET - Trust your uptime

Healthie.NET.AI

NuGet

Live demo — healthie.compiletheory.com — a read-only Healthie.NET dashboard watching real status pages (Anthropic, OpenAI, GitHub, Cloudflare, and more), built from these packages.

Explains what a pulse checker's recent history shows: whether it is failing consistently or intermittently, when it started, and what the errors point to. Provider-agnostic -- it depends on Microsoft.Extensions.AI.Abstractions and nothing else, so the model is your choice.

Installation

dotnet add package Healthie.NET.AI

Usage

Register any IChatClient, then add the diagnostician:

using Healthie.AI;

// Anthropic, OpenAI, Azure OpenAI, or a local model via Ollama -- this package depends on none of them.
builder.Services.AddSingleton<IChatClient>(
    new AnthropicClient().AsIChatClient("claude-opus-4-8"));

builder.Services.AddHealthieAI();

Then ask it about a checker:

var diagnosis = await diagnostician.DiagnoseAsync("MyApp.Pulses.DatabasePulseChecker");

Console.WriteLine(diagnosis.Summary);
Console.WriteLine($"Failure rate rose: {diagnosis.Anomaly.IsAnomalous}");

Key Types

Type Description
IPulseDiagnostician DiagnoseAsync(name) returns a PulseDiagnosis for one checker.
PulseDiagnosis The checker's Name, a plain-English Summary, and an Anomaly report.
AnomalyReport IsAnomalous, RecentFailureRate, EarlierFailureRate.
StartupExtensions.AddHealthieAI() Registers IPulseDiagnostician. Requires an IChatClient in DI.

The Anomaly Report Is Not a Model Call

Anomaly compares the recent failure rate against the earlier one arithmetically, from the checker's own history. It is deterministic and testable, and it is worth trusting on its own -- including when no model is configured to write the summary.

What Leaves Your Process

Diagnosing a checker sends its name, its health, and the messages its checks reported to whichever model you configured. Those messages are written by your own checkers, which is a good reason to keep credentials out of check results. This package never mutates state.

You May Not Need This

If your only consumer is an AI agent, use Healthie.NET.Mcp instead: an agent talking to the MCP endpoint can read get_check_history and reason about it itself. This package is for the surfaces where there is no model in the loop -- a REST response, a dashboard, an alert.

See Also

Back to main README

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 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
4.1.0 34 7/30/2026
4.0.0 36 7/30/2026
3.1.4 91 7/19/2026
3.1.3 87 7/18/2026
3.1.2 83 7/18/2026
3.1.1 83 7/18/2026
3.1.0 83 7/17/2026
3.0.0 91 7/15/2026

### Changed

- Each shipped package's README now links the live demo -- `healthie.compiletheory.com`, a read-only
 hosted instance of the dashboard -- so the link appears on the package's listing on nuget.org.

Full changelog: https://github.com/ivanvyd/Healthie.NET/blob/v3.1.4/CHANGELOG.md