uipath-cli
latest
false
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migration
- Reference & support
UiPath CLI user guide
Last updated May 7, 2026
uip rpa-legacy find-package searches NuGet packages across all configured feeds by name or description. Use it to discover activity packs (for example, UiPath.UIAutomation.Activities, UiPath.Excel.Activities) before adding them as project dependencies.
Windows-only — see the overview warning.
Synopsis
uip rpa-legacy find-package --query <search> [options]
uip rpa-legacy find-package --query <search> [options]
Options
| Flag | Description |
|---|---|
--query <search> | Search term to match against package name and description. |
-l, --limit <count> | Maximum number of results to return. Default: 50. |
Examples
# Find UI Automation packages
uip rpa-legacy find-package --query "UiPath.UIAutomation"
# Broader keyword search, capped at 10 results
uip rpa-legacy find-package --query "excel" --limit 10
# Script-friendly: extract just package IDs and versions
uip rpa-legacy find-package --query "mail" \
--output-filter 'Data[].{id:Id, version:Version}'
# Find UI Automation packages
uip rpa-legacy find-package --query "UiPath.UIAutomation"
# Broader keyword search, capped at 10 results
uip rpa-legacy find-package --query "excel" --limit 10
# Script-friendly: extract just package IDs and versions
uip rpa-legacy find-package --query "mail" \
--output-filter 'Data[].{id:Id, version:Version}'
Related
uip rpa-legacy find-activities— once a package is added to a project, search the activities it contributes.uip rpa-legacy type-definition— inspect a specific type once the package is referenced.uip rpa-legacy— tool overview.