uipath-agents

Build, deploy, and manage UiPath coded and low-code agents via the uip CLI.

9|6|Updated Aug 25, 2017
One-click install
npx skills add https://github.com/sergueik/springboot_study --skill uipath-agents-sergueik
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: uipath-agents
Source: https://github.com/sergueik/springboot_study/tree/main/basic-uipath-skills/.github/skills/uipath-agents
Command: npx skills add https://github.com/sergueik/springboot_study --skill uipath-agents-sergueik

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve? Building UiPath agents involves many error-prone steps: scaffolding projects, editing agent.json schemas, syncing entry-points.json, deriving bindings, and deploying to Orchestrator or Studio Web. This Skill guides the full agent lifecycle so projects stay valid and deployable. ## Core Features & Use Cases - Coded agent lifecycle: Scaffold Python agents with uip codedagent new, generate schemas and bindings, run evaluations, and deploy with LangGraph, LlamaIndex, or OpenAI Agents frameworks. - Low-code agent authoring: Create and edit agent.json projects, add tools, contexts, memory spaces, escalations, and guardrails, then validate, pack, and deploy via uip solution commands. - Flow and platform integration: Embed agents inline in Maestro flows, wire multi-agent solutions, and connect Integration Service connectors, Context Grounding indexes, and Action Center escalations. - Use Case: Ask the assistant to "build a UiPath agent that classifies support tickets" and it scaffolds the project, configures the model and prompts, validates the schemas, runs a smoke evaluation, and deploys it to your tenant. ## Quick Start Ask the assistant to create and deploy a UiPath agent for your use case, specifying whether you want a low-code or coded (Python) agent.

Frequently Asked Questions about uipath-agents

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a UiPath agent from scratch?

For coded agents, scaffold with `uip codedagent new <name>` then generate schemas with `uip codedagent init`. For low-code agents, run `uip agent init "<Name>"`, edit agent.json, then refresh and validate before deploying.

Coded vs low-code UiPath agent: which should I choose?

Low-code agents use declarative agent.json with no Python and are fastest to a working agent, including conversational use cases. Coded agents give full Python control with LangGraph, LlamaIndex, or OpenAI Agents for custom state machines and third-party libraries.

How do I deploy a UiPath agent to Orchestrator?

Coded agents deploy with `uip codedagent deploy`. Low-code agents deploy through the solution lifecycle: `uip solution pack`, `uip solution publish`, then `uip solution deploy run` with the target folder.

Can a UiPath agent call Integration Service connectors like Slack or Jira?

Yes. Low-code agents add Integration Service tools as resource files under resources/, while coded agents use UiPath SDK connections. Discovery of available connections uses `uip solution resources list --kind Connection --source remote`.

Why does my low-code agent fail validation after editing agent.json?

Common causes are contentTokens out of sync with message content, entry-points.json not mirroring inputSchema/outputSchema, or a pending storage migration. Run `uip agent refresh` then `uip agent validate` to regenerate derived files and surface exact errors.

When should I use UiPath coded functions instead of an agent?

Use coded functions (`uip function`) when the logic is deterministic Python with no LLM reasoning or agent runtime. If uipath.json declares a functions map, the project is a coded function and follows the separate uipath-functions lifecycle.