@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,66 @@
|
|
|
1
|
+
# case-management task — Implementation (Direct JSON Write)
|
|
2
|
+
|
|
3
|
+
> **Phase split.** Phase 2 writes shape with empty input values. Phase 3 binds values per [io-binding/impl-json.md](../../variables/io-binding/impl-json.md). See [phased-execution.md](../../../phased-execution.md).
|
|
4
|
+
|
|
5
|
+
## Task JSON Shape
|
|
6
|
+
|
|
7
|
+
```json
|
|
8
|
+
{
|
|
9
|
+
"id": "tZ8rMn4Vp",
|
|
10
|
+
"type": "case-management",
|
|
11
|
+
"displayName": "Run Vendor Onboarding Sub-Case",
|
|
12
|
+
"elementId": "Stage_aB3kL9-tZ8rMn4Vp",
|
|
13
|
+
"isRequired": true,
|
|
14
|
+
"shouldRunOnlyOnce": true,
|
|
15
|
+
"data": {
|
|
16
|
+
"name": "=bindings.bG0SraLpg",
|
|
17
|
+
"folderPath": "=bindings.bH1iJK2lm",
|
|
18
|
+
"inputs": [],
|
|
19
|
+
"outputs": []
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- `id`: `t` + 8 alphanumeric chars. `elementId`: `${stageId}-${taskId}`.
|
|
25
|
+
- `data.name` / `data.folderPath` MUST be `=bindings.<id>` references — never literals.
|
|
26
|
+
|
|
27
|
+
## Procedure
|
|
28
|
+
|
|
29
|
+
**Step 0 — Get inputs/outputs schema:**
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
uip maestro case tasks describe --type case-management --id "<entityKey>" --output json
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Fallback: planning-captured schema from tasks.md. If unavailable, placeholder per [placeholder-tasks.md](../../../placeholder-tasks.md).
|
|
36
|
+
|
|
37
|
+
**Step 1 — Root-level bindings:**
|
|
38
|
+
|
|
39
|
+
Read [bindings/impl-json.md § Full binding shape — non-connector tasks](../../variables/bindings/impl-json.md) for the canonical 7-field shape (all required — omitting any causes Studio Web render failure). Per-task overrides:
|
|
40
|
+
|
|
41
|
+
- `resource`: `"process"`
|
|
42
|
+
- `resourceSubType`: `"CaseManagement"`
|
|
43
|
+
- `name` / `folderPath` defaults: from `tasks.md` `name` / `folder-path` fields
|
|
44
|
+
|
|
45
|
+
Dedup per [§ Deduplication](../../variables/bindings/impl-json.md).
|
|
46
|
+
|
|
47
|
+
**Step 2 — Write task:**
|
|
48
|
+
|
|
49
|
+
1. Generate `id` (`t` + 8 chars) and `elementId` (`<stageId>-<taskId>`)
|
|
50
|
+
2. **Recursion guard** — confirm the sub-case `entityKey` from tasks.md does NOT match the current case's own entityKey (direct recursion) and does not appear as an ancestor in already-written `case-management` tasks (transitive recursion). If either check fails, flag for user review.
|
|
51
|
+
3. Set `data.name` = `=bindings.<nameBindingId>`, `data.folderPath` = `=bindings.<folderPathBindingId>`
|
|
52
|
+
4. Write `data.inputs[]` / `data.outputs[]` from Step 0 schema. Each input: `{ name, type, id, var, elementId, value: "" }`. Each output: `{ name, type, id, var, value, source, target, elementId }`.
|
|
53
|
+
|
|
54
|
+
**Output binding.** Apply [io-binding/impl-json.md § Output Binding Shapes](../../variables/io-binding/impl-json.md#output-binding-shapes). The Step 0 schema for this plugin is the `tasks describe` output (Step 0 above).
|
|
55
|
+
5. Append to target stage's `tasks[laneIndex][]`
|
|
56
|
+
|
|
57
|
+
> Entry conditions added in Step 10. Input value bindings in Phase 3 per [io-binding/impl-json.md](../../variables/io-binding/impl-json.md).
|
|
58
|
+
|
|
59
|
+
## Post-Write Verification
|
|
60
|
+
|
|
61
|
+
- `type: "case-management"`
|
|
62
|
+
- `data.name` and `data.folderPath` start with `=bindings.`
|
|
63
|
+
- the bindings array has 2 entries: `resource: "process"`, `resourceSubType: "CaseManagement"`, `propertyAttribute` = `name` / `folderPath`
|
|
64
|
+
- `data.inputs` and `data.outputs` populated (unless placeholder)
|
|
65
|
+
- No circular self-reference
|
|
66
|
+
- `id` captured in `id-map.json`
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# case-management task — Planning
|
|
2
|
+
|
|
3
|
+
A nested case task. Invokes another case definition as a sub-case within the current one. Enables hierarchical / recursive case structures.
|
|
4
|
+
|
|
5
|
+
## When to Use
|
|
6
|
+
|
|
7
|
+
Pick this plugin when the sdd.md describes a task that spawns or delegates to another case definition. Typical patterns:
|
|
8
|
+
|
|
9
|
+
- Parent case orchestrates multiple sub-cases
|
|
10
|
+
- Long-running sub-workflow packaged as its own case
|
|
11
|
+
|
|
12
|
+
If sdd.md describes a simple stage-to-stage flow within the same case, do not use this — use regular stages and edges.
|
|
13
|
+
|
|
14
|
+
## Required Fields from sdd.md
|
|
15
|
+
|
|
16
|
+
| Field | Source | Notes |
|
|
17
|
+
|-------|--------|-------|
|
|
18
|
+
| `display-name` | Case Reference "Name" | |
|
|
19
|
+
| `name` | Case Reference "Name" | |
|
|
20
|
+
| `folder-path` | Case Reference "Folder" | |
|
|
21
|
+
| `task-type-id` | Registry resolution (below) | `entityKey` in `caseManagement-index.json` |
|
|
22
|
+
| `inputs` | sdd.md task data mapping | Passed as case-instance inputs to the sub-case |
|
|
23
|
+
| `outputs` | Discovered via `tasks describe` | Returned when the sub-case completes |
|
|
24
|
+
| `runOnlyOnce` | sdd.md (default `true`) | |
|
|
25
|
+
| `isRequired` | sdd.md (default `true`) | |
|
|
26
|
+
|
|
27
|
+
## Registry Resolution
|
|
28
|
+
|
|
29
|
+
1. **Primary cache file:** `caseManagement-index.json`.
|
|
30
|
+
2. **Identifier field:** `entityKey`.
|
|
31
|
+
3. Match by exact name + folder.
|
|
32
|
+
4. Discover inputs/outputs via `tasks describe` — see [bindings-and-expressions.md § Discovering output names](../../../bindings-and-expressions.md).
|
|
33
|
+
|
|
34
|
+
## Unresolved Fallback
|
|
35
|
+
|
|
36
|
+
Mark `<UNRESOLVED: case "<name>" in folder "<folder>" not found in caseManagement-index.json>`. Omit `inputs:` and `outputs:`; capture intended wiring in a fenced ```` ```text ```` code block (not `#` prefixed — it renders as markdown H1). Execution creates a placeholder task — see [placeholder-tasks.md](../../../placeholder-tasks.md). Note: if the referenced sub-case has not been deployed yet, it will not appear in the registry — the user must deploy it before the parent case can reference it.
|
|
37
|
+
|
|
38
|
+
## tasks.md Entry Format
|
|
39
|
+
|
|
40
|
+
```markdown
|
|
41
|
+
## T<n>: Add case-management task "<display-name>" to "<stage>"
|
|
42
|
+
- taskTypeId: <entityKey>
|
|
43
|
+
- folder-path: "<folder>"
|
|
44
|
+
- inputs:
|
|
45
|
+
- <input_name> = "<value>"
|
|
46
|
+
- outputs: <out1>, <out2>
|
|
47
|
+
- runOnlyOnce: true
|
|
48
|
+
- isRequired: true
|
|
49
|
+
- order: after T<m>
|
|
50
|
+
- lane: <n> # FE layout; increment per task. Within `runs-sequentially` group, parallel members share a lane (semantic).
|
|
51
|
+
- verify: Confirm Result: Success, capture TaskId
|
|
52
|
+
```
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
# connector-activity task — Implementation (Direct JSON Write)
|
|
2
|
+
|
|
3
|
+
> **Node `type` value: `execute-connector-activity` (schema-kebab).** NEVER write `connector-activity` (plugin folder name) or `connector_activity` into the JSON `type` field. The CLI `--type connector-activity` flag is a separate concept — used only when calling `uip maestro case tasks describe` (legacy) or `uip maestro case spec --type activity` (current). See SKILL.md Rule 16 + Plugin Index.
|
|
4
|
+
|
|
5
|
+
> **Phase split.** Runs across both phases. Phase 2 writes `data.typeId` + `data.connectionId` only — no `case spec` call in Phase 2. Phase 3 calls `case spec --input-details` once, reads the populated `caseShape`, and mints the task. See [`../../../phased-execution.md`](../../../phased-execution.md).
|
|
6
|
+
|
|
7
|
+
Fetch the populated connector task scaffold via `uip maestro case spec --input-details`, then drop it into `caseplan.json`. Field discovery and reference resolution are done during [planning](planning.md) — implementation reads resolved values from `tasks.md` and threads them through the spec call.
|
|
8
|
+
|
|
9
|
+
## Prerequisites from Planning
|
|
10
|
+
|
|
11
|
+
The `tasks.md` entry provides:
|
|
12
|
+
|
|
13
|
+
| Field | Example |
|
|
14
|
+
|---|---|
|
|
15
|
+
| `type-id` | `"c7ce0a96-2091-3d94-b16f-706ebb1eb351"` |
|
|
16
|
+
| `connection-id` | `"bc095c1f-671f-4669-8634-b7164fa46aa0"` |
|
|
17
|
+
| `connector-key` | `"uipath-microsoft-outlook365"` |
|
|
18
|
+
| `object-name` | `"send-mail-v2"` |
|
|
19
|
+
| `input-values` | `{"bodyParameters":{"message.toRecipients":"user@example.com"},"queryParameters":{...}}` (already resolved IDs, dotted body keys) |
|
|
20
|
+
| `filter` (optional) | `{"groupOperator":"And","filters":[...]}` (FilterTree object — present only when planning Step 7 authored a filter) |
|
|
21
|
+
| `isRequired` | `true` |
|
|
22
|
+
| `runOnlyOnce` | `false` |
|
|
23
|
+
|
|
24
|
+
## Configuration Workflow
|
|
25
|
+
|
|
26
|
+
### Step 1 — Build `--input-details` JSON from tasks.md
|
|
27
|
+
|
|
28
|
+
Construct the input-details object from `tasks.md`, rewriting every value containing a reference to its canonical sink form (connector body fields use `=js:(<expr>)`):
|
|
29
|
+
|
|
30
|
+
```jsonc
|
|
31
|
+
{
|
|
32
|
+
// bodyParameters from tasks.md input-values.bodyParameters (dotted keys preserved;
|
|
33
|
+
// each value rewritten to canonical form per Step 1.a)
|
|
34
|
+
"bodyParameters": "<input-values.bodyParameters with values rewritten>",
|
|
35
|
+
// queryParameters from tasks.md input-values.queryParameters (same rewrite rule)
|
|
36
|
+
"queryParameters": "<input-values.queryParameters with values rewritten>",
|
|
37
|
+
// pathParameters from tasks.md input-values.pathParameters (same rewrite rule)
|
|
38
|
+
"pathParameters": "<input-values.pathParameters with values rewritten>",
|
|
39
|
+
// filter — FilterTree object from tasks.md (or omit when not authored)
|
|
40
|
+
"filter": "<filter from tasks.md or omit>"
|
|
41
|
+
}
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Synthetic HTTP request activities (`object-name === "httpRequest"` / `"http-request"`) reject `bodyParameters` — pass HTTP body via `queryParameters` instead, or omit. The CLI rejects bodyParameters at validation time.
|
|
45
|
+
|
|
46
|
+
Full input-details contract: [`case-spec-input-details.md`](../../../case-spec-input-details.md).
|
|
47
|
+
|
|
48
|
+
#### Step 1.a — Rewrite references to canonical sink form
|
|
49
|
+
|
|
50
|
+
Connector body sinks (`bodyParameters`, `queryParameters`, `pathParameters`) require `=js:(...)` wrap for every reference. Resolve cross-task refs first, then apply the wrap:
|
|
51
|
+
|
|
52
|
+
| Value in tasks.md | Value passed to CLI |
|
|
53
|
+
|---|---|
|
|
54
|
+
| `"=vars.X"` | `"=js:(vars.X)"` |
|
|
55
|
+
| `"=metadata.X"` | `"=js:(metadata.X)"` |
|
|
56
|
+
| `"=bindings.X"` | `"=js:(bindings.X)"` |
|
|
57
|
+
| `"=<other-prefix>.X"` (e.g. `=response.X`, `=Error.X`, `=datafabric.X`, `=orchestrator.JobAttachments[0]`) | `"=js:(<other-prefix>.X)"` — strip leading `=`, wrap in `=js:(...)` |
|
|
58
|
+
| `"<- "Stage"."Task".out"` | resolve to `"=vars.<outputVar>"` → `"=js:(vars.<outputVar>)"` |
|
|
59
|
+
| `"=js:(<expr>)"` (pre-wrapped operator expression) | pass-through unchanged |
|
|
60
|
+
| `"<literal value>"` (no leading `=`) | pass-through unchanged |
|
|
61
|
+
|
|
62
|
+
Full per-sink rule and FE source-of-truth: [bindings-and-expressions.md § Canonical form per sink](../../../bindings-and-expressions.md#canonical-form-per-sink).
|
|
63
|
+
|
|
64
|
+
#### Step 1.b — Array-of-object body fields: pre-input scan (MANDATORY)
|
|
65
|
+
|
|
66
|
+
Before passing `bodyParameters` to the CLI, scan for keys containing literal `[*]`. Halt if any are present — the binding is malformed.
|
|
67
|
+
|
|
68
|
+
The `[*]` in `inputs.bodyFields[].name` is **schema notation** (JSONPath-style "array of") for documentation only — NOT a valid input key. Array-of-object body fields MUST be expressed in tasks.md `input-values.bodyParameters` as real JSON arrays under the parent name (see [`planning.md` § Array-of-object body fields](planning.md)). The planner is responsible for emitting the correct shape; this step is a safety net.
|
|
69
|
+
|
|
70
|
+
**Halt condition.** If any `bodyParameters` key contains literal `[*]`, halt with explicit error:
|
|
71
|
+
```
|
|
72
|
+
ERROR: bodyParameters key '<key>' contains literal '[*]'.
|
|
73
|
+
Spec field was: <spec field name>. Expected: '<parent>' with a real JSON array value.
|
|
74
|
+
Fix in tasks.md input-values.bodyParameters; do NOT pass [*] keys to the CLI.
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
The CLI accepts the literal `field[*]` key (well-formed JSON) and validate passes, but runtime APIs reject with HTTP 400 `UnableToDeserializePostBody`. The check repeats as a post-write verification — see [Step 8 Post-Write Verification](#post-write-verification) item #11.
|
|
78
|
+
|
|
79
|
+
### Step 2 — Run `case spec` with input-details
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
uip maestro case spec --type activity \
|
|
83
|
+
--activity-type-id "<type-id>" \
|
|
84
|
+
--connection-id "<connection-id>" \
|
|
85
|
+
--input-details "<json from Step 1>" \
|
|
86
|
+
--output json
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
The Phase 3 call omits `--skip-case-shape` (incompatible with `--input-details` — see [case-spec-input-details.md § Validation rules](../../../case-spec-input-details.md#validation-rules-invalidinputdetailserror-on-violation)). The CLI returns the full `caseShape` populated with values from `--input-details`.
|
|
90
|
+
|
|
91
|
+
Save the response. The interesting parts:
|
|
92
|
+
|
|
93
|
+
> **`case spec --output json` returns PascalCase keys.** The `.Data.*` read paths below reflect that (`.Data.CaseShape.Context`, not `.Data.caseShape.context`). A camelCase jq path returns `null`. The spliced subtree is re-cased to camelCase on the way to disk — see Step 6.
|
|
94
|
+
|
|
95
|
+
| Variable | Source |
|
|
96
|
+
|---|---|
|
|
97
|
+
| `spec.identity` | `.Data.Identity` — connectorKey, connectorName, connectorVersion, objectName, objectDisplayName, full TypeCache entry |
|
|
98
|
+
| `spec.connection.folderKey` | `.Data.Connection.FolderKey` — needed for the FolderKey binding |
|
|
99
|
+
| `spec.caseShape.inputs[]` | `.Data.CaseShape.Inputs` — pre-filled body / queryParameters / pathParameters / file inputs |
|
|
100
|
+
| `spec.caseShape.outputs[]` | `.Data.CaseShape.Outputs` — response (JSON Schema body) / curated / Error |
|
|
101
|
+
| `spec.caseShape.context[]` | `.Data.CaseShape.Context` — 8-entry FE-canonical array, with `{{CONN_BINDING_ID}}` / `{{FOLDER_BINDING_ID}}` placeholders |
|
|
102
|
+
| `spec.diagnostics.fallbacks[]` | `.Data.Diagnostics.Fallbacks` — surface to `build-issues.md` when non-empty. |
|
|
103
|
+
|
|
104
|
+
> **Each connector task runs its own `case spec`.** Even when two tasks share the same `connection-id`, `caseShape` is task-shape-specific (different `objectName`, `httpMethod`, `inputs`, `outputs`). Never reuse another task's spec output.
|
|
105
|
+
|
|
106
|
+
### Step 3 — Required-field validation (HARD GATE)
|
|
107
|
+
|
|
108
|
+
This is a hard gate — do NOT proceed to write the task until every required field has a non-empty value in the `caseShape.inputs[].body`.
|
|
109
|
+
|
|
110
|
+
1. From the lean planning-phase spec (run with `--skip-case-shape` in [planning](planning.md) Step 3), collect `inputs.*[?required]`.
|
|
111
|
+
2. After Step 2's call (with the populated caseShape), scan `caseShape.inputs[].body` and verify every required field has a value.
|
|
112
|
+
3. If any required field is missing, **AskUserQuestion** — list the missing fields with their `displayName` and what kind of value is expected. Free-form input is appropriate when the value space is open-ended (channel names, message bodies, IDs); when a finite set of sensible values exists (e.g. an `enum`), present them via AskUserQuestion per the dropdown rule in [SKILL.md](../../../../SKILL.md).
|
|
113
|
+
4. Re-run Step 2 after collecting the missing values, OR fall back to placeholder task per Rule 8 if user declines to provide a value.
|
|
114
|
+
|
|
115
|
+
> **Do NOT guess or skip missing required fields.** A missing required field will cause a runtime error. It is always better to ask than to assume.
|
|
116
|
+
|
|
117
|
+
### Step 4 — FilterBuilder detection (when planning authored a filter)
|
|
118
|
+
|
|
119
|
+
When `tasks.md` carries a `filter:` object, the activity's operation must declare a `FilterBuilder` design parameter. The CLI rejects the filter at configure time when no FilterBuilder param exists; the planning step 7 should already have caught this by checking `spec.filter` presence, but verify here as a safety net.
|
|
120
|
+
|
|
121
|
+
- `spec.filter` present (with `builder: "ceql"` and `fields[]`) → CEQL filter is supported. Pass the structured tree under `--input-details.filter`. The CLI compiles it into both halves of the contract: the runtime CEQL string at `caseShape.inputs[name="queryParameters"].body.<filterParamName>` AND the design-time tree under `essentialConfiguration.savedFilterTrees.<filterParamName>` (inside the `=jsonString:` blob in `caseShape.context[name="metadata"].body.activityPropertyConfiguration.configuration`).
|
|
122
|
+
- **Do NOT pass a raw CEQL string under `queryParameters.where`** (or whichever connector-specific name) when authoring a filter. The CLI rejects this; even if it didn't, the design-time tree would be empty and Studio Web would render the filter widget as `undefined` when the activity is reopened.
|
|
123
|
+
- Tree shape, operator table, examples → [/uipath:uipath-platform — Filter Trees (CEQL)](../../../../../uipath-platform/references/integration-service/activities.md#filter-trees-ceql).
|
|
124
|
+
|
|
125
|
+
If the operation has no FilterBuilder parameter, server-side filtering is not supported — the spec will return `filter: undefined`. Filter downstream (post-execution) instead.
|
|
126
|
+
|
|
127
|
+
### Step 5 — Mint binding IDs
|
|
128
|
+
|
|
129
|
+
Mint two prefixed IDs for the connection + folder bindings:
|
|
130
|
+
|
|
131
|
+
| Binding | ID format |
|
|
132
|
+
|---|---|
|
|
133
|
+
| Connection binding | `b` + 8 alphanumeric chars (e.g. `bA1B2C3D4`) |
|
|
134
|
+
| Folder binding | `b` + 8 alphanumeric chars (different from connection binding) |
|
|
135
|
+
|
|
136
|
+
These ids are **picked inline by the agent** (per SKILL.md Rule 13) — no subprocess.
|
|
137
|
+
|
|
138
|
+
Save them as `<connBindingId>` and `<folderBindingId>` for Step 6.
|
|
139
|
+
|
|
140
|
+
### Step 6 — Substitute binding placeholders in `caseShape.context`
|
|
141
|
+
|
|
142
|
+
`caseShape.context[]` carries placeholders at the spec output:
|
|
143
|
+
|
|
144
|
+
```jsonc
|
|
145
|
+
[
|
|
146
|
+
{ "name": "connection", "type": "string", "value": "=bindings.{{CONN_BINDING_ID}}" },
|
|
147
|
+
{ "name": "folderKey", "type": "string", "value": "=bindings.{{FOLDER_BINDING_ID}}" }, // present only when spec.connection.folderKey !== null
|
|
148
|
+
// …other entries (connectorKey, resourceKey, objectName, method, path, metadata) — values are fully resolved already
|
|
149
|
+
]
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
Replace the two placeholders with the minted ids:
|
|
153
|
+
|
|
154
|
+
- `{{CONN_BINDING_ID}}` → `<connBindingId>` (Step 5)
|
|
155
|
+
- `{{FOLDER_BINDING_ID}}` → `<folderBindingId>` (Step 5; entry only present when folderKey was non-null)
|
|
156
|
+
|
|
157
|
+
The **entire** `caseShape.context[]` array, and every nested subtree under it, is CLI-authoritative. The ONLY permitted modifications are the placeholder substitutions in the table above and the key-casing normalization below. **Every other key — current or future, top-level or nested — must be copied from the spec output, regardless of what those keys are or how many there are.** The doc cannot enumerate them all; the CLI's emitted shape is the contract. Composing or reconstructing any subtree of `caseShape.context` from agent memory is FORBIDDEN.
|
|
158
|
+
|
|
159
|
+
> **Mechanical contract.** At gather time (Step 2), persist the full `case spec` response to `tasks/spec-cache.<elementId>.json` (one file per task). At write time, **Read that file and splice `Data.caseShape.context` verbatim** into `data.context`, then re-case keys (next paragraph). The skill is a substituter, not a composer — the only edits between Read and Write are the placeholder substitutions above and that keys-only re-casing. **Never retype `context` content from agent reasoning.**
|
|
160
|
+
|
|
161
|
+
> **Normalize key casing (PascalCase → camelCase).** `case spec --output json` emits PascalCase keys (`Name`/`Type`/`Value`/`Target`/`Body`/`DisplayName`/`Source`; nested `ActivityPropertyConfiguration`/`UiPathActivityTypeId`/…; response-schema `Properties`/`Definitions`/`Title`/`Items`); the caseplan disk schema is camelCase. After splicing `context` / `inputs` / `outputs` (and their nested `body`), lower-case the first character of every object **key**, preserving the rest (`DisplayName`→`displayName`, `UiPathActivityTypeId`→`uiPathActivityTypeId`). **Keys only — never values:** `"name": "Subject"`, `"source": "=response.Subject"`, and `=jsonString:` / `=js:` blobs are case-sensitive identifiers and stay verbatim. Full rule + rationale: [connector-trigger-common.md § Normalize key casing](../../../connector-trigger-common.md#normalize-key-casing-pascalcase--camelcase).
|
|
162
|
+
|
|
163
|
+
### Step 7 — Mint `var` / `id` / `elementId` on inputs and outputs
|
|
164
|
+
|
|
165
|
+
Generate task ID (`t` + 8 alphanumeric chars) and elementId (`<stageId>-<taskId>`).
|
|
166
|
+
|
|
167
|
+
For each entry in `caseShape.inputs[]`:
|
|
168
|
+
- `var` = `v` + 8 alphanumeric chars (unique across the case — see uniqueness rule in [global-vars/impl-json.md](../../variables/global-vars/impl-json.md))
|
|
169
|
+
- `id` = same as `var`
|
|
170
|
+
- `elementId` = the task's elementId
|
|
171
|
+
|
|
172
|
+
For each entry in `caseShape.outputs[]`:
|
|
173
|
+
- Same fields, plus the **dedup rule**: `caseShape.outputs[]` returns generic names like `response` and `error` for every connector task. When multiple connector tasks exist in the same case, these collide. Apply the [uniqueness rule](../../variables/global-vars/impl-json.md#uniqueness-rule): collect all existing output `var` values across every task already in `caseplan.json`; if a `var` already exists, append a counter suffix starting at 2 (e.g., `response` → `response2`, `error` → `error2`). Update `var`, `id`, `value`, and `target` (as `=<new var>`) with the suffixed name. `name`, `displayName`, and `source` stay unchanged.
|
|
174
|
+
|
|
175
|
+
**Output binding.** Apply [io-binding/impl-json.md § Output Binding Shapes](../../variables/io-binding/impl-json.md#output-binding-shapes). The Step 0 schema for this plugin is `caseShape.outputs[]` from `case spec` (Step 2 above). The dedup rule above applies first; output binding consumes the deduped names.
|
|
176
|
+
|
|
177
|
+
#### Step 7.a — Multipart file inputs
|
|
178
|
+
|
|
179
|
+
When `caseShape.inputs[]` contains an entry with `target: "file"` (multipart sink — emitted by `case spec` for activities whose IS spec has `multipart.parameters[].isFile === true`, e.g., Outlook Send Email):
|
|
180
|
+
|
|
181
|
+
- `target` is a **literal string** `"file"` (the IS request-shape multipart sink name), NOT an expression. Preserve verbatim — do not prepend `=`.
|
|
182
|
+
- `value` MUST be `"=vars.<fileVarId>"` (whole-record reference). The FE picker is `selectionOnly` for file inputs (`IntsvcActivityPropertiesUtils.tsx:272-279`) — only a file-typed case Variable can be wired; freeform expressions are rejected at picker time. Sub-field references (`=vars.<id>.FullName`) are NOT valid for file inputs — the runtime adapter expects the full JobAttachment record to dereference.
|
|
183
|
+
- No `source`, no `body`, no `displayName` on the multipart file input entry — `case spec` returns just `{name, type, target}`; mint `var` / `id` / `elementId` / `value` per Step 7 and stop.
|
|
184
|
+
- The runtime adapter dereferences `=vars.<fileVarId>` to the JobAttachment record at execution time and streams bytes from the JobAttachment store into the multipart `file` part of the outbound HTTP request.
|
|
185
|
+
|
|
186
|
+
### Step 8 — Build `data` and write to caseplan.json
|
|
187
|
+
|
|
188
|
+
Generate the task skeleton:
|
|
189
|
+
|
|
190
|
+
```json
|
|
191
|
+
{
|
|
192
|
+
"id": "<taskId>",
|
|
193
|
+
"type": "execute-connector-activity",
|
|
194
|
+
"displayName": "<display-name from tasks.md>",
|
|
195
|
+
"elementId": "<stageId>-<taskId>",
|
|
196
|
+
"isRequired": "<from tasks.md, default true>",
|
|
197
|
+
"shouldRunOnlyOnce": "<from tasks.md runOnlyOnce, default false>",
|
|
198
|
+
"data": {
|
|
199
|
+
"serviceType": "Intsvc.ActivityExecution",
|
|
200
|
+
"context": "<caseShape.context — placeholders substituted in Step 6>",
|
|
201
|
+
"inputs": "<caseShape.inputs — var/id/elementId minted in Step 7>",
|
|
202
|
+
"outputs": "<caseShape.outputs — var/id/elementId minted, dedup applied in Step 7>",
|
|
203
|
+
"bindings": []
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
Append the task to the target stage's `tasks[]` array. Default: own task set (one task per lane). **Exception:** if this task is a parallel member of a `runs-sequentially` group, push into the shared lane of that group (shared lane = parallel siblings inside the sequence, semantic).
|
|
209
|
+
|
|
210
|
+
### Step 9 — Append root-level bindings
|
|
211
|
+
|
|
212
|
+
Read [bindings/impl-json.md § Full binding shape — connector tasks](../../variables/bindings/impl-json.md) for the canonical 7-field shape on each entry (all required — omitting any causes Studio Web render failure). Per-task value sources:
|
|
213
|
+
|
|
214
|
+
- `<connection-id>` (drives `resourceKey` on both bindings + ConnectionBinding `default`): from this task's `tasks.md` entry
|
|
215
|
+
- `<connectorKey>` (drives ConnectionBinding templated `name`): from `tasks.md`
|
|
216
|
+
- `<folderKey>` (FolderKey binding `default`): from `spec.connection.folderKey` in Step 2 response. **Omit the FolderKey binding entirely when this value is null** (matches `binding-builder.ts:73-83`).
|
|
217
|
+
- Binding IDs `<connBindingId>` / `<folderBindingId>` come from Step 5.
|
|
218
|
+
|
|
219
|
+
Dedup per [§ Deduplication](../../variables/bindings/impl-json.md). Source-of-truth code: `binding-builder.ts` in `uipcli-case-validate/packages/case-tool/src/utils/`.
|
|
220
|
+
|
|
221
|
+
### Step 10 — Sync IS connection cache
|
|
222
|
+
|
|
223
|
+
After writing root bindings, populate IS connection cache per [bindings-v2-sync.md § Populate IS connection cache](../../../bindings-v2-sync.md). Skip if `case spec` failed.
|
|
224
|
+
|
|
225
|
+
> **`bindings_v2.json` regeneration is deferred** — runs once at end of Step 9.7 in [implementation.md](../../../implementation.md) (after all connector tasks), not per-task. See [bindings-v2-sync.md § When to Run](../../../bindings-v2-sync.md).
|
|
226
|
+
|
|
227
|
+
## Graceful degradation
|
|
228
|
+
|
|
229
|
+
**Always create the task** — even on errors. Start with `data: { "serviceType": "Intsvc.ActivityExecution" }` and progressively populate.
|
|
230
|
+
|
|
231
|
+
| Step failed | What gets populated | Log |
|
|
232
|
+
|---|---|---|
|
|
233
|
+
| `case spec` fails | Phase 2 shape preserved — `data.typeId` + `data.connectionId` only, no Phase 3 inputs/outputs/context enrichment. Distinct from a Rule 8 placeholder (`data: {}`) — typeId/connectionId are resolved, only the spec-driven enrichment is skipped. Log per Rule 8 reporting | `[SKIPPED] case spec failed — typeId/connectionId preserved, no enrichment` |
|
|
234
|
+
| Required-field gate fails (user declines) | Placeholder per Rule 8 OR re-prompt | `[SKIPPED] required field <name> missing — placeholder task per Rule 8` |
|
|
235
|
+
| All succeed | Full population per Steps 5-10 including bindings_v2 sync | — |
|
|
236
|
+
|
|
237
|
+
All issues appended to the shared issue list per [logging/impl-json.md](../../logging/impl-json.md).
|
|
238
|
+
|
|
239
|
+
## Post-Write Verification
|
|
240
|
+
|
|
241
|
+
1. `type` is `"execute-connector-activity"`
|
|
242
|
+
2. `data.serviceType` is `"Intsvc.ActivityExecution"`
|
|
243
|
+
3. `data.context[]` has: `connectorKey`, `connection`, `resourceKey`, `folderKey` (when applicable), `objectName`, `method`, `path`, `metadata` — but NOT `operation` or `_label`
|
|
244
|
+
4. `data.context[name="connection"].value` is `=bindings.<connBindingId>` (substituted from `{{CONN_BINDING_ID}}`)
|
|
245
|
+
5. `data.context[name="folderKey"].value` is `=bindings.<folderBindingId>` (substituted from `{{FOLDER_BINDING_ID}}`); entry absent when `spec.connection.folderKey` was null
|
|
246
|
+
6. `data.context[name="metadata"].body.activityPropertyConfiguration.configuration` is a `=jsonString:…` string (CLI-produced; do not modify)
|
|
247
|
+
7. Root bindings exist for ConnectionId + folderKey with the minted ids
|
|
248
|
+
8. `data.bindings[]` is empty `[]`
|
|
249
|
+
9. Each entry in `data.inputs[]` and `data.outputs[]` has `var` / `id` / `elementId` minted (uniqueness rule applied for outputs)
|
|
250
|
+
10. `bindings_v2.json` `resources` array matches the schema-appropriate bindings array (v19: `root.data.uipath.bindings[]`; v20: top-level `bindings[]`) after the deferred sync
|
|
251
|
+
11. **No literal `[*]` keys in `data.inputs[name="body"].body` (or any input body).** Scan recursively (JSON.stringify + regex `"[^"]*\\[\\*\\][^"]*"\\s*:`). If any key contains literal `[*]`, halt — Step 1.b translation was skipped or incomplete. The body MUST use real arrays under parent names (e.g., `"toRecipients": [{...}]`), never `"toRecipients[*]": {...}`. Validate passes regardless; runtime APIs reject with HTTP 400.
|
|
252
|
+
|
|
253
|
+
## What NOT to Do
|
|
254
|
+
|
|
255
|
+
- **Do NOT add `operation` or `_label` to `data.context[]`.** The FE only adds `operation` for triggers; activity context must not have it.
|
|
256
|
+
- **Do NOT add `designTimeMetadata` to the metadata body.** The FE does not include it for case management tasks.
|
|
257
|
+
- **Do NOT add top-level `errorState` to the metadata body.** Error state belongs inside `activityPropertyConfiguration.errorState` only — that's already the shape in `caseShape.context`.
|
|
258
|
+
- **Do NOT copy root bindings into `data.bindings[]`.** Leave it as `[]`. The FE crashes if activity tasks have task-level binding copies.
|
|
259
|
+
- **Do NOT reconstruct `caseShape.context` (or any nested subtree) from agent memory.** Printing the keys of `context` and later re-emitting from memory drops any subtree not fully expanded in context. Persist the full `case spec` response to `tasks/spec-cache.<elementId>.json` at gather time; at Write time, Read it and splice `Data.caseShape.context` verbatim. See Step 6.
|
|
260
|
+
- **Do NOT write the spec's PascalCase keys to disk verbatim.** `case spec` emits PascalCase; the caseplan disk schema is camelCase. After splicing, lower-case the first character of every object key in the spec subtree — keys only, never values. See Step 6 and [connector-trigger-common.md § Normalize key casing](../../../connector-trigger-common.md#normalize-key-casing-pascalcase--camelcase).
|
|
261
|
+
- **Do NOT pass a raw CEQL string under `queryParameters.where`** (or whichever connector-specific name) when authoring a filter. Pass the structured tree under `filter:` in tasks.md and let the CLI compile both halves.
|
|
262
|
+
- **Do NOT pass `ceqlExpression` directly under `--input-details`.** Derived only.
|
|
263
|
+
- **Do NOT pass `bodyParameters` for synthetic HTTP request activities.** Use `queryParameters` instead, or omit.
|
|
264
|
+
- **Do NOT pass literal `field[*]` keys in `bodyParameters`.** The `[*]` in `inputs.bodyFields[].name` is JSONPath-style schema notation meaning "array of"; it is NOT a valid input key. Express array-of-object body fields as real JSON arrays under the parent name (see [planning.md](planning.md)). Pre-input scan in [Step 1.b](#step-1b--array-of-object-body-fields-pre-input-scan-mandatory) halts on any literal `[*]` key.
|
|
265
|
+
- **Do NOT auto-inject `entryConditions`.** Step 10 in [implementation.md](../../../implementation.md) handles them — injecting here creates duplicates.
|
|
266
|
+
- **Never reuse a reference ID from a prior case or session.** Reference IDs (e.g., Jira project keys, Slack channel IDs) are scoped to the authenticated account behind each connection. Always resolve fresh via `uip is resources run list` against the current `--connection-id`. See [/uipath:uipath-platform — reference-resolution.md § Reference IDs Are Connection-Scoped (CRITICAL)](../../../../../uipath-platform/references/integration-service/reference-resolution.md#reference-ids-are-connection-scoped-critical).
|
|
267
|
+
- **Do NOT call legacy `uip maestro case tasks describe` or `uip is resources describe`.** `case spec --input-details` replaces both. The legacy commands still work but produce a different shape that doesn't include `caseShape` / placeholders.
|
|
268
|
+
|
|
269
|
+
## Known Limitations
|
|
270
|
+
|
|
271
|
+
- The CLI-produced `essentialConfiguration` uses `essentialConfiguration` only (not `optionalConfiguration`). Tasks work at runtime (debug/publish) but the FE editor may not render certain fields until the user re-configures the task in the UI. DAP repopulates these on form open. Documented in `~/Documents/knowledge/Skill_CLI/connector/case-spec-fe-discrepancies.md` (CLI-side).
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
# connector-activity task — Planning
|
|
2
|
+
|
|
3
|
+
A connector activity task inside a stage. Calls an external service (Jira, Slack, Salesforce, Gmail, etc.) via UiPath Integration Service.
|
|
4
|
+
|
|
5
|
+
This plugin is **schema-data-driven** — one plugin covers every connector. Connector-specific input shapes are discovered from the `case spec` CLI's normalized output, not baked into this plugin.
|
|
6
|
+
|
|
7
|
+
## When to Use
|
|
8
|
+
|
|
9
|
+
Pick this plugin when the sdd.md describes a task as `CONNECTOR_ACTIVITY` or names a specific external service action (e.g., "send a Slack message", "create a Jira issue", "update Salesforce opportunity").
|
|
10
|
+
|
|
11
|
+
For **connector-based triggers** inside a stage (wait for an external event), use [connector-trigger](../connector-trigger/planning.md).
|
|
12
|
+
|
|
13
|
+
For **case-level event triggers** (outside any stage), use [`plugins/triggers/event/`](../../triggers/event/planning.md).
|
|
14
|
+
|
|
15
|
+
## Resolution Pipeline
|
|
16
|
+
|
|
17
|
+
Run these steps during planning. Each step feeds into the `tasks.md` entry.
|
|
18
|
+
|
|
19
|
+
### 1. Find the connector in TypeCache
|
|
20
|
+
|
|
21
|
+
If `~/.uip/case-resources/typecache-activities-index.json` does not exist, run `uip maestro case registry pull` first (missing file is a precondition failure, not a 0-match — Rule 17 gate does not apply). If still missing after pull, the tenant has no connector activities — emit placeholder per § Unresolved Fallback below.
|
|
22
|
+
|
|
23
|
+
Read `~/.uip/case-resources/typecache-activities-index.json` directly. Match on `displayName` or `connectorKey` + operation description from sdd.md. Record `uiPathActivityTypeId`.
|
|
24
|
+
|
|
25
|
+
### 2. Resolve the connection
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
uip maestro case registry get-connection \
|
|
29
|
+
--type typecache-activities \
|
|
30
|
+
--activity-type-id "<uiPathActivityTypeId>" --output json
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Returns `Entry`, `Config`, and `Connections`.
|
|
34
|
+
|
|
35
|
+
- **Single connection** → use it.
|
|
36
|
+
- **Multiple connections** → **AskUserQuestion** with connection names + "Something else".
|
|
37
|
+
- **Empty `Connections`** → mark `<UNRESOLVED: no IS connection for <connectorKey>>` and omit `input-values:`. Execution creates a placeholder task — see [placeholder-tasks.md](../../../placeholder-tasks.md).
|
|
38
|
+
|
|
39
|
+
Record `connection-id`, `connector-key`, `object-name` from the response.
|
|
40
|
+
|
|
41
|
+
Connection selection rules (default-preference, `--refresh` retry, multi-connection disambiguation, ping verification, BYOA workflow): see [/uipath:uipath-platform — connections.md](../../../../../uipath-platform/references/integration-service/connections.md).
|
|
42
|
+
|
|
43
|
+
### 3. Discover the operation contract via `case spec`
|
|
44
|
+
|
|
45
|
+
One CLI call replaces the legacy `case tasks describe` + `is resources describe` dance:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
uip maestro case spec --type activity \
|
|
49
|
+
--activity-type-id "<uiPathActivityTypeId>" \
|
|
50
|
+
--connection-id "<connection-id>" \
|
|
51
|
+
--skip-case-shape \
|
|
52
|
+
--output json
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
`--skip-case-shape` returns a leaner response (no `caseShape`) — the right size for planning. Phase 3 re-runs the same command without the flag, plus `--input-details`, to mint the populated `caseShape`. See [`case-spec-input-details.md`](../../../case-spec-input-details.md) for the full `--input-details` JSON contract.
|
|
56
|
+
|
|
57
|
+
> **Synthetic HTTP request branch.** When `spec.identity.objectName` is `"httpRequest"` or `"http-request"`, the activity is the synthetic generic-HTTP path — `bodyParameters` is rejected (no curated body schema). Pass HTTP body via `queryParameters` instead, or omit. Spec output reflects this in `inputs.bodyFields = []`.
|
|
58
|
+
|
|
59
|
+
The response carries everything the planning phase needs:
|
|
60
|
+
|
|
61
|
+
| Spec output | What it tells you |
|
|
62
|
+
|---|---|
|
|
63
|
+
| `inputs.bodyFields[]` | Body request fields with `name` (dotted), `dataType`, `required`, `description`, optional `defaultValue` / `enum` / `reference` |
|
|
64
|
+
| `inputs.pathParameters[]`, `inputs.queryParameters[]` | URL-template substitutions and query-string params with the same per-field shape |
|
|
65
|
+
| `inputs.multipart` | `null` for non-multipart; otherwise `{ bodyFieldName, parameters[] }` — multipart upload contract |
|
|
66
|
+
| `outputs.responseFields[]` | Response shape; `[?responseCurated]` are FE-broken-out outputs, `[?primaryKey]` are id fields |
|
|
67
|
+
| `outputs.pagination` | `null` for non-list, `{ maxPageSize: N }` for list operations |
|
|
68
|
+
| `filter` | `undefined` when the activity does NOT support server-side filtering. Present when it does, with `builder: "ceql"` and `fields[]` listing every searchable field |
|
|
69
|
+
| `references[]` | Cross-references (lookups). Each entry includes a pre-built `discoverCommand` runnable string |
|
|
70
|
+
| `diagnostics.fetched` / `fallbacks` | What endpoints succeeded / fell back; surface `fallbacks` to the user when meaningful |
|
|
71
|
+
|
|
72
|
+
### 4. Resolve reference fields
|
|
73
|
+
|
|
74
|
+
Check `inputs.{bodyFields, pathParameters, queryParameters}` for entries with a `reference` object. Each carries a pre-built `discoverCommand`:
|
|
75
|
+
|
|
76
|
+
```jsonc
|
|
77
|
+
"reference": {
|
|
78
|
+
"objectName": "MailFolder",
|
|
79
|
+
"lookupValue": "id",
|
|
80
|
+
"lookupNames": ["displayName"],
|
|
81
|
+
"discoverCommand": "uip is resources run list uipath-microsoft-outlook365 MailFolder --connection-id <id>"
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Run the `discoverCommand` exactly as given. Match the sdd.md value to `lookupNames[0]` in the results. Use the resolved `lookupValue` (the id) in `input-values`.
|
|
86
|
+
|
|
87
|
+
> **Reference IDs are connection-scoped.** Resolve every reference field freshly against the current `--connection-id`, immediately before writing tasks.md. Never reuse an ID resolved against a different connection — silent runtime fault. Full mechanism: [/uipath:uipath-platform — reference-resolution.md § Reference IDs Are Connection-Scoped (CRITICAL)](../../../../../uipath-platform/references/integration-service/reference-resolution.md#reference-ids-are-connection-scoped-critical).
|
|
88
|
+
|
|
89
|
+
> **Paginate when looking up by name.** `execute list` returns one page (up to 1000 items); check `Data.Pagination.HasMore` + `Data.Pagination.NextPageToken`. Re-run with `--query "nextPage=<NextPageToken>"` until found or `HasMore` is `"false"`. Short-circuit on first match.
|
|
90
|
+
|
|
91
|
+
If a reference cannot be resolved, **AskUserQuestion** with the candidates (dropdown when finite set, plus "Something else"). Do not guess.
|
|
92
|
+
|
|
93
|
+
### 5. Validate required fields (HARD GATE)
|
|
94
|
+
|
|
95
|
+
This is a hard gate — do NOT proceed to writing tasks.md until every required field has a value.
|
|
96
|
+
|
|
97
|
+
1. Collect every `inputs.*[?required]` entry from the spec output (across `bodyFields`, `pathParameters`, `queryParameters`).
|
|
98
|
+
2. For each, check whether sdd.md names a value (literal, variable reference, or cross-task output).
|
|
99
|
+
3. If missing and no `defaultValue`, **AskUserQuestion** — list the missing fields with their `displayName` and what kind of value is expected.
|
|
100
|
+
4. Free-form input is appropriate when the value space is open-ended (channel names, message bodies, IDs); when a finite set of sensible values exists (e.g. an `enum`), present them via AskUserQuestion per the dropdown rule in [SKILL.md](../../../../SKILL.md).
|
|
101
|
+
5. Only after all required fields have values, proceed to step 6.
|
|
102
|
+
|
|
103
|
+
> **Do NOT guess or skip missing required fields.** A missing required field will cause a runtime error. It is always better to ask than to assume.
|
|
104
|
+
|
|
105
|
+
### 6. Map SDD inputs to connector fields
|
|
106
|
+
|
|
107
|
+
SDD input names rarely match connector field names exactly. Match each SDD input to a `bodyFields`/`pathParameters`/`queryParameters` entry by comparing the SDD field name against the `displayName` (or `name`) from Step 3.
|
|
108
|
+
|
|
109
|
+
For each required field in spec.inputs.*, there must be a matching SDD input. If a required field has no match, **AskUserQuestion** — never leave required fields unmapped.
|
|
110
|
+
|
|
111
|
+
Values can be:
|
|
112
|
+
- **Static literals** — `"Payment__c"`, `"Text"`, `42`
|
|
113
|
+
- **Resolved reference IDs** — from Step 4
|
|
114
|
+
- **Case variable references** — `=vars.X` (impl wraps as `=js:(vars.X)` for the connector body sink before passing to the CLI)
|
|
115
|
+
- **Metadata references** — `=metadata.X` (impl wraps as `=js:(metadata.X)`)
|
|
116
|
+
- **Pre-wrapped operator expressions** — `=js:(vars.amount > 5000)` (already canonical — pass-through)
|
|
117
|
+
- **Cross-task refs** — `<- "Stage"."Task".output` (impl resolves to `=vars.<outputVar>` then wraps)
|
|
118
|
+
|
|
119
|
+
> **tasks.md carries SDD-natural form.** The implementation step (Step 9.7 of connector-activity impl) rewrites every reference to its canonical sink form when constructing `--input-details`. Connector body sinks use `=js:(<expr>)`. Full rule: [bindings-and-expressions.md § Canonical form per sink](../../../../bindings-and-expressions.md#canonical-form-per-sink).
|
|
120
|
+
|
|
121
|
+
### 7. Optional — author a server-side filter
|
|
122
|
+
|
|
123
|
+
If `spec.filter` is present (i.e. the operation declares a `FilterBuilder` parameter and supports CEQL), the user can author a filter tree. If `spec.filter` is `undefined`, server-side filtering is not supported on this operation — filter downstream (post-execution) instead.
|
|
124
|
+
|
|
125
|
+
Filter tree shape, operator table, anti-patterns, worked examples: [/uipath:uipath-platform — Filter Trees (CEQL)](../../../../../uipath-platform/references/integration-service/activities.md#filter-trees-ceql). Same shape applies to triggers (compiler differs — JMESPath instead of CEQL).
|
|
126
|
+
|
|
127
|
+
The filter tree goes into `tasks.md` under `filter:` as a literal JSON object — Phase 3 passes it to `case spec --input-details`. Do NOT pass a raw CEQL string under `queryParameters.where` (or whichever connector-specific name) when authoring a filter — case-tool rejects this at configure time, and the round-trip from Studio Web breaks.
|
|
128
|
+
|
|
129
|
+
### 8. Build input-values
|
|
130
|
+
|
|
131
|
+
Using the mapped fields from Step 6, build the `input-values` JSON with dot-path field names from `inputs.bodyFields[].name`:
|
|
132
|
+
|
|
133
|
+
```json
|
|
134
|
+
{
|
|
135
|
+
"bodyParameters": {"message.toRecipients": "=vars.managerEmail", "message.subject": "=vars.caseId", "message.body.content": "=vars.description", "message.body.contentType": "Text"},
|
|
136
|
+
"queryParameters": {"limit": 50},
|
|
137
|
+
"pathParameters": {"id": "AAMkAGI..."}
|
|
138
|
+
}
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Dotted keys (`message.body.content`) get nested into structured objects via `nestDottedKeys` at Phase 3 mint time — the planner just records the dotted form.
|
|
142
|
+
|
|
143
|
+
#### Array-of-object body fields — SDD authors business shape; planner translates to wire shape
|
|
144
|
+
|
|
145
|
+
When `inputs.bodyFields[].name` contains `[*]` (e.g. `toRecipients[*].emailAddress.address`, `attachments[*]`, `blocks[*].text`), the `[*]` is **schema notation** meaning "array of" — borrowed from JSONPath. The SDD describes the input at a **business level**; the planner translates to wire shape using the spec's flat field-name metadata.
|
|
146
|
+
|
|
147
|
+
**Translation algorithm.** Group spec body fields by parent (the prefix before `[*]`). For each parent:
|
|
148
|
+
|
|
149
|
+
| Spec — fields with `[*]` for this parent | SDD value form | Planner output (wire shape into `tasks.md input-values.bodyParameters[<parent>]`) |
|
|
150
|
+
|---|---|---|
|
|
151
|
+
| Exactly one sub-field `<parent>[*].<leaf>` of `dataType: <T>` | List of scalars matching `<T>` (e.g. `["a@x", "b@y"]`) | `[nestUnder(<leaf>, v) for v in sdd_value]` — each scalar becomes `{<leaf nested>: v}` |
|
|
152
|
+
| One or more sub-fields | List of objects already matching the element shape (e.g. `[{"emailAddress":{"address":"a@x"}}]`) | Pass through unchanged |
|
|
153
|
+
| Two or more sub-fields under the same parent | List of scalars | **Halt + AskUserQuestion** — scalars are ambiguous (which sub-field?). Ask user for object list. |
|
|
154
|
+
| Any | Single scalar (not a list) | **Halt + AskUserQuestion** — confirm whether user meant single-element list |
|
|
155
|
+
|
|
156
|
+
**Worked example — Outlook `Message`:**
|
|
157
|
+
|
|
158
|
+
Spec exposes `toRecipients[*].emailAddress.address` (one sub-field, dataType `string`) and `bccRecipients[*].emailAddress.address` (same shape). SDD:
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
| toRecipients | Array of string | ["a@x"] |
|
|
162
|
+
| bccRecipients | Array of string | ["b@x", "c@x"] |
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
Planner emits to `tasks.md input-values.bodyParameters`:
|
|
166
|
+
|
|
167
|
+
```json
|
|
168
|
+
{
|
|
169
|
+
"toRecipients": [{"emailAddress":{"address":"a@x"}}],
|
|
170
|
+
"bccRecipients": [{"emailAddress":{"address":"b@x"}}, {"emailAddress":{"address":"c@x"}}]
|
|
171
|
+
}
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
**Never** emit a key with literal `[*]` in `bodyParameters`. The CLI accepts it (well-formed JSON) and validate passes; runtime APIs (Microsoft Graph, Slack, etc.) reject with HTTP 400 `UnableToDeserializePostBody`. Pre-input scan in [`impl-json.md` § Step 1.b](impl-json.md#step-1b--array-of-object-body-fields-pre-input-scan-mandatory) halts on any literal `[*]` key.
|
|
175
|
+
|
|
176
|
+
## tasks.md Entry Format
|
|
177
|
+
|
|
178
|
+
```markdown
|
|
179
|
+
## T<n>: Add connector-activity task "<display-name>" to "<stage>"
|
|
180
|
+
- type-id: <uiPathActivityTypeId>
|
|
181
|
+
- connection-id: <connection-uuid>
|
|
182
|
+
- connector-key: <connectorKey>
|
|
183
|
+
- object-name: <objectName>
|
|
184
|
+
- input-values: {"bodyParameters":{...},"queryParameters":{...},"pathParameters":{...}}
|
|
185
|
+
- filter: {"groupOperator":"And","index":0,"uuId":null,"filters":[{"id":"Status","operator":"Equals","value":{"isLiteral":true,"rawString":"\"Active\"","value":"Active"},"uiId":null}]}
|
|
186
|
+
- isRequired: true
|
|
187
|
+
- runOnlyOnce: false
|
|
188
|
+
- order: after T<m>
|
|
189
|
+
- lane: <n>
|
|
190
|
+
- verify: tasks.md `input-values` covers every `inputs.*[?required]` from the lean spec across `bodyFields`, `queryParameters`, `pathParameters` — see Step 5 above.
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
`filter:` is optional and present only when the operation supports CEQL (i.e. `spec.filter` was non-null in step 7).
|
|
194
|
+
|
|
195
|
+
## Unresolved Fallback
|
|
196
|
+
|
|
197
|
+
> **Rule 17 exception.** Empty `Connections` from `get-connection` (the connector activity exists in typecache but no IS connection is registered) does NOT require the Rule 17 gate — proceed directly to placeholder.
|
|
198
|
+
|
|
199
|
+
If the connector or connection cannot be resolved:
|
|
200
|
+
- Mark `type-id` or `connection-id` with `<UNRESOLVED: reason>`
|
|
201
|
+
- Omit `input-values:` entirely — no schema to wire against
|
|
202
|
+
- Execution creates a placeholder task (display-name + type only) per [placeholder-tasks.md](../../../placeholder-tasks.md)
|