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
- debug
- find-activities
- find-package
- package
- type-definition
- validate
- uip traces
- Migration
- Reference & support
UiPath CLI user guide
Last updated May 7, 2026
uip rpa-legacy find-activities searches the activities exposed by a project's dependencies. It returns each match's class name, display name, category, arguments, the XAML snippet to drop into a workflow, and the xmlns declaration. With --include-type-definitions, it also expands the argument types (enums, classes, interfaces).
Pair with type-definition to drill into a specific type, or find-package to discover packages that expose more activities.
Windows-only — see the overview warning.
Synopsis
uip rpa-legacy find-activities <project-path> [options]
uip rpa-legacy find-activities <project-path> [options]
<project-path>(required) — Path toproject.jsonor the folder containing it.
Options
| Flag | Description |
|---|---|
--query <search> | Search by name, description, or category — supports multi-word queries with relevance scoring. |
--exact | Only return activities whose ClassName or DisplayName exactly matches the query. |
--tags <tags> | Comma-separated category tags to filter by. |
-l, --limit <count> | Maximum number of activities to return. Default: 50. |
--include-type-definitions | Include full type definitions for argument types (enums, classes, interfaces). |
--timeout <seconds> | Timeout in seconds for the operation. |
Examples
# Search a project for click-related activities
uip rpa-legacy find-activities ./MyProject/project.json --query "click"
# Tag-scoped search restricted to UI Automation
uip rpa-legacy find-activities ./MyProject --query "type into" --tags "UI Automation" --limit 10
# Exact match with type definitions inlined for argument types
uip rpa-legacy find-activities ./MyProject \
--query "UiPath.Core.Activities.Click" --exact --include-type-definitions
# Search a project for click-related activities
uip rpa-legacy find-activities ./MyProject/project.json --query "click"
# Tag-scoped search restricted to UI Automation
uip rpa-legacy find-activities ./MyProject --query "type into" --tags "UI Automation" --limit 10
# Exact match with type definitions inlined for argument types
uip rpa-legacy find-activities ./MyProject \
--query "UiPath.Core.Activities.Click" --exact --include-type-definitions
Related
uip rpa-legacy type-definition— inspect a single .NET type returned byfind-activities.uip rpa-legacy find-package— discover NuGet packages that bring in additional activities.uip rpa-legacy— tool overview.