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 rpa inspect-package reflects over a NuGet package and produces Markdown documentation for every public type, method, property, and enum it exposes. The package can be pulled from a configured feed (--package-name plus --package-version) or read directly off disk (--nupkg-path) — useful when you need to verify what an activity package actually exposes before writing or generating workflows against it.
Reflection is performed via Studio, so the verb requires a Windows runner.
Synopsis
uip rpa inspect-package [--package-name <string>] [--package-version <string>] [--feed-url <string>] [--nupkg-path <string>]
uip rpa inspect-package [--package-name <string>] [--package-version <string>] [--feed-url <string>] [--nupkg-path <string>]
オプション
| フラグ | 説明 |
|---|---|
--package-name <string> | NuGet package name, e.g. UiPath.Excel.Activities. Not required when --nupkg-path is provided. |
--package-version <string> | Package version, e.g. 3.3.1. Not required when --nupkg-path is provided. |
--feed-url <string> | Optional NuGet feed URL. Defaults to the UiPath Official feed. |
--nupkg-path <string> | Absolute path to a local .nupkg file. When set, the package is inspected directly without contacting any feed. |
For the complete option list on your installed tool version, run:
uip rpa inspect-package --help
uip rpa inspect-package --help
例
# Inspect a published activity package from the default feed
uip rpa inspect-package \
--package-name UiPath.Excel.Activities \
--package-version 3.3.1
# Inspect a local .nupkg before publishing
uip rpa inspect-package \
--nupkg-path C:\artifacts\MyOrg.Activities.1.0.0.nupkg
# Inspect a published activity package from the default feed
uip rpa inspect-package \
--package-name UiPath.Excel.Activities \
--package-version 3.3.1
# Inspect a local .nupkg before publishing
uip rpa inspect-package \
--nupkg-path C:\artifacts\MyOrg.Activities.1.0.0.nupkg
Related
uip rpa get-versions— list available versions before picking one to inspect.uip rpa install-or-update-packages— install the inspected package into a project.uip rpa pack— produce the.nupkgyou might want to inspect locally.