Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

uipath-platformuipath 平台

Agent Skill

uipath-platform 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

53

下载量

107
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:uipath-platform(uipath 平台)
来源仓库:https://github.com/uipath/skills
仓库路径:skills/uipath-platform
安装命令:
npx skills add https://github.com/uipath/skills --skill uipath-platform
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/uipath/skills --skill uipath-platform

简介

uipath-platform 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。uipath-platform 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发联网、命令执行或文件读写。

SKILL.md

UiPath Development Environment Assistant

Comprehensive guide for setting up and managing UiPath development environments, Orchestrator resources, solutions, and CLI tooling.

When to Use This Skill

  • User wants to authenticate with UiPath Cloud (login, logout, switch tenants)
  • User wants to manage Orchestrator folders (list, create, edit, move, delete)
  • User wants to manage Orchestrator assets (list, create, get, update, delete)
  • User wants to manage resources (assets, queues, queue items, storage buckets, bucket files)
  • User wants to work with solutions (create, pack, publish, deploy, activate)
  • User asks about UiPath platform concepts (tenants, folders, robots, queues, packages)
  • User wants to install or manage CLI tools (search, install, update)
  • User wants to set up a CI/CD pipeline for UiPath automation projects
  • User asks how to deploy an automation to Orchestrator

Auth token location

The CLI stores credentials at ~/.uipath/.auth after login:

UIPATH_URL=https://alpha.uipath.com
UIPATH_ORG_NAME=my_org
UIPATH_TENANT_NAME=my_tenant
UIPATH_ACCESS_TOKEN=eyJ...
UIPATH_ORGANIZATION_ID=...
UIPATH_TENANT_ID=...

This token can be reused for direct Orchestrator REST API calls when CLI commands don't cover a use case.

Quick Start

Step 1 — Authenticate

Before interacting with Orchestrator, solutions, or Integration Service, the user must be logged in.

Interactive login (browser OAuth2):

uip login --output json

For a custom authority (e.g., alpha.uipath.com):

uip login --authority "https://alpha.uipath.com/identity_" --it --output json

For non-interactive (CI/CD) scenarios, use client credentials:

uip login --client-id "<ID>" --client-secret "<SECRET>" --tenant "<TENANT>" --output json

Check login status:

uip login status --output json

Step 2 — Select a Tenant

List available tenants and set the active one:

uip login tenant list --output json
uip login tenant set "<TENANT_NAME>" --output json

Step 3 — Explore Orchestrator

List folders to orient yourself:

uip or folders list --output json

Step 4 — Work with Solutions or Orchestrator Resources

Choose the appropriate operation from the Task Navigation table below.

Task Navigation

I need to...Read these
Authenticate / manage tenantsreferences/uip-commands.md
Set up folders, users, machinesreferences/orchestrator/setup-environment.md
Run and monitor jobsreferences/orchestrator/run-jobs.md
Manage sessions and runtimesreferences/orchestrator/manage-sessions.md
Tenant settings, calendars, audit logsreferences/orchestrator/tenant-admin.md
Understand Orchestrator conceptsreferences/orchestrator/orchestrator.md
Manage assetsreferences/resources/manage-assets.md
Work with queues and queue itemsreferences/resources/process-queues.md
Work with storage buckets and filesreferences/resources/work-with-storage.md
Set up triggers and webhooksreferences/resources/triggers-and-webhooks.md
Develop a solutionreferences/solution/develop-solution.md
Pack, publish, deploy solutionsreferences/solution/pack-and-deploy.md
Activate / uninstall deploymentsreferences/solution/activate-and-manage.md
Set up CI/CD pipelinereferences/solution/pack-and-deploy.md
Debug LLM/agent tracesreferences/traces.md
Use Integration Servicereferences/integration-service/integration-service.md
Full CLI command referencereferences/uip-commands.md
Build/run/validate coded workflows/uipath:uipath-rpa

Resolving UiPath Studio

Some operations (creating projects, validating, running workflows, packing) require UiPath Studio. When Studio is needed:

  1. Check for a running instance first: rpa-tool list-instances --output json
  2. If no instance is running, try the standard install location: rpa-tool start-studio --output json
  3. If that fails (version too old, not found, etc.) — ASK THE USER where their Studio build is located. Do NOT search the entire filesystem. Common locations include:

- C:\Program Files\UiPath\Studio - A dev build directory (e.g., dev4/Studio/Output/bin/Debug) - A custom install path

  1. Once you have the path, pass it explicitly: rpa-tool start-studio --studio-dir "<STUDIO_DIR>" --output json
Never spend time searching for Studio automatically. If the default doesn't work, ask immediately — the user knows where their build is.

Key Concepts

UiPath Platform Hierarchy

Organization
  └── Tenant(s)
        └── Folder(s)              ← Orchestrator folders (logical containers)
              ├── Processes         ← Published automation packages
              ├── Assets            ← Key-value configuration (Text, Bool, Integer, Credential, Secret)
              ├── Queues            ← Work item queues for distributed processing
              ├── Jobs              ← Running/completed process executions
              ├── Triggers          ← Event-based or queue-based job triggers
              ├── Schedules         ← Time-based job scheduling (cron)
              ├── Storage Buckets   ← File storage for automation data
              ├── Machines          ← Robot execution environments
              └── Robots            ← Attended/Unattended execution agents

