uipath-cli
latest
false
Guía del usuario de UiPath CLI
- Información general
- Comience ya
- Conceptos
- Uso de UiPath CLI
- Guías prácticas
- Recetas de CI/CD
- Referencia de los comandos
- Información general
- Códigos de salida
- Opciones globales
- Init
- Validar
- refresh
- review
- review-history
- Gestionar herramientas
- memory
- Evaluación
- guardrails
- model
- Depurar
- agente de código UIP
- uip coder
- uip context-grounding
- UIP Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- añadir-entidad-de-datos-de-prueba
- añadir-cola-de-datos-de-prueba
- añadir-variación-de-datos-de-prueba
- Analizar
- Crear
- Crear proyecto
- Diferencia
- Buscar actividades
- obtener-reglas-del-analizador
- obtener-predeterminado-actividad-xaml
- obtener-errores
- obtener-casos-de-prueba-manual
- obtener-pasos-de-prueba-manual
- get-library-object-repository
- get-object-repository
- obtener versiones
- get-workflow-example
- indicar-aplicación
- indicar-elemento
- inspeccionar-paquete
- install-data-fabric-entities
- instalar-o-actualizar-paquetes
- enumerar-data-fabric-entities
- list-instances
- ejemplos-de-flujo-de-trabajo-de-lista
- Paquete
- Publicar
- remote
- restore
- run, debug & execution
- archivo de ejecución
- plantillas-de-búsqueda
- iniciar-studio
- detener la ejecución
- tm
- UIA
- uip tasks
- Seguimientos de UIP
- uip traces feedback
- Migración
- Referencia y soporte
Importante :
Este contenido se ha traducido mediante traducción automática.
La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.
List the tool resources configured on an agent project with `uip agent tool list`.
uip agent tool currently registers a single subcommand, list. There is no add, discover, connect, or remove verb — tool resources are added by hand-editing agent.json (or resources/<name>/resource.json), not through a dedicated CLI verb.
Local-only — no login required.
Sinopsis
uip agent tool list [--path <path>]
uip agent tool list [--path <path>]
All invocations honor the global options (--output, --output-filter, --log-level, --log-file). Exit codes follow the standard contract.
lista de herramientas del agente de uip
List the tools configured for the agent.
Opciones
| Marca | Predeterminado | Propósito |
|---|---|---|
--path <path> | . | Ruta al directorio del proyecto del agente. |
Ejemplo
uip agent tool list --path ./my-agent
uip agent tool list --path ./my-agent
Forma de datos (--json de salida)
{
"Code": "AgentToolList",
"Data": [
{
"Name": "InvoiceLookup",
"Type": "process",
"Id": "a1b2c3d4-0000-0000-0000-000000000601",
"Enabled": true
}
]
}
{
"Code": "AgentToolList",
"Data": [
{
"Name": "InvoiceLookup",
"Type": "process",
"Id": "a1b2c3d4-0000-0000-0000-000000000601",
"Enabled": true
}
]
}
An agent with no configured tools returns Data: { "Message": "No tools configured" }.
Relacionado
uip agent validate— checks that every tool resource has a matching UUID and required fields.uip agent refresh— regeneratesentry-points.json/bindings_v2.jsonafter a tool resource is added or changed.