@uipath/skills 1.195.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +33 -0
- package/.claude-plugin/plugin.json +34 -0
- package/CODEOWNERS +141 -0
- package/LICENSE +21 -0
- package/README.md +164 -0
- package/agents/uipath-project-discovery-agent.md +333 -0
- package/assets/cli-versions.json +15 -0
- package/assets/uip-catalog-snapshot.json +1275 -0
- package/commands/install-permissions.md +97 -0
- package/hooks/ensure-uip.sh +220 -0
- package/hooks/hooks.json +23 -0
- package/hooks/suggest-permissions.sh +36 -0
- package/hooks/validate-skill-descriptions.sh +58 -0
- package/package.json +44 -0
- package/skills/uipath-admin/SKILL.md +217 -0
- package/skills/uipath-admin/references/audit-commands.md +216 -0
- package/skills/uipath-admin/references/audit-workflow-guide.md +297 -0
- package/skills/uipath-admin/references/authorization/authorization-commands.md +443 -0
- package/skills/uipath-admin/references/authorization/check-access.md +139 -0
- package/skills/uipath-admin/references/authorization/grant-permissions.md +132 -0
- package/skills/uipath-admin/references/authorization/permission-catalog.md +62 -0
- package/skills/uipath-admin/references/authorization/role-assignment-management.md +178 -0
- package/skills/uipath-admin/references/authorization/role-management.md +308 -0
- package/skills/uipath-admin/references/external-app-management.md +142 -0
- package/skills/uipath-admin/references/group-management.md +67 -0
- package/skills/uipath-admin/references/identity-commands.md +662 -0
- package/skills/uipath-admin/references/ip-restriction/bypass-rule-management.md +80 -0
- package/skills/uipath-admin/references/ip-restriction/enforcement-management.md +86 -0
- package/skills/uipath-admin/references/ip-restriction/ip-range-management.md +125 -0
- package/skills/uipath-admin/references/ip-restriction/ip-restriction-commands.md +318 -0
- package/skills/uipath-admin/references/organization-management.md +146 -0
- package/skills/uipath-admin/references/organizations-commands.md +175 -0
- package/skills/uipath-admin/references/pat-management.md +73 -0
- package/skills/uipath-admin/references/robot-account-management.md +36 -0
- package/skills/uipath-admin/references/smtp-management.md +73 -0
- package/skills/uipath-admin/references/tenant-management.md +308 -0
- package/skills/uipath-admin/references/tenants-commands.md +354 -0
- package/skills/uipath-admin/references/user-management.md +105 -0
- package/skills/uipath-agents/SKILL.md +79 -0
- package/skills/uipath-agents/assets/solutions/metadata.json +199 -0
- package/skills/uipath-agents/references/authentication.md +83 -0
- package/skills/uipath-agents/references/coded/capabilities/batch-transform/api-reference.md +38 -0
- package/skills/uipath-agents/references/coded/capabilities/batch-transform/impl-python.md +115 -0
- package/skills/uipath-agents/references/coded/capabilities/batch-transform/planning.md +90 -0
- package/skills/uipath-agents/references/coded/capabilities/context-grounding.md +253 -0
- package/skills/uipath-agents/references/coded/capabilities/conversational-agents.md +86 -0
- package/skills/uipath-agents/references/coded/capabilities/deeprag/api-reference.md +38 -0
- package/skills/uipath-agents/references/coded/capabilities/deeprag/impl-python.md +117 -0
- package/skills/uipath-agents/references/coded/capabilities/deeprag/planning.md +58 -0
- package/skills/uipath-agents/references/coded/capabilities/file-attachments.md +99 -0
- package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails-recommend.md +284 -0
- package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails.md +250 -0
- package/skills/uipath-agents/references/coded/capabilities/human-in-the-loop.md +208 -0
- package/skills/uipath-agents/references/coded/capabilities/integration-service.md +318 -0
- package/skills/uipath-agents/references/coded/capabilities/process-invocation.md +131 -0
- package/skills/uipath-agents/references/coded/capabilities/sdk-services.md +244 -0
- package/skills/uipath-agents/references/coded/capabilities/tracing.md +247 -0
- package/skills/uipath-agents/references/coded/embedding-in-flows.md +97 -0
- package/skills/uipath-agents/references/coded/flow-integration.md +88 -0
- package/skills/uipath-agents/references/coded/frameworks/agent-patterns.md +411 -0
- package/skills/uipath-agents/references/coded/frameworks/coded-functions.md +240 -0
- package/skills/uipath-agents/references/coded/frameworks/langgraph-integration.md +411 -0
- package/skills/uipath-agents/references/coded/frameworks/llamaindex-integration.md +404 -0
- package/skills/uipath-agents/references/coded/frameworks/openai-agents-integration.md +365 -0
- package/skills/uipath-agents/references/coded/lifecycle/bindings-reference.md +1114 -0
- package/skills/uipath-agents/references/coded/lifecycle/build.md +54 -0
- package/skills/uipath-agents/references/coded/lifecycle/deployment.md +143 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluate.md +101 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/best-practices.md +222 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/creating-evaluations.md +187 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluation-sets.md +203 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluators.md +321 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/running-evaluations.md +145 -0
- package/skills/uipath-agents/references/coded/lifecycle/file-sync.md +109 -0
- package/skills/uipath-agents/references/coded/lifecycle/local-workspace.md +67 -0
- package/skills/uipath-agents/references/coded/lifecycle/running-agents.md +92 -0
- package/skills/uipath-agents/references/coded/lifecycle/setup.md +126 -0
- package/skills/uipath-agents/references/coded/quickstart.md +333 -0
- package/skills/uipath-agents/references/coded-vs-lowcode-guide.md +115 -0
- package/skills/uipath-agents/references/context-grounding-patterns.md +52 -0
- package/skills/uipath-agents/references/lowcode/agent-definition.md +388 -0
- package/skills/uipath-agents/references/lowcode/agent-prompting-guide.md +149 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/analyze-attachments.md +115 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/api-reference.md +38 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/impl-json.md +97 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/planning.md +62 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/built-in-tools.md +75 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/api-reference.md +38 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/impl-json.md +84 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/planning.md +49 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/attachments.md +54 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/context.md +40 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/datafabric.md +52 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/index.md +264 -0
- package/skills/uipath-agents/references/lowcode/capabilities/escalation/escalation.md +268 -0
- package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails-recommend.md +227 -0
- package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails.md +1107 -0
- package/skills/uipath-agents/references/lowcode/capabilities/inline-in-flow/inline-in-flow.md +371 -0
- package/skills/uipath-agents/references/lowcode/capabilities/integration-service/integration-service.md +350 -0
- package/skills/uipath-agents/references/lowcode/capabilities/memory/memory.md +186 -0
- package/skills/uipath-agents/references/lowcode/capabilities/process/process.md +257 -0
- package/skills/uipath-agents/references/lowcode/capabilities/process/solution-files.md +548 -0
- package/skills/uipath-agents/references/lowcode/critical-rules.md +76 -0
- package/skills/uipath-agents/references/lowcode/evaluations/evaluate.md +91 -0
- package/skills/uipath-agents/references/lowcode/evaluations/evaluation-sets.md +153 -0
- package/skills/uipath-agents/references/lowcode/evaluations/evaluators.md +280 -0
- package/skills/uipath-agents/references/lowcode/evaluations/orchestrator-eval-run.md +210 -0
- package/skills/uipath-agents/references/lowcode/evaluations/running-evaluations.md +207 -0
- package/skills/uipath-agents/references/lowcode/lowcode.md +101 -0
- package/skills/uipath-agents/references/lowcode/model-selection-guide.md +69 -0
- package/skills/uipath-agents/references/lowcode/project-lifecycle.md +408 -0
- package/skills/uipath-agents/references/lowcode/solution-resources.md +290 -0
- package/skills/uipath-api-workflow/SKILL.md +313 -0
- package/skills/uipath-api-workflow/assets/templates/api-workflow-template.json +58 -0
- package/skills/uipath-api-workflow/assets/templates/conditional-workflow-example.json +276 -0
- package/skills/uipath-api-workflow/assets/templates/connector-call-example.json +125 -0
- package/skills/uipath-api-workflow/assets/templates/loop-aggregation-example.json +184 -0
- package/skills/uipath-api-workflow/assets/templates/nested-control-flow-example.json +292 -0
- package/skills/uipath-api-workflow/assets/templates/solution-connection-resource-template.json +28 -0
- package/skills/uipath-api-workflow/assets/templates/vendor-curated-call-example.json +105 -0
- package/skills/uipath-api-workflow/references/cli-reference.md +421 -0
- package/skills/uipath-api-workflow/references/connector-activity-discovery.md +750 -0
- package/skills/uipath-api-workflow/references/control-flow-patterns.md +265 -0
- package/skills/uipath-api-workflow/references/expressions-and-context.md +269 -0
- package/skills/uipath-api-workflow/references/http-retry-config.md +156 -0
- package/skills/uipath-api-workflow/references/task-types.md +482 -0
- package/skills/uipath-api-workflow/references/troubleshooting.md +628 -0
- package/skills/uipath-api-workflow/references/workflow-file-format.md +205 -0
- package/skills/uipath-coded-apps/SKILL.md +186 -0
- package/skills/uipath-coded-apps/assets/templates/action-app-template.md +303 -0
- package/skills/uipath-coded-apps/assets/templates/web-app-template.md +333 -0
- package/skills/uipath-coded-apps/references/commands-reference.md +284 -0
- package/skills/uipath-coded-apps/references/create-action-app.md +344 -0
- package/skills/uipath-coded-apps/references/create-web-app.md +212 -0
- package/skills/uipath-coded-apps/references/debug.md +513 -0
- package/skills/uipath-coded-apps/references/file-sync.md +165 -0
- package/skills/uipath-coded-apps/references/oauth-client-setup.md +671 -0
- package/skills/uipath-coded-apps/references/oauth-scopes.md +244 -0
- package/skills/uipath-coded-apps/references/pack-publish-deploy.md +342 -0
- package/skills/uipath-coded-apps/references/patterns.md +1023 -0
- package/skills/uipath-coded-apps/references/sdk/action-center.md +278 -0
- package/skills/uipath-coded-apps/references/sdk/conversational-agent.md +736 -0
- package/skills/uipath-coded-apps/references/sdk/data-fabric.md +244 -0
- package/skills/uipath-coded-apps/references/sdk/feedback.md +142 -0
- package/skills/uipath-coded-apps/references/sdk/imports.md +58 -0
- package/skills/uipath-coded-apps/references/sdk/maestro.md +391 -0
- package/skills/uipath-coded-apps/references/sdk/orchestrator.md +358 -0
- package/skills/uipath-coded-apps/references/sdk/pagination.md +84 -0
- package/skills/uipath-data-fabric/SKILL.md +241 -0
- package/skills/uipath-data-fabric/references/bulk-import.md +73 -0
- package/skills/uipath-data-fabric/references/choice-sets.md +138 -0
- package/skills/uipath-data-fabric/references/entity-schema.md +391 -0
- package/skills/uipath-data-fabric/references/file-attachments.md +65 -0
- package/skills/uipath-data-fabric/references/filter-platform-contract.md +55 -0
- package/skills/uipath-data-fabric/references/records-query.md +246 -0
- package/skills/uipath-feedback/SKILL.md +350 -0
- package/skills/uipath-governance/SKILL.md +91 -0
- package/skills/uipath-governance/references/access-policy/access-policy-commands.md +234 -0
- package/skills/uipath-governance/references/access-policy/access-policy-overview-guide.md +342 -0
- package/skills/uipath-governance/references/access-policy/planning-arch.md +314 -0
- package/skills/uipath-governance/references/access-policy/planning-impl.md +126 -0
- package/skills/uipath-governance/references/access-policy/plugins/actor/impl.md +203 -0
- package/skills/uipath-governance/references/access-policy/plugins/actor/planning.md +178 -0
- package/skills/uipath-governance/references/access-policy/plugins/executable/impl.md +167 -0
- package/skills/uipath-governance/references/access-policy/plugins/executable/planning.md +122 -0
- package/skills/uipath-governance/references/access-policy/plugins/selector/impl.md +169 -0
- package/skills/uipath-governance/references/access-policy/plugins/selector/planning.md +98 -0
- package/skills/uipath-governance/references/access-policy/plugins/tags/impl.md +153 -0
- package/skills/uipath-governance/references/access-policy/plugins/tags/planning.md +117 -0
- package/skills/uipath-governance/references/access-policy/policy-manage-guide.md +403 -0
- package/skills/uipath-governance/references/access-policy/resource-lookup-guide.md +289 -0
- package/skills/uipath-governance/references/access-policy/sample-policy-guide.md +119 -0
- package/skills/uipath-governance/references/aops-policy/aops-governance-recipes-guide.md +226 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-commands.md +463 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-deploy-guide.md +371 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-deployed-guide.md +135 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-manage-guide.md +425 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-overview-guide.md +280 -0
- package/skills/uipath-governance/references/aops-policy/configure-aops-policy-data-guide.md +375 -0
- package/skills/uipath-governance/references/disambiguation-guide.md +67 -0
- package/skills/uipath-human-in-the-loop/SKILL.md +322 -0
- package/skills/uipath-human-in-the-loop/references/hitl-node-apptask.md +412 -0
- package/skills/uipath-human-in-the-loop/references/hitl-node-coded-action-app.md +334 -0
- package/skills/uipath-human-in-the-loop/references/hitl-node-quickform.md +392 -0
- package/skills/uipath-human-in-the-loop/references/hitl-patterns.md +154 -0
- package/skills/uipath-ixp/SKILL.md +84 -0
- package/skills/uipath-ixp/references/cli-reference.md +113 -0
- package/skills/uipath-ixp/references/improve-prompts-guide.md +283 -0
- package/skills/uipath-ixp/references/label-documents-guide.md +175 -0
- package/skills/uipath-ixp/references/project-setup-guide.md +90 -0
- package/skills/uipath-maestro-bpmn/.maintenance/README.md +241 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-all.sh +41 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-anchors.sh +83 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-depth.sh +132 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-link-text.sh +123 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-links.sh +70 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-orphans.sh +93 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-plugin-pairs.sh +39 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-real-pack.sh +79 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-template.sh +42 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-uip-commands.sh +266 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.py +1255 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.sh +8 -0
- package/skills/uipath-maestro-bpmn/SKILL.md +75 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/README.md +94 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/agent-invocation.bpmn +62 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/bindings_v2.json +37 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/entry-points.json +21 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/bindings_v2.json +68 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/contract-variants.bpmn +270 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/bindings_v2.json +19 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/gateway-boundary-error.bpmn +91 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/bindings_v2.json +4 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/imported-brownfield-preservation.bpmn +63 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/bindings_v2.json +52 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/entry-points.json +21 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/integration-service-enriched.bpmn +65 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/bindings_v2.json +4 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/linear-process.bpmn +55 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/bindings_v2.json +20 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/entry-points.json +17 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/registry-coverage-matrix.bpmn +207 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/bindings_v2.json +4 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/entry-points.json +33 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/subprocess-multi-instance.bpmn +94 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/bindings_v2.json +124 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/wrapper-family-contract.bpmn +151 -0
- package/skills/uipath-maestro-bpmn/references/author/CAPABILITY.md +141 -0
- package/skills/uipath-maestro-bpmn/references/author/references/brownfield.md +48 -0
- package/skills/uipath-maestro-bpmn/references/author/references/editing-operations.md +75 -0
- package/skills/uipath-maestro-bpmn/references/author/references/greenfield.md +41 -0
- package/skills/uipath-maestro-bpmn/references/author/references/planning-arch.md +82 -0
- package/skills/uipath-maestro-bpmn/references/author/references/planning-impl.md +104 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/impl.md +34 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/planning.md +38 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/impl.md +37 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/planning.md +28 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/impl.md +36 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/impl.md +67 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/impl.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/planning.md +33 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/impl.md +32 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/planning.md +34 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/impl.md +42 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/planning.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/impl.md +134 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/planning.md +67 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/impl.md +50 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/impl.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/impl.md +35 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/impl.md +118 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/planning.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/impl.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/planning.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/impl.md +33 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/planning.md +31 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/impl.md +33 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/planning.md +46 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/impl.md +59 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/planning.md +37 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/impl.md +40 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/planning.md +34 -0
- package/skills/uipath-maestro-bpmn/references/author/references/supported-elements.md +123 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/README.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/agent-job.md +36 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/api-workflow.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/business-rule.md +18 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/call-activity.md +56 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/hitl.md +17 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/http-request.md +119 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/queue.md +21 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/rpa-job.md +23 -0
- package/skills/uipath-maestro-bpmn/references/author/references/validation.md +118 -0
- package/skills/uipath-maestro-bpmn/references/diagnose/CAPABILITY.md +91 -0
- package/skills/uipath-maestro-bpmn/references/diagnose/references/failure-modes.md +129 -0
- package/skills/uipath-maestro-bpmn/references/diagnose/references/troubleshooting-guide.md +159 -0
- package/skills/uipath-maestro-bpmn/references/operate/CAPABILITY.md +91 -0
- package/skills/uipath-maestro-bpmn/references/operate/references/manage.md +71 -0
- package/skills/uipath-maestro-bpmn/references/operate/references/run.md +122 -0
- package/skills/uipath-maestro-bpmn/references/operate/references/ship.md +119 -0
- package/skills/uipath-maestro-bpmn/references/shared/bpmn-xml-contract.md +197 -0
- package/skills/uipath-maestro-bpmn/references/shared/cli-conventions.md +46 -0
- package/skills/uipath-maestro-bpmn/references/shared/error-handling.md +82 -0
- package/skills/uipath-maestro-bpmn/references/shared/expression-authoring.md +95 -0
- package/skills/uipath-maestro-bpmn/references/shared/local-metadata-regeneration-guide.md +181 -0
- package/skills/uipath-maestro-bpmn/references/shared/project-layout.md +58 -0
- package/skills/uipath-maestro-bpmn/references/shared/public-safety.md +29 -0
- package/skills/uipath-maestro-bpmn/references/shared/variables-bindings-expressions.md +150 -0
- package/skills/uipath-maestro-bpmn/references/shared/wrapper-shells.md +554 -0
- package/skills/uipath-maestro-case/SKILL.md +196 -0
- package/skills/uipath-maestro-case/assets/templates/sdd-template-examples.md +489 -0
- package/skills/uipath-maestro-case/assets/templates/sdd-template.md +524 -0
- package/skills/uipath-maestro-case/assets/templates/sdd-viewer.html +1519 -0
- package/skills/uipath-maestro-case/references/bindings-and-expressions.md +171 -0
- package/skills/uipath-maestro-case/references/bindings-v2-sync.md +142 -0
- package/skills/uipath-maestro-case/references/case-commands.md +476 -0
- package/skills/uipath-maestro-case/references/case-editing-operations.md +329 -0
- package/skills/uipath-maestro-case/references/case-schema.md +591 -0
- package/skills/uipath-maestro-case/references/case-spec-input-details.md +495 -0
- package/skills/uipath-maestro-case/references/connector-integration.md +157 -0
- package/skills/uipath-maestro-case/references/connector-trigger-common.md +477 -0
- package/skills/uipath-maestro-case/references/evals/evals.json +91 -0
- package/skills/uipath-maestro-case/references/implementation.md +327 -0
- package/skills/uipath-maestro-case/references/phase-0-interview.md +548 -0
- package/skills/uipath-maestro-case/references/phased-execution.md +263 -0
- package/skills/uipath-maestro-case/references/placeholder-tasks.md +195 -0
- package/skills/uipath-maestro-case/references/planning.md +374 -0
- package/skills/uipath-maestro-case/references/plugins/case/impl-json.md +369 -0
- package/skills/uipath-maestro-case/references/plugins/case/planning.md +78 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/case-exit-conditions/impl-json.md +95 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/case-exit-conditions/planning.md +69 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/impl-json.md +90 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/planning.md +60 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/impl-json.md +110 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/planning.md +74 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/task-entry-conditions/impl-json.md +104 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/task-entry-conditions/planning.md +55 -0
- package/skills/uipath-maestro-case/references/plugins/edges/impl-json.md +152 -0
- package/skills/uipath-maestro-case/references/plugins/edges/planning.md +93 -0
- package/skills/uipath-maestro-case/references/plugins/logging/impl-json.md +67 -0
- package/skills/uipath-maestro-case/references/plugins/sla/impl-json.md +164 -0
- package/skills/uipath-maestro-case/references/plugins/sla/planning.md +189 -0
- package/skills/uipath-maestro-case/references/plugins/stages/impl-json.md +164 -0
- package/skills/uipath-maestro-case/references/plugins/stages/planning.md +100 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/action/impl-json.md +90 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/action/planning.md +81 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/agent/impl-json.md +66 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/agent/planning.md +49 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/impl-json.md +64 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/planning.md +47 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/case-management/impl-json.md +66 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/case-management/planning.md +52 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/impl-json.md +271 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/planning.md +202 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/impl-json.md +131 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/planning.md +51 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/process/impl-json.md +64 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/process/planning.md +60 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/rpa/impl-json.md +65 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/rpa/planning.md +49 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/wait-for-timer/impl-json.md +97 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/wait-for-timer/planning.md +70 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/event/impl-json.md +176 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/event/planning.md +55 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/manual/impl-json.md +139 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/manual/planning.md +38 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/timer/impl-json.md +127 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/timer/planning.md +77 -0
- package/skills/uipath-maestro-case/references/plugins/variables/bindings/impl-json.md +141 -0
- package/skills/uipath-maestro-case/references/plugins/variables/global-vars/impl-json.md +437 -0
- package/skills/uipath-maestro-case/references/plugins/variables/global-vars/planning.md +119 -0
- package/skills/uipath-maestro-case/references/plugins/variables/io-binding/impl-json.md +255 -0
- package/skills/uipath-maestro-case/references/plugins/variables/io-binding/planning.md +80 -0
- package/skills/uipath-maestro-case/references/registry-discovery.md +170 -0
- package/skills/uipath-maestro-case/references/sdd-generation-rules.md +803 -0
- package/skills/uipath-maestro-case/references/troubleshooting-guide.md +119 -0
- package/skills/uipath-maestro-flow/.maintenance/README.md +258 -0
- package/skills/uipath-maestro-flow/.maintenance/check-all.sh +40 -0
- package/skills/uipath-maestro-flow/.maintenance/check-anchors.sh +83 -0
- package/skills/uipath-maestro-flow/.maintenance/check-depth.sh +132 -0
- package/skills/uipath-maestro-flow/.maintenance/check-link-text.sh +123 -0
- package/skills/uipath-maestro-flow/.maintenance/check-links.sh +70 -0
- package/skills/uipath-maestro-flow/.maintenance/check-orphans.sh +93 -0
- package/skills/uipath-maestro-flow/.maintenance/check-plugin-pairs.sh +39 -0
- package/skills/uipath-maestro-flow/.maintenance/check-template.sh +42 -0
- package/skills/uipath-maestro-flow/.maintenance/check-uip-commands.sh +270 -0
- package/skills/uipath-maestro-flow/.maintenance/check-versions.sh +160 -0
- package/skills/uipath-maestro-flow/SKILL.md +96 -0
- package/skills/uipath-maestro-flow/references/author/CAPABILITY.md +181 -0
- package/skills/uipath-maestro-flow/references/author/references/brownfield.md +77 -0
- package/skills/uipath-maestro-flow/references/author/references/editing-operations-cli.md +183 -0
- package/skills/uipath-maestro-flow/references/author/references/editing-operations-json.md +542 -0
- package/skills/uipath-maestro-flow/references/author/references/editing-operations.md +131 -0
- package/skills/uipath-maestro-flow/references/author/references/greenfield.md +345 -0
- package/skills/uipath-maestro-flow/references/author/references/planning-arch.md +557 -0
- package/skills/uipath-maestro-flow/references/author/references/planning-impl.md +302 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agent/impl.md +189 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agent/planning.md +83 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agentic-process/impl.md +111 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agentic-process/planning.md +61 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/api-workflow/impl.md +111 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/api-workflow/planning.md +60 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/batch-transform/impl.md +174 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/batch-transform/planning.md +72 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/data-fabric/impl.md +683 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/data-fabric/planning.md +45 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/impl.md +681 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/planning.md +135 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector-trigger/impl.md +495 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector-trigger/planning.md +113 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/decision/impl.md +62 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/decision/planning.md +38 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/delay/impl.md +75 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/delay/planning.md +53 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/end/impl.md +65 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/end/planning.md +28 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/flow/impl.md +111 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/flow/planning.md +58 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/impl.md +204 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/planning.md +144 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/http/impl.md +196 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/http/planning.md +102 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/impl.md +479 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/planning.md +103 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/ixp/impl.md +326 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/ixp/planning.md +90 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/loop/impl.md +242 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/loop/planning.md +52 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/merge/impl.md +43 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/merge/planning.md +29 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/queue/impl.md +94 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/queue/planning.md +44 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/rpa/impl.md +120 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/rpa/planning.md +61 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/scheduled-trigger/impl.md +79 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/scheduled-trigger/planning.md +56 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/script/impl.md +90 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/script/planning.md +42 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/subflow/impl.md +234 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/subflow/planning.md +34 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/summarize/impl.md +198 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/summarize/planning.md +71 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/switch/impl.md +60 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/switch/planning.md +38 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/terminate/impl.md +45 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/terminate/planning.md +29 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/transform/impl.md +274 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/transform/planning.md +47 -0
- package/skills/uipath-maestro-flow/references/diagnose/CAPABILITY.md +69 -0
- package/skills/uipath-maestro-flow/references/diagnose/references/failure-modes.md +283 -0
- package/skills/uipath-maestro-flow/references/diagnose/references/troubleshooting-guide.md +115 -0
- package/skills/uipath-maestro-flow/references/evaluate/CAPABILITY.md +132 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/commands-reference.md +306 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/eval-sets-guide.md +226 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/evaluators-guide.md +143 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/running-guide.md +215 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/upload-safety.md +82 -0
- package/skills/uipath-maestro-flow/references/operate/CAPABILITY.md +76 -0
- package/skills/uipath-maestro-flow/references/operate/references/manage.md +39 -0
- package/skills/uipath-maestro-flow/references/operate/references/run.md +99 -0
- package/skills/uipath-maestro-flow/references/operate/references/ship.md +57 -0
- package/skills/uipath-maestro-flow/references/shared/action-nodes.md +92 -0
- package/skills/uipath-maestro-flow/references/shared/cli-commands.md +369 -0
- package/skills/uipath-maestro-flow/references/shared/cli-conventions.md +168 -0
- package/skills/uipath-maestro-flow/references/shared/file-format.md +530 -0
- package/skills/uipath-maestro-flow/references/shared/node-output-wiring.md +138 -0
- package/skills/uipath-maestro-flow/references/shared/ux-narration-and-todos.md +150 -0
- package/skills/uipath-maestro-flow/references/shared/variables-and-expressions.md +726 -0
- package/skills/uipath-mcp-servers/SKILL.md +93 -0
- package/skills/uipath-mcp-servers/references/is-activity-workflow.md +158 -0
- package/skills/uipath-planner/SKILL.md +142 -0
- package/skills/uipath-planner/references/multi-skill-patterns-guide.md +143 -0
- package/skills/uipath-planner/references/non-pdd-lane-guide.md +184 -0
- package/skills/uipath-planner/references/pdd-driven-lane-guide.md +168 -0
- package/skills/uipath-planner/references/plan-and-tasks-format.md +228 -0
- package/skills/uipath-platform/SKILL.md +286 -0
- package/skills/uipath-platform/references/integration-service/activities.md +223 -0
- package/skills/uipath-platform/references/integration-service/agent-workflow.md +286 -0
- package/skills/uipath-platform/references/integration-service/connections.md +256 -0
- package/skills/uipath-platform/references/integration-service/connector-overrides/README.md +45 -0
- package/skills/uipath-platform/references/integration-service/connector-overrides/uipath-microsoft-teams.md +29 -0
- package/skills/uipath-platform/references/integration-service/connector-overrides/uipath-salesforce-slack.md +43 -0
- package/skills/uipath-platform/references/integration-service/connectors.md +121 -0
- package/skills/uipath-platform/references/integration-service/http-request.md +116 -0
- package/skills/uipath-platform/references/integration-service/integration-service.md +83 -0
- package/skills/uipath-platform/references/integration-service/reference-resolution.md +316 -0
- package/skills/uipath-platform/references/integration-service/resources.md +237 -0
- package/skills/uipath-platform/references/integration-service/triggers.md +235 -0
- package/skills/uipath-platform/references/licensing/consumables-report.md +217 -0
- package/skills/uipath-platform/references/licensing/licensing.md +103 -0
- package/skills/uipath-platform/references/licensing/tenant-allocations.md +152 -0
- package/skills/uipath-platform/references/licensing/user-licenses-allocations.md +323 -0
- package/skills/uipath-platform/references/llmgateway/byo-connections.md +226 -0
- package/skills/uipath-platform/references/orchestrator/manage-sessions.md +217 -0
- package/skills/uipath-platform/references/orchestrator/orchestrator.md +130 -0
- package/skills/uipath-platform/references/orchestrator/run-jobs.md +332 -0
- package/skills/uipath-platform/references/orchestrator/setup-environment.md +410 -0
- package/skills/uipath-platform/references/orchestrator/tenant-admin.md +225 -0
- package/skills/uipath-platform/references/resources/manage-assets.md +277 -0
- package/skills/uipath-platform/references/resources/process-queues.md +302 -0
- package/skills/uipath-platform/references/resources/resources.md +116 -0
- package/skills/uipath-platform/references/resources/triggers-and-webhooks.md +277 -0
- package/skills/uipath-platform/references/resources/work-with-storage.md +258 -0
- package/skills/uipath-platform/references/traces/feedback.md +144 -0
- package/skills/uipath-platform/references/traces/traces.md +50 -0
- package/skills/uipath-platform/references/uip-commands.md +127 -0
- package/skills/uipath-review/SKILL.md +535 -0
- package/skills/uipath-review/references/agents/agent-common-issues.md +359 -0
- package/skills/uipath-review/references/agents/agent-review-checklist.md +362 -0
- package/skills/uipath-review/references/architecture-assessment-guide.md +192 -0
- package/skills/uipath-review/references/coded-apps/coded-app-review-checklist.md +134 -0
- package/skills/uipath-review/references/devops-readiness-checklist.md +55 -0
- package/skills/uipath-review/references/document-understanding/du-review-checklist.md +227 -0
- package/skills/uipath-review/references/flows/flow-common-issues.md +280 -0
- package/skills/uipath-review/references/flows/flow-review-checklist.md +316 -0
- package/skills/uipath-review/references/platform/platform-resources-checklist.md +407 -0
- package/skills/uipath-review/references/review-workflow-guide.md +512 -0
- package/skills/uipath-review/references/rpa/long-running-workflow-issues.md +101 -0
- package/skills/uipath-review/references/rpa/modern-studio-issues.md +135 -0
- package/skills/uipath-review/references/rpa/rpa-advanced-checklist.md +338 -0
- package/skills/uipath-review/references/rpa/rpa-common-issues.md +748 -0
- package/skills/uipath-review/references/rpa/rpa-review-checklist.md +482 -0
- package/skills/uipath-review/references/solution-review-guide.md +392 -0
- package/skills/uipath-rpa/CLAUDE.md +86 -0
- package/skills/uipath-rpa/SKILL.md +460 -0
- package/skills/uipath-rpa/assets/before-after-hooks-template.md +115 -0
- package/skills/uipath-rpa/assets/codedworkflow-template.md +186 -0
- package/skills/uipath-rpa/assets/helper-utility-template.md +22 -0
- package/skills/uipath-rpa/assets/json-template.md +91 -0
- package/skills/uipath-rpa/assets/testcase-template.md +92 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/active-directory.md +118 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/api.md +569 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/examples.md +393 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/amazon-web-services.md +314 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/api.md +998 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/examples.md +417 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/amazon-workspaces.md +127 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/api.md +223 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/examples.md +249 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/api.md +1241 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/azure.md +109 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/examples.md +594 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/api.md +637 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/azure-active-directory.md +96 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/examples.md +629 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/api.md +368 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/azure-wvd.md +257 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/examples.md +336 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Callout.Activities/26.0/README.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Callout.Activities/26.0/activities.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/api.md +452 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/citrix.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/examples.md +549 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AppendRange.md +16 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AppendRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFillX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFitX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangeDataRangeModification.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangePivotTableDataSourceX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ClearRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CopyPasteRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreatePivotTableXv2.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreateTableX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteColumnX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteRowsX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DuplicateSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelApplicationCard.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelForEachRowX.md +26 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelProcessScopeX.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroArgumentX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExportExcelToCsvX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FillRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterPivotTableX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindFirstLastDataRowX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindReplaceValueX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ForEachRow.md +24 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ForEachSheetX.md +23 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FormatRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertColumnX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertExcelChartX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertRowsX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAArgumentX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/LookupX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/PivotTableFieldX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ProtectSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellFormulaX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellValueX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadRange.md +18 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadRangeX.md +8 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RefreshPivotTableX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RemoveDuplicatesX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RenameSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveAsPdfX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveExcelFileX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortColumnX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UnprotectSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UpdateChartX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/VLookupX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteCellX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteRange.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/overview.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/examples.md +355 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/excel.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/portable-api.md +181 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/windows-api.md +974 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AddSensitivityLabelX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendRange.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendRangeX.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendWriteCsvFile.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AutoFillX.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AutoFitX.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ChangePivotTableDataSourceX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ClearRangeX.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CopyChartToClipboardX.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CopyPasteRangeX.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreateNewWorkbook.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreatePivotTable.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreatePivotTableXv2.md +106 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreateTableX.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteColumnX.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteRowsX.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteSheetX.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DuplicateSheetX.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelApplicationCard.md +97 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelForEachRowX.md +71 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelProcessScopeX.md +86 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExecuteMacroX.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExportExcelToCsvX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FillRangeX.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FilterPivotTableX.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FilterX.md +97 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FindFirstLastDataRowX.md +65 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FindReplaceValueX.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ForEachSheetX.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FormatRangeX.md +155 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetCellColor.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetCellColorX.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSelectedRangeX.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSensitivityLabelX.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSheets.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetTableRange.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertChart.md +74 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertColumnX.md +87 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertExcelChartX.md +77 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertRowsX.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertSheetX.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InvokeVBAX.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/LookupX.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/MatchFunctionX.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ProtectSheetX.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCell.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellFormula.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellFormulaX.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellValueX.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadColumn.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCsvFile.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRange.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRangeX.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRow.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RefreshDataConnectionsX.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RefreshPivotTableX.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RemoveDuplicatesX.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RenameSheetX.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveAsPdfX.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveExcelFileAsX.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveExcelFileX.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SelectRangeX.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SetRangeColor.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SortX.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/TextToColumnsX.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UnprotectSheetX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UpdateChart.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UpdateChartX.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/VLookupX.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteCell.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteCellX.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteRange.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteRangeX.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/coded-api.md +878 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/overview.md +124 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/api.md +96 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/examples.md +170 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/exchange-server.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/README.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/activities.md +147 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/triggers.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ApplyEmailLabelsConnections.md +6 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ArchiveEmailConnections.md +6 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/CreateEventConnections.md +19 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/CreateSpreadsheetConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DeleteEmailConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DownloadAttachmentsConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DownloadFileConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/EmailSent.md +8 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ForEachEmailConnections.md +12 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ForEachFileFolderConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetFileFolderConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetFileListConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetNewestEmailConnections.md +12 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/MarkAsReadUnreadConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/MoveEmailConnections.md +6 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEmailReceived.md +12 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEventCreated.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEventInvitationReceived.md +7 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewFileCreated.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ReadRangeConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/RemoveEmailLabelsConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/RowAddedToSheetBottom.md +11 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/SendEmailConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/TurnOffAutomaticRepliesConnections.md +3 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/TurnOnAutomaticRepliesConnections.md +7 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/UploadFilesConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/WriteRangeConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/WriteRowConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/overview.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/api.md +613 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/examples.md +660 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/gsuite.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/api.md +524 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/examples.md +369 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/google-cloud.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/api.md +436 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/examples.md +503 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/hyperv.md +85 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ClassifyDocument.md +166 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateClassificationValidationTask.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateClassificationValidationTaskAndWait.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateDocumentValidationArtifacts.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateValidationTask.md +86 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateValidationTaskAndWait.md +84 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ExtractDocumentData/data-type-patterns.md +224 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ExtractDocumentData.md +249 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/RetrieveDocumentValidationArtifacts.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/WaitForClassificationValidationTaskAndResume.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/WaitForValidationTaskAndResume.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/overview.md +516 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/ForEachEmailX.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/GetOutlookMailMessages.md +26 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/MoveOutlookMessage.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/OutlookApplicationCard.md +23 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/SaveMailAttachments.md +18 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/SendOutlookMail.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/overview.md +71 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/examples.md +487 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/mail.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/portable-api.md +285 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/windows-api.md +245 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/DownloadEmailAttachments.md +24 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/GetNewestEmail.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/NewEmailReceived.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/SendMailConnections.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/overview.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/api.md +748 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/examples.md +709 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/office365.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/DrawPattern.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ElementExists.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ExecuteCommand.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetAttribute.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetDeviceOrientation.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetLogTypes.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetLogs.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetPageSource.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSelectedItem.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSessionIdentifier.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSystemTime.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetText.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/InstallApp.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ManageCurrentApp.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ManageOtherApp.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/MobileDeviceConnection.md +88 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/OpenDeepLink.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/OpenUrl.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/PositionalSwipe.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/PressHardwareButton.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetDeviceGeoLocation.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetDeviceOrientation.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetSelectedItem.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetText.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/Swipe.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TakeScreenshot.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TakeScreenshotPart.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/Tap.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TypeText.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/overview.md +123 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/api.md +509 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/examples.md +361 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/netiq-edirectory.md +109 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertEmailToPDF.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertHtmlToPDF.md +91 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertTextToPDF.md +95 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExportPDFPageAsImage.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExtractImagesFromPDF.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExtractPDFPageRange.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/GetPDFPageCount.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/JoinPDF.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ManagePDFPassword.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadPDFText.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadPDFWithOCR.md +146 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadXPSText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadXPSWithOCR.md +135 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/overview.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/ActivateSolutionDeployment.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Analyze.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Build.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Clone.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DeleteSolutionPackage.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DeploySolution.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadPackage.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadSolutionPackage.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadSolutionPackageConfiguration.md +62 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/PublishPackage.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/PublishSolutionPackage.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/ResyncSolutionProject.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/RunExistingTestSet.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/RunTests.md +74 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Stage.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UninstallSolution.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UpdateProcess.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UploadSolutionPackage.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/overview.md +72 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/CopyPasteSlide.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/DeleteSlide.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/FindAndReplaceTextInPresentation.md +18 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/InsertSlide.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/InsertTextInPresentation.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/PasteIntoSlide.md +11 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/PowerPointApplicationScope.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/ReplaceShapeWithDataTable.md +21 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/ReplaceShapeWithMedia.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/RunMacro.md +24 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/SavePresentationAsPdf.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/SavePresentationFileAs.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/overview.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/examples.md +680 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/portable-api.md +196 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/powerpoint.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/windows-api.md +416 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/AddSensitivityLabel.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/CopyPasteSlide.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/DeleteSlide.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/FindAndReplaceTextInPresentation.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/FormatSlideContent.md +72 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/GetSensitivityLabel.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertFile.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertSlide.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertTextInPresentation.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PasteIntoSlide.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PowerPointApplicationScope.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentAddTextToSlide.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentCreateNew.md +77 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentDeleteSlide.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentFindAndReplaceTextInPresentation.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentFormatSlideContent.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentInsertSlide.md +77 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentReplaceShapeWithDataTable.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentReplaceShapeWithMedia.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/ReplaceShapeWithDataTable.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/ReplaceShapeWithMedia.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/RunMacro.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/SavePresentationAsPdf.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/SavePresentationFileAs.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/coded-api.md +416 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/overview.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Assign.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/CodedWorkflows.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Delay.md +21 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/DoWhile.md +16 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/ForEach.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/If.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/InvokeCode.md +182 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/InvokeWorkflowFile.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/LogMessage.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Switch.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Throw.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/TryCatch.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/VariablesAndScoping.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/While.md +21 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/overview.md +93 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/examples.md +1088 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/system.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/windows-api.md +801 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddDataColumn.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddDataRow.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddLogFields.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddOrSubtractFromDate.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddQueueItem.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddTransactionItem.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AppendItemToCollection.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AppendLine.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Assign.md +65 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Beep.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BeginProcess.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Break.md +25 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BuildCollection.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BulkAddQueueItems.md +62 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ChangeCase.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ChangeType.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CheckFalse.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CheckTrue.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ClearDataTable.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CollectionToDataTable.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CombineText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Comment.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CommentOut.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CompressFiles.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Continue.md +25 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CopyFile.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CopyFolderX.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CreateDirectory.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CreateFile.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Delay.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Delete.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DeleteQueueItems.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DeleteStorageFile.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DoWhile.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DownloadFileFromUrl.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DownloadStorageFile.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ElseIf.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/EvaluateBusinessRule.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExistsInCollection.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractDateTime.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractFiles.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractText.md +71 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FilterCollection.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FilterDataTable.md +93 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FindAndReplace.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ForEach.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ForEachRow.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FormatDateAsText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FormatValue.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GenerateDataTable.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetCurrentJobInfo.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetEnvironmentFolder.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetEnvironmentVariable.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetJobs.md +80 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetLastDownloadedFile.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetProcesses.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetQueueItem.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetQueueItems.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRobotAsset.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRobotCredential.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRowItem.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetSecret.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetUsernamePasswordX.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/If.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeCode.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeComMethod.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeProcess.md +70 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeVBScript.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeWorkflow.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/IsMatch.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/JoinDataTables.md +85 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/KillProcess.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ListStorageFiles.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/LogMessage.md +62 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/LookupDataTable.md +81 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Matches.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MergeCollections.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MergeDataTable.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MessageBox.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MoveFile.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/OrchestratorHttpRequest.md +78 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/OutputDataTable.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/PathExists.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Placeholder.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/PostponeTransactionItem.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ProcessTrackingScope.md +89 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/QueueTrigger.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RaiseAlert.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadListItem.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadStorageText.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadTextFile.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDataColumn.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDataRow.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDuplicateRows.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveFromCollection.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveLogFields.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RenameFileX.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RepeatNumberOfTimesX.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Replace.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReportStatus.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ResetTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ResumeTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Rethrow.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RetryScope.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Return.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RunJob.md +87 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RuntimeContext.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SendEmailNotification.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Sequence.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetAsset.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetCredential.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetEnvironmentVariable.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetSecret.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTaskStatus.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTraceStatus.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTransactionProgress.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTransactionStatus.md +82 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ShouldStop.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SortDataTable.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SplitText.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StartJob.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StartTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StopJob.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StopTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Switch.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TextToLeftRight.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Throw.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TimeTrigger.md +130 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TimeoutScope.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TrackObject.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TryCatch.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UpdateListItem.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UpdateRowItem.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UploadStorageFile.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WaitQueueItem.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/While.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteLine.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteStorageText.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteTextFile.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/coded/coded-api.md +1293 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/overview.md +246 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/api.md +150 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/examples.md +205 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/system-center.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/FindText.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetColorAtPosition.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetCursorPosition.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetField.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetFieldAtPosition.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetScreenArea.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetText.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetTextAtPosition.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/MoveCursor.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/MoveCursorToText.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendControlKey.md +78 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendKeys.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendKeysSecure.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SetField.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SetFieldAtPosition.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/TerminalSession.md +106 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitFieldText.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitScreenReady.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitScreenText.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitTextAtPosition.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/coded/coded-api.md +650 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/overview.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/Address.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/AttachDocument.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/BulkAddTestDataQueue.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/ComparePdfDocuments.md +102 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/CompareText.md +98 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/CreateComparisonRule.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/DeleteTestDataQueueItems.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GetTestDataQueueItem.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GetTestDataQueueItems.md +79 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GivenName.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/LastName.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/NewAddTestDataQueueItem.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomDate.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomNumber.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomString.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomValue.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyExpression.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyExpressionWithOperator.md +86 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyRange.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/examples.md +456 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-comparison.md +250 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-data.md +335 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-verification.md +284 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/overview.md +81 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeJson.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeJsonArray.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeXml.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/ExecuteXPath.md +65 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/GetXMLNodeAttributes.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/GetXMLNodes.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/HttpClient.md +126 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/NetHttpRequest.md +559 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/SerializeJson.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/coded-api.md +809 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/curl-import.md +207 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/http-request-upgrade.md +686 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/service-discovery.md +506 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/overview.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordAddImage.md +16 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordAppendText.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordApplicationScope.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordExportToPdf.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordInsertDataTable.md +22 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordReadText.md +13 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordReplaceText.md +19 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordSaveAs.md +13 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordSetBookmark.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/overview.md +109 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/examples.md +323 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/portable-api.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/windows-api.md +433 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/word.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/AddComment.md +148 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DisableTrackChanges.md +79 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentAddImage.md +84 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentAppendText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentCreateNew.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentInsertDataTable.md +84 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentInsertHyperlink.md +90 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentReadText.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentReplaceText.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentSetBookmarkContent.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/EnableTrackChanges.md +89 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAddImage.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAddSensitivityLabel.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAppendText.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordApplicationScope.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordExportToPdf.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordGetSensitivityLabel.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordInsertDataTable.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordInsertHyperlink.md +73 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordPasteFromClipboard.md +73 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReadText.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReplacePicture.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReplaceText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSaveAs.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSetBookmarkContent.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSetContentProperty.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/coded-api.md +558 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/overview.md +106 -0
- package/skills/uipath-rpa/references/cli-reference.md +668 -0
- package/skills/uipath-rpa/references/coded/codedworkflow-reference.md +275 -0
- package/skills/uipath-rpa/references/coded/coding-guidelines.md +240 -0
- package/skills/uipath-rpa/references/coded/inspect-package-guide.md +80 -0
- package/skills/uipath-rpa/references/coded/integration-service-guide.md +508 -0
- package/skills/uipath-rpa/references/coded/operations-guide.md +417 -0
- package/skills/uipath-rpa/references/coded/third-party-packages-guide.md +67 -0
- package/skills/uipath-rpa/references/coded-vs-xaml-guide.md +187 -0
- package/skills/uipath-rpa/references/common-activity-card.md +371 -0
- package/skills/uipath-rpa/references/connector-capabilities.md +76 -0
- package/skills/uipath-rpa/references/debugging.md +424 -0
- package/skills/uipath-rpa/references/environment-setup.md +196 -0
- package/skills/uipath-rpa/references/is-connector-xaml-guide.md +294 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ActiveDirectory.md +25 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/AllActivities.md +1136 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Cognitive.md +32 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/CommunicationsMining.md +28 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ComplexScenarios.md +74 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Credentials.md +45 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Cryptography.md +82 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Database.md +79 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Excel.md +101 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/FTP.md +75 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Forms.md +81 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/GSuite.md +74 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Google-Speech.md +25 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ImageProcessing.md +32 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/IntelligentOCR.md +113 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Java.md +60 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Mail.md +101 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/MicrosoftOffice365.md +84 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/MobileAutomation.md +35 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/OmniPage.md +60 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/PDF.md +86 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Presentations.md +72 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Python.md +66 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/SAP-BAPI.md +43 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/System.md +153 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Terminal.md +120 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Testing.md +95 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-BalaReva-Excel.md +120 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-Microsoft-WF4.md +84 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-Persistence.md +140 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-SharePoint.md +105 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/UIAutomation.md +159 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Vision-OCR.md +37 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Web.md +108 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Word.md +76 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/WorkflowEvents.md +34 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_BUILT-IN-ACTIVITIES.md +425 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_COMMON-PITFALLS.md +296 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_DU-PROCESS.md +340 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_INDEX.md +70 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_INVOKE-CODE.md +367 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_PATTERNS.md +278 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_REFRAMEWORK.md +598 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_XAML-GUIDE.md +692 -0
- package/skills/uipath-rpa/references/legacy/cli-reference.md +363 -0
- package/skills/uipath-rpa/references/legacy/common-pitfalls.md +318 -0
- package/skills/uipath-rpa/references/legacy/data-manipulation-guide.md +390 -0
- package/skills/uipath-rpa/references/legacy/discovery-workflow.md +147 -0
- package/skills/uipath-rpa/references/legacy/environment-setup.md +78 -0
- package/skills/uipath-rpa/references/legacy/error-handling-guide.md +255 -0
- package/skills/uipath-rpa/references/legacy/legacy-mode-guide.md +255 -0
- package/skills/uipath-rpa/references/legacy/orchestrator-guide.md +252 -0
- package/skills/uipath-rpa/references/legacy/project-organization-guide.md +324 -0
- package/skills/uipath-rpa/references/legacy/project-structure.md +206 -0
- package/skills/uipath-rpa/references/legacy/selector-guide.md +326 -0
- package/skills/uipath-rpa/references/legacy/test-data-guide.md +142 -0
- package/skills/uipath-rpa/references/legacy/testing-guide.md +309 -0
- package/skills/uipath-rpa/references/legacy/validation-and-fixing.md +154 -0
- package/skills/uipath-rpa/references/legacy/xaml-basics-and-rules.md +457 -0
- package/skills/uipath-rpa/references/powershell-interop-guide.md +68 -0
- package/skills/uipath-rpa/references/project-structure-guide.md +125 -0
- package/skills/uipath-rpa/references/project-structure.md +135 -0
- package/skills/uipath-rpa/references/publishing-guide.md +80 -0
- package/skills/uipath-rpa/references/reframework-guide.md +178 -0
- package/skills/uipath-rpa/references/tenant-library-search-guide.md +111 -0
- package/skills/uipath-rpa/references/testing-guide.md +420 -0
- package/skills/uipath-rpa/references/trigger-pattern-guide.md +228 -0
- package/skills/uipath-rpa/references/ui-automation-guide.md +401 -0
- package/skills/uipath-rpa/references/uia-configure-target-workflows.md +167 -0
- package/skills/uipath-rpa/references/uia-prerequisites.md +42 -0
- package/skills/uipath-rpa/references/validation-guide.md +171 -0
- package/skills/uipath-rpa/references/xaml/canvas-layout-guide.md +643 -0
- package/skills/uipath-rpa/references/xaml/common-pitfalls.md +1008 -0
- package/skills/uipath-rpa/references/xaml/csharp-activity-binding-guide.md +120 -0
- package/skills/uipath-rpa/references/xaml/csharp-expression-pitfalls.md +38 -0
- package/skills/uipath-rpa/references/xaml/jit-custom-types-schema.md +90 -0
- package/skills/uipath-rpa/references/xaml/workflow-guide.md +258 -0
- package/skills/uipath-rpa/references/xaml/xaml-basics-and-rules.md +816 -0
- package/skills/uipath-solution/SKILL.md +202 -0
- package/skills/uipath-solution/assets/templates/agent-sdd-template.md +306 -0
- package/skills/uipath-solution/assets/templates/api-workflow-sdd-template.md +300 -0
- package/skills/uipath-solution/assets/templates/case-sdd-template.md +410 -0
- package/skills/uipath-solution/assets/templates/coded-app-sdd-template.md +280 -0
- package/skills/uipath-solution/assets/templates/flow-sdd-template.md +272 -0
- package/skills/uipath-solution/assets/templates/rpa-sdd-template.md +613 -0
- package/skills/uipath-solution/references/design/package-selection-guide.md +182 -0
- package/skills/uipath-solution/references/design/pdd-analysis-guide.md +265 -0
- package/skills/uipath-solution/references/design/product-selection-guide.md +431 -0
- package/skills/uipath-solution/references/design/rpa-product-guide.md +305 -0
- package/skills/uipath-solution/references/design/sdd-generation-guide.md +443 -0
- package/skills/uipath-solution/references/design/tenant-library-search-guide.md +106 -0
- package/skills/uipath-solution/references/operate/activate-and-manage.md +208 -0
- package/skills/uipath-solution/references/operate/develop-solution.md +567 -0
- package/skills/uipath-solution/references/operate/pack-and-deploy.md +328 -0
- package/skills/uipath-solution/references/operate/scenarios/failure-modes.md +14 -0
- package/skills/uipath-solution/references/operate/scenarios/intra-solution-references.md +61 -0
- package/skills/uipath-solution/references/operate/scenarios/manual-edits.md +132 -0
- package/skills/uipath-solution/references/operate/scenarios/same-name-across-folders.md +57 -0
- package/skills/uipath-solution/references/operate/scenarios/shared-cloud-resource.md +41 -0
- package/skills/uipath-solution/references/operate/scenarios/virtual-resource.md +89 -0
- package/skills/uipath-solution/references/operate/scenarios.md +51 -0
- package/skills/uipath-solution/references/operate/solution-overview.md +125 -0
- package/skills/uipath-tasks/SKILL.md +208 -0
- package/skills/uipath-tasks/references/action-center-urls.md +152 -0
- package/skills/uipath-tasks/references/task-assignment.md +92 -0
- package/skills/uipath-tasks/references/task-completion.md +102 -0
- package/skills/uipath-tasks/references/task-lifecycle.md +69 -0
- package/skills/uipath-test/SKILL.md +295 -0
- package/skills/uipath-test/references/publish-and-link-guide.md +111 -0
- package/skills/uipath-test/references/test-result-report-guide.md +96 -0
- package/skills/uipath-troubleshoot/SKILL.md +177 -0
- package/skills/uipath-troubleshoot/agents/depth-verifier.md +165 -0
- package/skills/uipath-troubleshoot/agents/hypothesis-generator.md +38 -0
- package/skills/uipath-troubleshoot/agents/hypothesis-tester.md +56 -0
- package/skills/uipath-troubleshoot/agents/presenter.md +160 -0
- package/skills/uipath-troubleshoot/agents/scope-checker.md +45 -0
- package/skills/uipath-troubleshoot/agents/shared.md +92 -0
- package/skills/uipath-troubleshoot/agents/triage.md +78 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/investigation_guide.md +60 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/overview.md +43 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-code-file-path.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-com-interop-failure.md +49 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-entry-method-name.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-parameter-formatting.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-trust-access.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-active-filters.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-excel-not-installed.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-file-locked.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-formula-cells.md +53 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-invalid-range.md +42 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-null-reference.md +37 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/presentation.md +9 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/summary.md +17 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/investigation_guide.md +28 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/overview.md +54 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/add-sheet-name-conflict.md +29 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-file-not-found.md +37 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-multiple-items-name-conflict.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/get-newest-email-not-found.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/sheets-cell-limit-exceeded.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/sheets-invalid-range.md +51 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/upload-storage-quota-exceeded.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/presentation.md +11 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/summary.md +13 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/investigation_guide.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/overview.md +55 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/download-multiple-items-name-conflict.md +37 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/drive-item-not-found.md +59 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/get-newest-email-no-match.md +34 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/item-name-already-exists.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-folder-not-found.md +47 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/presentation.md +19 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/summary.md +11 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/investigation_guide.md +25 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/overview.md +29 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-activity-bug-silent-failure.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-external-vault-failure.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-folder-scope-mismatch.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-network-connectivity.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-not-found.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-per-robot-no-value.md +31 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-permission-denied.md +33 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-robot-not-authenticated.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-wrong-activity-type.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/presentation.md +7 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/summary.md +15 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/interpretations/healing-agent-data.md +277 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/investigation_guide.md +25 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/overview.md +39 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/disabled-element.md +81 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/healing-agent-no-license.md +109 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/no-recovery-data.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/scope-container-wrong-page.md +44 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-healing-disabled.md +55 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-healing-fix.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-manual.md +44 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/timeout-issue.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/presentation.md +5 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/summary.md +14 -0
- package/skills/uipath-troubleshoot/references/investigation_guide.md +60 -0
- package/skills/uipath-troubleshoot/references/knowledge-base-guide.md +110 -0
- package/skills/uipath-troubleshoot/references/products/agents/playbooks/context-grounding-index-not-found.md +94 -0
- package/skills/uipath-troubleshoot/references/products/agents/playbooks/input-schema-validation-failure.md +89 -0
- package/skills/uipath-troubleshoot/references/products/agents/playbooks/llm-insufficient-information.md +78 -0
- package/skills/uipath-troubleshoot/references/products/agents/summary.md +9 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/investigation_guide.md +50 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/overview.md +73 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-auth-expired.md +35 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-invalid.md +53 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/operation-failed.md +39 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/trigger-not-firing.md +40 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/presentation.md +14 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/summary.md +10 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/overview.md +64 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/byo-connection-dead.md +59 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/byo-routing-bypassed.md +86 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/validation-probe-failed.md +54 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/summary.md +9 -0
- package/skills/uipath-troubleshoot/references/products/maestro/error_codes.md +341 -0
- package/skills/uipath-troubleshoot/references/products/maestro/investigation_guide.md +92 -0
- package/skills/uipath-troubleshoot/references/products/maestro/overview.md +98 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/agent-traces-disappearing.md +22 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/argument-mismatch-400.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/attachment-not-found.md +24 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/autopilot-429.md +24 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/boundary-event-duplicate-task.md +35 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/bpmn-job-stuck.md +23 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/debug-vs-deploy.md +39 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-datetime-input.md +23 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-email-received.md +23 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-failure.md +36 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/expression-evaluation-errors.md +52 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/file-field-required.md +45 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/file-handling.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/folder-not-accessible.md +46 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/foreground-unattended-robot.md +46 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/gateway-no-outgoing-flow.md +54 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/generic-error-400.md +51 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/index-out-of-bounds.md +49 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/input-schema-mismatch.md +47 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/insufficient-funds.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/integration-service-400.md +51 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/integration-service-404.md +54 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/job-operation-timeout.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/js-runtime-discrepancy.md +26 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/loop-detected.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/maestro-service-disabled.md +26 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/marker-input-null.md +45 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/marker-invalid-cast.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/missing-required-parameter.md +48 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/multi-instance-parallel.md +37 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/no-message-events.md +51 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/no-suitable-runtime-machine.md +45 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/personal-automation-quota.md +42 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/process-not-found-404.md +47 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/service-task-child-job-faulted.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/unattended-robot-permissions.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/variable-expression-errors.md +40 -0
- package/skills/uipath-troubleshoot/references/products/maestro/presentation.md +8 -0
- package/skills/uipath-troubleshoot/references/products/maestro/summary.md +56 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/investigation_guide.md +73 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/overview.md +83 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/foreground-already-running.md +65 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-faulted-logon-failure.md +103 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-no-host.md +42 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-stale-dispatch.md +63 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-stuck.md +35 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/queue-items-failing.md +38 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/robot-credentials.md +43 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/presentation.md +9 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/summary.md +13 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/investigation_guide.md +61 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/overview.md +35 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/playbooks/argument-null-exception.md +47 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/playbooks/null-reference-exception.md +47 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/summary.md +8 -0
- package/skills/uipath-troubleshoot/references/summary.md +112 -0
- package/skills/uipath-troubleshoot/references/templates/playbook-template.md +29 -0
- package/skills/uipath-troubleshoot/schemas/evidence.schema.md +70 -0
- package/skills/uipath-troubleshoot/schemas/hypotheses.schema.md +56 -0
- package/skills/uipath-troubleshoot/schemas/scope-check.schema.md +27 -0
- package/skills/uipath-troubleshoot/schemas/state.schema.md +70 -0
- package/skills/uipath-troubleshoot/scripts/strip-ha-images.ps1 +61 -0
- package/skills/uipath-troubleshoot/scripts/strip-ha-images.sh +41 -0
- package/version-manifest.json +5 -0
|
@@ -0,0 +1,1136 @@
|
|
|
1
|
+
# UiPath Legacy Activities - Complete Catalog
|
|
2
|
+
|
|
3
|
+
> **Scope**: Legacy/Classic XAML activities only. No modern "X" suffix, no portable, no coded workflows.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. UiPath.System.Activities (v26.2.0) — 93.6% adoption
|
|
8
|
+
|
|
9
|
+
### Workflow Control (Foundation)
|
|
10
|
+
| Activity | Description |
|
|
11
|
+
|----------|-------------|
|
|
12
|
+
| `Assign` | Assigns a value to a variable or argument |
|
|
13
|
+
| `Delay` | Pauses execution for specified TimeSpan |
|
|
14
|
+
| `Log Message` | Writes message to Robot execution log (Trace/Info/Warn/Error/Fatal) |
|
|
15
|
+
| `Message Box` | Displays message dialog to user |
|
|
16
|
+
| `Comment Out` | Disables contained activities (design-time only) |
|
|
17
|
+
| `Invoke Workflow File` | Invokes another .xaml workflow with input/output arguments |
|
|
18
|
+
| `Invoke Process` | Invokes a published process/package |
|
|
19
|
+
| `Invoke Code` | Executes inline VB.NET or C# code |
|
|
20
|
+
| `Sequence` | Sequential container for activities |
|
|
21
|
+
| `Flowchart` | Flow-based container with decision nodes |
|
|
22
|
+
| `State Machine` | State-based workflow container |
|
|
23
|
+
| `Try Catch` | Exception handling with catch blocks by exception type |
|
|
24
|
+
| `Retry Scope` | Retries child activities on failure (configurable count/interval) |
|
|
25
|
+
| `Throw` | Throws a specified exception |
|
|
26
|
+
| `Rethrow` | Re-throws caught exception (inside Catch block) |
|
|
27
|
+
| `For Each` | Iterates over collection items |
|
|
28
|
+
| `For Each Row` | Iterates over DataTable rows |
|
|
29
|
+
| `While` | Loops while condition is true |
|
|
30
|
+
| `Do While` | Loops at least once, then while condition is true |
|
|
31
|
+
| `Switch` | Multi-branch switch on expression value |
|
|
32
|
+
| `If` | Conditional branch (Then/Else) |
|
|
33
|
+
| `Break` | Exits innermost loop |
|
|
34
|
+
| `Continue` | Skips to next iteration of loop |
|
|
35
|
+
| `Parallel` | Executes branches in parallel |
|
|
36
|
+
| `Parallel For Each` | Iterates collection with parallel execution |
|
|
37
|
+
| `Pick` | Waits for one of multiple triggers, executes first |
|
|
38
|
+
| `Pick Branch` | Individual branch inside Pick |
|
|
39
|
+
| `Interruptible While` | While loop that can be interrupted by triggers |
|
|
40
|
+
| `Terminate Workflow` | Terminates workflow execution |
|
|
41
|
+
|
|
42
|
+
### Orchestrator - Assets & Credentials
|
|
43
|
+
| Activity | Description |
|
|
44
|
+
|----------|-------------|
|
|
45
|
+
| `Get Asset` | Gets Orchestrator asset value (Text/Bool/Int/Credential) |
|
|
46
|
+
| `Set Asset` | Sets Orchestrator asset value |
|
|
47
|
+
| `Get Credential` | Gets username+password from Orchestrator Credential asset |
|
|
48
|
+
| `Set Credential` | Sets Orchestrator Credential asset |
|
|
49
|
+
|
|
50
|
+
### Orchestrator - Queues
|
|
51
|
+
| Activity | Description |
|
|
52
|
+
|----------|-------------|
|
|
53
|
+
| `Add Queue Item` | Adds item to Orchestrator queue |
|
|
54
|
+
| `Add Transaction Item` | Adds item and sets status to InProgress |
|
|
55
|
+
| `Get Transaction Item` | Gets next available queue item for processing |
|
|
56
|
+
| `Set Transaction Status` | Sets queue item status (Success/Failed/Abandoned) |
|
|
57
|
+
| `Set Transaction Progress` | Updates progress info on transaction |
|
|
58
|
+
| `Get Queue Items` | Retrieves queue items with filtering |
|
|
59
|
+
| `Bulk Add Queue Items` | Adds DataTable rows to queue |
|
|
60
|
+
| `Delete Queue Items` | Deletes items from queue |
|
|
61
|
+
| `Postpone Transaction Item` | Defers transaction to later time |
|
|
62
|
+
| `Wait Queue Item` | Waits for queue item status change |
|
|
63
|
+
| `Queue Trigger` | Trigger that fires on new queue items |
|
|
64
|
+
|
|
65
|
+
### Orchestrator - Jobs & Storage
|
|
66
|
+
| Activity | Description |
|
|
67
|
+
|----------|-------------|
|
|
68
|
+
| `Start Job` | Starts a process job on Orchestrator |
|
|
69
|
+
| `Stop Job` | Stops a running job |
|
|
70
|
+
| `Get Jobs` | Lists jobs with filtering |
|
|
71
|
+
| `Should Stop` | Checks if current job has been requested to stop |
|
|
72
|
+
| `Upload Storage File` | Uploads file to Orchestrator Storage Bucket |
|
|
73
|
+
| `Download Storage File` | Downloads file from Storage Bucket |
|
|
74
|
+
| `Delete Storage File` | Deletes file from Storage Bucket |
|
|
75
|
+
| `List Storage Files` | Lists files in Storage Bucket |
|
|
76
|
+
| `Read Storage Text` | Reads text content from Storage Bucket |
|
|
77
|
+
| `Write Storage Text` | Writes text content to Storage Bucket |
|
|
78
|
+
| `Raise Alert` | Raises alert in Orchestrator |
|
|
79
|
+
|
|
80
|
+
### Compression
|
|
81
|
+
| Activity | Description |
|
|
82
|
+
|----------|-------------|
|
|
83
|
+
| `Compress/Zip Files` | Compresses files into ZIP archive |
|
|
84
|
+
| `Extract/Unzip Files` | Extracts files from ZIP archive |
|
|
85
|
+
|
|
86
|
+
### DataTable
|
|
87
|
+
| Activity | Description |
|
|
88
|
+
|----------|-------------|
|
|
89
|
+
| `Build Data Table` | Creates DataTable with column definitions (wizard) |
|
|
90
|
+
| `Add Data Row` | Adds row to DataTable |
|
|
91
|
+
| `Remove Data Row` | Removes row from DataTable |
|
|
92
|
+
| `Add Data Column` | Adds column to DataTable |
|
|
93
|
+
| `Remove Data Column` | Removes column from DataTable |
|
|
94
|
+
| `Clear Data Table` | Removes all rows from DataTable |
|
|
95
|
+
| `Filter Data Table` | Filters DataTable by column conditions |
|
|
96
|
+
| `Sort Data Table` | Sorts DataTable by column |
|
|
97
|
+
| `Merge Data Table` | Merges two DataTables |
|
|
98
|
+
| `Join Data Tables` | Joins two DataTables (Inner/Left/Full) |
|
|
99
|
+
| `Lookup Data Table` | Looks up value in DataTable by key |
|
|
100
|
+
| `Output Data Table` | Converts DataTable to formatted string |
|
|
101
|
+
| `Generate Data Table` | Creates DataTable from structured text |
|
|
102
|
+
| `Remove Duplicate Rows` | Removes duplicate rows from DataTable |
|
|
103
|
+
| `For Each Row` | Iterates over DataTable rows |
|
|
104
|
+
| `Get Row Item` | Gets cell value by column name/index |
|
|
105
|
+
|
|
106
|
+
### Collections
|
|
107
|
+
| Activity | Description |
|
|
108
|
+
|----------|-------------|
|
|
109
|
+
| `Append Item To List` | Appends an item to a List and returns the index |
|
|
110
|
+
| `Create List` | Creates a new empty List of specified type |
|
|
111
|
+
| `Read List Item` | Reads an item from a List at specified index |
|
|
112
|
+
| `Update List Item` | Updates an item in a List at specified index |
|
|
113
|
+
| `Append Item To Collection` | Appends one or more items to an ICollection |
|
|
114
|
+
| `Build Collection` | Builds a new collection from individual items |
|
|
115
|
+
| `Exists In Collection` | Checks if item exists in collection, returns bool and index |
|
|
116
|
+
| `Filter Collection` | Filters a collection based on criteria |
|
|
117
|
+
| `Remove From Collection` | Removes item(s) from collection by item, index, or all |
|
|
118
|
+
| `Merge Collections` | Merges two collections into one |
|
|
119
|
+
|
|
120
|
+
### Text Handling
|
|
121
|
+
| Activity | Description |
|
|
122
|
+
|----------|-------------|
|
|
123
|
+
| `Change Case` | Changes text case (Lower, Upper, Sentence, Title) |
|
|
124
|
+
| `Combine Text` | Concatenates text strings with separator |
|
|
125
|
+
| `Extract Text` | Extracts text between strings, emails, URLs, or from HTML |
|
|
126
|
+
| `Find And Replace` | Finds and replaces text in a string |
|
|
127
|
+
| `Split Text` | Splits text by separator (comma, newline, space, tab, etc.) |
|
|
128
|
+
| `Extract Date Time` | Parses date/time from text with culture support |
|
|
129
|
+
|
|
130
|
+
### Date/Time
|
|
131
|
+
| Activity | Description |
|
|
132
|
+
|----------|-------------|
|
|
133
|
+
| `Add Or Subtract From Date` | Adds/subtracts seconds/minutes/hours/days/weeks/months/years |
|
|
134
|
+
| `Format Date As Text` | Formats DateTime to string with culture |
|
|
135
|
+
| `Get Next Or Previous Date` | Gets next/previous occurrence of a day |
|
|
136
|
+
|
|
137
|
+
### Dialog/Input
|
|
138
|
+
| Activity | Description |
|
|
139
|
+
|----------|-------------|
|
|
140
|
+
| `Input Dialog` | Displays input dialog box, returns user-typed value |
|
|
141
|
+
| `Custom Input` | Shows custom HTML form dialog, returns string result |
|
|
142
|
+
| `Select File` | File picker dialog |
|
|
143
|
+
| `Select Folder` | Folder picker dialog |
|
|
144
|
+
| `Ask When Run` | Prompts user for a value at runtime |
|
|
145
|
+
|
|
146
|
+
### File System
|
|
147
|
+
| Activity | Description |
|
|
148
|
+
|----------|-------------|
|
|
149
|
+
| `Delete File` | Deletes a file from disk |
|
|
150
|
+
| `File Exists` | Checks if file exists, returns bool |
|
|
151
|
+
| `Get File Info` | Returns FileInfo for a file path |
|
|
152
|
+
| `Delete Folder` | Deletes a folder from disk |
|
|
153
|
+
| `Folder Exists` | Checks if folder exists, returns bool |
|
|
154
|
+
| `Get Folder Info` | Returns folder information |
|
|
155
|
+
| `Rename File` | Renames a file |
|
|
156
|
+
| `Rename Folder` | Renames a folder |
|
|
157
|
+
| `Copy Folder` | Copies a folder recursively |
|
|
158
|
+
| `Move Folder` | Moves a folder |
|
|
159
|
+
| `Get Last Downloaded File` | Monitors download folder for newest file |
|
|
160
|
+
|
|
161
|
+
### Process/Code
|
|
162
|
+
| Activity | Description |
|
|
163
|
+
|----------|-------------|
|
|
164
|
+
| `Execute PowerShell` | Executes PowerShell commands/scripts with parameters |
|
|
165
|
+
| `Invoke Power Shell` | Alternative PowerShell invocation |
|
|
166
|
+
| `Invoke VBScript` | Executes VBScript code |
|
|
167
|
+
| `Invoke Code` | Executes inline VB.NET or C# code |
|
|
168
|
+
| `Invoke COM Method` | Calls a method on a COM object by ProgID or CLSID |
|
|
169
|
+
|
|
170
|
+
### Workflow Control
|
|
171
|
+
| Activity | Description |
|
|
172
|
+
|----------|-------------|
|
|
173
|
+
| `Multiple Assign` | Assigns multiple variables in a single activity |
|
|
174
|
+
| `If Else If` | Multi-branch conditional (if/else if/else) |
|
|
175
|
+
|
|
176
|
+
### Credentials
|
|
177
|
+
| Activity | Description |
|
|
178
|
+
|----------|-------------|
|
|
179
|
+
| `Get Username Password` | Gets credentials from Windows Credential Manager or Orchestrator |
|
|
180
|
+
|
|
181
|
+
### Triggers
|
|
182
|
+
| Activity | Description |
|
|
183
|
+
|----------|-------------|
|
|
184
|
+
| `Trigger Scope` | Container for event-driven triggers with scheduling modes |
|
|
185
|
+
| `File Change Trigger` | Fires when file system changes detected |
|
|
186
|
+
| `Process Start Trigger` | Fires when a process starts |
|
|
187
|
+
| `Process End Trigger` | Fires when a process ends |
|
|
188
|
+
| `Notify Global Variable Changed` | Notifies when global variable changes |
|
|
189
|
+
|
|
190
|
+
### Regex
|
|
191
|
+
| Activity | Description |
|
|
192
|
+
|----------|-------------|
|
|
193
|
+
| `Is Match` | Tests if string matches regex pattern |
|
|
194
|
+
| `Matches` | Returns all regex matches from string |
|
|
195
|
+
| `Replace` | Regex-based find and replace |
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## 2. UiPath.UIAutomation.Activities (v26.1.0) — 92.6% adoption
|
|
200
|
+
|
|
201
|
+
### Mouse
|
|
202
|
+
| Activity | Description |
|
|
203
|
+
|----------|-------------|
|
|
204
|
+
| `Click` | Clicks UI element (single/double/down/up, left/right/middle) |
|
|
205
|
+
| `Double Click` | Double-clicks a UI element |
|
|
206
|
+
| `Hover` | Hovers mouse over a UI element |
|
|
207
|
+
| `Click Image` | Clicks on image match found in UI |
|
|
208
|
+
| `Hover Image` | Hovers over image match in UI |
|
|
209
|
+
| `Click Text` | Clicks on OCR-recognized text in UI |
|
|
210
|
+
| `Click OCR Text` | Clicks text found by OCR engine |
|
|
211
|
+
| `Mouse Scroll` | Scrolls mouse wheel on element |
|
|
212
|
+
|
|
213
|
+
### Keyboard
|
|
214
|
+
| Activity | Description |
|
|
215
|
+
|----------|-------------|
|
|
216
|
+
| `Type Into` | Types text into a UI element with special key support |
|
|
217
|
+
| `Type Secure Text` | Types SecureString into element (passwords) |
|
|
218
|
+
| `Send Hotkey` | Sends keyboard shortcut (Ctrl+C, Alt+F4, etc.) |
|
|
219
|
+
| `Set Text` | Sets text value of element via attribute |
|
|
220
|
+
|
|
221
|
+
### Element Search
|
|
222
|
+
| Activity | Description |
|
|
223
|
+
|----------|-------------|
|
|
224
|
+
| `Find Element` | Finds a UI element by selector, returns UiElement |
|
|
225
|
+
| `Element Exists` | Checks if element exists, returns bool (no exception on timeout) |
|
|
226
|
+
| `Find Children` | Finds child elements matching filter criteria |
|
|
227
|
+
| `Find Relative Element` | Finds element at relative offset from target |
|
|
228
|
+
| `Get Ancestor` | Navigates up N levels in element hierarchy |
|
|
229
|
+
| `Wait Element Appear` | Waits until element appears (adaptive polling) |
|
|
230
|
+
| `Wait Element Vanish` | Waits until element disappears |
|
|
231
|
+
| `On Element Appear` | Trigger: fires when element appears |
|
|
232
|
+
| `On Element Vanish` | Trigger: fires when element vanishes |
|
|
233
|
+
| `Element Scope` | Container that finds element once for child activities |
|
|
234
|
+
| `Indicate On Screen` | Highlights element for user to see |
|
|
235
|
+
| `Find Image Matches` | Finds all occurrences of template image in screen |
|
|
236
|
+
|
|
237
|
+
### Element Attributes
|
|
238
|
+
| Activity | Description |
|
|
239
|
+
|----------|-------------|
|
|
240
|
+
| `Get Text` | Gets text content of UI element |
|
|
241
|
+
| `Get Full Text` | Gets full text using FullText method |
|
|
242
|
+
| `Get Visible Text` | Gets visible/rendered text using Native method |
|
|
243
|
+
| `Get Value` | Gets value attribute of element |
|
|
244
|
+
| `Set Value` | Sets value attribute of element |
|
|
245
|
+
| `Get Attribute` | Gets any named attribute of element |
|
|
246
|
+
| `Set Attribute` | Sets any named attribute of element |
|
|
247
|
+
| `Select Item` | Selects item from dropdown/listbox by text |
|
|
248
|
+
| `Select Multiple Items` | Selects multiple items from multi-select control |
|
|
249
|
+
| `Check` | Checks/unchecks checkbox or radio button |
|
|
250
|
+
| `Wait Attribute` | Waits until element attribute matches value (wildcards) |
|
|
251
|
+
| `Get Position` | Gets element screen coordinates as Rectangle |
|
|
252
|
+
|
|
253
|
+
### Actions
|
|
254
|
+
| Activity | Description |
|
|
255
|
+
|----------|-------------|
|
|
256
|
+
| `Activate` | Brings window to foreground |
|
|
257
|
+
| `Set Focus` | Sets keyboard focus to element |
|
|
258
|
+
| `Highlight` | Draws colored box around element for debugging |
|
|
259
|
+
| `Take Screenshot` | Captures element or region as Image |
|
|
260
|
+
| `Save Image` | Saves Image object to file |
|
|
261
|
+
| `Load Image` | Loads image from file |
|
|
262
|
+
| `Set Clipping Region` | Sets visible region of element |
|
|
263
|
+
| `Block User Input` | Blocks keyboard/mouse input during execution |
|
|
264
|
+
|
|
265
|
+
### Clipboard
|
|
266
|
+
| Activity | Description |
|
|
267
|
+
|----------|-------------|
|
|
268
|
+
| `Get From Clipboard` | Gets text from system clipboard |
|
|
269
|
+
| `Set To Clipboard` | Sets text to system clipboard |
|
|
270
|
+
| `Copy Selected Text` | Copies currently selected text (Ctrl+C) |
|
|
271
|
+
|
|
272
|
+
### Data Scraping
|
|
273
|
+
| Activity | Description |
|
|
274
|
+
|----------|-------------|
|
|
275
|
+
| `Extract Structured Data` | Scrapes structured/tabular data from UI into DataTable |
|
|
276
|
+
| `Extract Data` | Legacy data extraction |
|
|
277
|
+
|
|
278
|
+
### Window/Process
|
|
279
|
+
| Activity | Description |
|
|
280
|
+
|----------|-------------|
|
|
281
|
+
| `Close Window` | Closes a window |
|
|
282
|
+
| `Close Tab` | Closes a browser tab |
|
|
283
|
+
| `Start Process` | Starts an executable |
|
|
284
|
+
| `Get Active Window` | Gets the currently active/foreground window |
|
|
285
|
+
|
|
286
|
+
### Scope Activities
|
|
287
|
+
| Activity | Description |
|
|
288
|
+
|----------|-------------|
|
|
289
|
+
| `Open Browser` | Opens browser (IE/Chrome/Firefox/Edge) and provides scope |
|
|
290
|
+
| `Open Application` | Launches application and provides window scope |
|
|
291
|
+
| `Attach Browser` | Attaches to existing browser window |
|
|
292
|
+
| `Attach Window` | Attaches to existing application window |
|
|
293
|
+
| `Browser Scope` | Targets browser by selector or browser variable |
|
|
294
|
+
| `Window Scope` | Targets window by selector or window variable |
|
|
295
|
+
|
|
296
|
+
### OCR/Image
|
|
297
|
+
| Activity | Description |
|
|
298
|
+
|----------|-------------|
|
|
299
|
+
| `Get OCR Text` | Extracts text from element using OCR engine |
|
|
300
|
+
| `Find OCR Text Position` | Finds position of OCR text in element |
|
|
301
|
+
| `Wait Image Appear` | Waits for image to appear on screen |
|
|
302
|
+
| `Wait Image Vanish` | Waits for image to disappear |
|
|
303
|
+
|
|
304
|
+
### SAP
|
|
305
|
+
| Activity | Description |
|
|
306
|
+
|----------|-------------|
|
|
307
|
+
| `Click SAP` | Clicks SAP GUI element |
|
|
308
|
+
| `Select SAP Item` | Selects item in SAP control |
|
|
309
|
+
| `Expand Tree` | Expands SAP tree node |
|
|
310
|
+
| `Collapse Tree` | Collapses SAP tree node |
|
|
311
|
+
| `Select SAP Date` | Selects date in SAP calendar control |
|
|
312
|
+
|
|
313
|
+
### Citrix
|
|
314
|
+
| Activity | Description |
|
|
315
|
+
|----------|-------------|
|
|
316
|
+
| `Click Text` | Clicks OCR-recognized text (Citrix/RDP) |
|
|
317
|
+
| `Type Into (image)` | Types into image-based target |
|
|
318
|
+
|
|
319
|
+
---
|
|
320
|
+
|
|
321
|
+
## 3. UiPath.Excel.Activities (v3.5.0) — 90.2% adoption
|
|
322
|
+
|
|
323
|
+
### Scope
|
|
324
|
+
| Activity | Description |
|
|
325
|
+
|----------|-------------|
|
|
326
|
+
| `Excel Application Scope` | Opens workbook via COM Interop, provides scope for child activities |
|
|
327
|
+
|
|
328
|
+
### Interop Activities (require Excel Application Scope)
|
|
329
|
+
| Activity | Description |
|
|
330
|
+
|----------|-------------|
|
|
331
|
+
| `Read Range` | Reads cell range into DataTable |
|
|
332
|
+
| `Write Range` | Writes DataTable to cell range |
|
|
333
|
+
| `Read Cell` | Reads single cell value |
|
|
334
|
+
| `Write Cell` | Writes value to single cell |
|
|
335
|
+
| `Read Cell Formula` | Gets formula text from cell |
|
|
336
|
+
| `Read Row` | Reads entire row as IEnumerable |
|
|
337
|
+
| `Read Column` | Reads entire column as IEnumerable |
|
|
338
|
+
| `Append Range` | Appends DataTable after last row |
|
|
339
|
+
| `Select Range` | Selects/highlights a cell range |
|
|
340
|
+
| `Get Selected Range` | Returns currently selected range address |
|
|
341
|
+
| `Get Table Range` | Gets range address of named table |
|
|
342
|
+
| `Auto Fill Range` | Auto-fills pattern in range |
|
|
343
|
+
| `Copy Paste Range` | Copies and pastes cell range |
|
|
344
|
+
| `Create Table` | Creates formatted table from range |
|
|
345
|
+
| `Create Pivot Table` | Creates pivot table from data |
|
|
346
|
+
| `Refresh Pivot Table` | Refreshes pivot table data |
|
|
347
|
+
| `Filter Table` | Applies filter to table |
|
|
348
|
+
| `Sort Table` | Sorts table data |
|
|
349
|
+
| `Delete Range` | Deletes cells in range |
|
|
350
|
+
| `Delete Column` | Deletes column(s) |
|
|
351
|
+
| `Insert Column` | Inserts column(s) |
|
|
352
|
+
| `Insert/Delete Rows` | Inserts or deletes rows |
|
|
353
|
+
| `Insert/Delete Columns` | Inserts or deletes columns |
|
|
354
|
+
| `Remove Duplicates Range` | Removes duplicate rows from range |
|
|
355
|
+
| `Lookup Range` | VLOOKUP-style lookup in range |
|
|
356
|
+
| `Copy Sheet` | Copies worksheet within/between workbooks |
|
|
357
|
+
| `Get Workbook Sheets` | Lists all sheet names |
|
|
358
|
+
| `Get Cell Color` | Gets cell background color |
|
|
359
|
+
| `Set Range Color` | Sets cell background color |
|
|
360
|
+
| `Execute Macro` | Executes VBA macro by name |
|
|
361
|
+
| `Invoke VBA` | Invokes VBA code from .bas file |
|
|
362
|
+
|
|
363
|
+
### Portable Activities (no Excel required)
|
|
364
|
+
| Activity | Description |
|
|
365
|
+
|----------|-------------|
|
|
366
|
+
| `Read Range (Workbook)` | Reads range from .xlsx file using ClosedXML |
|
|
367
|
+
| `Write Range (Workbook)` | Writes to .xlsx file using ClosedXML |
|
|
368
|
+
| `Read Cell (Workbook)` | Reads single cell from file |
|
|
369
|
+
| `Write Cell (Workbook)` | Writes single cell to file |
|
|
370
|
+
| `Read Cell Formula (Workbook)` | Gets formula from cell in file |
|
|
371
|
+
| `Read Row (Workbook)` | Reads row from file |
|
|
372
|
+
| `Read Column (Workbook)` | Reads column from file |
|
|
373
|
+
| `Append Range (Workbook)` | Appends data to file |
|
|
374
|
+
| `Create Table (Workbook)` | Creates table in file |
|
|
375
|
+
| `Create Pivot Table (Workbook)` | Creates pivot table in file |
|
|
376
|
+
| `Get Table Range (Workbook)` | Gets table range from file |
|
|
377
|
+
| `Get Sheets (Workbook)` | Lists sheets in file |
|
|
378
|
+
| `Set Range Color (Workbook)` | Sets cell color in file |
|
|
379
|
+
| `Get Cell Color (Workbook)` | Gets cell color from file |
|
|
380
|
+
| `Create New Workbook` | Creates new .xlsx file |
|
|
381
|
+
|
|
382
|
+
### CSV Activities
|
|
383
|
+
| Activity | Description |
|
|
384
|
+
|----------|-------------|
|
|
385
|
+
| `Read CSV` | Reads CSV file into DataTable |
|
|
386
|
+
| `Write CSV` | Writes DataTable to CSV file |
|
|
387
|
+
| `Append To CSV` | Appends DataTable rows to existing CSV |
|
|
388
|
+
|
|
389
|
+
---
|
|
390
|
+
|
|
391
|
+
## 4. UiPath.Mail.Activities (v2.8.0) — 77.7% adoption
|
|
392
|
+
|
|
393
|
+
### SMTP
|
|
394
|
+
| Activity | Description |
|
|
395
|
+
|----------|-------------|
|
|
396
|
+
| `Send SMTP Mail Message` | Sends email via SMTP with attachments, HTML body |
|
|
397
|
+
|
|
398
|
+
### IMAP
|
|
399
|
+
| Activity | Description |
|
|
400
|
+
|----------|-------------|
|
|
401
|
+
| `Get IMAP Mail Messages` | Retrieves emails from IMAP server with filtering |
|
|
402
|
+
| `Delete IMAP Mail Message` | Deletes email from IMAP server |
|
|
403
|
+
| `Move IMAP Mail Message` | Moves email between IMAP folders |
|
|
404
|
+
|
|
405
|
+
### POP3
|
|
406
|
+
| Activity | Description |
|
|
407
|
+
|----------|-------------|
|
|
408
|
+
| `Get POP3 Mail Messages` | Retrieves emails from POP3 server (inbox only) |
|
|
409
|
+
|
|
410
|
+
### Exchange
|
|
411
|
+
| Activity | Description |
|
|
412
|
+
|----------|-------------|
|
|
413
|
+
| `Send Exchange Mail Message` | Sends email via Exchange Web Services |
|
|
414
|
+
| `Get Exchange Mail Messages` | Retrieves emails from Exchange with filtering |
|
|
415
|
+
| `Delete Mail` | Deletes email from Exchange |
|
|
416
|
+
| `Move Message To Folder` | Moves email between Exchange folders |
|
|
417
|
+
| `Save Exchange Attachments` | Saves email attachments to disk |
|
|
418
|
+
| `Exchange Scope` | Connection container for Exchange activities |
|
|
419
|
+
|
|
420
|
+
### Outlook
|
|
421
|
+
| Activity | Description |
|
|
422
|
+
|----------|-------------|
|
|
423
|
+
| `Send Outlook Mail Message` | Sends email via Outlook COM with importance/sensitivity |
|
|
424
|
+
| `Get Outlook Mail Messages` | Retrieves emails from Outlook folders |
|
|
425
|
+
| `Delete Outlook Mail Message` | Deletes Outlook email |
|
|
426
|
+
| `Move Outlook Message` | Moves Outlook email between folders |
|
|
427
|
+
| `Mark Outlook Mail As Read` | Toggles read/unread status |
|
|
428
|
+
| `Reply To Outlook Mail Message` | Sends reply via Outlook |
|
|
429
|
+
| `Save Attachments` | Saves Outlook email attachments |
|
|
430
|
+
| `Save Outlook Mail Message` | Saves email as .msg file |
|
|
431
|
+
| `Set Outlook Mail Categories` | Assigns categories/flags to email |
|
|
432
|
+
| `Outlook Mail Message Trigger` | Trigger for incoming Outlook emails |
|
|
433
|
+
|
|
434
|
+
### Lotus Notes
|
|
435
|
+
| Activity | Description |
|
|
436
|
+
|----------|-------------|
|
|
437
|
+
| `Send Lotus Notes Mail Message` | Sends email via Lotus Notes COM |
|
|
438
|
+
| `Get Lotus Notes Mail Messages` | Retrieves emails from Lotus Notes |
|
|
439
|
+
| `Delete Lotus Notes Mail Message` | Deletes Lotus Notes email |
|
|
440
|
+
| `Move Lotus Notes Mail Message` | Moves Lotus Notes email |
|
|
441
|
+
|
|
442
|
+
---
|
|
443
|
+
|
|
444
|
+
## 5. UiPath.Web.Activities (v2.4.0) — 33.9% adoption
|
|
445
|
+
|
|
446
|
+
### HTTP
|
|
447
|
+
| Activity | Description |
|
|
448
|
+
|----------|-------------|
|
|
449
|
+
| `HTTP Request` | Modern HTTP client with auth, retry, proxy, SSL config |
|
|
450
|
+
| `HTTP Client` | Legacy REST client (RestSharp-based) with OAuth1 support |
|
|
451
|
+
| `SOAP Request` | SOAP 1.1/1.2 web service client from WSDL |
|
|
452
|
+
|
|
453
|
+
### JSON
|
|
454
|
+
| Activity | Description |
|
|
455
|
+
|----------|-------------|
|
|
456
|
+
| `Deserialize JSON` | Parses JSON string to typed object |
|
|
457
|
+
| `Deserialize JSON Array` | Parses JSON string to JArray |
|
|
458
|
+
| `Serialize JSON` | Serializes object to JSON string |
|
|
459
|
+
|
|
460
|
+
### XML
|
|
461
|
+
| Activity | Description |
|
|
462
|
+
|----------|-------------|
|
|
463
|
+
| `Deserialize XML` | Parses XML string to XDocument |
|
|
464
|
+
| `Get XML Nodes` | Extracts all nodes from XML document |
|
|
465
|
+
| `Get Nodes` | Extracts root element's child nodes |
|
|
466
|
+
| `Execute XPath` | Executes XPath query on XML document |
|
|
467
|
+
| `Get XML Node Attributes` | Gets attributes from XML node |
|
|
468
|
+
|
|
469
|
+
---
|
|
470
|
+
|
|
471
|
+
## 6. UiPath.Database.Activities (v1.8.1) — 22.7% adoption
|
|
472
|
+
|
|
473
|
+
| Activity | Description |
|
|
474
|
+
|----------|-------------|
|
|
475
|
+
| `Connect` | Opens ADO.NET database connection |
|
|
476
|
+
| `Disconnect` | Closes database connection |
|
|
477
|
+
| `Execute Query` | Runs SELECT SQL, returns DataTable |
|
|
478
|
+
| `Execute Non Query` | Runs INSERT/UPDATE/DELETE, returns affected row count |
|
|
479
|
+
| `Insert Data Table` | Inserts DataTable rows into database table |
|
|
480
|
+
| `Bulk Insert` | High-performance bulk insert using SqlBulkCopy |
|
|
481
|
+
| `Bulk Update` | Bulk update existing rows |
|
|
482
|
+
| `Start Transaction` | Transaction scope with auto-commit/rollback |
|
|
483
|
+
|
|
484
|
+
---
|
|
485
|
+
|
|
486
|
+
## 7. UiPath.Credentials.Activities (v1.5.0) — 22.3% adoption
|
|
487
|
+
|
|
488
|
+
| Activity | Description |
|
|
489
|
+
|----------|-------------|
|
|
490
|
+
| `Get Secure Credential` | Gets username + SecureString password from Windows Credential Manager |
|
|
491
|
+
| `Get Credential` | Gets username + plain string password from Credential Manager |
|
|
492
|
+
| `Add Credential` | Stores credential in Windows Credential Manager |
|
|
493
|
+
| `Delete Credential` | Removes credential from Credential Manager |
|
|
494
|
+
| `Request Credential` | Shows Windows credential prompt dialog |
|
|
495
|
+
|
|
496
|
+
---
|
|
497
|
+
|
|
498
|
+
## 8. UiPath.MicrosoftOffice365.Activities (v3.8.0) — 17.5% adoption
|
|
499
|
+
|
|
500
|
+
### Scope
|
|
501
|
+
| Activity | Description |
|
|
502
|
+
|----------|-------------|
|
|
503
|
+
| `Microsoft Office 365 Scope` | OAuth2 authentication container for all O365 activities |
|
|
504
|
+
|
|
505
|
+
### Mail
|
|
506
|
+
| Activity | Description |
|
|
507
|
+
|----------|-------------|
|
|
508
|
+
| `Send Mail` | Sends email via Microsoft Graph API |
|
|
509
|
+
| `Delete Mail` | Deletes email |
|
|
510
|
+
| `Forward Mail` | Forwards email |
|
|
511
|
+
| `Reply To Mail` | Replies to email |
|
|
512
|
+
| `Move Mail` | Moves email between folders |
|
|
513
|
+
| `Set Mail Categories` | Assigns categories to email |
|
|
514
|
+
|
|
515
|
+
### Calendar
|
|
516
|
+
| Activity | Description |
|
|
517
|
+
|----------|-------------|
|
|
518
|
+
| `Create Event` | Creates calendar event with attendees |
|
|
519
|
+
| `Modify Event` | Updates calendar event |
|
|
520
|
+
| `Delete Event` | Deletes calendar event |
|
|
521
|
+
| `Add Attendee` | Adds attendee to event |
|
|
522
|
+
| `Add Location` | Adds location to event |
|
|
523
|
+
| `Add Attachment` | Adds attachment to event |
|
|
524
|
+
| `Search Events` | Queries calendar events |
|
|
525
|
+
| `Get Calendars` | Lists available calendars |
|
|
526
|
+
| `Find Meeting Times` | Finds optimal meeting times |
|
|
527
|
+
| `RSVP` | Responds to meeting invitation |
|
|
528
|
+
|
|
529
|
+
### Excel Online
|
|
530
|
+
| Activity | Description |
|
|
531
|
+
|----------|-------------|
|
|
532
|
+
| `Read Range` | Reads from Excel Online worksheet |
|
|
533
|
+
| `Write Range` | Writes to Excel Online worksheet |
|
|
534
|
+
| `Read Cell` | Reads single cell from online workbook |
|
|
535
|
+
| `Write Cell` | Writes single cell to online workbook |
|
|
536
|
+
| `Read Row` | Reads row from online workbook |
|
|
537
|
+
| `Read Column` | Reads column from online workbook |
|
|
538
|
+
| `Append Range` | Appends data to online worksheet |
|
|
539
|
+
| `Paste Range` | Pastes data with method (values/formulas) |
|
|
540
|
+
| `Clear Range` | Clears range contents |
|
|
541
|
+
| `Copy Range` | Copies range within workbook |
|
|
542
|
+
| `Copy Sheet` | Copies worksheet |
|
|
543
|
+
| `Delete Rows` | Deletes rows |
|
|
544
|
+
| `Delete Column` | Deletes column |
|
|
545
|
+
| `Insert Rows` | Inserts rows |
|
|
546
|
+
| `Insert Column` | Inserts column |
|
|
547
|
+
| `Create Table` | Creates formatted table |
|
|
548
|
+
| `Get Table Range` | Gets table data range |
|
|
549
|
+
| `Create Workbook` | Creates new online workbook |
|
|
550
|
+
| `Delete Sheet` | Deletes worksheet |
|
|
551
|
+
| `Rename Sheet` | Renames worksheet |
|
|
552
|
+
| `Add Sheet` | Adds new worksheet |
|
|
553
|
+
| `Get Sheets` | Lists worksheets |
|
|
554
|
+
| `Get Cell Color` | Gets cell background color |
|
|
555
|
+
| `Set Range Color` | Sets cell background color |
|
|
556
|
+
| `VLookup Range` | VLOOKUP operation |
|
|
557
|
+
|
|
558
|
+
### OneDrive/SharePoint
|
|
559
|
+
| Activity | Description |
|
|
560
|
+
|----------|-------------|
|
|
561
|
+
| `Upload File` | Uploads file to OneDrive/SharePoint |
|
|
562
|
+
| `Download File` | Downloads file from OneDrive/SharePoint |
|
|
563
|
+
| `Delete Item` | Deletes file or folder |
|
|
564
|
+
| `Create Folder` | Creates new folder |
|
|
565
|
+
| `Find Files And Folders` | Searches by name or query |
|
|
566
|
+
| `Get Item` | Gets file metadata |
|
|
567
|
+
| `Copy Item` | Copies file or folder |
|
|
568
|
+
| `Move Item` | Moves file or folder |
|
|
569
|
+
| `Share Item` | Creates sharing link |
|
|
570
|
+
| `Export As PDF` | Exports document to PDF |
|
|
571
|
+
|
|
572
|
+
### SharePoint Lists
|
|
573
|
+
| Activity | Description |
|
|
574
|
+
|----------|-------------|
|
|
575
|
+
| `Get List Info` | Gets list metadata |
|
|
576
|
+
| `Get List Items` | Gets list items as DataTable |
|
|
577
|
+
| `Add List Items` | Adds items to list |
|
|
578
|
+
| `Update List Item` | Updates list item properties |
|
|
579
|
+
| `Delete List Item` | Deletes list item |
|
|
580
|
+
|
|
581
|
+
### Planner
|
|
582
|
+
| Activity | Description |
|
|
583
|
+
|----------|-------------|
|
|
584
|
+
| `Create Plan` | Creates Planner plan |
|
|
585
|
+
| `Get Plan` | Gets plan details |
|
|
586
|
+
| `List Plans` | Lists group plans |
|
|
587
|
+
| `Create Task` | Creates Planner task |
|
|
588
|
+
| `Get Task` | Gets task details |
|
|
589
|
+
| `List Tasks` | Lists tasks |
|
|
590
|
+
| `Update Task` | Modifies task |
|
|
591
|
+
| `Delete Task` | Deletes task |
|
|
592
|
+
| `Create Bucket` | Creates bucket in plan |
|
|
593
|
+
| `Delete Bucket` | Deletes bucket |
|
|
594
|
+
| `List Buckets` | Lists buckets |
|
|
595
|
+
|
|
596
|
+
### Groups
|
|
597
|
+
| Activity | Description |
|
|
598
|
+
|----------|-------------|
|
|
599
|
+
| `Create Group` | Creates Microsoft 365 group |
|
|
600
|
+
| `Delete Group` | Deletes group |
|
|
601
|
+
| `Get Group` | Gets group details |
|
|
602
|
+
| `List Groups` | Lists all groups |
|
|
603
|
+
|
|
604
|
+
---
|
|
605
|
+
|
|
606
|
+
## 9. UiPath.Testing.Activities (v25.10.0) — 16.1% adoption
|
|
607
|
+
|
|
608
|
+
### Assertions
|
|
609
|
+
| Activity | Description |
|
|
610
|
+
|----------|-------------|
|
|
611
|
+
| `Verify Expression` | Asserts boolean expression is true |
|
|
612
|
+
| `Verify Expression With Operator` | Compares two values with operator (=, <>, >, <, Contains, RegexMatch) |
|
|
613
|
+
| `Verify Range` | Verifies value is within or outside a numeric range |
|
|
614
|
+
| `Verify Control Attribute` | Verifies output attribute of an activity |
|
|
615
|
+
|
|
616
|
+
### Document Comparison
|
|
617
|
+
| Activity | Description |
|
|
618
|
+
|----------|-------------|
|
|
619
|
+
| `Compare PDF Documents` | Compares two PDFs, generates visual diff |
|
|
620
|
+
| `Compare Text` | Compares two strings, generates HTML diff report |
|
|
621
|
+
| `Create Comparison Rule` | Creates regex/wildcard rule for ignoring dynamic content |
|
|
622
|
+
|
|
623
|
+
### Test Data Queues
|
|
624
|
+
| Activity | Description |
|
|
625
|
+
|----------|-------------|
|
|
626
|
+
| `Get Test Data Queue Item` | Gets next item from Orchestrator test data queue |
|
|
627
|
+
| `Get Test Data Queue Items` | Batch retrieves items with filtering |
|
|
628
|
+
| `Add Test Data Queue Item` | Adds item to test data queue |
|
|
629
|
+
| `Bulk Add Test Data Queue` | Adds DataTable rows to queue |
|
|
630
|
+
| `Delete Test Data Queue Items` | Deletes items from queue |
|
|
631
|
+
|
|
632
|
+
### Test Data Generation
|
|
633
|
+
| Activity | Description |
|
|
634
|
+
|----------|-------------|
|
|
635
|
+
| `Random String` | Generates random string (lower/upper/camel/mixed) |
|
|
636
|
+
| `Random Number` | Generates random number in range with decimals |
|
|
637
|
+
| `Random Date` | Generates random date in range |
|
|
638
|
+
| `Random Value` | Selects random line from text file |
|
|
639
|
+
| `Given Name` | Generates random first name |
|
|
640
|
+
| `Last Name` | Generates random last name |
|
|
641
|
+
| `Address` | Generates random address |
|
|
642
|
+
|
|
643
|
+
### Other
|
|
644
|
+
| Activity | Description |
|
|
645
|
+
|----------|-------------|
|
|
646
|
+
| `Attach Document` | Attaches file as test evidence in Orchestrator |
|
|
647
|
+
|
|
648
|
+
---
|
|
649
|
+
|
|
650
|
+
## 10. UiPath.PDF.Activities (v4.0.1) — 15.5% adoption
|
|
651
|
+
|
|
652
|
+
| Activity | Description |
|
|
653
|
+
|----------|-------------|
|
|
654
|
+
| `Read PDF Text` | Extracts native text layer from PDF |
|
|
655
|
+
| `Read PDF With OCR` | Extracts text from scanned PDF using OCR engine |
|
|
656
|
+
| `Export PDF Page As Image` | Converts single PDF page to image (PNG/JPG/BMP/GIF/TIFF) |
|
|
657
|
+
| `Extract Images From PDF` | Extracts all embedded images from PDF |
|
|
658
|
+
| `Extract PDF Page Range` | Extracts page range into new PDF |
|
|
659
|
+
| `Join PDF` | Merges multiple PDF files into one |
|
|
660
|
+
| `Manage PDF Password` | Sets/removes user and owner passwords |
|
|
661
|
+
| `Get PDF Page Count` | Returns number of pages in PDF |
|
|
662
|
+
| `Convert Text To PDF` | Converts plain text to PDF |
|
|
663
|
+
| `Convert HTML To PDF` | Converts HTML to PDF with headers/footers |
|
|
664
|
+
| `Convert Email To PDF` | Converts MailMessage to PDF |
|
|
665
|
+
| `Read XPS Text` | Extracts text from XPS document (desktop only) |
|
|
666
|
+
| `Read XPS With OCR` | OCR text extraction from XPS (desktop only) |
|
|
667
|
+
|
|
668
|
+
---
|
|
669
|
+
|
|
670
|
+
## 11. UiPath.Word.Activities (v2.5.0) — 10.1% adoption
|
|
671
|
+
|
|
672
|
+
### Scope
|
|
673
|
+
| Activity | Description |
|
|
674
|
+
|----------|-------------|
|
|
675
|
+
| `Word Application Scope` | Opens Word document via COM, provides scope |
|
|
676
|
+
|
|
677
|
+
### COM Activities (require Word Application Scope)
|
|
678
|
+
| Activity | Description |
|
|
679
|
+
|----------|-------------|
|
|
680
|
+
| `Append Text` | Appends text to document with optional newline |
|
|
681
|
+
| `Read Text` | Reads entire document text |
|
|
682
|
+
| `Replace Text` | Finds and replaces text (max 256 chars) |
|
|
683
|
+
| `Add Image` | Inserts image at position (relative to document/bookmark/text) |
|
|
684
|
+
| `Insert Data Table` | Inserts DataTable as Word table |
|
|
685
|
+
| `Insert Hyperlink` | Inserts clickable hyperlink |
|
|
686
|
+
| `Set Bookmark Content` | Replaces bookmark text |
|
|
687
|
+
| `Export To PDF` | Exports document as PDF |
|
|
688
|
+
| `Save As` | Saves in different format (docx/docm/doc/html/rtf/txt) |
|
|
689
|
+
| `Replace Picture` | Replaces image by alt text |
|
|
690
|
+
| `Paste From Clipboard` | Pastes clipboard content at position |
|
|
691
|
+
| `Get Sensitivity Label` | Gets document sensitivity/classification label |
|
|
692
|
+
| `Add Sensitivity Label` | Sets document sensitivity label |
|
|
693
|
+
|
|
694
|
+
### Portable Activities (no Word required, Xceed-based)
|
|
695
|
+
| Activity | Description |
|
|
696
|
+
|----------|-------------|
|
|
697
|
+
| `Create New Document` | Creates blank .docx/.docm file |
|
|
698
|
+
| `Read Text (Document)` | Reads entire document text without COM |
|
|
699
|
+
| `Append Text (Document)` | Appends text to document |
|
|
700
|
+
| `Replace Text (Document)` | Finds and replaces text |
|
|
701
|
+
| `Add Image (Document)` | Inserts image at position |
|
|
702
|
+
| `Insert Data Table (Document)` | Inserts DataTable as table |
|
|
703
|
+
| `Insert Hyperlink (Document)` | Inserts hyperlink |
|
|
704
|
+
| `Set Bookmark Content (Document)` | Replaces bookmark text |
|
|
705
|
+
|
|
706
|
+
---
|
|
707
|
+
|
|
708
|
+
## 12. UiPath.Terminal.Activities (v2.9.1) — 4.8% adoption
|
|
709
|
+
|
|
710
|
+
### Session
|
|
711
|
+
| Activity | Description |
|
|
712
|
+
|----------|-------------|
|
|
713
|
+
| `Terminal Session` | Connection scope for all terminal activities (3270/5250/VT) |
|
|
714
|
+
|
|
715
|
+
### Basic Operations
|
|
716
|
+
| Activity | Description |
|
|
717
|
+
|----------|-------------|
|
|
718
|
+
| `Get Text` | Gets full terminal screen text |
|
|
719
|
+
| `Get Cursor Position` | Returns current cursor row/column (1-based) |
|
|
720
|
+
| `Send Control Key` | Sends function/control key (F1-F24, Enter, Tab, PA1-3, etc.) |
|
|
721
|
+
|
|
722
|
+
### Field-Based
|
|
723
|
+
| Activity | Description |
|
|
724
|
+
|----------|-------------|
|
|
725
|
+
| `Get Field` | Gets field text by index, label, or following text |
|
|
726
|
+
| `Set Field` | Sets field text by index, label, or following text |
|
|
727
|
+
| `Wait Field Text` | Waits until field contains specified text |
|
|
728
|
+
| `Wait Screen Text` | Waits until screen contains specified text |
|
|
729
|
+
|
|
730
|
+
### Coordinate-Based
|
|
731
|
+
| Activity | Description |
|
|
732
|
+
|----------|-------------|
|
|
733
|
+
| `Get Text At Position` | Gets text at row/column with optional length |
|
|
734
|
+
| `Get Field At Position` | Gets field text at row/column |
|
|
735
|
+
| `Set Field At Position` | Sets field at row/column |
|
|
736
|
+
| `Get Screen Area` | Gets text from rectangular region |
|
|
737
|
+
| `Get Color At Position` | Gets display color at row/column |
|
|
738
|
+
| `Move Cursor` | Moves cursor to row/column |
|
|
739
|
+
| `Move Cursor To Text` | Finds text and moves cursor to it |
|
|
740
|
+
| `Find Text In Screen` | Searches screen for text, returns position |
|
|
741
|
+
| `Wait Text At Position` | Waits for text at specific row/column |
|
|
742
|
+
| `Wait Screen Ready` | Waits for terminal ready state |
|
|
743
|
+
|
|
744
|
+
### Advanced
|
|
745
|
+
| Activity | Description |
|
|
746
|
+
|----------|-------------|
|
|
747
|
+
| `Send Keys` | Sends text/key sequence to terminal |
|
|
748
|
+
| `Send Keys Secure` | Sends SecureString to terminal (passwords) |
|
|
749
|
+
|
|
750
|
+
---
|
|
751
|
+
|
|
752
|
+
## 13. UiPath.FTP.Activities (v1.5.0) — 4.5% adoption
|
|
753
|
+
|
|
754
|
+
### Scope
|
|
755
|
+
| Activity | Description |
|
|
756
|
+
|----------|-------------|
|
|
757
|
+
| `FTP Session` (WithFtpSession) | Connection scope for FTP/FTPS/SFTP |
|
|
758
|
+
|
|
759
|
+
### Operations
|
|
760
|
+
| Activity | Description |
|
|
761
|
+
|----------|-------------|
|
|
762
|
+
| `Download Files` | Downloads files from FTP server |
|
|
763
|
+
| `Upload Files` | Uploads files to FTP server |
|
|
764
|
+
| `Delete` | Deletes remote file or folder |
|
|
765
|
+
| `Move Item` | Moves/renames remote file |
|
|
766
|
+
| `Directory Exists` | Checks if remote directory exists |
|
|
767
|
+
| `File Exists` | Checks if remote file exists |
|
|
768
|
+
| `Enumerate Objects` | Lists remote directory contents |
|
|
769
|
+
|
|
770
|
+
---
|
|
771
|
+
|
|
772
|
+
## 14. UiPath.GSuite.Activities (v3.8.0) — 3.9% adoption
|
|
773
|
+
|
|
774
|
+
### Gmail
|
|
775
|
+
| Activity | Description |
|
|
776
|
+
|----------|-------------|
|
|
777
|
+
| `Send Email` | Sends email via Gmail API |
|
|
778
|
+
| `Get Email List` | Retrieves emails with filtering |
|
|
779
|
+
| `Get Newest Email` | Gets latest unread email |
|
|
780
|
+
| `Get Email By ID` | Retrieves specific email |
|
|
781
|
+
| `Get Email Thread` | Gets entire email thread |
|
|
782
|
+
| `Download Email` | Downloads email as attachment |
|
|
783
|
+
| `Download Attachments` | Extracts email attachments |
|
|
784
|
+
| `Reply To Email` | Sends reply |
|
|
785
|
+
| `Forward Email` | Forwards email |
|
|
786
|
+
| `Delete Email` | Permanently deletes email |
|
|
787
|
+
| `Archive Email` | Archives email |
|
|
788
|
+
| `Mark As Read/Unread` | Changes read status |
|
|
789
|
+
| `Apply Email Labels` | Tags email with labels |
|
|
790
|
+
| `Remove Email Labels` | Removes labels from email |
|
|
791
|
+
| `Get Label` | Gets label details |
|
|
792
|
+
| `Get Labels List` | Lists all labels |
|
|
793
|
+
| `Turn On/Off Automatic Replies` | Out-of-office management |
|
|
794
|
+
|
|
795
|
+
### Google Drive
|
|
796
|
+
| Activity | Description |
|
|
797
|
+
|----------|-------------|
|
|
798
|
+
| `Get File List` | Lists files/folders with filtering |
|
|
799
|
+
| `Upload Files` | Uploads files to Drive |
|
|
800
|
+
| `Create Folder` | Creates new folder |
|
|
801
|
+
| `Create Document` | Creates Google Doc |
|
|
802
|
+
| `Create Spreadsheet` | Creates Google Sheet |
|
|
803
|
+
| `Get File/Folder` | Gets item details |
|
|
804
|
+
| `Download File` | Downloads file |
|
|
805
|
+
| `Copy File` | Duplicates file |
|
|
806
|
+
| `Rename File/Folder` | Renames item |
|
|
807
|
+
| `Move File` | Moves to different folder |
|
|
808
|
+
| `Delete File/Folder` | Deletes item |
|
|
809
|
+
| `Share File/Folder` | Shares with users/groups |
|
|
810
|
+
| `Get Permissions` | Lists sharing permissions |
|
|
811
|
+
| `Update Permission` | Modifies access level |
|
|
812
|
+
| `Delete Permission` | Removes sharing |
|
|
813
|
+
|
|
814
|
+
### Google Sheets
|
|
815
|
+
| Activity | Description |
|
|
816
|
+
|----------|-------------|
|
|
817
|
+
| `Read Range` | Reads range into DataTable |
|
|
818
|
+
| `Write Range` | Writes DataTable to range |
|
|
819
|
+
| `Read Cell` | Reads single cell |
|
|
820
|
+
| `Write Cell` | Writes single cell |
|
|
821
|
+
| `Read Row` | Reads entire row |
|
|
822
|
+
| `Write Row` | Writes to row |
|
|
823
|
+
| `Read Column` | Reads column |
|
|
824
|
+
| `Write Column` | Writes to column |
|
|
825
|
+
| `Get Cell Color` | Gets cell background color |
|
|
826
|
+
| `Set Range Color` | Sets cell background color |
|
|
827
|
+
| `Copy Paste Range` | Copies range |
|
|
828
|
+
| `Auto Fill Range` | Auto-fills pattern |
|
|
829
|
+
| `Delete Range` | Deletes range |
|
|
830
|
+
| `Delete Rows` | Deletes rows |
|
|
831
|
+
| `Delete Column` | Deletes column |
|
|
832
|
+
| `Delete Sheet` | Deletes sheet |
|
|
833
|
+
| `Add Sheet` | Adds new sheet |
|
|
834
|
+
| `Rename Sheet` | Renames sheet |
|
|
835
|
+
| `For Each Row` | Iterates rows |
|
|
836
|
+
| `For Each Sheet` | Iterates sheets |
|
|
837
|
+
|
|
838
|
+
### Google Docs
|
|
839
|
+
| Activity | Description |
|
|
840
|
+
|----------|-------------|
|
|
841
|
+
| `Get Document` | Gets document structure |
|
|
842
|
+
| `Read Text` | Reads document text |
|
|
843
|
+
| `Write Text` | Inserts text |
|
|
844
|
+
| `Find And Replace Text` | Find/replace with regex support |
|
|
845
|
+
| `Delete Text` | Removes text |
|
|
846
|
+
| `Insert Image` | Embeds image |
|
|
847
|
+
| `Fill Template` | Template variable substitution |
|
|
848
|
+
|
|
849
|
+
### Calendar
|
|
850
|
+
| Activity | Description |
|
|
851
|
+
|----------|-------------|
|
|
852
|
+
| `Create Event` | Creates calendar event |
|
|
853
|
+
| `Get Event List` | Lists events in date range |
|
|
854
|
+
| `Get Event By ID` | Gets event details |
|
|
855
|
+
| `Modify Event` | Updates event |
|
|
856
|
+
| `Delete Event` | Removes event |
|
|
857
|
+
| `RSVP` | Responds to invitation |
|
|
858
|
+
| `Forward Event` | Shares event |
|
|
859
|
+
| `Get Calendars` | Lists accessible calendars |
|
|
860
|
+
|
|
861
|
+
### Tasks
|
|
862
|
+
| Activity | Description |
|
|
863
|
+
|----------|-------------|
|
|
864
|
+
| `Create Task` | Creates task |
|
|
865
|
+
| `Get Tasks` | Lists tasks |
|
|
866
|
+
| `Update Task` | Modifies task |
|
|
867
|
+
| `Complete Task` | Marks task complete |
|
|
868
|
+
| `Delete Task` | Removes task |
|
|
869
|
+
| `Create Task List` | Creates task list |
|
|
870
|
+
| `Get Task Lists` | Lists task lists |
|
|
871
|
+
| `Rename Task List` | Renames list |
|
|
872
|
+
|
|
873
|
+
### Apps Script
|
|
874
|
+
| Activity | Description |
|
|
875
|
+
|----------|-------------|
|
|
876
|
+
| `Run Script` | Executes Google Apps Script function |
|
|
877
|
+
|
|
878
|
+
---
|
|
879
|
+
|
|
880
|
+
## 15. UiPath.Cognitive.Activities (v1.8.0) — 3.8% adoption
|
|
881
|
+
|
|
882
|
+
| Activity | Description |
|
|
883
|
+
|----------|-------------|
|
|
884
|
+
| `Google Text Analysis` | Sentiment/entity extraction via Google Cloud NLP |
|
|
885
|
+
| `Google Text Translate` | Text translation via Google Translate |
|
|
886
|
+
| `Microsoft Text Analysis` | Sentiment/key phrases via Azure Text Analytics |
|
|
887
|
+
| `IBM Watson Text Analysis` | Text analysis via IBM Watson NLU |
|
|
888
|
+
| `IBM Watson NLU Text Analysis` | Enhanced Watson NLU analysis |
|
|
889
|
+
| `Stanford CoreNLP Text Analysis` | Local Stanford NLP analysis |
|
|
890
|
+
| `Stanford CoreNLP Get Components` | Parsed component extraction |
|
|
891
|
+
| `Stanford CoreNLP Get OpenIE` | Open Information Extraction triples |
|
|
892
|
+
| `Stanford CoreNLP Get Sentence Sentiment` | Per-sentence sentiment |
|
|
893
|
+
|
|
894
|
+
---
|
|
895
|
+
|
|
896
|
+
## 16. UiPath.Presentations.Activities (v2.5.0) — 3.3% adoption
|
|
897
|
+
|
|
898
|
+
### Scope
|
|
899
|
+
| Activity | Description |
|
|
900
|
+
|----------|-------------|
|
|
901
|
+
| `PowerPoint Application Scope` | Opens presentation via COM, provides scope |
|
|
902
|
+
|
|
903
|
+
### COM Activities (require scope)
|
|
904
|
+
| Activity | Description |
|
|
905
|
+
|----------|-------------|
|
|
906
|
+
| `Insert Slide` | Inserts new slide (beginning/end/specific position) |
|
|
907
|
+
| `Delete Slide` | Deletes slide at position |
|
|
908
|
+
| `Copy Paste Slide` | Copies/moves slide between presentations |
|
|
909
|
+
| `Insert Text` | Inserts text into shape on slide |
|
|
910
|
+
| `Find And Replace Text` | Find/replace across presentation |
|
|
911
|
+
| `Replace Shape With Data Table` | Replaces shape with DataTable as table |
|
|
912
|
+
| `Replace Shape With Media` | Replaces shape with audio/video |
|
|
913
|
+
| `Paste Into Slide` | Pastes clipboard content into slide |
|
|
914
|
+
| `Insert File` | Embeds file as object in slide |
|
|
915
|
+
| `Format Slide Content` | Modifies shape z-index, font size, name |
|
|
916
|
+
| `Run Macro` | Executes VBA macro |
|
|
917
|
+
| `Save As PDF` | Exports presentation as PDF |
|
|
918
|
+
| `Save As` | Saves in different format (pptx/pptm/ppt) |
|
|
919
|
+
| `Add Sensitivity Label` | Sets document sensitivity label |
|
|
920
|
+
| `Get Sensitivity Label` | Gets document sensitivity label |
|
|
921
|
+
|
|
922
|
+
### Portable (no PowerPoint required)
|
|
923
|
+
| Activity | Description |
|
|
924
|
+
|----------|-------------|
|
|
925
|
+
| `Create New Presentation` | Creates blank .pptx file |
|
|
926
|
+
| `Add Text To Slide` | Adds text to shape in slide |
|
|
927
|
+
| `Insert Slide (Document)` | Inserts slide in file |
|
|
928
|
+
| `Delete Slide (Document)` | Deletes slide from file |
|
|
929
|
+
| `Find And Replace (Document)` | Find/replace in file |
|
|
930
|
+
| `Replace Shape With Data Table (Document)` | Inserts table in file |
|
|
931
|
+
| `Replace Shape With Media (Document)` | Inserts media in file |
|
|
932
|
+
| `Format Slide Content (Document)` | Formats content in file |
|
|
933
|
+
|
|
934
|
+
---
|
|
935
|
+
|
|
936
|
+
## 17. UiPath.IntelligentOCR.Activities (v7.0.1) — 3.0% adoption
|
|
937
|
+
|
|
938
|
+
### Digitization
|
|
939
|
+
| Activity | Description |
|
|
940
|
+
|----------|-------------|
|
|
941
|
+
| `Digitize Document` | Converts document to DOM with OCR text extraction |
|
|
942
|
+
| `Load Taxonomy` | Loads document taxonomy definition from file |
|
|
943
|
+
|
|
944
|
+
### Classification
|
|
945
|
+
| Activity | Description |
|
|
946
|
+
|----------|-------------|
|
|
947
|
+
| `Classify Document Scope` | Container for classification child activities |
|
|
948
|
+
| `Intelligent Keyword Classifier` | Cloud keyword-vector classification |
|
|
949
|
+
| `Keyword Based Classifier` | Local keyword classification (deprecated) |
|
|
950
|
+
| `DU App Classifier` | ML-based classification via DU App |
|
|
951
|
+
| `Present Classification Station` | Human validation UI for classification |
|
|
952
|
+
|
|
953
|
+
### Extraction
|
|
954
|
+
| Activity | Description |
|
|
955
|
+
|----------|-------------|
|
|
956
|
+
| `Data Extraction Scope` | Container for extraction child activities |
|
|
957
|
+
| `DU App Extractor` | ML-based field extraction via DU App |
|
|
958
|
+
| `Form Extractor` | Template-based position extraction |
|
|
959
|
+
| `Intelligent Form Extractor` | Enhanced form extraction for handwriting |
|
|
960
|
+
| `Regex Based Extractor` | Rule-based extraction with regex patterns |
|
|
961
|
+
| `Export Extraction Results` | Converts ExtractionResult to DataSet |
|
|
962
|
+
|
|
963
|
+
### Validation
|
|
964
|
+
| Activity | Description |
|
|
965
|
+
|----------|-------------|
|
|
966
|
+
| `Present Validation Station` | Human validation UI for extraction results |
|
|
967
|
+
|
|
968
|
+
### Training
|
|
969
|
+
| Activity | Description |
|
|
970
|
+
|----------|-------------|
|
|
971
|
+
| `Train Classifiers Scope` | Container for training classifier children |
|
|
972
|
+
| `Train Extractors Scope` | Container for training extractor children |
|
|
973
|
+
| `Keyword Based Classifier Trainer` | Trains keyword classifier |
|
|
974
|
+
| `Intelligent Keyword Classifier Trainer` | Trains vector keyword classifier |
|
|
975
|
+
| `DU App Extractor Trainer` | Trains DU App extraction model |
|
|
976
|
+
|
|
977
|
+
### Orchestrator / Redaction
|
|
978
|
+
| Activity | Description |
|
|
979
|
+
|----------|-------------|
|
|
980
|
+
| `Create Document Validation Artifacts` | Uploads for external validation |
|
|
981
|
+
| `Retrieve Document Validation Artifacts` | Downloads validated results |
|
|
982
|
+
| `Redact Document` | Redacts sensitive data from documents |
|
|
983
|
+
|
|
984
|
+
---
|
|
985
|
+
|
|
986
|
+
## 18. UiPath.Form.Activities (v26.0.0) — 2.5% adoption
|
|
987
|
+
|
|
988
|
+
| Activity | Description |
|
|
989
|
+
|----------|-------------|
|
|
990
|
+
| `Show Form` | Displays form (async or modal) with field bindings |
|
|
991
|
+
| `Close Form` | Closes an open form |
|
|
992
|
+
| `Hide Form` | Minimizes/hides form without closing |
|
|
993
|
+
| `Bring Form To Front` | Restores hidden form |
|
|
994
|
+
| `Get Form Fields` | Reads current field values from form |
|
|
995
|
+
| `Set Form Fields` | Sets field values in form |
|
|
996
|
+
| `Change Form Properties` | Modifies form size, position, title at runtime |
|
|
997
|
+
| `Execute Script` | Runs JavaScript in form context |
|
|
998
|
+
| `Form Trigger` | Listens for form events (click, change, message) |
|
|
999
|
+
| `Show Callout` | Displays popup near UI element |
|
|
1000
|
+
|
|
1001
|
+
---
|
|
1002
|
+
|
|
1003
|
+
## 19. UiPath.Cryptography.Activities (v1.5.0) — 3.2% adoption
|
|
1004
|
+
|
|
1005
|
+
| Activity | Description |
|
|
1006
|
+
|----------|-------------|
|
|
1007
|
+
| `Encrypt File` | Encrypts file with symmetric key (AES/DES/3DES/RC2/Rijndael) |
|
|
1008
|
+
| `Decrypt File` | Decrypts file with symmetric key |
|
|
1009
|
+
| `Encrypt Text` | Encrypts text string |
|
|
1010
|
+
| `Decrypt Text` | Decrypts text string |
|
|
1011
|
+
| `Keyed Hash File` | HMAC hash of file (SHA256/SHA384/SHA512/MD5) |
|
|
1012
|
+
| `Keyed Hash Text` | HMAC hash of text |
|
|
1013
|
+
| `PGP Sign File` | Signs file with PGP private key |
|
|
1014
|
+
| `PGP Clear Sign File` | Clear-signs file (readable + signature) |
|
|
1015
|
+
| `PGP Verify` | Verifies PGP signature |
|
|
1016
|
+
| `PGP Generate Key Pair` | Generates PGP public/private key pair |
|
|
1017
|
+
|
|
1018
|
+
---
|
|
1019
|
+
|
|
1020
|
+
## 20. UiPath.Python.Activities (v1.5.0) — 3.0% adoption
|
|
1021
|
+
|
|
1022
|
+
| Activity | Description |
|
|
1023
|
+
|----------|-------------|
|
|
1024
|
+
| `Python Scope` | Initializes Python runtime (path, version, x86/x64) |
|
|
1025
|
+
| `Load Script` | Loads .py file as Python module |
|
|
1026
|
+
| `Run Script` | Executes Python code string |
|
|
1027
|
+
| `Invoke Method` | Calls method on Python object |
|
|
1028
|
+
| `Get Object` | Converts PythonObject to .NET type |
|
|
1029
|
+
|
|
1030
|
+
---
|
|
1031
|
+
|
|
1032
|
+
## 21. UiPath.OmniPage.Activities (v2.0.1) — 1.1% adoption
|
|
1033
|
+
|
|
1034
|
+
| Activity | Description |
|
|
1035
|
+
|----------|-------------|
|
|
1036
|
+
| `OmniPage OCR` | OCR text extraction using OmniPage engine (Language, Profile, DPI, Handwriting) |
|
|
1037
|
+
|
|
1038
|
+
---
|
|
1039
|
+
|
|
1040
|
+
## 22. UiPath.Java.Activities (v1.3.0) — <3% adoption
|
|
1041
|
+
|
|
1042
|
+
| Activity | Description |
|
|
1043
|
+
|----------|-------------|
|
|
1044
|
+
| `Java Scope` | Initializes JVM (JRE/JDK path) |
|
|
1045
|
+
| `Load Jar` | Loads JAR file into classpath |
|
|
1046
|
+
| `Invoke Java Method` | Calls static or instance Java method |
|
|
1047
|
+
| `Create Java Object` | Instantiates Java class |
|
|
1048
|
+
| `Convert Java Object` | Converts JavaObject to .NET type |
|
|
1049
|
+
| `Get Java Field` | Reads field from Java object |
|
|
1050
|
+
|
|
1051
|
+
---
|
|
1052
|
+
|
|
1053
|
+
## 23. UiPath.SAP.BAPI.Activities (v2.2.2) — <3% adoption
|
|
1054
|
+
|
|
1055
|
+
| Activity | Description |
|
|
1056
|
+
|----------|-------------|
|
|
1057
|
+
| `SAP Application Scope` | SAP connection container (AppServer, SystemNumber, Client) |
|
|
1058
|
+
| `Open Connection` | Explicit connection establishment |
|
|
1059
|
+
| `Close Connection` | Connection cleanup |
|
|
1060
|
+
| `Invoke SAP BAPI` | Executes SAP BAPI/RFC function with dynamic parameters |
|
|
1061
|
+
|
|
1062
|
+
---
|
|
1063
|
+
|
|
1064
|
+
## 24. UiPath.Persistence.Activities (v1.4.0) — 1.1% adoption
|
|
1065
|
+
|
|
1066
|
+
| Activity | Description |
|
|
1067
|
+
|----------|-------------|
|
|
1068
|
+
| `Create Form Task` | Creates human task in Action Center with form |
|
|
1069
|
+
| `Wait For Form Task And Resume` | SUSPENDS workflow until form completed |
|
|
1070
|
+
| `Create External Task` | Creates task for external system |
|
|
1071
|
+
| `Wait For External Task And Resume` | SUSPENDS until external completion |
|
|
1072
|
+
| `Create App Task` | Creates app-level task |
|
|
1073
|
+
| `Wait For App Task And Resume` | SUSPENDS until app task done |
|
|
1074
|
+
| `Start Job And Get Reference` | Starts job with tracking reference |
|
|
1075
|
+
| `Wait For Job And Resume` | SUSPENDS until job completes |
|
|
1076
|
+
| `Add Queue Item And Get Reference` | Adds queue item with reference |
|
|
1077
|
+
| `Wait For Queue Item And Resume` | SUSPENDS until queue item processed |
|
|
1078
|
+
| `Resume After Delay` | SUSPENDS for duration, releases robot |
|
|
1079
|
+
| `Assign Tasks` | Assigns tasks to users/groups |
|
|
1080
|
+
| `Complete Task` | Marks task finished |
|
|
1081
|
+
| `Forward Task` | Routes task to another user |
|
|
1082
|
+
| `Get Form Tasks` | Retrieves form tasks |
|
|
1083
|
+
| `Get Task Data` | Gets task details |
|
|
1084
|
+
| `Get App Tasks` | Retrieves app tasks |
|
|
1085
|
+
| `Add Task Comment` | Appends notes to task |
|
|
1086
|
+
| `Update Task Labels` | Modifies task tags |
|
|
1087
|
+
| `Configure Task Timer` | Sets time constraints |
|
|
1088
|
+
|
|
1089
|
+
---
|
|
1090
|
+
|
|
1091
|
+
## 25. Other UiPath Packages (< 2% adoption)
|
|
1092
|
+
|
|
1093
|
+
### UiPath.Vision.Activities (v4.0.1)
|
|
1094
|
+
| Activity | Description |
|
|
1095
|
+
|----------|-------------|
|
|
1096
|
+
| `Microsoft OCR` | OCR via Azure Computer Vision |
|
|
1097
|
+
| `Google OCR` | OCR via Google Cloud Vision |
|
|
1098
|
+
| `ABBYY OCR` | OCR via local ABBYY FineReader |
|
|
1099
|
+
| `Tesseract OCR` | OCR via open-source Tesseract |
|
|
1100
|
+
|
|
1101
|
+
### UiPath.ImageProcessing (v24.10.1)
|
|
1102
|
+
| Activity | Description |
|
|
1103
|
+
|----------|-------------|
|
|
1104
|
+
| `Find All` | Locates all template matches in image |
|
|
1105
|
+
| `Find First` | Locates first template match |
|
|
1106
|
+
| `Compare` | Computes image similarity score |
|
|
1107
|
+
| `Are Different` | Boolean image difference check |
|
|
1108
|
+
|
|
1109
|
+
### UiPath.CommunicationsMining.Activities (v1.7.0)
|
|
1110
|
+
| Activity | Description |
|
|
1111
|
+
|----------|-------------|
|
|
1112
|
+
| `Create CM Validation Action` | Creates Action Center task for CM |
|
|
1113
|
+
| `Create CM Validation Artifacts` | Uploads training data |
|
|
1114
|
+
| `Retrieve CM Validation Artifacts` | Downloads validated data |
|
|
1115
|
+
| `Wait For CM Validation Action` | Waits for human review |
|
|
1116
|
+
|
|
1117
|
+
### UiPath.WorkflowEvents.Activities (v3.33.0)
|
|
1118
|
+
| Activity | Description |
|
|
1119
|
+
|----------|-------------|
|
|
1120
|
+
| `App Request Trigger` | Listens for app workflow invocation requests |
|
|
1121
|
+
| `Handle App Request` | Executes and responds to request |
|
|
1122
|
+
| `Send Interim Result` | Pushes intermediate status |
|
|
1123
|
+
|
|
1124
|
+
### UiPath.MobileAutomation.Activities (v25.10.0)
|
|
1125
|
+
| Activity | Description |
|
|
1126
|
+
|----------|-------------|
|
|
1127
|
+
| `Connect` | Connects to mobile device via Appium |
|
|
1128
|
+
| `Disconnect` | Disconnects from device |
|
|
1129
|
+
| `Get Devices` | Lists configured devices |
|
|
1130
|
+
| `Get Applications` | Lists configured apps |
|
|
1131
|
+
| *(UI actions via MobileTarget selectors)* | Tap, swipe, type, get text, etc. |
|
|
1132
|
+
|
|
1133
|
+
### UiPath.ComplexScenarios (v1.5.2)
|
|
1134
|
+
| Activity | Description |
|
|
1135
|
+
|----------|-------------|
|
|
1136
|
+
| *(18 StudioX scenario templates)* | Pre-built file/email/Excel workflow patterns |
|