Robot Types

TypeDescriptionUse Case
AttendedRuns alongside a human user, triggered via UiPath AssistantFront-office tasks, user-assisted automation
UnattendedRuns autonomously in virtual environments, managed by OrchestratorBack-office tasks, scheduled processing, 24/7 operations

Folder Types

TypeDescription
StandardDefault folder for organizing automations
PersonalUser-specific workspace
VirtualLogical grouping without physical separation
SolutionFolder created by solution deployment
DebugSolutionDebug variant of a solution folder

Asset Types

TypeDescription
TextPlain text value
BoolBoolean (true/false)
IntegerNumeric integer value
CredentialUsername + password pair
SecretEncrypted secret value
DBConnectionStringDatabase connection string
HttpConnectionStringHTTP connection string
WindowsCredentialWindows credential pair

CLI Overview

The UiPath CLI (uip) is a unified command-line tool for interacting with the UiPath platform:

Command GroupPrefixDescriptionStatus
Authenticationlogin, logoutOAuth2, client credentials, PAT, tenant managementAvailable
OrchestratororFolders, jobs, processes, releasesAvailable
ResourceresourceAssets, queues, queue items, storage buckets, bucket filesAvailable
SolutionssolutionCreate, pack, publish, deploy solutionsAvailable
Integration ServiceisConnectors, connections, activities, resourcesAvailable
Test ManagertmTest projects, test sets, test cases, executions, reportsAvailable
ToolstoolsCLI tool extension managementAvailable
MCPmcpModel Context Protocol serverAvailable
Coded AgentscodedagentPython agent lifecycle (setup, exec)Available
RPArpaRPA workflow management (create, compile, validate, execute)Available

Global Options

Every uip command accepts:

OptionDescriptionDefault
--output <format>Output format: table, json, yaml, plaintable (interactive), json (non-interactive)
--output-filter <expression>JMESPath expression to filter JSON output--
--verboseEnable verbose/debug loggingOff
--help / -hDisplay help for the command--
--version / -vDisplay CLI version--
Always use --output json when calling uip commands programmatically. JSON is compact and machine-readable. Use --output-filter to extract specific fields instead of piping output to python3, jq, or other post-processing tools. The filter uses JMESPath syntax. Example: --output json --output-filter "Data[].{id: id, name: name}"

Deployment Lifecycle

The typical deployment workflow for a UiPath automation:

1. Develop    → Create/edit coded workflows or RPA projects locally
2. Validate   → uip rpa get-errors --use-studio
3. Pack       → uip solution pack
4. Login      → uip login
5. Publish    → uip solution publish
6. Deploy     → uip solution deploy run -n "<NAME>" -c "<CONFIG_KEY>"

Practical Deployment Notes

  • Starting jobs requires runtimes. If you get error 2818 "no runtimes configured", the target folder needs machine templates with Unattended/Development runtimes assigned.
  • Fallback: direct REST API. When CLI tools don't support an operation, use the Orchestrator REST API with the access token from ~/.uipath/.auth. See references/orchestrator/orchestrator.md - REST API.

Orchestrator REST API (Fallback)

When CLI commands are insufficient, use the Orchestrator REST API directly with the stored access token:

source ~/.uipath/.auth

# Upload a .nupkg package
curl -X POST "${UIPATH_URL}/${UIPATH_ORG_NAME}/${UIPATH_TENANT_NAME}/orchestrator_/odata/Processes/UiPath.Server.Configuration.OData.UploadPackage" \
  -H "Authorization: Bearer ${UIPATH_ACCESS_TOKEN}" \
  -H "X-UIPATH-OrganizationUnitId: <FOLDER_ID>" \
  -F "file=@./MyProject.1.0.0.nupkg"

# Create a process (release) from an uploaded package
curl -X POST "${UIPATH_URL}/${UIPATH_ORG_NAME}/${UIPATH_TENANT_NAME}/orchestrator_/odata/Releases" \
  -H "Authorization: Bearer ${UIPATH_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -H "X-UIPATH-OrganizationUnitId: <FOLDER_ID>" \
  -d '{"Name":"MyProcess","ProcessKey":"MyProject","ProcessVersion":"1.0.0"}'

# Start a job
curl -X POST "${UIPATH_URL}/${UIPATH_ORG_NAME}/${UIPATH_TENANT_NAME}/orchestrator_/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs" \
  -H "Authorization: Bearer ${UIPATH_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -H "X-UIPATH-OrganizationUnitId: <FOLDER_ID>" \
  -d '{"startInfo":{"ReleaseKey":"<RELEASE_KEY>","Strategy":"ModernJobsCount","JobsCount":1,"RuntimeType":"Unattended","InputArguments":"{}"}}'

The X-UIPATH-OrganizationUnitId header is the folder ID (get it from uip or folders list).

References

Trouble? If something didn't work as expected, use /uipath-feedback to send a report.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.03%
按下载量换算41

Claude

30.49%
按下载量换算33

Cursor

18.62%
按下载量换算20

Gemini CLI

10.76%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills