@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,1255 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""Validate the synthetic Maestro BPMN fixture corpus.
|
|
3
|
+
|
|
4
|
+
The checker intentionally stays dependency-free so contributors and CI can run
|
|
5
|
+
it without access to PO.FrontEnd or private exported BPMN. It validates the
|
|
6
|
+
public contract shape these fixtures are meant to preserve.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
import json
|
|
12
|
+
import re
|
|
13
|
+
import shutil
|
|
14
|
+
import sys
|
|
15
|
+
import tempfile
|
|
16
|
+
import xml.etree.ElementTree as ET
|
|
17
|
+
from pathlib import Path
|
|
18
|
+
|
|
19
|
+
ROOT = Path(__file__).resolve().parents[1]
|
|
20
|
+
FIXTURES = ROOT / "fixtures" / "validation"
|
|
21
|
+
BPMN_NS = "http://www.omg.org/spec/BPMN/20100524/MODEL"
|
|
22
|
+
BPMNDI_NS = "http://www.omg.org/spec/BPMN/20100524/DI"
|
|
23
|
+
DI_NS = "http://www.omg.org/spec/DD/20100524/DI"
|
|
24
|
+
UIPATH_NS = "http://uipath.org/schema/bpmn"
|
|
25
|
+
|
|
26
|
+
NODE_TYPES = {
|
|
27
|
+
"startEvent",
|
|
28
|
+
"endEvent",
|
|
29
|
+
"intermediateCatchEvent",
|
|
30
|
+
"intermediateThrowEvent",
|
|
31
|
+
"boundaryEvent",
|
|
32
|
+
"task",
|
|
33
|
+
"serviceTask",
|
|
34
|
+
"sendTask",
|
|
35
|
+
"receiveTask",
|
|
36
|
+
"userTask",
|
|
37
|
+
"manualTask",
|
|
38
|
+
"businessRuleTask",
|
|
39
|
+
"scriptTask",
|
|
40
|
+
"callActivity",
|
|
41
|
+
"subProcess",
|
|
42
|
+
"adHocSubProcess",
|
|
43
|
+
"exclusiveGateway",
|
|
44
|
+
"inclusiveGateway",
|
|
45
|
+
"parallelGateway",
|
|
46
|
+
"eventBasedGateway",
|
|
47
|
+
"complexGateway",
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
GENERATION_EXCLUDED_BPMN_TAGS = {
|
|
51
|
+
"adHocSubProcess",
|
|
52
|
+
"cancelEventDefinition",
|
|
53
|
+
"compensateEventDefinition",
|
|
54
|
+
"complexGateway",
|
|
55
|
+
"conditionalEventDefinition",
|
|
56
|
+
"escalationEventDefinition",
|
|
57
|
+
"linkEventDefinition",
|
|
58
|
+
"manualTask",
|
|
59
|
+
"multipleEventDefinition",
|
|
60
|
+
"parallelMultipleEventDefinition",
|
|
61
|
+
"signalEventDefinition",
|
|
62
|
+
"transaction",
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
ALLOWED_RETRY_ATTRS = {
|
|
66
|
+
"version",
|
|
67
|
+
"maxRetryCount",
|
|
68
|
+
"retryBackoff",
|
|
69
|
+
"retryAllErrors",
|
|
70
|
+
"retryBackoffType",
|
|
71
|
+
"maxDuration",
|
|
72
|
+
"exponentialBase",
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
ALLOWED_ERROR_MAPPING_ATTRS = {"version"}
|
|
76
|
+
ALLOWED_ERROR_ATTRS = {"id", "errorRef", "priority", "condition", "detail", "retryable"}
|
|
77
|
+
SPECIAL_RUNTIME_VARS = {"error"}
|
|
78
|
+
|
|
79
|
+
ALLOWED_URLS = (
|
|
80
|
+
"http://www.omg.org/spec/BPMN/20100524/MODEL",
|
|
81
|
+
"http://www.omg.org/spec/BPMN/20100524/DI",
|
|
82
|
+
"http://www.omg.org/spec/DD/20100524/DC",
|
|
83
|
+
"http://www.omg.org/spec/DD/20100524/DI",
|
|
84
|
+
"http://www.w3.org/2001/XMLSchema-instance",
|
|
85
|
+
"http://uipath.org/schema/bpmn",
|
|
86
|
+
"http://uipath.com/synthetic/maestro-bpmn/",
|
|
87
|
+
)
|
|
88
|
+
|
|
89
|
+
SERVICE_TYPE_WRAPPERS = {
|
|
90
|
+
"A2A.AgentExecution": {"wrapper": {"serviceTask"}, "extension": "activity"},
|
|
91
|
+
"Orchestrator.ExecuteApiWorkflowAsync": {
|
|
92
|
+
"wrapper": {"serviceTask"},
|
|
93
|
+
"extension": "activity",
|
|
94
|
+
},
|
|
95
|
+
"Orchestrator.BusinessRules": {
|
|
96
|
+
"wrapper": {"businessRuleTask"},
|
|
97
|
+
"extension": "activity",
|
|
98
|
+
},
|
|
99
|
+
"Orchestrator.CreateAndWaitForQueueItem": {
|
|
100
|
+
"wrapper": {"serviceTask"},
|
|
101
|
+
"extension": "activity",
|
|
102
|
+
},
|
|
103
|
+
"Orchestrator.StartCaseMgmtProcess": {
|
|
104
|
+
"wrapper": {"callActivity"},
|
|
105
|
+
"extension": "activity",
|
|
106
|
+
},
|
|
107
|
+
"Orchestrator.StartCaseMgmtProcessAsync": {
|
|
108
|
+
"wrapper": {"callActivity"},
|
|
109
|
+
"extension": "activity",
|
|
110
|
+
},
|
|
111
|
+
"Intsvc.WaitForEvent": {
|
|
112
|
+
"wrapper": {"receiveTask", "intermediateCatchEvent", "boundaryEvent"},
|
|
113
|
+
"extension": "event",
|
|
114
|
+
},
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
def local(tag: str) -> str:
|
|
119
|
+
return tag.rsplit("}", 1)[-1] if "}" in tag else tag
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
def ns(tag: str) -> str:
|
|
123
|
+
if tag.startswith("{"):
|
|
124
|
+
return tag[1:].split("}", 1)[0]
|
|
125
|
+
return ""
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
def build_parent_map(root: ET.Element) -> dict[int, ET.Element]:
|
|
129
|
+
parents: dict[int, ET.Element] = {}
|
|
130
|
+
for parent in root.iter():
|
|
131
|
+
for child in parent:
|
|
132
|
+
parents[id(child)] = parent
|
|
133
|
+
return parents
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
class Validator:
|
|
137
|
+
def __init__(self) -> None:
|
|
138
|
+
self.errors: list[str] = []
|
|
139
|
+
self.projects = 0
|
|
140
|
+
self.bpmn_files = 0
|
|
141
|
+
self.contract_hits: set[str] = set()
|
|
142
|
+
|
|
143
|
+
def error(self, path: Path, message: str) -> None:
|
|
144
|
+
self.errors.append(f"{path.relative_to(ROOT)}: {message}")
|
|
145
|
+
|
|
146
|
+
def validate(self) -> int:
|
|
147
|
+
if not FIXTURES.is_dir():
|
|
148
|
+
print(f"ERROR: fixtures directory not found: {FIXTURES}", file=sys.stderr)
|
|
149
|
+
return 2
|
|
150
|
+
|
|
151
|
+
for project in sorted(p for p in FIXTURES.iterdir() if p.is_dir()):
|
|
152
|
+
self.projects += 1
|
|
153
|
+
self.validate_project(project)
|
|
154
|
+
|
|
155
|
+
self.validate_contract_coverage()
|
|
156
|
+
regression_errors = self.validate_regressions()
|
|
157
|
+
self.errors.extend(regression_errors)
|
|
158
|
+
|
|
159
|
+
for err in self.errors:
|
|
160
|
+
print(f"ERROR: {err}")
|
|
161
|
+
print(
|
|
162
|
+
f"validation_fixture_projects={self.projects} "
|
|
163
|
+
f"bpmn_files={self.bpmn_files} errors={len(self.errors)}"
|
|
164
|
+
)
|
|
165
|
+
return 1 if self.errors else 0
|
|
166
|
+
|
|
167
|
+
def validate_project(self, project: Path) -> None:
|
|
168
|
+
expected = [
|
|
169
|
+
"project.uiproj",
|
|
170
|
+
"bindings_v2.json",
|
|
171
|
+
"entry-points.json",
|
|
172
|
+
"operate.json",
|
|
173
|
+
"package-descriptor.json",
|
|
174
|
+
]
|
|
175
|
+
for name in expected:
|
|
176
|
+
if not (project / name).is_file():
|
|
177
|
+
self.error(project, f"missing {name}")
|
|
178
|
+
|
|
179
|
+
bpmn_files = sorted(project.glob("*.bpmn"))
|
|
180
|
+
if len(bpmn_files) != 1:
|
|
181
|
+
self.error(project, f"expected exactly one .bpmn file, found {len(bpmn_files)}")
|
|
182
|
+
return
|
|
183
|
+
|
|
184
|
+
bpmn = bpmn_files[0]
|
|
185
|
+
self.bpmn_files += 1
|
|
186
|
+
text = bpmn.read_text(encoding="utf-8")
|
|
187
|
+
self.validate_public_safety(bpmn, text)
|
|
188
|
+
|
|
189
|
+
try:
|
|
190
|
+
tree = ET.parse(bpmn)
|
|
191
|
+
except ET.ParseError as exc:
|
|
192
|
+
self.error(bpmn, f"XML parse failed: {exc}")
|
|
193
|
+
return
|
|
194
|
+
|
|
195
|
+
root = tree.getroot()
|
|
196
|
+
self.validate_bpmn_document(bpmn, root)
|
|
197
|
+
self.validate_package_files(project, bpmn.name, root)
|
|
198
|
+
|
|
199
|
+
def validate_regressions(self) -> list[str]:
|
|
200
|
+
errors: list[str] = []
|
|
201
|
+
errors.extend(self.validate_gateway_misnamed_repro())
|
|
202
|
+
errors.extend(self.validate_bindings_version_repro())
|
|
203
|
+
errors.extend(self.validate_script_result_response_repro())
|
|
204
|
+
return errors
|
|
205
|
+
|
|
206
|
+
def validate_gateway_misnamed_repro(self) -> list[str]:
|
|
207
|
+
"""Assert single-BPMN package metadata fails when the BPMN basename drifts."""
|
|
208
|
+
|
|
209
|
+
fixture = FIXTURES / "gateway-boundary-error"
|
|
210
|
+
if not fixture.is_dir():
|
|
211
|
+
return [
|
|
212
|
+
"regression gateway-misnamed-repro: "
|
|
213
|
+
"source fixture gateway-boundary-error is missing"
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
with tempfile.TemporaryDirectory(prefix="gateway-misnamed-repro-", dir=ROOT) as tmp:
|
|
217
|
+
project = Path(tmp) / "gateway-boundary-error"
|
|
218
|
+
shutil.copytree(fixture, project)
|
|
219
|
+
original_bpmn = project / "gateway-boundary-error.bpmn"
|
|
220
|
+
renamed_bpmn = project / "gateway-misnamed-repro.bpmn"
|
|
221
|
+
original_bpmn.rename(renamed_bpmn)
|
|
222
|
+
|
|
223
|
+
regression = Validator()
|
|
224
|
+
regression.validate_project(project)
|
|
225
|
+
basename_errors = [
|
|
226
|
+
err
|
|
227
|
+
for err in regression.errors
|
|
228
|
+
if "main basename does not match single BPMN file basename" in err
|
|
229
|
+
]
|
|
230
|
+
if basename_errors:
|
|
231
|
+
return []
|
|
232
|
+
|
|
233
|
+
details = "; ".join(regression.errors) or "no validation error"
|
|
234
|
+
return [
|
|
235
|
+
"regression gateway-misnamed-repro failed: expected basename validation "
|
|
236
|
+
"error for a copied project whose single BPMN file no longer matches "
|
|
237
|
+
"the project directory name; "
|
|
238
|
+
f"observed: {details}"
|
|
239
|
+
]
|
|
240
|
+
|
|
241
|
+
def validate_bindings_version_repro(self) -> list[str]:
|
|
242
|
+
"""Assert bindings_v2.json without version is rejected."""
|
|
243
|
+
|
|
244
|
+
fixture = FIXTURES / "linear-process"
|
|
245
|
+
if not fixture.is_dir():
|
|
246
|
+
return [
|
|
247
|
+
"regression bindings-version-repro: "
|
|
248
|
+
"source fixture linear-process is missing"
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
with tempfile.TemporaryDirectory(prefix="bindings-version-repro-", dir=ROOT) as tmp:
|
|
252
|
+
project = Path(tmp) / "linear-process"
|
|
253
|
+
shutil.copytree(fixture, project)
|
|
254
|
+
bindings_path = project / "bindings_v2.json"
|
|
255
|
+
data = json.loads(bindings_path.read_text(encoding="utf-8"))
|
|
256
|
+
data.pop("version", None)
|
|
257
|
+
bindings_path.write_text(json.dumps(data, indent=2) + "\n", encoding="utf-8")
|
|
258
|
+
|
|
259
|
+
regression = Validator()
|
|
260
|
+
regression.validate_project(project)
|
|
261
|
+
if any("version must be 2.0" in err for err in regression.errors):
|
|
262
|
+
return []
|
|
263
|
+
|
|
264
|
+
details = "; ".join(regression.errors) or "no validation error"
|
|
265
|
+
return [
|
|
266
|
+
"regression bindings-version-repro failed: expected bindings_v2.json "
|
|
267
|
+
f"version validation error; observed: {details}"
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
def validate_script_result_response_repro(self) -> list[str]:
|
|
271
|
+
"""Assert script output mappings cannot read result fields above response."""
|
|
272
|
+
|
|
273
|
+
fixture = FIXTURES / "subprocess-multi-instance"
|
|
274
|
+
if not fixture.is_dir():
|
|
275
|
+
return [
|
|
276
|
+
"regression script-result-response-repro: "
|
|
277
|
+
"source fixture subprocess-multi-instance is missing"
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
with tempfile.TemporaryDirectory(prefix="script-result-response-repro-", dir=ROOT) as tmp:
|
|
281
|
+
project = Path(tmp) / "subprocess-multi-instance"
|
|
282
|
+
shutil.copytree(fixture, project)
|
|
283
|
+
bpmn = project / "subprocess-multi-instance.bpmn"
|
|
284
|
+
text = bpmn.read_text(encoding="utf-8")
|
|
285
|
+
text = text.replace('source="=result.response"', 'source="=result.outcome"', 1)
|
|
286
|
+
bpmn.write_text(text, encoding="utf-8")
|
|
287
|
+
|
|
288
|
+
regression = Validator()
|
|
289
|
+
regression.validate_project(project)
|
|
290
|
+
expected = "BPMN.ScriptTask output source must read result.response"
|
|
291
|
+
if any(expected in err for err in regression.errors):
|
|
292
|
+
return []
|
|
293
|
+
|
|
294
|
+
details = "; ".join(regression.errors) or "no validation error"
|
|
295
|
+
return [
|
|
296
|
+
"regression script-result-response-repro failed: expected script output "
|
|
297
|
+
f"result.response validation error; observed: {details}"
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
def validate_public_safety(self, path: Path, text: str) -> None:
|
|
301
|
+
patterns = {
|
|
302
|
+
"email address": r"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}",
|
|
303
|
+
"local absolute path": r"(/Users/|/home/|C:\\\\Users\\\\)",
|
|
304
|
+
"guid-like identifier": r"\b[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\b",
|
|
305
|
+
}
|
|
306
|
+
for label, pattern in patterns.items():
|
|
307
|
+
if re.search(pattern, text):
|
|
308
|
+
self.error(path, f"contains {label}")
|
|
309
|
+
|
|
310
|
+
for match in re.finditer(r"https?://[^\s\"'>]+", text):
|
|
311
|
+
url = match.group(0)
|
|
312
|
+
if not any(url.startswith(allowed) for allowed in ALLOWED_URLS):
|
|
313
|
+
self.error(path, f"contains non-allowlisted URL {url}")
|
|
314
|
+
|
|
315
|
+
def validate_bpmn_document(self, path: Path, root: ET.Element) -> None:
|
|
316
|
+
if local(root.tag) != "definitions" or ns(root.tag) != BPMN_NS:
|
|
317
|
+
self.error(path, "root element is not bpmn:definitions")
|
|
318
|
+
|
|
319
|
+
if (
|
|
320
|
+
root.attrib.get("targetNamespace", "").startswith("http://uipath.com/synthetic/")
|
|
321
|
+
is False
|
|
322
|
+
):
|
|
323
|
+
self.error(path, "targetNamespace must be synthetic")
|
|
324
|
+
|
|
325
|
+
elements_by_id = {
|
|
326
|
+
elem.attrib["id"]: elem
|
|
327
|
+
for elem in root.iter()
|
|
328
|
+
if "id" in elem.attrib
|
|
329
|
+
and ns(elem.tag) in {BPMN_NS, BPMNDI_NS}
|
|
330
|
+
and local(elem.tag) != "BPMNShape"
|
|
331
|
+
and local(elem.tag) != "BPMNEdge"
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
processes = root.findall(f"{{{BPMN_NS}}}process")
|
|
335
|
+
executable = [p for p in processes if p.attrib.get("isExecutable") == "true"]
|
|
336
|
+
if len(executable) != 1:
|
|
337
|
+
self.error(path, f"expected one executable process, found {len(executable)}")
|
|
338
|
+
return
|
|
339
|
+
process = executable[0]
|
|
340
|
+
|
|
341
|
+
bindings = self.collect_root_bindings(process)
|
|
342
|
+
variables = self.collect_variables(process)
|
|
343
|
+
self.validate_diagram(path, root, elements_by_id)
|
|
344
|
+
self.validate_sequence_flows(path, root, elements_by_id)
|
|
345
|
+
self.validate_start_events(path, process)
|
|
346
|
+
self.validate_entry_points(path, process)
|
|
347
|
+
self.validate_gateway_conditions(path, root, bindings, variables)
|
|
348
|
+
self.validate_generation_exclusions(path, root)
|
|
349
|
+
self.validate_error_events(path, root, elements_by_id)
|
|
350
|
+
self.validate_error_handling(path, root, elements_by_id, bindings, variables)
|
|
351
|
+
self.validate_message_events(path, root, elements_by_id)
|
|
352
|
+
self.validate_multi_instance(path, root, variables)
|
|
353
|
+
self.validate_uipath_extensions(path, root, bindings, variables)
|
|
354
|
+
self.record_contract_coverage(root)
|
|
355
|
+
|
|
356
|
+
def validate_generation_exclusions(self, path: Path, root: ET.Element) -> None:
|
|
357
|
+
for elem in root.iter():
|
|
358
|
+
if ns(elem.tag) != BPMN_NS:
|
|
359
|
+
continue
|
|
360
|
+
kind = local(elem.tag)
|
|
361
|
+
if kind in GENERATION_EXCLUDED_BPMN_TAGS:
|
|
362
|
+
self.error(path, f"uses generation-excluded BPMN tag {kind}")
|
|
363
|
+
|
|
364
|
+
for loop in root.findall(f".//{{{BPMN_NS}}}standardLoopCharacteristics"):
|
|
365
|
+
self.error(
|
|
366
|
+
path,
|
|
367
|
+
f"uses generation-excluded BPMN tag {local(loop.tag)}",
|
|
368
|
+
)
|
|
369
|
+
|
|
370
|
+
def record_contract_coverage(self, root: ET.Element) -> None:
|
|
371
|
+
for version in root.findall(f".//{{{UIPATH_NS}}}migrationVersion"):
|
|
372
|
+
value = version.attrib.get("version")
|
|
373
|
+
if value:
|
|
374
|
+
self.contract_hits.add(f"migration:{value}")
|
|
375
|
+
|
|
376
|
+
for script_version in root.findall(f".//{{{UIPATH_NS}}}scriptVersion"):
|
|
377
|
+
value = script_version.attrib.get("value")
|
|
378
|
+
if value:
|
|
379
|
+
self.contract_hits.add(f"scriptVersion:{value}")
|
|
380
|
+
|
|
381
|
+
if root.findall(f".//{{{UIPATH_NS}}}caseManagement"):
|
|
382
|
+
self.contract_hits.add("preserve:caseManagement")
|
|
383
|
+
if root.findall(f".//{{{UIPATH_NS}}}Activity"):
|
|
384
|
+
self.contract_hits.add("preserve:generic-uipath-Activity")
|
|
385
|
+
|
|
386
|
+
for bpmn_elem in root.iter():
|
|
387
|
+
if ns(bpmn_elem.tag) != BPMN_NS:
|
|
388
|
+
continue
|
|
389
|
+
wrapper = local(bpmn_elem.tag)
|
|
390
|
+
extension = bpmn_elem.find(f"{{{BPMN_NS}}}extensionElements")
|
|
391
|
+
if extension is None:
|
|
392
|
+
continue
|
|
393
|
+
for extension_kind in ("activity", "event"):
|
|
394
|
+
for payload in extension.findall(f"{{{UIPATH_NS}}}{extension_kind}"):
|
|
395
|
+
type_elem = payload.find(f"{{{UIPATH_NS}}}type")
|
|
396
|
+
if type_elem is None:
|
|
397
|
+
continue
|
|
398
|
+
service_type = type_elem.attrib.get("value")
|
|
399
|
+
if service_type:
|
|
400
|
+
self.contract_hits.add(f"{wrapper}:{service_type}")
|
|
401
|
+
|
|
402
|
+
def validate_contract_coverage(self) -> None:
|
|
403
|
+
# Public-safe XML shells from the current registry surface plus
|
|
404
|
+
# preserve-only imported payloads. CLI-owned Intsvc.* entries are
|
|
405
|
+
# represented with synthetic binding shells only; connector-specific
|
|
406
|
+
# schemas and generated package resources remain outside this fixture.
|
|
407
|
+
expected = {
|
|
408
|
+
"userTask:Actions.HITL",
|
|
409
|
+
"serviceTask:Orchestrator.StartJob",
|
|
410
|
+
"serviceTask:Orchestrator.StartAgentJob",
|
|
411
|
+
"serviceTask:A2A.AgentExecution",
|
|
412
|
+
"serviceTask:Orchestrator.ExecuteApiWorkflowAsync",
|
|
413
|
+
"businessRuleTask:Orchestrator.BusinessRules",
|
|
414
|
+
"sendTask:Orchestrator.CreateQueueItem",
|
|
415
|
+
"serviceTask:Orchestrator.CreateAndWaitForQueueItem",
|
|
416
|
+
"callActivity:Orchestrator.StartAgenticProcess",
|
|
417
|
+
"callActivity:Orchestrator.StartAgenticProcessAsync",
|
|
418
|
+
"callActivity:Orchestrator.StartCaseMgmtProcess",
|
|
419
|
+
"callActivity:Orchestrator.StartCaseMgmtProcessAsync",
|
|
420
|
+
"intermediateThrowEvent:Maestro.SendMessageEvent",
|
|
421
|
+
"serviceTask:Maestro.CasePlanScheduler",
|
|
422
|
+
"serviceTask:Maestro.CaseManagerGuardrails",
|
|
423
|
+
"serviceTask:Maestro.CaseRulesEvaluator",
|
|
424
|
+
"receiveTask:Intsvc.WaitForEvent",
|
|
425
|
+
"startEvent:Intsvc.EventTrigger",
|
|
426
|
+
"serviceTask:Intsvc.ActivityExecution",
|
|
427
|
+
"serviceTask:Intsvc.AsyncExecution",
|
|
428
|
+
"serviceTask:Intsvc.SyncAgentExecution",
|
|
429
|
+
"serviceTask:Intsvc.AsyncAgentExecution",
|
|
430
|
+
"serviceTask:Intsvc.SyncWorkflowExecution",
|
|
431
|
+
"serviceTask:Intsvc.AsyncWorkflowExecution",
|
|
432
|
+
"sendTask:Intsvc.HttpExecution",
|
|
433
|
+
"sendTask:Intsvc.UnifiedHttpRequest",
|
|
434
|
+
"startEvent:Intsvc.TimerTrigger",
|
|
435
|
+
"preserve:caseManagement",
|
|
436
|
+
"preserve:generic-uipath-Activity",
|
|
437
|
+
"migration:5",
|
|
438
|
+
"migration:11",
|
|
439
|
+
"migration:11.5",
|
|
440
|
+
"scriptVersion:v2",
|
|
441
|
+
"scriptVersion:v3",
|
|
442
|
+
}
|
|
443
|
+
missing = sorted(expected - self.contract_hits)
|
|
444
|
+
if missing:
|
|
445
|
+
self.errors.append(
|
|
446
|
+
"fixtures/validation: missing XML contract coverage for " + ", ".join(missing)
|
|
447
|
+
)
|
|
448
|
+
|
|
449
|
+
def collect_root_bindings(self, process: ET.Element) -> dict[str, ET.Element]:
|
|
450
|
+
result: dict[str, ET.Element] = {}
|
|
451
|
+
for binding in process.findall(
|
|
452
|
+
f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}bindings/{{{UIPATH_NS}}}binding"
|
|
453
|
+
):
|
|
454
|
+
result[binding.attrib["id"]] = binding
|
|
455
|
+
return result
|
|
456
|
+
|
|
457
|
+
def collect_variables(self, root: ET.Element) -> dict[str, set[str]]:
|
|
458
|
+
variables: dict[str, set[str]] = {
|
|
459
|
+
"root": set(),
|
|
460
|
+
"all": set(),
|
|
461
|
+
"writable": set(),
|
|
462
|
+
"names": set(),
|
|
463
|
+
}
|
|
464
|
+
root_variables = root.find(
|
|
465
|
+
f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}variables"
|
|
466
|
+
)
|
|
467
|
+
for vars_elem in root.findall(f".//{{{UIPATH_NS}}}variables"):
|
|
468
|
+
for child in list(vars_elem):
|
|
469
|
+
var_id = child.attrib.get("id")
|
|
470
|
+
if child.attrib.get("name"):
|
|
471
|
+
variables["names"].add(child.attrib["name"])
|
|
472
|
+
if var_id:
|
|
473
|
+
variables["all"].add(var_id)
|
|
474
|
+
if vars_elem is root_variables:
|
|
475
|
+
variables["root"].add(var_id)
|
|
476
|
+
if local(child.tag) in {"inputOutput", "output"}:
|
|
477
|
+
variables["writable"].add(var_id)
|
|
478
|
+
return variables
|
|
479
|
+
|
|
480
|
+
def validate_diagram(
|
|
481
|
+
self, path: Path, root: ET.Element, elements_by_id: dict[str, ET.Element]
|
|
482
|
+
) -> None:
|
|
483
|
+
planes = root.findall(f".//{{{BPMNDI_NS}}}BPMNPlane")
|
|
484
|
+
if not planes:
|
|
485
|
+
self.error(path, "missing BPMNPlane")
|
|
486
|
+
return
|
|
487
|
+
for plane in planes:
|
|
488
|
+
ref = plane.attrib.get("bpmnElement")
|
|
489
|
+
if ref not in elements_by_id:
|
|
490
|
+
self.error(path, f"BPMNPlane references missing element {ref}")
|
|
491
|
+
|
|
492
|
+
shape_refs = {
|
|
493
|
+
shape.attrib.get("bpmnElement")
|
|
494
|
+
for shape in root.findall(f".//{{{BPMNDI_NS}}}BPMNShape")
|
|
495
|
+
}
|
|
496
|
+
edge_refs = {
|
|
497
|
+
edge.attrib.get("bpmnElement") for edge in root.findall(f".//{{{BPMNDI_NS}}}BPMNEdge")
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
for elem_id, elem in elements_by_id.items():
|
|
501
|
+
kind = local(elem.tag)
|
|
502
|
+
if kind in NODE_TYPES and elem_id not in shape_refs:
|
|
503
|
+
self.error(path, f"missing BPMNShape for {elem_id}")
|
|
504
|
+
if kind == "sequenceFlow" and elem_id not in edge_refs:
|
|
505
|
+
self.error(path, f"missing BPMNEdge for {elem_id}")
|
|
506
|
+
|
|
507
|
+
for edge in root.findall(f".//{{{BPMNDI_NS}}}BPMNEdge"):
|
|
508
|
+
if len(edge.findall(f"{{{DI_NS}}}waypoint")) < 2:
|
|
509
|
+
self.error(path, f"BPMNEdge {edge.attrib.get('id')} has fewer than two waypoints")
|
|
510
|
+
|
|
511
|
+
def validate_sequence_flows(
|
|
512
|
+
self, path: Path, root: ET.Element, elements_by_id: dict[str, ET.Element]
|
|
513
|
+
) -> None:
|
|
514
|
+
for flow in root.findall(f".//{{{BPMN_NS}}}sequenceFlow"):
|
|
515
|
+
source = elements_by_id.get(flow.attrib.get("sourceRef", ""))
|
|
516
|
+
target = elements_by_id.get(flow.attrib.get("targetRef", ""))
|
|
517
|
+
if source is None or target is None:
|
|
518
|
+
self.error(
|
|
519
|
+
path, f"sequenceFlow {flow.attrib.get('id')} has missing source or target"
|
|
520
|
+
)
|
|
521
|
+
continue
|
|
522
|
+
if local(source.tag) == "endEvent":
|
|
523
|
+
self.error(path, f"sequenceFlow {flow.attrib.get('id')} starts at an end event")
|
|
524
|
+
if local(target.tag) == "startEvent":
|
|
525
|
+
self.error(path, f"sequenceFlow {flow.attrib.get('id')} targets a start event")
|
|
526
|
+
|
|
527
|
+
def validate_start_events(self, path: Path, process: ET.Element) -> None:
|
|
528
|
+
scopes = [process] + process.findall(f".//{{{BPMN_NS}}}subProcess")
|
|
529
|
+
for scope in scopes:
|
|
530
|
+
starts = [c for c in list(scope) if local(c.tag) == "startEvent"]
|
|
531
|
+
blank = [
|
|
532
|
+
s
|
|
533
|
+
for s in starts
|
|
534
|
+
if not any(local(c.tag).endswith("EventDefinition") for c in list(s))
|
|
535
|
+
]
|
|
536
|
+
if len(blank) > 1:
|
|
537
|
+
self.error(path, f"scope {scope.attrib.get('id')} has multiple blank start events")
|
|
538
|
+
if scope.attrib.get("triggeredByEvent") == "true" and len(starts) != 1:
|
|
539
|
+
self.error(
|
|
540
|
+
path,
|
|
541
|
+
f"event subprocess {scope.attrib.get('id')} must have exactly one start event",
|
|
542
|
+
)
|
|
543
|
+
|
|
544
|
+
def validate_entry_points(self, path: Path, process: ET.Element) -> None:
|
|
545
|
+
entry_ids: dict[str, str] = {}
|
|
546
|
+
root_starts = [c for c in list(process) if local(c.tag) == "startEvent"]
|
|
547
|
+
for start in root_starts:
|
|
548
|
+
ep = start.find(f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}entryPointId")
|
|
549
|
+
if ep is None:
|
|
550
|
+
continue
|
|
551
|
+
value = ep.attrib.get("value")
|
|
552
|
+
if not value:
|
|
553
|
+
self.error(path, f"start event {start.attrib.get('id')} has empty entryPointId")
|
|
554
|
+
elif value in entry_ids:
|
|
555
|
+
self.error(path, f"duplicate entryPointId {value}")
|
|
556
|
+
else:
|
|
557
|
+
entry_ids[value] = start.attrib["id"]
|
|
558
|
+
|
|
559
|
+
for var in process.findall(
|
|
560
|
+
f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}variables/{{{UIPATH_NS}}}input"
|
|
561
|
+
):
|
|
562
|
+
element_id = var.attrib.get("elementId")
|
|
563
|
+
if element_id and element_id not in {s.attrib["id"] for s in root_starts}:
|
|
564
|
+
self.error(
|
|
565
|
+
path,
|
|
566
|
+
f"entry input variable {var.attrib.get('name')} references non-root start {element_id}",
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
def validate_gateway_conditions(
|
|
570
|
+
self,
|
|
571
|
+
path: Path,
|
|
572
|
+
root: ET.Element,
|
|
573
|
+
bindings: dict[str, ET.Element],
|
|
574
|
+
variables: dict[str, set[str]],
|
|
575
|
+
) -> None:
|
|
576
|
+
for gateway in root.findall(f".//{{{BPMN_NS}}}exclusiveGateway"):
|
|
577
|
+
outgoing = [
|
|
578
|
+
child.text for child in gateway.findall(f"{{{BPMN_NS}}}outgoing") if child.text
|
|
579
|
+
]
|
|
580
|
+
if len(outgoing) < 2:
|
|
581
|
+
continue
|
|
582
|
+
default = gateway.attrib.get("default")
|
|
583
|
+
if default and default not in outgoing:
|
|
584
|
+
self.error(
|
|
585
|
+
path, f"exclusiveGateway {gateway.attrib.get('id')} default is not outgoing"
|
|
586
|
+
)
|
|
587
|
+
for flow_id in outgoing:
|
|
588
|
+
if flow_id == default:
|
|
589
|
+
continue
|
|
590
|
+
flow = root.find(f".//{{{BPMN_NS}}}sequenceFlow[@id='{flow_id}']")
|
|
591
|
+
if flow is not None and flow.find(f"{{{BPMN_NS}}}conditionExpression") is None:
|
|
592
|
+
self.error(path, f"gateway flow {flow_id} is missing conditionExpression")
|
|
593
|
+
elif flow is not None:
|
|
594
|
+
condition = flow.find(f"{{{BPMN_NS}}}conditionExpression")
|
|
595
|
+
if condition is not None:
|
|
596
|
+
self.validate_expression_value(
|
|
597
|
+
path,
|
|
598
|
+
condition.text or "",
|
|
599
|
+
bindings,
|
|
600
|
+
variables,
|
|
601
|
+
f"conditionExpression {flow_id}",
|
|
602
|
+
)
|
|
603
|
+
|
|
604
|
+
def validate_error_events(
|
|
605
|
+
self, path: Path, root: ET.Element, elements_by_id: dict[str, ET.Element]
|
|
606
|
+
) -> None:
|
|
607
|
+
for event_def in root.findall(f".//{{{BPMN_NS}}}errorEventDefinition"):
|
|
608
|
+
ref = event_def.attrib.get("errorRef")
|
|
609
|
+
if ref and ref not in elements_by_id:
|
|
610
|
+
self.error(path, f"errorEventDefinition references missing error {ref}")
|
|
611
|
+
|
|
612
|
+
for boundary in root.findall(f".//{{{BPMN_NS}}}boundaryEvent"):
|
|
613
|
+
attached = boundary.attrib.get("attachedToRef")
|
|
614
|
+
if attached not in elements_by_id:
|
|
615
|
+
self.error(
|
|
616
|
+
path,
|
|
617
|
+
f"boundaryEvent {boundary.attrib.get('id')} references missing activity {attached}",
|
|
618
|
+
)
|
|
619
|
+
|
|
620
|
+
def validate_error_handling(
|
|
621
|
+
self,
|
|
622
|
+
path: Path,
|
|
623
|
+
root: ET.Element,
|
|
624
|
+
elements_by_id: dict[str, ET.Element],
|
|
625
|
+
bindings: dict[str, ET.Element],
|
|
626
|
+
variables: dict[str, set[str]],
|
|
627
|
+
) -> None:
|
|
628
|
+
for retry in root.findall(f".//{{{UIPATH_NS}}}retry"):
|
|
629
|
+
for attr in retry.attrib:
|
|
630
|
+
if attr not in ALLOWED_RETRY_ATTRS:
|
|
631
|
+
self.error(path, f"uipath:retry uses unsupported attribute {attr}")
|
|
632
|
+
|
|
633
|
+
max_retry = retry.attrib.get("maxRetryCount")
|
|
634
|
+
if max_retry and not max_retry.isdigit():
|
|
635
|
+
self.error(path, "uipath:retry maxRetryCount must be an integer")
|
|
636
|
+
|
|
637
|
+
retry_all = retry.attrib.get("retryAllErrors")
|
|
638
|
+
if retry_all and retry_all not in {"true", "false"}:
|
|
639
|
+
self.error(path, "uipath:retry retryAllErrors must be true or false")
|
|
640
|
+
|
|
641
|
+
for error_def in retry.findall(f"{{{UIPATH_NS}}}errorDefinition"):
|
|
642
|
+
ref = error_def.attrib.get("errorRef")
|
|
643
|
+
if ref and ref not in elements_by_id:
|
|
644
|
+
self.error(path, f"uipath:retry errorDefinition references missing error {ref}")
|
|
645
|
+
|
|
646
|
+
for mapping in root.findall(f".//{{{UIPATH_NS}}}errorMapping"):
|
|
647
|
+
for attr in mapping.attrib:
|
|
648
|
+
if attr not in ALLOWED_ERROR_MAPPING_ATTRS:
|
|
649
|
+
self.error(path, f"uipath:errorMapping uses unsupported attribute {attr}")
|
|
650
|
+
|
|
651
|
+
for error in mapping.findall(f"{{{UIPATH_NS}}}error"):
|
|
652
|
+
for attr in error.attrib:
|
|
653
|
+
if attr not in ALLOWED_ERROR_ATTRS:
|
|
654
|
+
self.error(
|
|
655
|
+
path,
|
|
656
|
+
f"uipath:errorMapping error uses unsupported attribute {attr}",
|
|
657
|
+
)
|
|
658
|
+
|
|
659
|
+
ref = error.attrib.get("errorRef")
|
|
660
|
+
if ref and ref not in elements_by_id:
|
|
661
|
+
self.error(path, f"uipath:errorMapping references missing error {ref}")
|
|
662
|
+
|
|
663
|
+
priority = error.attrib.get("priority")
|
|
664
|
+
if priority is not None and not priority.isdigit():
|
|
665
|
+
self.error(path, "uipath:errorMapping priority must be an integer")
|
|
666
|
+
|
|
667
|
+
retryable = error.attrib.get("retryable")
|
|
668
|
+
if retryable and retryable not in {"true", "false"}:
|
|
669
|
+
self.error(path, "uipath:errorMapping retryable must be true or false")
|
|
670
|
+
|
|
671
|
+
self.validate_expression_value(
|
|
672
|
+
path,
|
|
673
|
+
error.attrib.get("condition", ""),
|
|
674
|
+
bindings,
|
|
675
|
+
variables,
|
|
676
|
+
f"errorMapping {error.attrib.get('id')}",
|
|
677
|
+
)
|
|
678
|
+
|
|
679
|
+
def validate_message_events(
|
|
680
|
+
self, path: Path, root: ET.Element, elements_by_id: dict[str, ET.Element]
|
|
681
|
+
) -> None:
|
|
682
|
+
for event_def in root.findall(f".//{{{BPMN_NS}}}messageEventDefinition"):
|
|
683
|
+
ref = event_def.attrib.get("messageRef")
|
|
684
|
+
if ref and ref not in elements_by_id:
|
|
685
|
+
self.error(path, f"messageEventDefinition references missing message {ref}")
|
|
686
|
+
|
|
687
|
+
def validate_multi_instance(
|
|
688
|
+
self, path: Path, root: ET.Element, variables: dict[str, set[str]]
|
|
689
|
+
) -> None:
|
|
690
|
+
parent_map = build_parent_map(root)
|
|
691
|
+
for loop in root.findall(f".//{{{BPMN_NS}}}multiInstanceLoopCharacteristics"):
|
|
692
|
+
marker = loop.attrib.get("isSequential")
|
|
693
|
+
if marker not in {"true", "false"}:
|
|
694
|
+
self.error(
|
|
695
|
+
path,
|
|
696
|
+
f"multiInstanceLoopCharacteristics {loop.attrib.get('id')} "
|
|
697
|
+
"must set isSequential to true or false",
|
|
698
|
+
)
|
|
699
|
+
|
|
700
|
+
metadata = loop.find(
|
|
701
|
+
f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}loopCharacteristics"
|
|
702
|
+
)
|
|
703
|
+
if metadata is None:
|
|
704
|
+
self.error(
|
|
705
|
+
path,
|
|
706
|
+
f"multiInstanceLoopCharacteristics {loop.attrib.get('id')} "
|
|
707
|
+
"missing uipath:loopCharacteristics",
|
|
708
|
+
)
|
|
709
|
+
continue
|
|
710
|
+
|
|
711
|
+
input_collection = metadata.attrib.get("inputCollection", "")
|
|
712
|
+
collection_vars = self.expression_variable_ids(input_collection)
|
|
713
|
+
has_declared_collection = any(
|
|
714
|
+
var_id in variables["all"] for var_id in collection_vars
|
|
715
|
+
)
|
|
716
|
+
if not collection_vars or not has_declared_collection:
|
|
717
|
+
self.error(
|
|
718
|
+
path,
|
|
719
|
+
f"multi-instance inputCollection references undeclared variable "
|
|
720
|
+
f"{input_collection}",
|
|
721
|
+
)
|
|
722
|
+
|
|
723
|
+
input_element = metadata.attrib.get("inputElement")
|
|
724
|
+
if not input_element:
|
|
725
|
+
self.error(
|
|
726
|
+
path,
|
|
727
|
+
f"multi-instance inputElement is missing on {loop.attrib.get('id')}",
|
|
728
|
+
)
|
|
729
|
+
elif local(parent_map.get(id(loop), ET.Element("")).tag) == "subProcess":
|
|
730
|
+
if input_element != "iterator[0]":
|
|
731
|
+
self.error(
|
|
732
|
+
path,
|
|
733
|
+
f"multi-instance subprocess inputElement must be iterator[0], "
|
|
734
|
+
f"found {input_element}",
|
|
735
|
+
)
|
|
736
|
+
elif not re.fullmatch(r"[A-Za-z_][A-Za-z0-9_]*(?:\[\d+\])?", input_element):
|
|
737
|
+
self.error(path, f"multi-instance inputElement has invalid shape {input_element}")
|
|
738
|
+
|
|
739
|
+
self.validate_expression_value(
|
|
740
|
+
path,
|
|
741
|
+
input_collection,
|
|
742
|
+
{},
|
|
743
|
+
variables,
|
|
744
|
+
f"multi-instance inputCollection {loop.attrib.get('id')}",
|
|
745
|
+
)
|
|
746
|
+
self.validate_expression_value(
|
|
747
|
+
path,
|
|
748
|
+
metadata.attrib.get("filterCondition", ""),
|
|
749
|
+
{},
|
|
750
|
+
variables,
|
|
751
|
+
f"multi-instance filterCondition {loop.attrib.get('id')}",
|
|
752
|
+
)
|
|
753
|
+
|
|
754
|
+
completion = loop.find(f"{{{BPMN_NS}}}completionCondition")
|
|
755
|
+
if completion is not None:
|
|
756
|
+
self.validate_expression_value(
|
|
757
|
+
path,
|
|
758
|
+
completion.text or "",
|
|
759
|
+
{},
|
|
760
|
+
variables,
|
|
761
|
+
f"multi-instance completionCondition {loop.attrib.get('id')}",
|
|
762
|
+
)
|
|
763
|
+
|
|
764
|
+
def expression_variable_ids(self, value: str) -> set[str]:
|
|
765
|
+
return set(re.findall(r"\bvars\.([A-Za-z_][A-Za-z0-9_]*)", value))
|
|
766
|
+
|
|
767
|
+
def extract_expressions(self, value: str) -> list[str]:
|
|
768
|
+
if not value:
|
|
769
|
+
return []
|
|
770
|
+
expressions: list[str] = []
|
|
771
|
+
stripped = value.strip()
|
|
772
|
+
if stripped.startswith("="):
|
|
773
|
+
expressions.append(stripped)
|
|
774
|
+
expressions.extend(match.group(1).strip() for match in re.finditer(r'"(=[^"]+)"', value))
|
|
775
|
+
return expressions
|
|
776
|
+
|
|
777
|
+
def validate_expression_value(
|
|
778
|
+
self,
|
|
779
|
+
path: Path,
|
|
780
|
+
value: str,
|
|
781
|
+
bindings: dict[str, ET.Element],
|
|
782
|
+
variables: dict[str, set[str]],
|
|
783
|
+
label: str,
|
|
784
|
+
) -> None:
|
|
785
|
+
for expression in self.extract_expressions(value):
|
|
786
|
+
if self.contains_assignment(expression):
|
|
787
|
+
self.error(path, f"{label} may contain assignment: {expression}")
|
|
788
|
+
|
|
789
|
+
for binding_ref in re.findall(r"\bbindings\.([A-Za-z0-9_]+)", expression):
|
|
790
|
+
if binding_ref not in bindings:
|
|
791
|
+
self.error(
|
|
792
|
+
path,
|
|
793
|
+
f"{label} references undeclared binding {binding_ref}",
|
|
794
|
+
)
|
|
795
|
+
|
|
796
|
+
for var_ref in self.expression_variable_ids(expression):
|
|
797
|
+
if var_ref not in variables["all"] and var_ref not in SPECIAL_RUNTIME_VARS:
|
|
798
|
+
self.error(path, f"{label} references undeclared variable id {var_ref}")
|
|
799
|
+
|
|
800
|
+
for var_name in sorted(variables["names"], key=len, reverse=True):
|
|
801
|
+
if re.search(rf"={re.escape(var_name)}(?=$|[^A-Za-z0-9_])", expression):
|
|
802
|
+
self.error(
|
|
803
|
+
path,
|
|
804
|
+
f"{label} uses bare variable name {var_name}; use vars.<variableId>",
|
|
805
|
+
)
|
|
806
|
+
|
|
807
|
+
def contains_assignment(self, value: str) -> bool:
|
|
808
|
+
return "=" in value and re.search(r"(?<![=!<>])=(?!=)", value[1:]) is not None
|
|
809
|
+
|
|
810
|
+
def validate_uipath_extensions(
|
|
811
|
+
self,
|
|
812
|
+
path: Path,
|
|
813
|
+
root: ET.Element,
|
|
814
|
+
bindings: dict[str, ET.Element],
|
|
815
|
+
variables: dict[str, set[str]],
|
|
816
|
+
) -> None:
|
|
817
|
+
parent_map = build_parent_map(root)
|
|
818
|
+
for elem in root.iter():
|
|
819
|
+
if ns(elem.tag) != UIPATH_NS:
|
|
820
|
+
continue
|
|
821
|
+
if local(elem.tag) in {"activity", "event"}:
|
|
822
|
+
self.validate_activity_or_event(path, elem, bindings, parent_map)
|
|
823
|
+
if local(elem.tag) == "mapping":
|
|
824
|
+
self.validate_script_mapping(path, elem, parent_map)
|
|
825
|
+
if local(elem.tag) == "output":
|
|
826
|
+
target = elem.attrib.get("var") or elem.attrib.get("target")
|
|
827
|
+
if target and target not in variables["writable"]:
|
|
828
|
+
self.error(path, f"uipath:output targets non-writable variable id {target}")
|
|
829
|
+
|
|
830
|
+
for attr_name, attr_value in elem.attrib.items():
|
|
831
|
+
self.validate_expression_value(
|
|
832
|
+
path,
|
|
833
|
+
attr_value,
|
|
834
|
+
bindings,
|
|
835
|
+
variables,
|
|
836
|
+
f"uipath:{local(elem.tag)} @{attr_name}",
|
|
837
|
+
)
|
|
838
|
+
self.validate_expression_value(
|
|
839
|
+
path,
|
|
840
|
+
elem.text or "",
|
|
841
|
+
bindings,
|
|
842
|
+
variables,
|
|
843
|
+
f"uipath:{local(elem.tag)} text",
|
|
844
|
+
)
|
|
845
|
+
|
|
846
|
+
def validate_script_mapping(
|
|
847
|
+
self,
|
|
848
|
+
path: Path,
|
|
849
|
+
elem: ET.Element,
|
|
850
|
+
parent_map: dict[int, ET.Element],
|
|
851
|
+
) -> None:
|
|
852
|
+
type_elem = elem.find(f"{{{UIPATH_NS}}}type")
|
|
853
|
+
mapping_type = type_elem.attrib.get("value") if type_elem is not None else None
|
|
854
|
+
extension_elements = parent_map.get(id(elem))
|
|
855
|
+
bpmn_parent = parent_map.get(id(extension_elements))
|
|
856
|
+
is_script_parent = bpmn_parent is not None and local(bpmn_parent.tag) == "scriptTask"
|
|
857
|
+
if mapping_type != "BPMN.ScriptTask" and not is_script_parent:
|
|
858
|
+
return
|
|
859
|
+
|
|
860
|
+
for output in elem.findall(f"{{{UIPATH_NS}}}output"):
|
|
861
|
+
source = output.attrib.get("source", "")
|
|
862
|
+
if source.startswith("=result.") and not source.startswith("=result.response"):
|
|
863
|
+
self.error(
|
|
864
|
+
path,
|
|
865
|
+
"BPMN.ScriptTask output source must read result.response "
|
|
866
|
+
f"or result.response.<field>, found {source}",
|
|
867
|
+
)
|
|
868
|
+
|
|
869
|
+
def validate_activity_or_event(
|
|
870
|
+
self,
|
|
871
|
+
path: Path,
|
|
872
|
+
elem: ET.Element,
|
|
873
|
+
bindings: dict[str, ET.Element],
|
|
874
|
+
parent_map: dict[int, ET.Element],
|
|
875
|
+
) -> None:
|
|
876
|
+
type_elem = elem.find(f"{{{UIPATH_NS}}}type")
|
|
877
|
+
service_type = type_elem.attrib.get("value") if type_elem is not None else None
|
|
878
|
+
if not service_type:
|
|
879
|
+
self.error(path, "uipath activity/event missing type")
|
|
880
|
+
return
|
|
881
|
+
|
|
882
|
+
extension_kind = local(elem.tag)
|
|
883
|
+
extension_elements = parent_map.get(id(elem))
|
|
884
|
+
wrapper = local(parent_map.get(id(extension_elements), ET.Element("")).tag)
|
|
885
|
+
expected = SERVICE_TYPE_WRAPPERS.get(service_type)
|
|
886
|
+
if expected is not None:
|
|
887
|
+
if extension_kind != expected["extension"]:
|
|
888
|
+
self.error(
|
|
889
|
+
path,
|
|
890
|
+
f"{service_type} must use uipath:{expected['extension']}, found "
|
|
891
|
+
f"uipath:{extension_kind}",
|
|
892
|
+
)
|
|
893
|
+
if wrapper not in expected["wrapper"]:
|
|
894
|
+
self.error(
|
|
895
|
+
path,
|
|
896
|
+
f"{service_type} must use BPMN wrapper "
|
|
897
|
+
f"{sorted(expected['wrapper'])}, found {wrapper or 'unknown'}",
|
|
898
|
+
)
|
|
899
|
+
|
|
900
|
+
context = elem.find(f"{{{UIPATH_NS}}}context")
|
|
901
|
+
if context is None:
|
|
902
|
+
self.error(path, f"{service_type} missing context")
|
|
903
|
+
return
|
|
904
|
+
context_inputs = {
|
|
905
|
+
child.attrib.get("name"): child.attrib.get("value", "")
|
|
906
|
+
for child in list(context)
|
|
907
|
+
if local(child.tag) == "input"
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
if service_type.startswith("Intsvc."):
|
|
911
|
+
connection_backed = {
|
|
912
|
+
"Intsvc.ActivityExecution",
|
|
913
|
+
"Intsvc.WaitForEvent",
|
|
914
|
+
"Intsvc.EventTrigger",
|
|
915
|
+
"Intsvc.AsyncExecution",
|
|
916
|
+
"Intsvc.SyncAgentExecution",
|
|
917
|
+
"Intsvc.AsyncAgentExecution",
|
|
918
|
+
"Intsvc.SyncWorkflowExecution",
|
|
919
|
+
"Intsvc.AsyncWorkflowExecution",
|
|
920
|
+
}
|
|
921
|
+
operation_backed = {
|
|
922
|
+
"Intsvc.ActivityExecution",
|
|
923
|
+
"Intsvc.AsyncExecution",
|
|
924
|
+
"Intsvc.SyncAgentExecution",
|
|
925
|
+
"Intsvc.AsyncAgentExecution",
|
|
926
|
+
"Intsvc.SyncWorkflowExecution",
|
|
927
|
+
"Intsvc.AsyncWorkflowExecution",
|
|
928
|
+
}
|
|
929
|
+
connection = context_inputs.get("connection", "")
|
|
930
|
+
if service_type in connection_backed:
|
|
931
|
+
match = re.fullmatch(r"=bindings\.([A-Za-z0-9_]+)", connection)
|
|
932
|
+
if not match or match.group(1) not in bindings:
|
|
933
|
+
self.error(path, f"{service_type} missing generated connection binding")
|
|
934
|
+
if "connectorKey" not in context_inputs:
|
|
935
|
+
self.error(path, f"{service_type} missing connectorKey")
|
|
936
|
+
if service_type in operation_backed:
|
|
937
|
+
for required in ("activity", "operation"):
|
|
938
|
+
if required not in context_inputs:
|
|
939
|
+
self.error(path, f"{service_type} missing {required}")
|
|
940
|
+
if service_type in {"Intsvc.EventTrigger", "Intsvc.WaitForEvent"}:
|
|
941
|
+
for required in ("trigger", "eventName"):
|
|
942
|
+
if required not in context_inputs:
|
|
943
|
+
self.error(path, f"{service_type} missing {required}")
|
|
944
|
+
|
|
945
|
+
if service_type == "Orchestrator.StartAgentJob":
|
|
946
|
+
direct_inputs = {
|
|
947
|
+
child.attrib.get("name"): child
|
|
948
|
+
for child in list(elem)
|
|
949
|
+
if local(child.tag) == "input"
|
|
950
|
+
}
|
|
951
|
+
direct_outputs = [
|
|
952
|
+
child for child in list(elem) if local(child.tag) == "output"
|
|
953
|
+
]
|
|
954
|
+
if "JobArguments" not in direct_inputs:
|
|
955
|
+
self.error(path, "Orchestrator.StartAgentJob missing direct JobArguments input")
|
|
956
|
+
if not any(
|
|
957
|
+
output.attrib.get("name") == "Process response"
|
|
958
|
+
and output.attrib.get("type") == "Orchestrator.RunJob"
|
|
959
|
+
and output.attrib.get("var")
|
|
960
|
+
for output in direct_outputs
|
|
961
|
+
):
|
|
962
|
+
self.error(
|
|
963
|
+
path,
|
|
964
|
+
"Orchestrator.StartAgentJob missing direct Process response output",
|
|
965
|
+
)
|
|
966
|
+
|
|
967
|
+
def validate_package_files(self, project: Path, bpmn_name: str, root: ET.Element) -> None:
|
|
968
|
+
data: dict[str, object] = {}
|
|
969
|
+
for name in (
|
|
970
|
+
"project.uiproj",
|
|
971
|
+
"bindings_v2.json",
|
|
972
|
+
"entry-points.json",
|
|
973
|
+
"operate.json",
|
|
974
|
+
"package-descriptor.json",
|
|
975
|
+
):
|
|
976
|
+
path = project / name
|
|
977
|
+
if not path.is_file():
|
|
978
|
+
return
|
|
979
|
+
try:
|
|
980
|
+
data[name] = json.loads(path.read_text(encoding="utf-8"))
|
|
981
|
+
except json.JSONDecodeError as exc:
|
|
982
|
+
self.error(path, f"JSON parse failed: {exc}")
|
|
983
|
+
return
|
|
984
|
+
|
|
985
|
+
if Path(str(data["project.uiproj"].get("main", ""))).name != bpmn_name: # type: ignore[union-attr]
|
|
986
|
+
self.error(
|
|
987
|
+
project / "project.uiproj",
|
|
988
|
+
"main basename does not match single BPMN file basename",
|
|
989
|
+
)
|
|
990
|
+
if data["project.uiproj"].get("ProjectType") != "ProcessOrchestration": # type: ignore[union-attr]
|
|
991
|
+
self.error(project / "project.uiproj", "ProjectType must be ProcessOrchestration")
|
|
992
|
+
if "projectType" in data["project.uiproj"] or "name" in data["project.uiproj"]: # type: ignore[operator]
|
|
993
|
+
self.error(project / "project.uiproj", "uses lowercase project metadata keys")
|
|
994
|
+
if Path(str(data["operate.json"].get("main", ""))).name != bpmn_name: # type: ignore[union-attr]
|
|
995
|
+
self.error(
|
|
996
|
+
project / "operate.json",
|
|
997
|
+
"main basename does not match single BPMN file basename",
|
|
998
|
+
)
|
|
999
|
+
if data["operate.json"].get("contentType") != "ProcessOrchestration": # type: ignore[union-attr]
|
|
1000
|
+
self.error(project / "operate.json", "contentType must be ProcessOrchestration")
|
|
1001
|
+
|
|
1002
|
+
bindings_file = data["bindings_v2.json"]
|
|
1003
|
+
if not isinstance(bindings_file, dict):
|
|
1004
|
+
self.error(project / "bindings_v2.json", "must be a JSON object")
|
|
1005
|
+
return
|
|
1006
|
+
if bindings_file.get("version") != "2.0":
|
|
1007
|
+
self.error(project / "bindings_v2.json", "version must be 2.0")
|
|
1008
|
+
if not isinstance(bindings_file.get("resources"), list):
|
|
1009
|
+
self.error(project / "bindings_v2.json", "resources must be an array")
|
|
1010
|
+
return
|
|
1011
|
+
|
|
1012
|
+
descriptor_content = set(data["package-descriptor.json"].get("content", [])) # type: ignore[union-attr]
|
|
1013
|
+
for required in (
|
|
1014
|
+
f"content/{bpmn_name}",
|
|
1015
|
+
"content/bindings_v2.json",
|
|
1016
|
+
"content/entry-points.json",
|
|
1017
|
+
"content/operate.json",
|
|
1018
|
+
):
|
|
1019
|
+
if required not in descriptor_content:
|
|
1020
|
+
self.error(project / "package-descriptor.json", f"missing content entry {required}")
|
|
1021
|
+
|
|
1022
|
+
process = root.find(f"{{{BPMN_NS}}}process")
|
|
1023
|
+
if process is None:
|
|
1024
|
+
return
|
|
1025
|
+
root_bindings = self.collect_root_bindings(process)
|
|
1026
|
+
package_bindings = {
|
|
1027
|
+
resource.get("id")
|
|
1028
|
+
for resource in data["bindings_v2.json"].get("resources", []) # type: ignore[union-attr]
|
|
1029
|
+
}
|
|
1030
|
+
package_resources = {
|
|
1031
|
+
resource.get("id"): resource
|
|
1032
|
+
for resource in data["bindings_v2.json"].get("resources", []) # type: ignore[union-attr]
|
|
1033
|
+
if isinstance(resource, dict)
|
|
1034
|
+
}
|
|
1035
|
+
for binding_id in root_bindings:
|
|
1036
|
+
if binding_id not in package_bindings:
|
|
1037
|
+
self.error(
|
|
1038
|
+
project / "bindings_v2.json", f"missing resource for binding {binding_id}"
|
|
1039
|
+
)
|
|
1040
|
+
else:
|
|
1041
|
+
self.validate_binding_resource(
|
|
1042
|
+
project / "bindings_v2.json",
|
|
1043
|
+
root_bindings[binding_id],
|
|
1044
|
+
package_resources[binding_id],
|
|
1045
|
+
)
|
|
1046
|
+
|
|
1047
|
+
entry_points = data["entry-points.json"].get("entryPoints", []) # type: ignore[union-attr]
|
|
1048
|
+
package_eps = {ep.get("id"): ep for ep in entry_points}
|
|
1049
|
+
expected_schemas = self.expected_entry_point_schemas(process)
|
|
1050
|
+
for start in [c for c in list(process) if local(c.tag) == "startEvent"]:
|
|
1051
|
+
ep = start.find(f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}entryPointId")
|
|
1052
|
+
if ep is None:
|
|
1053
|
+
continue
|
|
1054
|
+
ep_id = ep.attrib.get("value")
|
|
1055
|
+
file_path = f"/content/{bpmn_name}#{start.attrib.get('id')}"
|
|
1056
|
+
if ep_id not in package_eps:
|
|
1057
|
+
self.error(project / "entry-points.json", f"missing entry point {ep_id}")
|
|
1058
|
+
elif package_eps[ep_id].get("filePath") != file_path:
|
|
1059
|
+
self.error(project / "entry-points.json", f"entry point {ep_id} has wrong filePath")
|
|
1060
|
+
elif ep_id in expected_schemas:
|
|
1061
|
+
expected_input, expected_output = expected_schemas[ep_id]
|
|
1062
|
+
actual = package_eps[ep_id]
|
|
1063
|
+
if actual.get("inputSchema") != expected_input:
|
|
1064
|
+
self.error(
|
|
1065
|
+
project / "entry-points.json",
|
|
1066
|
+
f"entry point {ep_id} inputSchema differs from BPMN variables",
|
|
1067
|
+
)
|
|
1068
|
+
if actual.get("outputSchema") != expected_output:
|
|
1069
|
+
self.error(
|
|
1070
|
+
project / "entry-points.json",
|
|
1071
|
+
f"entry point {ep_id} outputSchema differs from BPMN variables",
|
|
1072
|
+
)
|
|
1073
|
+
|
|
1074
|
+
self.validate_intsvc_package_enrichment(
|
|
1075
|
+
project / "bindings_v2.json", root, root_bindings, package_resources
|
|
1076
|
+
)
|
|
1077
|
+
|
|
1078
|
+
def expected_entry_point_schemas(
|
|
1079
|
+
self, process: ET.Element
|
|
1080
|
+
) -> dict[str, tuple[dict[str, object], dict[str, object]]]:
|
|
1081
|
+
root_variables = process.find(f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}variables")
|
|
1082
|
+
inputs_by_start: dict[str, dict[str, object]] = {}
|
|
1083
|
+
outputs: dict[str, object] = {}
|
|
1084
|
+
event_start_ids = {
|
|
1085
|
+
start.attrib["id"]
|
|
1086
|
+
for start in [c for c in list(process) if local(c.tag) == "startEvent"]
|
|
1087
|
+
if start.find(f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}event") is not None
|
|
1088
|
+
and "id" in start.attrib
|
|
1089
|
+
}
|
|
1090
|
+
if root_variables is not None:
|
|
1091
|
+
for variable in list(root_variables):
|
|
1092
|
+
name = variable.attrib.get("name")
|
|
1093
|
+
if not name:
|
|
1094
|
+
continue
|
|
1095
|
+
schema = self.variable_schema(variable)
|
|
1096
|
+
element_id = variable.attrib.get("elementId")
|
|
1097
|
+
if local(variable.tag) == "input" and element_id:
|
|
1098
|
+
inputs_by_start.setdefault(element_id, {})[name] = schema
|
|
1099
|
+
elif (
|
|
1100
|
+
local(variable.tag) == "inputOutput"
|
|
1101
|
+
and element_id
|
|
1102
|
+
and element_id not in event_start_ids
|
|
1103
|
+
):
|
|
1104
|
+
inputs_by_start.setdefault(element_id, {})[name] = schema
|
|
1105
|
+
elif local(variable.tag) == "output":
|
|
1106
|
+
outputs[name] = schema
|
|
1107
|
+
|
|
1108
|
+
expected: dict[str, tuple[dict[str, object], dict[str, object]]] = {}
|
|
1109
|
+
for start in [c for c in list(process) if local(c.tag) == "startEvent"]:
|
|
1110
|
+
ep = start.find(f"./{{{BPMN_NS}}}extensionElements/{{{UIPATH_NS}}}entryPointId")
|
|
1111
|
+
if ep is None or not ep.attrib.get("value"):
|
|
1112
|
+
continue
|
|
1113
|
+
expected[ep.attrib["value"]] = (
|
|
1114
|
+
{"type": "object", "properties": inputs_by_start.get(start.attrib["id"], {})},
|
|
1115
|
+
{"type": "object", "properties": outputs},
|
|
1116
|
+
)
|
|
1117
|
+
return expected
|
|
1118
|
+
|
|
1119
|
+
def variable_schema(self, variable: ET.Element) -> dict[str, object]:
|
|
1120
|
+
var_type = variable.attrib.get("type", "string")
|
|
1121
|
+
if var_type == "jsonSchema":
|
|
1122
|
+
try:
|
|
1123
|
+
schema = json.loads(variable.text or "{}")
|
|
1124
|
+
except json.JSONDecodeError:
|
|
1125
|
+
return {"type": "object"}
|
|
1126
|
+
if isinstance(schema, dict):
|
|
1127
|
+
schema.pop("$schema", None)
|
|
1128
|
+
return schema
|
|
1129
|
+
return {"type": "object"}
|
|
1130
|
+
|
|
1131
|
+
type_map = {
|
|
1132
|
+
"boolean": "boolean",
|
|
1133
|
+
"integer": "integer",
|
|
1134
|
+
"number": "number",
|
|
1135
|
+
"array": "array",
|
|
1136
|
+
"object": "object",
|
|
1137
|
+
"json": "object",
|
|
1138
|
+
"string": "string",
|
|
1139
|
+
}
|
|
1140
|
+
return {"type": type_map.get(var_type, "string")}
|
|
1141
|
+
|
|
1142
|
+
def validate_binding_resource(
|
|
1143
|
+
self, path: Path, binding: ET.Element, resource: dict[str, object]
|
|
1144
|
+
) -> None:
|
|
1145
|
+
binding_id = binding.attrib.get("id")
|
|
1146
|
+
expected_kind = binding.attrib.get("type")
|
|
1147
|
+
if resource.get("name") != binding.attrib.get("name"):
|
|
1148
|
+
self.error(path, f"resource {binding_id} name differs from BPMN binding")
|
|
1149
|
+
if expected_kind and resource.get("kind") != expected_kind:
|
|
1150
|
+
self.error(path, f"resource {binding_id} kind differs from BPMN binding")
|
|
1151
|
+
if binding.attrib.get("resourceKey") and resource.get("resourceKey") != binding.attrib.get(
|
|
1152
|
+
"resourceKey"
|
|
1153
|
+
):
|
|
1154
|
+
self.error(path, f"resource {binding_id} resourceKey differs from BPMN binding")
|
|
1155
|
+
if binding.attrib.get("resource") and resource.get("resource") != binding.attrib.get(
|
|
1156
|
+
"resource"
|
|
1157
|
+
):
|
|
1158
|
+
self.error(path, f"resource {binding_id} resource differs from BPMN binding")
|
|
1159
|
+
if binding.attrib.get("resourceSubType") and resource.get(
|
|
1160
|
+
"resourceSubType"
|
|
1161
|
+
) != binding.attrib.get("resourceSubType"):
|
|
1162
|
+
self.error(path, f"resource {binding_id} resourceSubType differs from binding")
|
|
1163
|
+
if binding.attrib.get("propertyAttribute") and resource.get(
|
|
1164
|
+
"propertyAttribute"
|
|
1165
|
+
) != binding.attrib.get("propertyAttribute"):
|
|
1166
|
+
self.error(path, f"resource {binding_id} propertyAttribute differs from binding")
|
|
1167
|
+
|
|
1168
|
+
metadata = resource.get("metadata")
|
|
1169
|
+
if not isinstance(metadata, dict):
|
|
1170
|
+
self.error(path, f"resource {binding_id} metadata must be an object")
|
|
1171
|
+
return
|
|
1172
|
+
if metadata.get("BindingsVersion") != "v1":
|
|
1173
|
+
self.error(path, f"resource {binding_id} metadata.BindingsVersion must be v1")
|
|
1174
|
+
if metadata.get("DisplayLabel") != binding.attrib.get("name"):
|
|
1175
|
+
self.error(path, f"resource {binding_id} metadata.DisplayLabel differs from binding")
|
|
1176
|
+
|
|
1177
|
+
expected_subtype = binding.attrib.get("resourceSubType") or binding.attrib.get("type")
|
|
1178
|
+
if metadata.get("SubType") != expected_subtype:
|
|
1179
|
+
self.error(path, f"resource {binding_id} metadata.SubType differs from binding")
|
|
1180
|
+
|
|
1181
|
+
def validate_intsvc_package_enrichment(
|
|
1182
|
+
self,
|
|
1183
|
+
path: Path,
|
|
1184
|
+
root: ET.Element,
|
|
1185
|
+
bindings: dict[str, ET.Element],
|
|
1186
|
+
package_resources: dict[object, dict[str, object]],
|
|
1187
|
+
) -> None:
|
|
1188
|
+
for elem in root.iter():
|
|
1189
|
+
if ns(elem.tag) != UIPATH_NS or local(elem.tag) not in {"activity", "event"}:
|
|
1190
|
+
continue
|
|
1191
|
+
type_elem = elem.find(f"{{{UIPATH_NS}}}type")
|
|
1192
|
+
service_type = type_elem.attrib.get("value") if type_elem is not None else ""
|
|
1193
|
+
if not service_type.startswith("Intsvc."):
|
|
1194
|
+
continue
|
|
1195
|
+
|
|
1196
|
+
context = elem.find(f"{{{UIPATH_NS}}}context")
|
|
1197
|
+
if context is None:
|
|
1198
|
+
self.error(path, f"{service_type} missing context")
|
|
1199
|
+
continue
|
|
1200
|
+
context_inputs = {
|
|
1201
|
+
child.attrib.get("name"): child.attrib.get("value", "")
|
|
1202
|
+
for child in list(context)
|
|
1203
|
+
if local(child.tag) == "input"
|
|
1204
|
+
}
|
|
1205
|
+
connector_key = context_inputs.get("connectorKey")
|
|
1206
|
+
for name, value in context_inputs.items():
|
|
1207
|
+
binding_id = self.binding_expression_id(value)
|
|
1208
|
+
if not binding_id:
|
|
1209
|
+
continue
|
|
1210
|
+
binding = bindings.get(binding_id)
|
|
1211
|
+
resource = package_resources.get(binding_id)
|
|
1212
|
+
if binding is None or resource is None:
|
|
1213
|
+
continue
|
|
1214
|
+
metadata = resource.get("metadata")
|
|
1215
|
+
if not isinstance(metadata, dict):
|
|
1216
|
+
continue
|
|
1217
|
+
if name in {"connection", "trigger"} and connector_key:
|
|
1218
|
+
if metadata.get("Connector") != connector_key:
|
|
1219
|
+
self.error(
|
|
1220
|
+
path,
|
|
1221
|
+
f"{service_type} {name} resource {binding_id} connector metadata differs",
|
|
1222
|
+
)
|
|
1223
|
+
if metadata.get("SolutionsSupport") != "Required":
|
|
1224
|
+
self.error(
|
|
1225
|
+
path,
|
|
1226
|
+
f"{service_type} {name} resource {binding_id} must require solutions support",
|
|
1227
|
+
)
|
|
1228
|
+
if binding.attrib.get("propertyAttribute") and name not in {
|
|
1229
|
+
"connection",
|
|
1230
|
+
"trigger",
|
|
1231
|
+
}:
|
|
1232
|
+
parent_id = self.binding_expression_id(context_inputs.get("trigger", ""))
|
|
1233
|
+
parent = package_resources.get(parent_id)
|
|
1234
|
+
expected_parent = (
|
|
1235
|
+
parent.get("resourceKey") if isinstance(parent, dict) else None
|
|
1236
|
+
)
|
|
1237
|
+
if expected_parent and metadata.get("ParentResourceKey") != expected_parent:
|
|
1238
|
+
self.error(
|
|
1239
|
+
path,
|
|
1240
|
+
f"{service_type} property resource {binding_id} has wrong parent key",
|
|
1241
|
+
)
|
|
1242
|
+
|
|
1243
|
+
if (
|
|
1244
|
+
service_type in {"Intsvc.ActivityExecution", "Intsvc.AsyncExecution"}
|
|
1245
|
+
and elem.find(f"{{{UIPATH_NS}}}inputSchema") is None
|
|
1246
|
+
):
|
|
1247
|
+
self.error(path, f"{service_type} missing generated inputSchema")
|
|
1248
|
+
|
|
1249
|
+
def binding_expression_id(self, value: str) -> str | None:
|
|
1250
|
+
match = re.fullmatch(r"=bindings\.([A-Za-z0-9_]+)", value)
|
|
1251
|
+
return match.group(1) if match else None
|
|
1252
|
+
|
|
1253
|
+
|
|
1254
|
+
if __name__ == "__main__":
|
|
1255
|
+
sys.exit(Validator().validate())
|