uipath-tasks

uipath-tasks is a skill for Claude Code, Codex from marcelocruzrpa/uipath-ai-skills. It costs 138 tokens per session (2,970 once invoked), scanned A, original, MIT.

A workflow generator for UiPath Tasks, which represent work assigned to people or outside systems inside an automation. It supports forms, external tasks, waiting for completion, and task assignment or completion.

In plain words
What is it for?
Use it to create form-based tasks, pause for human input, wait for external systems, assign tasks, and complete tasks programmatically.
Why use it?
It helps connect automated processes with human decisions or other systems that must act before the workflow can continue. It also validates and registers the generated workflow components through UiPath’s extension system.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create form-based tasks, pause for human input, wait for external systems, assign tasks, and complete tasks programmatically.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/marcelocruzrpa/uipath-ai-skills/uipath-tasks
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add marcelocruzrpa/uipath-ai-skills --skill uipath-tasks
Clone the repo
git clone --depth 1 https://github.com/marcelocruzrpa/uipath-ai-skills

Made for: Claude Code, Codex.

Its marketplace also offers this one on its own, as the plugin uipath-tasks/plugin install uipath-tasks after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for uipath-tasks

README.md
[![agentmods](https://agentmods.dev/badge/skills/marcelocruzrpa/uipath-ai-skills/uipath-tasks/github.svg)](https://agentmods.dev/skills/marcelocruzrpa/uipath-ai-skills/uipath-tasks)
Your own site
<a href="https://agentmods.dev/skills/marcelocruzrpa/uipath-ai-skills/uipath-tasks"><img src="https://agentmods.dev/badge/skills/marcelocruzrpa/uipath-ai-skills/uipath-tasks/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for uipath-tasks

Your own site · 80×15
<a href="https://agentmods.dev/skills/marcelocruzrpa/uipath-ai-skills/uipath-tasks"><img src="https://agentmods.dev/badge/skills/marcelocruzrpa/uipath-ai-skills/uipath-tasks.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,970 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00138 $0.02970
Opus 5 $0.00069 $0.01485
Sonnet 5 $0.00028 $0.00594
Haiku 4.5 $0.00014 $0.00297

Measured 13d ago against content hash b4aabfb04537, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

uipath-tasks scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (extensions/__init__.py, extensions/battle_test_grading.py, extensions/generators.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

uipath-tasks/SKILL.md · 139 lines

How it starts

The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.

UiPath Tasks Skill

Generate Tasks workflows for human-in-the-loop, system-in-the-loop, and task management patterns in UiPath.

Plugin architecture: This skill's extensions/ directory is auto-discovered by uipath-core's plugin_loader.py. Generators, lint rules, scaffold hooks, namespaces, and known activities are registered at import time — no manual wiring needed. Core's generate_workflow.py, validate_xaml, and scaffold_project.py query the plugin registries at runtime.

Plugin API contract (v2)

This skill is the canonical example for out-of-tree plugin authors. The contract:

  • REQUIRED_API_VERSION = 2 must be declared at the top of extensions/__init__.py. Plugins on v1 (or with no declaration) fail to load with a clear API version mismatch error and any partial registrations are rolled back.
  • Registration entry points added in v2: register_version_profile(package, profile_version, profile_dict) and register_band_profile_mapping(band, package, profile_version) — used by lint 122 (version-band drift). Call register_band_profile_mapping once per (band, package) pair. Registering after the lint module is already imported automatically invalidates the lint caches, so the new entries take effect on the next lint pass without any reload.
  • Atomic commit: every register_* call made during a plugin's load (including from submodules imported from __init__.py) is captured in the registry snapshot. If __init__.py raises before completing, all registrations from that plugin are reverted. The registry is never observed in a partially-loaded state by other plugins or by core.
  • Out of scope for rollback: non-registry side effects (file writes, env vars, threads spawned at import time, monkey-patches). Confine those to lazy paths invoked after a successful load.
  • Test that load succeeded: assert plugin_loader.get_load_failures() == [] after load_plugins(). A plugin that raised during load surfaces in that list with its filename and exception.

Read the full file on GitHub · 139 lines

Files

What ships with it

26 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 139 lines · 138 tokens per session scan A b4aabfb04537

Subscribe to this mod's changes

uipath-tasks is a skill published in the GitHub repository marcelocruzrpa/uipath-ai-skills (106 stars, last pushed 1mo ago), licensed MIT. It adds 138 tokens to every session and 2,970 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

hourly-rate-time

A time-management method based on assigning a high personal value to each hour. It treats time as a limited resource and uses that value to decide which tasks to do, outsource, or skip.

kangarooking/cangjie-skill · 146 tokens

screen-detox

A habit-change framework for reducing non-work screen use such as social media, short videos, games, and endless scrolling.

kangarooking/cangjie-skill · 148 tokens

monkey-mind-meditation

A meditation and reflection guide for a busy or anxious mind. It treats recurring thoughts as something to observe and examine, while noting that acute serious mental-health problems need professional care.

kangarooking/cangjie-skill · 158 tokens

happiness-skill

A Chinese-language guide to happiness based on reducing unmet wants, focusing on the present, and treating happiness as a trainable skill.

kangarooking/cangjie-skill · 136 tokens

file-organizer

Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.

foryourhealth111-pixel/Vibe-Skills · 46 tokens

digital-brain

This skill should be used when the user asks to "write a post", "check my voice", "look up contact", "prepare for meeting", "weekly review", "track goals", or mentions personal brand, content creation, network management, or voice consistency.

foryourhealth111-pixel/Vibe-Skills · 57 tokens