Monica.Repository 1.0.0-rc.12

This is a prerelease version of Monica.Repository.
dotnet add package Monica.Repository --version 1.0.0-rc.12
                    
NuGet\Install-Package Monica.Repository -Version 1.0.0-rc.12
                    
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="Monica.Repository" Version="1.0.0-rc.12" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Monica.Repository" Version="1.0.0-rc.12" />
                    
Directory.Packages.props
<PackageReference Include="Monica.Repository" />
                    
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 Monica.Repository --version 1.0.0-rc.12
                    
#r "nuget: Monica.Repository, 1.0.0-rc.12"
                    
#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 Monica.Repository@1.0.0-rc.12
                    
#: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=Monica.Repository&version=1.0.0-rc.12&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Monica.Repository&version=1.0.0-rc.12&prerelease
                    
Install as a Cake Tool

Monica

Architecture agents can follow. Systems humans can inspect.

Monica is an agent-governed application architecture for observable .NET backends. Its packages provide host-scoped module composition, typed DDD ProjectUnits, infrastructure adapters, operational dashboards, and runtime diagnostics.

Install

Install only the capabilities the host uses:

dotnet add package Monica.ProjectUnits --prerelease
dotnet add package Monica.JobScheduler --prerelease
dotnet add package Monica.JobScheduler.UI --prerelease

Compose one host

using Monica.Core.Modularity.Extensions;
using Monica.Modules;

var builder = WebApplication.CreateBuilder(args);

builder.AddMonica(monica =>
{
    monica.ConfigureApplication(options =>
    {
        options.AppName = "Orders";
        options.AppId = "orders";
    });

    monica.AddProjectUnits();

    monica.AddJobScheduler()
        .UseInMemoryMetadataRepository()
        .UseSchedulerScope("orders")
        .UseInMemoryProvider();

    monica.AddJobSchedulerUI();
});

var app = builder.Build();
app.UseMonica();
app.MapMonica();
app.Run();

AddMonica(...) records and validates the complete module graph for this host before applying registrations. The composition is isolated from other hosts in the same process.

Each monica.Add*() call returns a host-bound ModuleRegistration<,> that provider and capability extensions enrich inside the same callback. Module strategies declare dependencies with Describe(ModuleDescriptor) and declare structural business-type queries with DeclareTypeDiscovery(...); Monica evaluates all non-empty plans through one type-universe scan and commits their matches deterministically.

Hosts that call monica.AddModuleSystem() receive an immutable, revisioned diagnostics snapshot, lazy assembly inventory, bounded option catalog with sensitive-value redaction, and sanitized portable exports. When Monica.UI is installed, monica.AddModuleSystemUI() includes that Core diagnostics module automatically.

Maturity tiers

  • Stable: Core, ProjectUnits, WebApi, Configuration, Repository, JobScheduler, OpenTelemetry, and UI runtime inspection.
  • Integrations: optional EF Core, Kafka, Redis/StackExchange, Dapr, SignalR, and other provider adapters.
  • Labs: fast-moving AI/RAG/MCP, DataChannel, DevOps and profiling, Office, and Experimental capabilities.

The package catalog is validated in CI: Stable can depend only on Stable, Integrations can depend on Stable or Integrations, and Labs may opt into any tier.

Learn more

Monica is MIT licensed and remains pre-1.0 while its public architecture is finalized.

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 (8)

Showing the top 5 NuGet packages that depend on Monica.Repository:

Package Downloads
Monica.WebApi

Web API infrastructure for Monica including automatic controller exposure, CRUD scaffolding, Swagger integration, RPC client support, and validation mapping.

Monica.Framework

Host-bound seeding, change tracking, and request-chain tracing for Monica applications.

Monica.JobScheduler.EfCore

Entity Framework Core metadata repository implementation for Monica JobScheduler, providing persistent storage for job definitions and execution history.

Monica.Testing

Host-owned test applications, fast ProjectUnit harnesses, assertions, and deterministic seams for Monica.

Monica.ProjectUnits

Host-scoped project architecture discovery and diagnostics for Monica applications, including project-unit metadata, dependency analysis, and runtime inspection endpoints.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-rc.12 112 8/8/2026
1.0.0-rc.8 108 8/5/2026
1.0.0-rc.7 104 8/5/2026
1.0.0-rc.6 122 8/3/2026
1.0.0-rc.5 114 7/22/2026
1.0.0-rc.2 106 5/9/2026
1.0.0-rc.1 100 5/6/2026
0.1.0-preview.1 117 1/31/2026

Monica 1.0 release candidate 9 introduces frozen host-owned module composition, bounded startup diagnostics, comprehensive module observability, exact ProjectUnit source contracts, and a hardened Agent-first Guide bootstrap.