- Visão geral
- Introdução
- Conceitos
- Using UiPath CLI
- Guias de instruções
- CI/CD recipes
- Referência de comando
- Visão geral
- Códigos de saída
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- criar projeto
- 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
- Migração
- Reference & support
UiPath CLI user guide
Manage Orchestrator libraries — reusable .nupkg packages containing shared activities and logic. Libraries are tenant-scoped; no --folder-* flags apply. All subcommands accept --feed-id <feed-id> to target a specific feed.
For the cross-resource conventions (auth, key types, output envelope), see the uip resource overview.
Synopsis
uip resource libraries list [--feed-id <feed-id>] [-s <search>] [--all-fields] [-l <n>] [--offset <n>]
uip resource libraries get <key> [--feed-id <feed-id>] [--all-fields]
uip resource libraries delete <key> [--feed-id <feed-id>]
uip resource libraries download <key> -d <local-file> [--feed-id <feed-id>]
uip resource libraries versions <package-id> [--feed-id <feed-id>]
uip resource libraries upload --file <local-file> [--feed-id <feed-id>]
uip resource libraries list [--feed-id <feed-id>] [-s <search>] [--all-fields] [-l <n>] [--offset <n>]
uip resource libraries get <key> [--feed-id <feed-id>] [--all-fields]
uip resource libraries delete <key> [--feed-id <feed-id>]
uip resource libraries download <key> -d <local-file> [--feed-id <feed-id>]
uip resource libraries versions <package-id> [--feed-id <feed-id>]
uip resource libraries upload --file <local-file> [--feed-id <feed-id>]
list
List libraries in the tenant feed. Filter: -s, --search <term>. Returns Key, Title, Version, Authors, Published unless --all-fields is set.
uip resource libraries list --search invoice
uip resource libraries list --search invoice
get
Get library details by <key>. Key format is PackageId:Version (e.g. MyLib:1.0.0). --all-fields returns the full DTO.
Excluir
Delete a library version by <key>.
download
Download a library .nupkg to disk. Requires -d, --destination <file>.
uip resource libraries download MyLib:1.0.0 --destination ./MyLib.1.0.0.nupkg
uip resource libraries download MyLib:1.0.0 --destination ./MyLib.1.0.0.nupkg
versions
List every version of a package by its Package ID (the Title field from list, not the Key).
uip resource libraries versions MyLib
uip resource libraries versions MyLib
upload
Upload a .nupkg to the tenant feed. Requires --file <path>.
uip resource libraries upload --file ./MyLib.1.0.0.nupkg
uip resource libraries upload --file ./MyLib.1.0.0.nupkg
Veja também
uip resourceoverview — shared conventions for everyuip resourceverb.uip or feeds— list available feeds and their IDs.- How-to: manage Orchestrator assets and queues — multi-resource workflows.