UiPath Documentation
uipath-cli
latest
false
UiPath-CLI-Benutzerhandbuch
Wichtig :
Dieser Inhalt wurde maschinell übersetzt. Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.

uip agent review-history

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.

Nur lokal – keine Anmeldung erforderlich.

Zusammenfassung​

uip agent review-history add <grade> [path] [--errors <count>] [--warnings <count>]
uip agent review-history add <grade> [path] [--errors <count>] [--warnings <count>]

Alle Aufrufe berücksichtigen die globalen Optionen (--output, --output-filter, --log-level, --log-file). Austrittscodes folgen dem Standardvertrag.

uip agent review-history add​

Argumente​

NameErforderlichZweck
<grade>jaLetter grade to record (A to F).
[path]no (default .)Agent project directory.

Optionen​

MarkierenZweck
--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.

Beispiele​

# 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

Datenform (--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.

Siehe auch​

  • Zusammenfassung​
  • uip agent review-history add​
  • Argumente​
  • Optionen​
  • Beispiele​
  • Datenform (--output json)​
  • Zugehörig​
  • Siehe auch​

War diese Seite hilfreich?

Verbinden

Benötigen Sie Hilfe? Support

Möchten Sie lernen? UiPath Academy

Haben Sie Fragen? UiPath-Forum

Auf dem neuesten Stand bleiben