FEATURES

One workflow.
From idea to log.

Designer, debugger and Live Ops belong in the same workspace instead of three separate tools.

Workflow Designer
Original screenshot of the NodePilot Workflow Designer with the workflow canvas and the properties panel.

Original screenshot from the NodePilot repository

Dark theme
ORCHESTRATION

One workflow holds the run together.

NodePilot runs PowerShell and Windows activities agentless over WinRM. REST calls, SQL queries and mails run inside the engine itself. In between, conditions decide, branches run in parallel, failed steps repeat and every step hands its result to the next one. A run starts on a schedule, a file, an event-log entry, a database change or a webhook; afterwards the log shows step by step what happened. Existing SCOrch runbooks can be imported as .ois_export files. Review the import log and the configuration before you enable a workflow.

Read more in the documentation
PowerShell Example
# Reuse existing logic
param([string] $ServiceName = 'Spooler')
$service = Get-Service -Name $ServiceName
[pscustomobject] @{
  Name   = $service.Name
  Status = $service.Status.ToString()
}
WHAT IT DOES

What NodePilot can do

Design

  • Visual canvas with conditions and parallel paths
  • Step debugger with breakpoints
  • Versions with diff and rollback
Documentation

Run

  • Agentless over WinRM
  • PowerShell, services, files, registry, REST, SQL
  • Per-step retries and sub-workflows
Documentation

Live Ops

  • Running steps in real time
  • Cancel, retry, resume
  • History with a step-by-step log
Documentation

Triggers

  • Schedules by cron
  • File watcher, event log, database
  • Webhooks and external calls
Documentation

Alerting

  • Rules on events during a run
  • Mail and webhook with HMAC
  • Stuck and missing runs
Documentation

Operations & security

  • Roles and folder permissions
  • An audit log for every change
  • LDAP, Windows SSO and high availability
Documentation

AI

  • Generate workflows and scripts from a prompt
  • Assistant in the designer, knowledge chat
  • Local models or OpenAI-compatible, off by default
Documentation

Interfaces

  • REST API and np on the command line
  • MCP server for AI agents
  • OpenTelemetry, Prometheus, Grafana
Documentation

Migration & building blocks

  • Import SCOrch runbooks
  • Your own activities from PowerShell
  • Encrypted configuration backup
Documentation
View repository

Automation in your environment