npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@uipath/maestro-tool

v1.196.0

Published

Create, debug, and run Maestro projects and jobs.

Downloads

1,606

Readme

@uipath/maestro-tool

CLI tool for UiPath Maestro orchestration projects. The tool is exposed under uip maestro and groups BPMN, Flow, and Case commands.

BPMN Commands

maestro bpmn init

Create a new Maestro BPMN project.

uip maestro bpmn init <projectName> [--force]

maestro bpmn validate

Validate a Maestro BPMN .bpmn file or Studio Web BPMN .xml export.

uip maestro bpmn validate <file>

The command checks that the file exists, is a .bpmn or .xml document, parses as BPMN, contains a process, and has at least one start event. It also reports UiPath BPMN extension tag counts and warnings for unsupported or missing extension metadata.

Successful validation returns Code: BpmnValidate with the validated file path, process count, start event count, and UiPath extension count.

maestro bpmn pack

Pack a Maestro BPMN project into a NuGet package (.nupkg).

uip maestro bpmn pack <project-path> <output-path> [-n <name>] [-v <version>]

maestro bpmn debug

Debug a local Maestro BPMN project or a single BPMN file via Studio Web.

uip maestro bpmn debug [project-path]
uip maestro bpmn debug --bpmn-file <file>

maestro bpmn registry

Browse, search, and inspect the Maestro BPMN extension registry.

uip maestro bpmn registry pull
uip maestro bpmn registry list
uip maestro bpmn registry search <keyword>
uip maestro bpmn registry get <extensionType>

maestro bpmn process

List, inspect, and run deployed Maestro BPMN processes.

uip maestro bpmn process list
uip maestro bpmn process get <process-key> <feed-id>
uip maestro bpmn process run <process-key> <folder-key> [options]

maestro bpmn processes

List Maestro process summaries and inspect incident details.

uip maestro bpmn processes list [--folder-key <folderKey>] [--limit <number>] [--offset <number>] [--status <status>]
uip maestro bpmn processes incidents <process-key> --folder-key <folderKey>
uip maestro bpmn processes diagnose <process-key> --folder-key <folderKey>
uip maestro bpmn processes error-codes <process-key> --folder-key <folderKey>

maestro bpmn job

Inspect Maestro BPMN job status and traces.

uip maestro bpmn job status <job-key> [options]
uip maestro bpmn job traces <job-key> [options]

maestro bpmn instance

Inspect and control Maestro BPMN process instances.

uip maestro bpmn instance list --folder-key <folder-key>
uip maestro bpmn instance get <instance-id> --folder-key <folder-key>
uip maestro bpmn instance variables <instance-id> --folder-key <folder-key>
uip maestro bpmn instance incidents <instance-id> --folder-key <folder-key>
uip maestro bpmn instance pause <instance-id> --folder-key <folder-key>
uip maestro bpmn instance resume <instance-id> --folder-key <folder-key>
uip maestro bpmn instance cancel <instance-id> --folder-key <folder-key>

maestro bpmn incident

Summarize and inspect runtime incidents.

uip maestro bpmn incident summary
uip maestro bpmn incident get <incident-id> --folder-key <folder-key>

maestro bpmn debug-instance

Manage active debug instances.

uip maestro bpmn debug-instance create --solution-id <id> --project-id <id> --entry-point <path>
uip maestro bpmn debug-instance breakpoints <debug-instance-id>
uip maestro bpmn debug-instance continue <debug-instance-id>
uip maestro bpmn debug-instance cancel <debug-instance-id>

Related Surfaces

Flow commands are available under uip maestro flow.

Case Management commands are available under uip maestro case.