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 vss add registers a process (or, eventually, a connection) in the current vertical solution. It rewrites vss.json to include the new entry. The optional positional [path] selects which project directory to add; it defaults to the current working directory.
Synopsis
uip vss add <type> [path]
uip vss add <type> [path]
<type>—processorconnection.[path]— Project directory. Defaults to the current directory.
Options
add takes no options beyond --help.
Examples
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
# Add a process from the current directory
uip vss add process
# Add a process from an explicit path
uip vss add process ./processes/onboarding
Data shape (--output json)
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
{
"Code": "ProcessesAdded",
"Data": {
"Status": "1 processes added successfully",
"Path": "/Users/alice/my-app"
}
}
Note:
connection is not yet implemented. Running uip vss add connection fails with Failure: "Connections are not supported yet". Use process for now.
Related
- uip vss init / scaffold — produce the
vss.jsonthataddrewrites. - uip vss sync — reconcile the registered processes with UiPath Cloud.
- uip vss generate — refresh TypeScript types after adding processes.