- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- 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
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
Record review grades over time in a project's local review-history file with `uip agent review-history add`.
uip agent review-history manages the review grades recorded in a project's local review-history file. It does not run uip agent review itself — add only records a grade you already have (for example, from a prior review run, or a manual assessment) so grade trends can be tracked over time. The history keeps the newest entries only (oldest are dropped once the cap is reached), most recent first.
Local-only — no login required.
Synopsis
uip agent review-history add <grade> [path] [--errors <count>] [--warnings <count>]
uip agent review-history add <grade> [path] [--errors <count>] [--warnings <count>]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
uip agent review-history add
Arguments
| Name | Required | Purpose |
|---|---|---|
<grade> | yes | Letter grade to record (A to F). |
[path] | no (default .) | Agent project directory. |
Options
| Flag | Purpose |
|---|---|
--errors <count> | Number of error findings to record alongside the grade. |
--warnings <count> | Number of warning findings to record alongside the grade. |
An invalid grade fails with AgentReviewHistoryAddInvalidGrade, listing the allowed set. A non-existent project directory fails with AgentReviewHistoryAddInvalidPath. An existing history file that isn't a JSON array of review entries fails with AgentReviewHistoryAddMalformedHistory.
Examples
# Record a review grade for a project at a specific path
uip agent review-history add B ./my-agent
# Record a grade with finding counts, for the current directory
uip agent review-history add C --errors 2 --warnings 5
# Record a review grade for a project at a specific path
uip agent review-history add B ./my-agent
# Record a grade with finding counts, for the current directory
uip agent review-history add C --errors 2 --warnings 5
Data shape (--output json)
{
"Code": "AgentReviewHistoryAdd",
"Data": {
"ProjectDir": "./my-agent",
"Grade": "B",
"RunAt": "2026-09-02T10:00:00.000Z",
"HistoryCount": 1
}
}
{
"Code": "AgentReviewHistoryAdd",
"Data": {
"ProjectDir": "./my-agent",
"Grade": "B",
"RunAt": "2026-09-02T10:00:00.000Z",
"HistoryCount": 1
}
}
Errors and Warnings are included only when the corresponding option was passed.
Related
uip agent review— produces the grade this command records.