uip rpa find-activities
uip rpa find-activities searches Studio's activity index for activities whose name, description, or metadata matches a query string. Each match is returned with its ActivityTypeId, class name, namespace, assembly, description, and other identifying properties — enough to feed into uip rpa get-default-activity-xaml for code generation, or to look up documentation.
The activity index lives inside Studio, so this verb requires a Windows runner.
Synopsis
uip rpa find-activities --query <string> [--tags <string>] [--limit <integer>]
Options
| Flag | Description |
|---|---|
--query <string> | Search query used to filter activities. |
--tags <string> | Comma-separated list of tags to narrow results further. Leave empty to ignore tag filtering. |
--limit <integer> | Maximum number of activities to return. Default: 10. |
For the complete option list on your installed tool version, run:
uip rpa find-activities --help
Examples
# Find Click-related activities
uip rpa find-activities --query "Click"
# Filter to Excel activities only, return more matches
uip rpa find-activities --query "range" --tags "excel" --limit 25
Related
uip rpa get-default-activity-xaml— fetch the default XAML for an activity discovered viafind-activities.uip rpa inspect-package— inspect the public API of the package an activity ships in.