uipath-cli
latest
false
- Información general
- Comience ya
- Conceptos
- Using UiPath CLI
- Guías prácticas
- CI/CD recipes
- Referencia de los comandos
- Información general
- Códigos de salida
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Crear proyecto
- 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
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migración
- Reference & support
UiPath CLI user guide
Última actualización 7 de may. de 2026
uip rpa get-analyzer-rules lists the workflow analyzer rules currently enabled for the open project. Each rule entry includes its ID, severity, scope, description, recommendation, configured parameter values, and link to documentation — disabled rules are filtered out before the response is returned. The output is the constraint set that any new XAML or coded workflow needs to comply with to pass uip rpa analyze.
Studio owns the analyzer configuration, so the verb requires a Windows runner.
Synopsis
uip rpa get-analyzer-rules [--scope { Activity | Workflow | Project | Coded Workflow }]
uip rpa get-analyzer-rules [--scope { Activity | Workflow | Project | Coded Workflow }]
Opciones
| Marca | Descripción |
|---|---|
--scope <string> | Optional scope filter — Activity, Workflow, Project, or Coded Workflow. When omitted, rules from all scopes are returned. |
For the complete option list on your installed tool version, run:
uip rpa get-analyzer-rules --help
uip rpa get-analyzer-rules --help
Ejemplos
# Print every enabled rule across all scopes
uip rpa get-analyzer-rules
# Only the rules that apply when authoring a full workflow
uip rpa get-analyzer-rules --scope Workflow
# Roslyn analyzers that apply to coded workflows
uip rpa get-analyzer-rules --scope "Coded Workflow"
# Print every enabled rule across all scopes
uip rpa get-analyzer-rules
# Only the rules that apply when authoring a full workflow
uip rpa get-analyzer-rules --scope Workflow
# Roslyn analyzers that apply to coded workflows
uip rpa get-analyzer-rules --scope "Coded Workflow"
Related
uip rpa analyze— actually run the analyzer and surface violations.uip rpa get-errors— fetch validation diagnostics, including analyzer warnings.