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 search-templates lists project templates available on the configured NuGet feeds. Each result includes the template's package ID, version, title, description, and source feed — enough to feed into uip rpa create-project --template-package-id when you want to scaffold from a feed-published template instead of a built-in one.
Feed configuration is loaded by Studio, so the verb requires a Windows runner.
Synopsis
uip rpa search-templates [--query <string>] [--limit <integer>] [--include-prerelease]
uip rpa search-templates [--query <string>] [--limit <integer>] [--include-prerelease]
Options
| Flag | Description |
|---|---|
--query <string> | Search query to filter templates by name or description. Leave empty to list all available templates. |
--limit <integer> | Maximum number of results to return. Default: 20. |
--include-prerelease | Include prerelease template versions in the output. Default: false. |
For the complete option list on your installed tool version, run:
uip rpa search-templates --help
uip rpa search-templates --help
Examples
# List every template visible from the configured feeds
uip rpa search-templates --limit 100
# Search for templates by keyword
uip rpa search-templates --query "library" --limit 25
# Include prereleases when scouting upcoming templates
uip rpa search-templates --query "agent" --include-prerelease
# List every template visible from the configured feeds
uip rpa search-templates --limit 100
# Search for templates by keyword
uip rpa search-templates --query "library" --limit 25
# Include prereleases when scouting upcoming templates
uip rpa search-templates --query "agent" --include-prerelease
Related
uip rpa create-project— scaffold a new project from a template package discovered here.