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/solution-tool

v1.196.0

Published

Create, pack, publish, and deploy UiPath Automation Solutions.

Readme

Solution Tool

uip tool for managing UiPath Automation Solutions.

Commands

| Command | Description | |---------|-------------| | pack | Pack a UiPath solution | | publish | Publish solution package | | new | Create a new solution | | upload | Upload a solution package | | deploy run | Deploy solution to environment | | deploy status | Check deployment status | | deploy activate | Activate deployed solution | | deploy uninstall | Remove solution | | deploy list | List deployments | | deploy config get/set/link/unlink | Manage deployment configuration | | project add/import/remove | Manage projects within a solution | | packages list/delete | Manage solution packages |

Examples

uip solution pack <solutionPath>
uip solution publish <packagePath>
uip solution init --name MySolution
uip solution upload <packagePath>
uip solution deploy run --solution-name MySolution
uip solution deploy status --solution-name MySolution
uip solution project add --name MyProject

Deploying to Personal Workspace

uip solution deploy run accepts --personal-workspace as an alternative to --parent-folder-path / --parent-folder-key. When set, the CLI calls Orchestrator's GetPersonalWorkspace endpoint once to look up the current user's workspace name, then uses that as the deploy target — matching StudioWeb's "Publish to Personal Workspace" UX.

uip solution deploy run \
    --name my-deployment \
    --package-name my-package \
    --package-version 1.0.0 \
    --folder-name MySolution \
    --personal-workspace

The three target flags (--parent-folder-path, --parent-folder-key, --personal-workspace) are mutually exclusive. The lookup uses whichever auth context is active — uip login, UIPATH_CLI_ENABLE_ENV_AUTH, or UIPATH_CLI_ENFORCE_ROBOT_AUTH — so the same command works in standalone terminals, CI pipelines, and Studio Desktop-spawned invocations. Service principals or robot accounts without a Personal Workspace produce a clear "not configured" error.

Excluding directories from the bundle

uip solution pack and uip solution upload skip developer-local directories that don't belong in a published solution. The defaults are always applied:

  • .venv — Python virtualenvs (per-agent under <solution>/<agent>/.venv).
  • node_modules — Node dependency caches.
  • __pycache__ — Python bytecode caches.
  • .git — VCS metadata.

To skip additional directories, add a .uipignore file at the solution root (next to the .uipx file). One directory name per line; # starts a line or trailing comment; blank lines and whitespace-only lines are ignored. Each entry matches by exact directory name at any depth — the same semantics as the built-in defaults. Path separators (/, \) are not supported yet.

Example .uipignore:

# project-specific build artifacts
dist
coverage

# vendored deps we don't want shipped
vendor

The bundler logs which additional excludes are being applied at upload time so the effective set is visible in CI logs.