- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- 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
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
Syntax and options for `uip solution init`, which scaffolds an empty UiPath solution directory with a `.uipx` manifest.
uip solution init scaffolds an empty UiPath solution on disk. It creates a directory named after the solution, writes a .uipx manifest with an empty Projects array, and writes AGENTS.md and CLAUDE.md briefing files that orient AI coding agents to the solution — ready to receive projects via uip solution projects add or uip solution projects import.
概要
uip solution init <solutionName>
uip solution init <solutionName>
このコマンドは 、グローバルオプション を尊重し、 標準の終了コードを返します。
引数
<solutionName>(required) — Name or path for the new solution. A directory is created at this location; the.uipxfile inside it takes the same base name.
オプション
グローバルオプション以外はありません。
例
最小限
uip solution init my-solution
uip solution init my-solution
Creates ./my-solution/my-solution.uipx, plus ./my-solution/AGENTS.md and ./my-solution/CLAUDE.md.
スクリプティング — 生成されたパスをキャプチャします。
uip solution init my-solution --output-filter "Data.Path"
uip solution init my-solution --output-filter "Data.Path"
--output jsonと組み合わせると、新しい.uipxへの絶対パスを含む単一のJSON文字列が出力されます。フォローアップコマンドへのパイプ処理に適しています。
データシェイプ(--output json)
{
"Code": "SolutionInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-solution/my-solution.uipx",
"NextSteps": "Read /workspace/my-solution/AGENTS.md or /workspace/my-solution/CLAUDE.md to understand the solution lifecycle, project types that can be used inside a solution, and related uip command references."
}
}
{
"Code": "SolutionInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-solution/my-solution.uipx",
"NextSteps": "Read /workspace/my-solution/AGENTS.md or /workspace/my-solution/CLAUDE.md to understand the solution lifecycle, project types that can be used inside a solution, and related uip command references."
}
}
NextSteps points at whichever briefing file the invoking agent (or a human) should read next — it's the same content in both files, written for different coding-agent conventions.
関連コマンド
uip solution projects add— 新しいソリューションに既存のプロジェクトのサブフォルダーを登録します。uip solution projects import— 外部プロジェクト フォルダーを新しいソリューションにコピーします。uip solution pack— プロジェクトが追加されたら、デプロイ用の.zipを作成します。
参照
- 最初のパイプライン —
init→projects add→pack→publish→deploy runを順を追って説明します。 uip solutionの概要 — 動詞のタクソノミーとエンドツーエンドのフロー。