- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- 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-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
Syntax and options for `uip or libraries`, which manages reusable `.nupkg` activity packages in the tenant feed.
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. Libraries and process packages use separate feeds: a project packed with --output-type Library is uploaded here, one packed as Process or Tests with uip or packages.
For the cross-resource conventions (auth, key types, output envelope), see the uip or overview.
Synopsis
uip or libraries list [--feed-id <feed-id>] [-s <search>] [--sort-by <field>] [--all-fields] [-l <n>] [--offset <n>]
uip or libraries get <key> [--feed-id <feed-id>] [--all-fields]
uip or libraries delete <key> [--feed-id <feed-id>] --yes
uip or libraries download <key> -d <local-file> [--feed-id <feed-id>]
uip or libraries versions <package-id> [--feed-id <feed-id>] [--sort-by <field>] [-l <n>] [--offset <n>] [--all-fields]
uip or libraries upload <file> [--feed-id <feed-id>]
uip or libraries list [--feed-id <feed-id>] [-s <search>] [--sort-by <field>] [--all-fields] [-l <n>] [--offset <n>]
uip or libraries get <key> [--feed-id <feed-id>] [--all-fields]
uip or libraries delete <key> [--feed-id <feed-id>] --yes
uip or libraries download <key> -d <local-file> [--feed-id <feed-id>]
uip or libraries versions <package-id> [--feed-id <feed-id>] [--sort-by <field>] [-l <n>] [--offset <n>] [--all-fields]
uip or libraries upload <file> [--feed-id <feed-id>]
list
List libraries in the tenant feed. Filter: -s, --search <term>. --sort-by <field> sorts results (default Id desc). Returns Key, Title, Version, Authors, Published unless --all-fields is set.
uip or libraries list --search invoice
uip or 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.
delete
Delete a library version by <key>. Requires -y, --yes — the CLI never prompts for destructive operations.
uip or libraries delete MyLib:1.0.0 --yes
uip or libraries delete MyLib:1.0.0 --yes
download
Download a library .nupkg to disk. Requires -d, --destination <file>.
uip or libraries download MyLib:1.0.0 --destination ./MyLib.1.0.0.nupkg
uip or 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). Paginated via -l, --limit / --offset; --sort-by <field> sorts results (default Id desc); --all-fields returns the full API response.
uip or libraries versions MyLib
uip or libraries versions MyLib
upload
Upload a library .nupkg to the tenant feed. The path is positional; --file <path> is accepted as an alias.
uip or libraries upload ./MyLib.1.0.0.nupkg
uip or libraries upload ./MyLib.1.0.0.nupkg
Exit codes
See Exit codes for the shared contract. delete exits 1 if -y, --yes is omitted.
Related commands
uip or feeds— list available feeds and their IDs.uip or packages— the processes feed, forProcessandTestspackages.
See also
uip oroverview — shared conventions for everyuip orverb.- How-to: manage Orchestrator assets and queues — multi-resource workflows.