uipath-platform

Operate UiPath Cloud, Orchestrator, Integration Service, and Data Fabric via the uip CLI.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Working with UiPath Cloud APIs by hand means juggling OAuth tokens, folder headers, OData filters, and pagination envelopes. This Skill routes every UiPath platform task through the uip CLI so authentication, Orchestrator resources, Integration Service connections, Data Fabric entities, and LLM Gateway configurations are handled with the correct commands and validation rules. ## Core Features & Use Cases - Orchestrator operations: Manage folders, assets, queues, storage buckets, libraries, webhooks, triggers, processes, jobs, machines, users, roles, sessions, and calendars through uip or commands. - Data Fabric management: Create entity schemas, insert and query records with filters and aggregates, manage choice sets, attach files to records, and bulk-import CSV data via uip df. - Integration Service and LLM Gateway: Discover connectors and connections, execute resource operations with CEQL filters, register BYO LLM keys against UiPath products, and diagnose failing configurations with traces. - Use Case: A user asks to create a Data Fabric entity from a CSV, bulk-load the records, then start an Orchestrator job that consumes them. The Skill checks login status, confirms inferred field types, runs uip df records import, and starts the job with the correct folder scope. ## Quick Start Ask the assistant to list your UiPath Orchestrator folders or create an asset, and it will verify your uip CLI login status before running the appropriate command.

Frequently Asked Questions about uipath-platform

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

FAQPage Schema
How do I create an asset in UiPath Orchestrator from the command line?

Use `uip or assets create` after confirming login with `uip login status`. The CLI handles the folder header and OData request shape automatically, so avoid hand-rolling POST calls to /odata/Assets.

How do I bulk import CSV records into a UiPath Data Fabric entity?

Run `uip df records import <entity-id> --file data.csv` with headers matching each field's DisplayName exactly. Complex field types like CHOICE_SET, RELATIONSHIP, FILE, and AUTO_NUMBER are ignored by import, so use `records insert --file` for those instead.

Can I manage multiple UiPath tenants or logins on one machine?

Yes, use named profiles via `uip login --profile <name>` and pass `--profile <name>` on every command. Profile credentials are stored at ~/.uipath/profiles/<name>/.auth and never fall back to the default login.

Why did my UiPath job fail to start with error 2818?

Error 2818 means no runtimes are configured for the target folder. Assign machine templates with Unattended or Development runtimes to that folder, then retry starting the job.

How do I diagnose a BYO LLM configuration that stopped working?

Re-probe the connection with `uip llm-configuration byo-connections get <id> --force-refresh`, then force a fresh server-side validation with an idempotent update. Cross-reference the model actually invoked using `uip traces spans get <trace-id>`.

When should I use the uip CLI versus the UiPath REST API directly?

Always prefer the uip CLI; it handles folder headers, OData filter shapes, pagination, and retry semantics that raw REST calls often miss. Only fall back to direct REST after confirming no uip command covers the task in the command reference.