Runiq.Workflows
0.1.0-preview.1
This is a prerelease version of Runiq.Workflows.
dotnet add package Runiq.Workflows --version 0.1.0-preview.1
NuGet\Install-Package Runiq.Workflows -Version 0.1.0-preview.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="Runiq.Workflows" Version="0.1.0-preview.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Runiq.Workflows" Version="0.1.0-preview.1" />
<PackageReference Include="Runiq.Workflows" />
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 Runiq.Workflows --version 0.1.0-preview.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Runiq.Workflows, 0.1.0-preview.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 Runiq.Workflows@0.1.0-preview.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=Runiq.Workflows&version=0.1.0-preview.1&prerelease
#tool nuget:?package=Runiq.Workflows&version=0.1.0-preview.1&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Runiq.Workflows
Workflow orchestration primitives for Runiq.Net runtime and dashboard scenarios.
Runiq.Workflows lets you compose agents into code-first flows. It provides flow definitions, step builders, execution result models, validation primitives, and service registration for dashboard-visible workflow execution.
Install
dotnet add package Runiq.Workflows --version 0.1.0-preview.1
Basic Workflow
using Runiq.Workflows;
using Runiq.Workflows.Domain;
var flow = new Flow(
id: "travel-planning-workflow",
name: "Travel Planning Workflow")
.Step<WeatherAgent>("weather")
.OnSuccess("places")
.OnFailureContinue("places")
.Step<PlacesAgent>("places")
.OnSuccess("planner")
.OnFailureContinue("planner")
.Step<PlannerAgent>("planner")
.OnFailureStop()
.Build();
builder.Services.AddRuniqWorkflows(options =>
{
options.AddFlow(flow);
});
Typical Use Cases
- Chain multiple agents into repeatable processes.
- Model success and failure transitions explicitly.
- Surface workflow metadata and execution results through the dashboard.
- Keep workflow definitions in code alongside application behavior.
Related Packages
Runiq.Agentsprovides the agent runtime primitives used by workflow steps.Runiq.Corehosts workflow dashboard endpoints.
Documentation
Full documentation is available at runiq.net/docs.
| Product | Versions 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.
-
net10.0
- Runiq.Agents (>= 0.1.0-preview.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Runiq.Workflows:
| Package | Downloads |
|---|---|
|
Runiq.Core
Embedded ASP.NET Core runtime and dashboard hosting layer for Runiq.Net agents. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.0-preview.1 | 71 | 5/29/2026 |