uipath-cli
latest
false
- 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
Última atualização 7 de mai de 2026
uip vss scaffold scaffolds a new vertical solution from the upstream template. It clones UiPath/vertical-solutions-template via git, strips the .git directory, and copies the result into the target directory.
Synopsis
uip vss scaffold [options]
uip vss scaffold [options]
Opções
| Bandeira | Description |
|---|---|
-t, --target-path <targetPath> | Target directory. Created if it does not exist. Defaults to the current working directory. |
Pré-requisitos
git must be installed and on PATH. If git is missing, the command fails with a Failure result pointing at https://git-scm.com/downloads.
Exemplos
# Scaffold into the current directory
uip vss scaffold
# Scaffold into ./my-app
uip vss scaffold --target-path ./my-app
# Scaffold into the current directory
uip vss scaffold
# Scaffold into ./my-app
uip vss scaffold --target-path ./my-app
Data shape (--output json)
The command emits two success payloads in sequence. First, the clone confirmation:
{
"Code": "TemplateCloned",
"Data": {
"Status": "Template cloned successfully",
"Path": "./my-app"
}
}
{
"Code": "TemplateCloned",
"Data": {
"Status": "Template cloned successfully",
"Path": "./my-app"
}
}
Followed by next-steps instructions:
{
"Code": "NextSteps",
"Data": {
"Status": "Next steps",
"Instructions": "cd ./my-app\nbun install\nbun dev"
}
}
{
"Code": "NextSteps",
"Data": {
"Status": "Next steps",
"Instructions": "cd ./my-app\nbun install\nbun dev"
}
}
Related
- uip vss init — initialize a
vss.jsonin place without cloning the template. - uip vss add — register processes once the project is scaffolded.
- uip vss generate — generate types from the Data Fabric schema bundled with the template.