uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- 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
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
List the tool resources configured on an agent project with `uip agent tool list`.
uip agent tool currently registers a single subcommand, list. There is no add, discover, connect, or remove verb — tool resources are added by hand-editing agent.json (or resources/<name>/resource.json), not through a dedicated CLI verb.
Local-only — no login required.
概要
uip agent tool list [--path <path>]
uip agent tool list [--path <path>]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
uip agent tool list
List the tools configured for the agent.
オプション
| フラグ | 既定 (Default) | 目的 |
|---|---|---|
--path <path> | . | エージェント プロジェクト ディレクトリへのパスです。 |
例
uip agent tool list --path ./my-agent
uip agent tool list --path ./my-agent
データシェイプ(--output json)
{
"Code": "AgentToolList",
"Data": [
{
"Name": "InvoiceLookup",
"Type": "process",
"Id": "a1b2c3d4-0000-0000-0000-000000000601",
"Enabled": true
}
]
}
{
"Code": "AgentToolList",
"Data": [
{
"Name": "InvoiceLookup",
"Type": "process",
"Id": "a1b2c3d4-0000-0000-0000-000000000601",
"Enabled": true
}
]
}
An agent with no configured tools returns Data: { "Message": "No tools configured" }.
関連
uip agent validate— checks that every tool resource has a matching UUID and required fields.uip agent refresh— regeneratesentry-points.json/bindings_v2.jsonafter a tool resource is added or changed.