- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- UIP-codierter Agent
- UIP-Coded
- UIP-Kontextgrundlage
- UIP-Dokumentation
- UIP-Funktion
- UIP-Leitplanken
- uip llm-configuration
- uip llm-gateway
- UIP-Modellhub
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- Get-Library-Object-Repository
- Get-Object-Repository
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- Listeninstanzen
- Beispiele für Listenworkflows
- Packen
- Veröffentlichen
- Remote
- restore
- Ausführen, Debuggen & Ausführung enthält
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- TM
- UIA
- UIP-Aufgaben
- UIP-Ablaufverfolgungen
- Feedback zu UIP-Ablaufverfolgungen
- Migration
- Referenz und 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.
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
| Name | Erforderlich | Zweck |
|---|---|---|
<grade> | ja | Letter grade to record (A to F). |
[path] | no (default .) | Agent project directory. |
Optionen
| Markieren | Zweck |
|---|---|
--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.
Zugehörig
uip agent review— produces the grade this command records.