M.Super.Extensions 1.0.1

dotnet add package M.Super.Extensions --version 1.0.1
                    
NuGet\Install-Package M.Super.Extensions -Version 1.0.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="M.Super.Extensions" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="M.Super.Extensions" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="M.Super.Extensions" />
                    
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 M.Super.Extensions --version 1.0.1
                    
#r "nuget: M.Super.Extensions, 1.0.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 M.Super.Extensions@1.0.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=M.Super.Extensions&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=M.Super.Extensions&version=1.0.1
                    
Install as a Cake Tool

<img src="assets/super-activities.png" alt="Super Activities" width="120" align="left" />

Super Activities for UiPath

Production-grade monitoring and extensibility for your UiPath automations — drop in one activity and see every step.

Stream every activity your robot runs straight to Azure Application Insights for real-time dashboards, alerting, and end-to-end observability. No per-activity wiring, no boilerplate.

<br clear="left" />

Why Super Activities?

  • See everything. Every activity emits a rich telemetry event — name, status, duration, and (optionally) argument values — so you can trace, measure, and alert on your automations like first-class software.
  • One activity, whole process. Add Super Initialize at the top of Main and the entire run is instrumented, including the workflows it invokes. That's it.
  • Configured where it belongs. Set your Application Insights key and toggle argument capture in Project Settings — no code, no hardcoded secrets in the workflow.
  • Built-in guardrails. A Workflow Analyzer rule flags any process that forgot to add Super Initialize, so monitoring never silently goes dark.
  • Extensible by design. A clean framework for adding cross-cutting behavior — telemetry, logging, auditing — across every activity, that other packages can build on.

Packages

Package What it gives you
M.Super.AppInsights.Activities Azure Application Insights monitoring for UiPath — automatic per-activity telemetry.
M.Super.Extensions The extensibility framework: the Super Initialize activity, runtime dispatch, auto-discovery, and the analyzer rule.
M.Super.Activities Handy building-block activities for everyday automation.

Quick start

  1. Install M.Super.AppInsights.Activities (it brings M.Super.Extensions with it). Enable Include Prerelease.

  2. Drop Super Initialize as the first activity in Main.

  3. Open Project Settings → App Insights and paste your Instrumentation Key (a key or full connection string). Optionally enable Capture arguments.

  4. Run. Open Application Insights and query your activity stream:

    customEvents
    | where name == "Activity"
    | project timestamp,
              tostring(customDimensions.ActivityName),
              tostring(customDimensions.State)
    | order by timestamp desc
    

Each activity shows up with ActivityName, State, WorkflowInstanceId, and (when capture is on) Arg.* values.

How it works

Super Initialize runs first and wires up the whole execution, so every activity after it — at any depth, including non-isolated invoked workflows — reports through the framework. It's a single, in-process step that works the same in attended, unattended, and cloud runs.

Building from source

.\pack.ps1   # builds, auto-versions (1.0.1-alpha.<n>), writes .nupkg to .\artifacts
dotnet nuget add source <repo>\artifacts -n super-local
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on M.Super.Extensions:

Package Downloads
M.Super.AppInsights.Activities

Azure Application Insights monitoring for UiPath. Automatically track every activity in your automation and stream rich execution events — activity name, status, duration and arguments — to Application Insights for real-time dashboards, alerting and end-to-end observability. Drop in one activity; no per-activity wiring.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 22 5/23/2026