uipath-cli
latest
false
- 概要
- はじめに
- 概念
- Using UiPath CLI
- 使用ガイド
- CI/CD recipes
- コマンド リファレンス
- 概要
- 終了コード
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- プロジェクトを作成
- 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
- 元に戻す
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- 移行
- Reference & support
UiPath CLI user guide
最終更新日時 2026年5月7日
uip flow init scaffolds a new Flow project directory with a minimal manifest and a starter .flow file containing a single manual-trigger node.
Synopsis
uip flow init <name> [--force]
uip flow init <name> [--force]
Honors global options. Exit codes follow the standard contract.
引数
<name>(required) — project folder name. Validated againstVALID_PROJECT_NAME_REGEX: letters, numbers, underscores (_), and hyphens (-) only.
オプション
--force— initialize even if the target directory exists and is non-empty. Existing files are not cleared — files are written alongside; this is useful for reinitializing inside a pre-created folder.
動作
The command creates <name>/ in the current working directory and writes two files:
project.uiproj—{ "Name": "<name>", "ProjectType": "Flow" }<name>.flow— seed Flow JSON containing:- One
core.trigger.manualstart node wired to a generatedentryPointId - The matching node definition in
definitions[] - Empty
edges,bindings,variables - Canvas
layout.nodes.startposition
- One
If <name> already exists and is non-empty and --force is not set, the command fails with an error prompting the user to pass --force.
例
# Create a new project in ./invoice-flow
uip flow init invoice-flow
# Reinitialize into an existing non-empty folder (e.g. a Git repo)
uip flow init invoice-flow --force
# Create a new project in ./invoice-flow
uip flow init invoice-flow
# Reinitialize into an existing non-empty folder (e.g. a Git repo)
uip flow init invoice-flow --force
Data shape (--output json)
{
"Code": "FlowInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/invoice-flow"
}
}
{
"Code": "FlowInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/invoice-flow"
}
}
On failure, Code is absent and the response carries Result: "Failure", Message, and Instructions.
参照
uip flow pack— pack the scaffolded projectuip flow node— add nodes to the starter.flowfileuip flow registry— discover node types to add- Flow overview