- 概要
- はじめに
- 概念
- 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
- 移行
- 参照とサポート
Score a low-code agent project against a deterministic rule set with `uip agent review`.
uip agent review runs a deterministic rule set over a low-code agent project and returns a verdict (PASS/FAIL), a score (0-100), a letter grade (A+ through F), and a categorized list of issues and strengths. It's a quality pass, distinct from uip agent validate's pass/fail schema check — review can pass a structurally-valid project with a low score if the rules flag weak prompts, missing guardrails, or other authoring issues.
Local-only — no login required.
概要
uip agent review [path] [--checks <categories>]
uip agent review [path] [--checks <categories>]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
引数
[path](optional, default.) — Agent project directory.
オプション
| フラグ | 既定 (Default) | 目的 |
|---|---|---|
--checks <categories> | all categories | Comma-separated rule categories to run. Known categories: evals, schema, tools, guardrails, code, general. |
An empty or all-whitespace --checks value fails with AgentReviewInvalidChecks; an unrecognized category name fails the same way, listing the known set.
例
# Review a project at a specific path
uip agent review ./my-agent
# Run only the schema and general rule categories
uip agent review --checks schema,general
# Review a project at a specific path
uip agent review ./my-agent
# Run only the schema and general rule categories
uip agent review --checks schema,general
データシェイプ(--output json)
{
"Code": "AgentReview",
"Data": {
"ProjectDir": "./my-agent",
"Verdict": "PASS",
"Score": 100,
"Grade": "A+",
"Issues": [],
"Strengths": [],
"Stats": {
"errors": 0,
"warnings": 0,
"infos": 0,
"byCategory": { "evals": 0, "schema": 0, "tools": 0, "guardrails": 0, "code": 0, "general": 0 }
}
}
}
{
"Code": "AgentReview",
"Data": {
"ProjectDir": "./my-agent",
"Verdict": "PASS",
"Score": 100,
"Grade": "A+",
"Issues": [],
"Strengths": [],
"Stats": {
"errors": 0,
"warnings": 0,
"infos": 0,
"byCategory": { "evals": 0, "schema": 0, "tools": 0, "guardrails": 0, "code": 0, "general": 0 }
}
}
}
Issues and Strengths are populated with rule-specific entries when the project has findings. Review failing to run at all (bad path, unreadable project) uses Code: "AgentReviewFailed".
関連
uip agent review-history add— record this command's grade over time.uip agent validate— the schema-conformance check to run alongside review.