@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,1275 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generated_at": "2026-06-03T05:43:54Z",
|
|
3
|
+
"cli_version": "1.2.0-alpha.20260602.7377",
|
|
4
|
+
"verbs": [
|
|
5
|
+
"admin",
|
|
6
|
+
"admin audit",
|
|
7
|
+
"admin audit org",
|
|
8
|
+
"admin audit org events",
|
|
9
|
+
"admin audit org export",
|
|
10
|
+
"admin audit org sources",
|
|
11
|
+
"admin audit tenant",
|
|
12
|
+
"admin audit tenant events",
|
|
13
|
+
"admin audit tenant export",
|
|
14
|
+
"admin audit tenant sources",
|
|
15
|
+
"admin authorization",
|
|
16
|
+
"admin authorization check-access",
|
|
17
|
+
"admin authorization permissions",
|
|
18
|
+
"admin authorization permissions list",
|
|
19
|
+
"admin authorization roles",
|
|
20
|
+
"admin authorization roles assignments",
|
|
21
|
+
"admin authorization roles assignments create",
|
|
22
|
+
"admin authorization roles assignments delete",
|
|
23
|
+
"admin authorization roles assignments list",
|
|
24
|
+
"admin authorization roles create",
|
|
25
|
+
"admin authorization roles delete",
|
|
26
|
+
"admin authorization roles get",
|
|
27
|
+
"admin authorization roles list",
|
|
28
|
+
"admin authorization roles update",
|
|
29
|
+
"admin external-apps",
|
|
30
|
+
"admin external-apps create",
|
|
31
|
+
"admin external-apps delete",
|
|
32
|
+
"admin external-apps delete-secret",
|
|
33
|
+
"admin external-apps federated-credentials",
|
|
34
|
+
"admin external-apps federated-credentials create",
|
|
35
|
+
"admin external-apps federated-credentials delete",
|
|
36
|
+
"admin external-apps federated-credentials get",
|
|
37
|
+
"admin external-apps federated-credentials list",
|
|
38
|
+
"admin external-apps federated-credentials update",
|
|
39
|
+
"admin external-apps generate-secret",
|
|
40
|
+
"admin external-apps get",
|
|
41
|
+
"admin external-apps list",
|
|
42
|
+
"admin external-apps update",
|
|
43
|
+
"admin groups",
|
|
44
|
+
"admin groups create",
|
|
45
|
+
"admin groups delete",
|
|
46
|
+
"admin groups get",
|
|
47
|
+
"admin groups list",
|
|
48
|
+
"admin groups members",
|
|
49
|
+
"admin groups members add",
|
|
50
|
+
"admin groups members list",
|
|
51
|
+
"admin groups members revoke",
|
|
52
|
+
"admin groups update",
|
|
53
|
+
"admin integrations",
|
|
54
|
+
"admin integrations vpn",
|
|
55
|
+
"admin integrations vpn connections",
|
|
56
|
+
"admin integrations vpn connections create",
|
|
57
|
+
"admin integrations vpn connections delete",
|
|
58
|
+
"admin integrations vpn connections edit",
|
|
59
|
+
"admin integrations vpn connections get",
|
|
60
|
+
"admin integrations vpn connections refresh",
|
|
61
|
+
"admin integrations vpn gateways",
|
|
62
|
+
"admin integrations vpn gateways create",
|
|
63
|
+
"admin integrations vpn gateways delete",
|
|
64
|
+
"admin integrations vpn gateways edit",
|
|
65
|
+
"admin integrations vpn gateways get",
|
|
66
|
+
"admin integrations vpn gateways list",
|
|
67
|
+
"admin integrations vpn gateways redeploy",
|
|
68
|
+
"admin integrations vpn gateways tenant-config",
|
|
69
|
+
"admin ip-restriction",
|
|
70
|
+
"admin ip-restriction bypass-rules",
|
|
71
|
+
"admin ip-restriction bypass-rules create",
|
|
72
|
+
"admin ip-restriction bypass-rules delete",
|
|
73
|
+
"admin ip-restriction bypass-rules get",
|
|
74
|
+
"admin ip-restriction bypass-rules list",
|
|
75
|
+
"admin ip-restriction bypass-rules update",
|
|
76
|
+
"admin ip-restriction enforcement",
|
|
77
|
+
"admin ip-restriction enforcement disable",
|
|
78
|
+
"admin ip-restriction enforcement enable",
|
|
79
|
+
"admin ip-restriction enforcement get",
|
|
80
|
+
"admin ip-restriction ip-ranges",
|
|
81
|
+
"admin ip-restriction ip-ranges create",
|
|
82
|
+
"admin ip-restriction ip-ranges delete",
|
|
83
|
+
"admin ip-restriction ip-ranges get",
|
|
84
|
+
"admin ip-restriction ip-ranges list",
|
|
85
|
+
"admin ip-restriction ip-ranges update",
|
|
86
|
+
"admin ip-restriction my-ip",
|
|
87
|
+
"admin organizations",
|
|
88
|
+
"admin organizations get",
|
|
89
|
+
"admin organizations operation",
|
|
90
|
+
"admin organizations operation get",
|
|
91
|
+
"admin organizations regions",
|
|
92
|
+
"admin organizations regions list",
|
|
93
|
+
"admin organizations services",
|
|
94
|
+
"admin organizations services list",
|
|
95
|
+
"admin organizations services list-available",
|
|
96
|
+
"admin organizations update",
|
|
97
|
+
"admin pat",
|
|
98
|
+
"admin pat create",
|
|
99
|
+
"admin pat list",
|
|
100
|
+
"admin pat regenerate",
|
|
101
|
+
"admin pat revoke",
|
|
102
|
+
"admin rcs",
|
|
103
|
+
"admin rcs search",
|
|
104
|
+
"admin rcs tag",
|
|
105
|
+
"admin rcs tag list",
|
|
106
|
+
"admin robot-accounts",
|
|
107
|
+
"admin robot-accounts create",
|
|
108
|
+
"admin robot-accounts delete",
|
|
109
|
+
"admin robot-accounts get",
|
|
110
|
+
"admin robot-accounts list",
|
|
111
|
+
"admin robot-accounts update",
|
|
112
|
+
"admin scopes",
|
|
113
|
+
"admin scopes list",
|
|
114
|
+
"admin smtp",
|
|
115
|
+
"admin smtp delete",
|
|
116
|
+
"admin smtp get",
|
|
117
|
+
"admin smtp test",
|
|
118
|
+
"admin smtp update",
|
|
119
|
+
"admin tenants",
|
|
120
|
+
"admin tenants create",
|
|
121
|
+
"admin tenants delete",
|
|
122
|
+
"admin tenants disable",
|
|
123
|
+
"admin tenants enable",
|
|
124
|
+
"admin tenants get",
|
|
125
|
+
"admin tenants list",
|
|
126
|
+
"admin tenants services",
|
|
127
|
+
"admin tenants services add",
|
|
128
|
+
"admin tenants services disable",
|
|
129
|
+
"admin tenants services enable",
|
|
130
|
+
"admin tenants services list",
|
|
131
|
+
"admin tenants services list-available",
|
|
132
|
+
"admin tenants services remove",
|
|
133
|
+
"admin tenants update",
|
|
134
|
+
"admin users",
|
|
135
|
+
"admin users create",
|
|
136
|
+
"admin users delete",
|
|
137
|
+
"admin users get",
|
|
138
|
+
"admin users invite",
|
|
139
|
+
"admin users list",
|
|
140
|
+
"admin users update",
|
|
141
|
+
"agent",
|
|
142
|
+
"agent config",
|
|
143
|
+
"agent config get",
|
|
144
|
+
"agent config set",
|
|
145
|
+
"agent context",
|
|
146
|
+
"agent context add",
|
|
147
|
+
"agent context list",
|
|
148
|
+
"agent context remove",
|
|
149
|
+
"agent deploy",
|
|
150
|
+
"agent escalation",
|
|
151
|
+
"agent escalation add",
|
|
152
|
+
"agent escalation list",
|
|
153
|
+
"agent escalation remove",
|
|
154
|
+
"agent eval",
|
|
155
|
+
"agent eval add",
|
|
156
|
+
"agent eval evaluator",
|
|
157
|
+
"agent eval evaluator add",
|
|
158
|
+
"agent eval evaluator list",
|
|
159
|
+
"agent eval evaluator remove",
|
|
160
|
+
"agent eval list",
|
|
161
|
+
"agent eval remove",
|
|
162
|
+
"agent eval run",
|
|
163
|
+
"agent eval run compare",
|
|
164
|
+
"agent eval run list",
|
|
165
|
+
"agent eval run results",
|
|
166
|
+
"agent eval run start",
|
|
167
|
+
"agent eval run status",
|
|
168
|
+
"agent eval set",
|
|
169
|
+
"agent eval set add",
|
|
170
|
+
"agent eval set list",
|
|
171
|
+
"agent eval set remove",
|
|
172
|
+
"agent file",
|
|
173
|
+
"agent file get",
|
|
174
|
+
"agent file list",
|
|
175
|
+
"agent file put",
|
|
176
|
+
"agent guardrails",
|
|
177
|
+
"agent guardrails catalog",
|
|
178
|
+
"agent guardrails list",
|
|
179
|
+
"agent init",
|
|
180
|
+
"agent input",
|
|
181
|
+
"agent input add",
|
|
182
|
+
"agent input remove",
|
|
183
|
+
"agent list",
|
|
184
|
+
"agent memory",
|
|
185
|
+
"agent memory add",
|
|
186
|
+
"agent memory item",
|
|
187
|
+
"agent memory item add",
|
|
188
|
+
"agent memory item list",
|
|
189
|
+
"agent memory item remove",
|
|
190
|
+
"agent memory list",
|
|
191
|
+
"agent memory remove",
|
|
192
|
+
"agent migrate",
|
|
193
|
+
"agent output",
|
|
194
|
+
"agent output add",
|
|
195
|
+
"agent output remove",
|
|
196
|
+
"agent pack",
|
|
197
|
+
"agent publish",
|
|
198
|
+
"agent pull",
|
|
199
|
+
"agent push",
|
|
200
|
+
"agent run",
|
|
201
|
+
"agent run list",
|
|
202
|
+
"agent run start",
|
|
203
|
+
"agent run status",
|
|
204
|
+
"agent share",
|
|
205
|
+
"agent share add",
|
|
206
|
+
"agent share list",
|
|
207
|
+
"agent share remove",
|
|
208
|
+
"agent tool",
|
|
209
|
+
"agent tool add",
|
|
210
|
+
"agent tool connect",
|
|
211
|
+
"agent tool discover",
|
|
212
|
+
"agent tool list",
|
|
213
|
+
"agent tool remove",
|
|
214
|
+
"agent validate",
|
|
215
|
+
"agenthub",
|
|
216
|
+
"agenthub mcp",
|
|
217
|
+
"agenthub mcp create",
|
|
218
|
+
"agenthub mcp create coded",
|
|
219
|
+
"agenthub mcp create command",
|
|
220
|
+
"agenthub mcp create platform",
|
|
221
|
+
"agenthub mcp create remote",
|
|
222
|
+
"agenthub mcp create swagger",
|
|
223
|
+
"agenthub mcp create uipath",
|
|
224
|
+
"agenthub mcp delete",
|
|
225
|
+
"agenthub mcp get",
|
|
226
|
+
"agenthub mcp list",
|
|
227
|
+
"agenthub mcp refresh-tools",
|
|
228
|
+
"agenthub mcp template",
|
|
229
|
+
"agenthub mcp update",
|
|
230
|
+
"agenthub mcp-tools",
|
|
231
|
+
"agenthub mcp-tools candidates",
|
|
232
|
+
"agenthub mcp-tools create-is-activity",
|
|
233
|
+
"agenthub mcp-tools create-raw",
|
|
234
|
+
"agenthub mcp-tools create-resource",
|
|
235
|
+
"agenthub mcp-tools delete",
|
|
236
|
+
"agenthub mcp-tools disable",
|
|
237
|
+
"agenthub mcp-tools enable",
|
|
238
|
+
"agenthub mcp-tools get",
|
|
239
|
+
"agenthub mcp-tools list",
|
|
240
|
+
"agenthub mcp-tools template",
|
|
241
|
+
"agenthub mcp-tools update",
|
|
242
|
+
"agenthub remote-a2a-agent",
|
|
243
|
+
"agenthub remote-a2a-agent create",
|
|
244
|
+
"agenthub remote-a2a-agent delete",
|
|
245
|
+
"agenthub remote-a2a-agent get",
|
|
246
|
+
"agenthub remote-a2a-agent list",
|
|
247
|
+
"agenthub remote-a2a-agent refresh-card",
|
|
248
|
+
"agenthub remote-a2a-agent update",
|
|
249
|
+
"aops",
|
|
250
|
+
"aops connection",
|
|
251
|
+
"aops connection azure-projects",
|
|
252
|
+
"aops connection delete",
|
|
253
|
+
"aops connection list",
|
|
254
|
+
"aops connection projects",
|
|
255
|
+
"aops connection repos",
|
|
256
|
+
"aops connection repos-bulk",
|
|
257
|
+
"aops connection solutions",
|
|
258
|
+
"aops connection state",
|
|
259
|
+
"aops connection sync",
|
|
260
|
+
"aops execution",
|
|
261
|
+
"aops execution details",
|
|
262
|
+
"aops execution get",
|
|
263
|
+
"aops execution logs",
|
|
264
|
+
"aops execution stop",
|
|
265
|
+
"aops pipeline",
|
|
266
|
+
"aops pipeline create",
|
|
267
|
+
"aops pipeline delete",
|
|
268
|
+
"aops pipeline executions",
|
|
269
|
+
"aops pipeline executions-bulk",
|
|
270
|
+
"aops pipeline get",
|
|
271
|
+
"aops pipeline list",
|
|
272
|
+
"aops pipeline process",
|
|
273
|
+
"aops pipeline processes",
|
|
274
|
+
"aops pipeline repos",
|
|
275
|
+
"aops pipeline run",
|
|
276
|
+
"aops pipeline save-and-run",
|
|
277
|
+
"aops pipeline search",
|
|
278
|
+
"aops pipeline state",
|
|
279
|
+
"aops pipeline update",
|
|
280
|
+
"aops project",
|
|
281
|
+
"aops project commit",
|
|
282
|
+
"aops project commits",
|
|
283
|
+
"aops project content",
|
|
284
|
+
"aops project files",
|
|
285
|
+
"aops project get",
|
|
286
|
+
"aops project list",
|
|
287
|
+
"aops repo",
|
|
288
|
+
"aops repo branches",
|
|
289
|
+
"aops repo project-files",
|
|
290
|
+
"aops solution",
|
|
291
|
+
"aops solution commits",
|
|
292
|
+
"aops solution get",
|
|
293
|
+
"api-workflow",
|
|
294
|
+
"api-workflow bindings",
|
|
295
|
+
"api-workflow bindings sync",
|
|
296
|
+
"api-workflow build",
|
|
297
|
+
"api-workflow pack",
|
|
298
|
+
"api-workflow registry",
|
|
299
|
+
"api-workflow registry resolve",
|
|
300
|
+
"api-workflow registry stub",
|
|
301
|
+
"api-workflow run",
|
|
302
|
+
"api-workflow validate",
|
|
303
|
+
"codedagent",
|
|
304
|
+
"codedagent add",
|
|
305
|
+
"codedagent debug",
|
|
306
|
+
"codedagent deploy",
|
|
307
|
+
"codedagent dev",
|
|
308
|
+
"codedagent eval",
|
|
309
|
+
"codedagent init",
|
|
310
|
+
"codedagent invoke",
|
|
311
|
+
"codedagent list-models",
|
|
312
|
+
"codedagent new",
|
|
313
|
+
"codedagent pack",
|
|
314
|
+
"codedagent publish",
|
|
315
|
+
"codedagent pull",
|
|
316
|
+
"codedagent push",
|
|
317
|
+
"codedagent register",
|
|
318
|
+
"codedagent run",
|
|
319
|
+
"codedagent setup",
|
|
320
|
+
"codedapp",
|
|
321
|
+
"codedapp deploy",
|
|
322
|
+
"codedapp init",
|
|
323
|
+
"codedapp pack",
|
|
324
|
+
"codedapp publish",
|
|
325
|
+
"codedapp pull",
|
|
326
|
+
"codedapp push",
|
|
327
|
+
"completion",
|
|
328
|
+
"config",
|
|
329
|
+
"config get",
|
|
330
|
+
"config set",
|
|
331
|
+
"context-grounding",
|
|
332
|
+
"df",
|
|
333
|
+
"df choice-set-values",
|
|
334
|
+
"df choice-set-values create",
|
|
335
|
+
"df choice-set-values delete",
|
|
336
|
+
"df choice-set-values update",
|
|
337
|
+
"df choice-sets",
|
|
338
|
+
"df choice-sets create",
|
|
339
|
+
"df choice-sets delete",
|
|
340
|
+
"df choice-sets list",
|
|
341
|
+
"df choice-sets list-values",
|
|
342
|
+
"df choice-sets update",
|
|
343
|
+
"df entities",
|
|
344
|
+
"df entities create",
|
|
345
|
+
"df entities delete",
|
|
346
|
+
"df entities get",
|
|
347
|
+
"df entities list",
|
|
348
|
+
"df entities update",
|
|
349
|
+
"df files",
|
|
350
|
+
"df files delete",
|
|
351
|
+
"df files download",
|
|
352
|
+
"df files upload",
|
|
353
|
+
"df records",
|
|
354
|
+
"df records delete",
|
|
355
|
+
"df records get",
|
|
356
|
+
"df records import",
|
|
357
|
+
"df records insert",
|
|
358
|
+
"df records list",
|
|
359
|
+
"df records query",
|
|
360
|
+
"df records update",
|
|
361
|
+
"docsai",
|
|
362
|
+
"docsai ask",
|
|
363
|
+
"feedback",
|
|
364
|
+
"feedback send",
|
|
365
|
+
"functions",
|
|
366
|
+
"functions init",
|
|
367
|
+
"functions new",
|
|
368
|
+
"functions pack",
|
|
369
|
+
"functions publish",
|
|
370
|
+
"functions push",
|
|
371
|
+
"functions run",
|
|
372
|
+
"functions runtime-install",
|
|
373
|
+
"functions serve",
|
|
374
|
+
"gov",
|
|
375
|
+
"gov access-policy",
|
|
376
|
+
"gov access-policy create",
|
|
377
|
+
"gov access-policy delete",
|
|
378
|
+
"gov access-policy evaluate",
|
|
379
|
+
"gov access-policy get",
|
|
380
|
+
"gov access-policy list",
|
|
381
|
+
"gov access-policy update",
|
|
382
|
+
"gov aops-policy",
|
|
383
|
+
"gov aops-policy create",
|
|
384
|
+
"gov aops-policy delete",
|
|
385
|
+
"gov aops-policy deployed-policy",
|
|
386
|
+
"gov aops-policy deployed-policy get",
|
|
387
|
+
"gov aops-policy deployed-policy list",
|
|
388
|
+
"gov aops-policy deployment",
|
|
389
|
+
"gov aops-policy deployment group",
|
|
390
|
+
"gov aops-policy deployment group configure",
|
|
391
|
+
"gov aops-policy deployment group delete",
|
|
392
|
+
"gov aops-policy deployment group get",
|
|
393
|
+
"gov aops-policy deployment group list",
|
|
394
|
+
"gov aops-policy deployment tenant",
|
|
395
|
+
"gov aops-policy deployment tenant configure",
|
|
396
|
+
"gov aops-policy deployment tenant get",
|
|
397
|
+
"gov aops-policy deployment tenant list",
|
|
398
|
+
"gov aops-policy deployment tenant remove",
|
|
399
|
+
"gov aops-policy deployment user",
|
|
400
|
+
"gov aops-policy deployment user configure",
|
|
401
|
+
"gov aops-policy deployment user delete",
|
|
402
|
+
"gov aops-policy deployment user get",
|
|
403
|
+
"gov aops-policy deployment user list",
|
|
404
|
+
"gov aops-policy get",
|
|
405
|
+
"gov aops-policy license-type",
|
|
406
|
+
"gov aops-policy license-type list",
|
|
407
|
+
"gov aops-policy list",
|
|
408
|
+
"gov aops-policy product",
|
|
409
|
+
"gov aops-policy product get",
|
|
410
|
+
"gov aops-policy product list",
|
|
411
|
+
"gov aops-policy template",
|
|
412
|
+
"gov aops-policy template get",
|
|
413
|
+
"gov aops-policy template list",
|
|
414
|
+
"gov aops-policy update",
|
|
415
|
+
"insights",
|
|
416
|
+
"insights jobs",
|
|
417
|
+
"insights jobs completed-timeline",
|
|
418
|
+
"insights jobs failure-details",
|
|
419
|
+
"insights jobs failures-by-reason",
|
|
420
|
+
"insights jobs process-details",
|
|
421
|
+
"insights jobs summary",
|
|
422
|
+
"insights jobs top-failures",
|
|
423
|
+
"insights jobs uncompleted-timeline",
|
|
424
|
+
"is",
|
|
425
|
+
"is activities",
|
|
426
|
+
"is activities list",
|
|
427
|
+
"is connections",
|
|
428
|
+
"is connections base-url",
|
|
429
|
+
"is connections create",
|
|
430
|
+
"is connections delete",
|
|
431
|
+
"is connections edit",
|
|
432
|
+
"is connections export",
|
|
433
|
+
"is connections list",
|
|
434
|
+
"is connections ping",
|
|
435
|
+
"is connections rename",
|
|
436
|
+
"is connections set-default",
|
|
437
|
+
"is connections update-polling-interval",
|
|
438
|
+
"is connectors",
|
|
439
|
+
"is connectors audit-logs",
|
|
440
|
+
"is connectors event-operations",
|
|
441
|
+
"is connectors export",
|
|
442
|
+
"is connectors get",
|
|
443
|
+
"is connectors list",
|
|
444
|
+
"is connectors swagger",
|
|
445
|
+
"is resources",
|
|
446
|
+
"is resources describe",
|
|
447
|
+
"is resources list",
|
|
448
|
+
"is resources run",
|
|
449
|
+
"is resources run create",
|
|
450
|
+
"is resources run delete",
|
|
451
|
+
"is resources run get",
|
|
452
|
+
"is resources run list",
|
|
453
|
+
"is resources run replace",
|
|
454
|
+
"is resources run update",
|
|
455
|
+
"is triggers",
|
|
456
|
+
"is triggers describe",
|
|
457
|
+
"is triggers objects",
|
|
458
|
+
"is webhooks",
|
|
459
|
+
"is webhooks config",
|
|
460
|
+
"ixp",
|
|
461
|
+
"ixp data-types",
|
|
462
|
+
"ixp data-types add",
|
|
463
|
+
"ixp data-types delete",
|
|
464
|
+
"ixp data-types rename",
|
|
465
|
+
"ixp data-types update-instructions",
|
|
466
|
+
"ixp deployments",
|
|
467
|
+
"ixp deployments get-taxonomy",
|
|
468
|
+
"ixp documents",
|
|
469
|
+
"ixp documents delete",
|
|
470
|
+
"ixp documents download",
|
|
471
|
+
"ixp documents list",
|
|
472
|
+
"ixp documents upload",
|
|
473
|
+
"ixp fields",
|
|
474
|
+
"ixp fields add",
|
|
475
|
+
"ixp fields change-type",
|
|
476
|
+
"ixp fields delete",
|
|
477
|
+
"ixp fields rename",
|
|
478
|
+
"ixp fields update-prompts",
|
|
479
|
+
"ixp groups",
|
|
480
|
+
"ixp groups add",
|
|
481
|
+
"ixp groups delete",
|
|
482
|
+
"ixp groups rename",
|
|
483
|
+
"ixp groups update-prompts",
|
|
484
|
+
"ixp labellings",
|
|
485
|
+
"ixp labellings confirm",
|
|
486
|
+
"ixp labellings get-predictions",
|
|
487
|
+
"ixp labellings mark-missing",
|
|
488
|
+
"ixp labellings unconfirm",
|
|
489
|
+
"ixp projects",
|
|
490
|
+
"ixp projects configure-model",
|
|
491
|
+
"ixp projects create",
|
|
492
|
+
"ixp projects get",
|
|
493
|
+
"ixp projects get-metrics",
|
|
494
|
+
"ixp projects get-taxonomy",
|
|
495
|
+
"ixp projects import-taxonomy",
|
|
496
|
+
"ixp projects list",
|
|
497
|
+
"ixp projects list-models",
|
|
498
|
+
"ixp projects publish",
|
|
499
|
+
"ixp projects update-prompt",
|
|
500
|
+
"ixp projects update-title",
|
|
501
|
+
"llm-configuration",
|
|
502
|
+
"login",
|
|
503
|
+
"login refresh",
|
|
504
|
+
"login status",
|
|
505
|
+
"login tenant",
|
|
506
|
+
"login tenant list",
|
|
507
|
+
"login tenant set",
|
|
508
|
+
"login which",
|
|
509
|
+
"logout",
|
|
510
|
+
"maestro",
|
|
511
|
+
"maestro bpmn",
|
|
512
|
+
"maestro bpmn debug",
|
|
513
|
+
"maestro bpmn debug-instance",
|
|
514
|
+
"maestro bpmn debug-instance breakpoints",
|
|
515
|
+
"maestro bpmn debug-instance cancel",
|
|
516
|
+
"maestro bpmn debug-instance continue",
|
|
517
|
+
"maestro bpmn debug-instance create",
|
|
518
|
+
"maestro bpmn debug-instance incidents",
|
|
519
|
+
"maestro bpmn debug-instance variables",
|
|
520
|
+
"maestro bpmn debug-instance variables-all",
|
|
521
|
+
"maestro bpmn debug-instance variables-set",
|
|
522
|
+
"maestro bpmn incident",
|
|
523
|
+
"maestro bpmn incident get",
|
|
524
|
+
"maestro bpmn incident summary",
|
|
525
|
+
"maestro bpmn init",
|
|
526
|
+
"maestro bpmn instance",
|
|
527
|
+
"maestro bpmn instance asset",
|
|
528
|
+
"maestro bpmn instance cancel",
|
|
529
|
+
"maestro bpmn instance cursors",
|
|
530
|
+
"maestro bpmn instance element",
|
|
531
|
+
"maestro bpmn instance element cancel",
|
|
532
|
+
"maestro bpmn instance element retry",
|
|
533
|
+
"maestro bpmn instance element-executions",
|
|
534
|
+
"maestro bpmn instance get",
|
|
535
|
+
"maestro bpmn instance global-variables",
|
|
536
|
+
"maestro bpmn instance goto",
|
|
537
|
+
"maestro bpmn instance incidents",
|
|
538
|
+
"maestro bpmn instance list",
|
|
539
|
+
"maestro bpmn instance message",
|
|
540
|
+
"maestro bpmn instance message send",
|
|
541
|
+
"maestro bpmn instance migrate",
|
|
542
|
+
"maestro bpmn instance pause",
|
|
543
|
+
"maestro bpmn instance resume",
|
|
544
|
+
"maestro bpmn instance retry",
|
|
545
|
+
"maestro bpmn instance variables",
|
|
546
|
+
"maestro bpmn instance variables-all",
|
|
547
|
+
"maestro bpmn instance variables-set",
|
|
548
|
+
"maestro bpmn job",
|
|
549
|
+
"maestro bpmn job status",
|
|
550
|
+
"maestro bpmn job traces",
|
|
551
|
+
"maestro bpmn pack",
|
|
552
|
+
"maestro bpmn process",
|
|
553
|
+
"maestro bpmn process get",
|
|
554
|
+
"maestro bpmn process list",
|
|
555
|
+
"maestro bpmn process publish",
|
|
556
|
+
"maestro bpmn process run",
|
|
557
|
+
"maestro bpmn process settings",
|
|
558
|
+
"maestro bpmn process settings get",
|
|
559
|
+
"maestro bpmn process settings set",
|
|
560
|
+
"maestro bpmn process variable-tags",
|
|
561
|
+
"maestro bpmn process variable-tags get",
|
|
562
|
+
"maestro bpmn process variable-tags set",
|
|
563
|
+
"maestro bpmn processes",
|
|
564
|
+
"maestro bpmn processes diagnose",
|
|
565
|
+
"maestro bpmn processes error-codes",
|
|
566
|
+
"maestro bpmn processes incidents",
|
|
567
|
+
"maestro bpmn processes list",
|
|
568
|
+
"maestro bpmn registry",
|
|
569
|
+
"maestro bpmn registry get",
|
|
570
|
+
"maestro bpmn registry list",
|
|
571
|
+
"maestro bpmn registry pull",
|
|
572
|
+
"maestro bpmn registry search",
|
|
573
|
+
"maestro bpmn validate",
|
|
574
|
+
"maestro case",
|
|
575
|
+
"maestro case case-exit-conditions",
|
|
576
|
+
"maestro case case-exit-conditions add",
|
|
577
|
+
"maestro case case-exit-conditions get",
|
|
578
|
+
"maestro case case-exit-conditions remove",
|
|
579
|
+
"maestro case case-exit-conditions update",
|
|
580
|
+
"maestro case cases",
|
|
581
|
+
"maestro case cases add",
|
|
582
|
+
"maestro case cases get",
|
|
583
|
+
"maestro case cases update",
|
|
584
|
+
"maestro case debug",
|
|
585
|
+
"maestro case edges",
|
|
586
|
+
"maestro case edges add",
|
|
587
|
+
"maestro case edges get",
|
|
588
|
+
"maestro case edges remove",
|
|
589
|
+
"maestro case edges update",
|
|
590
|
+
"maestro case incident",
|
|
591
|
+
"maestro case incident get",
|
|
592
|
+
"maestro case incident summary",
|
|
593
|
+
"maestro case init",
|
|
594
|
+
"maestro case instance",
|
|
595
|
+
"maestro case instance asset",
|
|
596
|
+
"maestro case instance cancel",
|
|
597
|
+
"maestro case instance cursors",
|
|
598
|
+
"maestro case instance element",
|
|
599
|
+
"maestro case instance element cancel",
|
|
600
|
+
"maestro case instance element retry",
|
|
601
|
+
"maestro case instance element-executions",
|
|
602
|
+
"maestro case instance get",
|
|
603
|
+
"maestro case instance global-variables",
|
|
604
|
+
"maestro case instance goto",
|
|
605
|
+
"maestro case instance incidents",
|
|
606
|
+
"maestro case instance list",
|
|
607
|
+
"maestro case instance message",
|
|
608
|
+
"maestro case instance message send",
|
|
609
|
+
"maestro case instance migrate",
|
|
610
|
+
"maestro case instance pause",
|
|
611
|
+
"maestro case instance resume",
|
|
612
|
+
"maestro case instance retry",
|
|
613
|
+
"maestro case instance variables",
|
|
614
|
+
"maestro case instance variables-all",
|
|
615
|
+
"maestro case instance variables-set",
|
|
616
|
+
"maestro case job",
|
|
617
|
+
"maestro case job status",
|
|
618
|
+
"maestro case job traces",
|
|
619
|
+
"maestro case pack",
|
|
620
|
+
"maestro case process",
|
|
621
|
+
"maestro case process get",
|
|
622
|
+
"maestro case process list",
|
|
623
|
+
"maestro case process run",
|
|
624
|
+
"maestro case process settings",
|
|
625
|
+
"maestro case process settings get",
|
|
626
|
+
"maestro case process settings set",
|
|
627
|
+
"maestro case process variable-tags",
|
|
628
|
+
"maestro case process variable-tags get",
|
|
629
|
+
"maestro case process variable-tags set",
|
|
630
|
+
"maestro case processes",
|
|
631
|
+
"maestro case processes diagnose",
|
|
632
|
+
"maestro case processes error-codes",
|
|
633
|
+
"maestro case processes incidents",
|
|
634
|
+
"maestro case processes list",
|
|
635
|
+
"maestro case registry",
|
|
636
|
+
"maestro case registry get",
|
|
637
|
+
"maestro case registry get-connection",
|
|
638
|
+
"maestro case registry get-connector",
|
|
639
|
+
"maestro case registry list",
|
|
640
|
+
"maestro case registry pull",
|
|
641
|
+
"maestro case registry search",
|
|
642
|
+
"maestro case sla",
|
|
643
|
+
"maestro case sla escalation",
|
|
644
|
+
"maestro case sla escalation add",
|
|
645
|
+
"maestro case sla escalation list",
|
|
646
|
+
"maestro case sla escalation remove",
|
|
647
|
+
"maestro case sla get",
|
|
648
|
+
"maestro case sla remove",
|
|
649
|
+
"maestro case sla rules",
|
|
650
|
+
"maestro case sla rules add",
|
|
651
|
+
"maestro case sla rules list",
|
|
652
|
+
"maestro case sla rules remove",
|
|
653
|
+
"maestro case sla set",
|
|
654
|
+
"maestro case spec",
|
|
655
|
+
"maestro case stage-entry-conditions",
|
|
656
|
+
"maestro case stage-entry-conditions add",
|
|
657
|
+
"maestro case stage-entry-conditions get",
|
|
658
|
+
"maestro case stage-entry-conditions remove",
|
|
659
|
+
"maestro case stage-entry-conditions update",
|
|
660
|
+
"maestro case stage-exit-conditions",
|
|
661
|
+
"maestro case stage-exit-conditions add",
|
|
662
|
+
"maestro case stage-exit-conditions get",
|
|
663
|
+
"maestro case stage-exit-conditions remove",
|
|
664
|
+
"maestro case stage-exit-conditions update",
|
|
665
|
+
"maestro case stages",
|
|
666
|
+
"maestro case stages add",
|
|
667
|
+
"maestro case stages get",
|
|
668
|
+
"maestro case stages remove",
|
|
669
|
+
"maestro case stages update",
|
|
670
|
+
"maestro case sticky-notes",
|
|
671
|
+
"maestro case sticky-notes add",
|
|
672
|
+
"maestro case sticky-notes get",
|
|
673
|
+
"maestro case sticky-notes remove",
|
|
674
|
+
"maestro case sticky-notes update",
|
|
675
|
+
"maestro case task-entry-conditions",
|
|
676
|
+
"maestro case task-entry-conditions add",
|
|
677
|
+
"maestro case task-entry-conditions get",
|
|
678
|
+
"maestro case task-entry-conditions remove",
|
|
679
|
+
"maestro case task-entry-conditions update",
|
|
680
|
+
"maestro case tasks",
|
|
681
|
+
"maestro case tasks add",
|
|
682
|
+
"maestro case tasks add-connector",
|
|
683
|
+
"maestro case tasks describe",
|
|
684
|
+
"maestro case tasks enrich",
|
|
685
|
+
"maestro case tasks get",
|
|
686
|
+
"maestro case tasks remove",
|
|
687
|
+
"maestro case tasks update",
|
|
688
|
+
"maestro case triggers",
|
|
689
|
+
"maestro case triggers add-event",
|
|
690
|
+
"maestro case triggers add-manual",
|
|
691
|
+
"maestro case triggers add-timer",
|
|
692
|
+
"maestro case validate",
|
|
693
|
+
"maestro case var",
|
|
694
|
+
"maestro case var bind",
|
|
695
|
+
"maestro flow",
|
|
696
|
+
"maestro flow binding",
|
|
697
|
+
"maestro flow binding add",
|
|
698
|
+
"maestro flow binding list",
|
|
699
|
+
"maestro flow binding remove",
|
|
700
|
+
"maestro flow debug",
|
|
701
|
+
"maestro flow debug-instance",
|
|
702
|
+
"maestro flow debug-instance breakpoints",
|
|
703
|
+
"maestro flow debug-instance cancel",
|
|
704
|
+
"maestro flow debug-instance continue",
|
|
705
|
+
"maestro flow debug-instance create",
|
|
706
|
+
"maestro flow debug-instance incidents",
|
|
707
|
+
"maestro flow debug-instance variables",
|
|
708
|
+
"maestro flow debug-instance variables-all",
|
|
709
|
+
"maestro flow debug-instance variables-set",
|
|
710
|
+
"maestro flow edge",
|
|
711
|
+
"maestro flow edge add",
|
|
712
|
+
"maestro flow edge delete",
|
|
713
|
+
"maestro flow edge list",
|
|
714
|
+
"maestro flow edge remove",
|
|
715
|
+
"maestro flow eval",
|
|
716
|
+
"maestro flow eval add",
|
|
717
|
+
"maestro flow eval evaluator",
|
|
718
|
+
"maestro flow eval evaluator add",
|
|
719
|
+
"maestro flow eval evaluator list",
|
|
720
|
+
"maestro flow eval evaluator remove",
|
|
721
|
+
"maestro flow eval list",
|
|
722
|
+
"maestro flow eval remove",
|
|
723
|
+
"maestro flow eval run",
|
|
724
|
+
"maestro flow eval run compare",
|
|
725
|
+
"maestro flow eval run list",
|
|
726
|
+
"maestro flow eval run results",
|
|
727
|
+
"maestro flow eval run start",
|
|
728
|
+
"maestro flow eval run status",
|
|
729
|
+
"maestro flow eval set",
|
|
730
|
+
"maestro flow eval set add",
|
|
731
|
+
"maestro flow eval set list",
|
|
732
|
+
"maestro flow eval set remove",
|
|
733
|
+
"maestro flow eval simulation",
|
|
734
|
+
"maestro flow eval simulation add",
|
|
735
|
+
"maestro flow eval simulation list",
|
|
736
|
+
"maestro flow eval simulation remove",
|
|
737
|
+
"maestro flow format",
|
|
738
|
+
"maestro flow hitl",
|
|
739
|
+
"maestro flow hitl add",
|
|
740
|
+
"maestro flow incident",
|
|
741
|
+
"maestro flow incident get",
|
|
742
|
+
"maestro flow incident summary",
|
|
743
|
+
"maestro flow init",
|
|
744
|
+
"maestro flow instance",
|
|
745
|
+
"maestro flow instance asset",
|
|
746
|
+
"maestro flow instance cancel",
|
|
747
|
+
"maestro flow instance cursors",
|
|
748
|
+
"maestro flow instance element",
|
|
749
|
+
"maestro flow instance element cancel",
|
|
750
|
+
"maestro flow instance element retry",
|
|
751
|
+
"maestro flow instance element-executions",
|
|
752
|
+
"maestro flow instance get",
|
|
753
|
+
"maestro flow instance global-variables",
|
|
754
|
+
"maestro flow instance goto",
|
|
755
|
+
"maestro flow instance incidents",
|
|
756
|
+
"maestro flow instance list",
|
|
757
|
+
"maestro flow instance message",
|
|
758
|
+
"maestro flow instance message send",
|
|
759
|
+
"maestro flow instance migrate",
|
|
760
|
+
"maestro flow instance pause",
|
|
761
|
+
"maestro flow instance resume",
|
|
762
|
+
"maestro flow instance retry",
|
|
763
|
+
"maestro flow instance variables",
|
|
764
|
+
"maestro flow instance variables-all",
|
|
765
|
+
"maestro flow instance variables-set",
|
|
766
|
+
"maestro flow job",
|
|
767
|
+
"maestro flow job list",
|
|
768
|
+
"maestro flow job status",
|
|
769
|
+
"maestro flow job traces",
|
|
770
|
+
"maestro flow migrate",
|
|
771
|
+
"maestro flow node",
|
|
772
|
+
"maestro flow node add",
|
|
773
|
+
"maestro flow node configure",
|
|
774
|
+
"maestro flow node delete",
|
|
775
|
+
"maestro flow node list",
|
|
776
|
+
"maestro flow node remove",
|
|
777
|
+
"maestro flow pack",
|
|
778
|
+
"maestro flow process",
|
|
779
|
+
"maestro flow process get",
|
|
780
|
+
"maestro flow process list",
|
|
781
|
+
"maestro flow process run",
|
|
782
|
+
"maestro flow process settings",
|
|
783
|
+
"maestro flow process settings get",
|
|
784
|
+
"maestro flow process settings set",
|
|
785
|
+
"maestro flow process variable-tags",
|
|
786
|
+
"maestro flow process variable-tags get",
|
|
787
|
+
"maestro flow process variable-tags set",
|
|
788
|
+
"maestro flow processes",
|
|
789
|
+
"maestro flow processes diagnose",
|
|
790
|
+
"maestro flow processes error-codes",
|
|
791
|
+
"maestro flow processes incidents",
|
|
792
|
+
"maestro flow processes list",
|
|
793
|
+
"maestro flow publish",
|
|
794
|
+
"maestro flow registry",
|
|
795
|
+
"maestro flow registry get",
|
|
796
|
+
"maestro flow registry list",
|
|
797
|
+
"maestro flow registry pull",
|
|
798
|
+
"maestro flow registry search",
|
|
799
|
+
"maestro flow validate",
|
|
800
|
+
"maestro flow variable",
|
|
801
|
+
"maestro flow variable add",
|
|
802
|
+
"maestro flow variable list",
|
|
803
|
+
"maestro flow variable remove",
|
|
804
|
+
"maestro flow variable-update",
|
|
805
|
+
"maestro flow variable-update add",
|
|
806
|
+
"maestro flow variable-update list",
|
|
807
|
+
"maestro flow variable-update remove",
|
|
808
|
+
"mcp",
|
|
809
|
+
"mcp serve",
|
|
810
|
+
"or",
|
|
811
|
+
"or assets",
|
|
812
|
+
"or assets create",
|
|
813
|
+
"or assets delete",
|
|
814
|
+
"or assets get",
|
|
815
|
+
"or assets get-asset-value",
|
|
816
|
+
"or assets get-folders",
|
|
817
|
+
"or assets list",
|
|
818
|
+
"or assets share",
|
|
819
|
+
"or assets unshare",
|
|
820
|
+
"or assets update",
|
|
821
|
+
"or attachments",
|
|
822
|
+
"or attachments download",
|
|
823
|
+
"or attachments list",
|
|
824
|
+
"or audit-logs",
|
|
825
|
+
"or audit-logs list",
|
|
826
|
+
"or bucket-files",
|
|
827
|
+
"or bucket-files delete",
|
|
828
|
+
"or bucket-files download",
|
|
829
|
+
"or bucket-files get",
|
|
830
|
+
"or bucket-files get-download-url",
|
|
831
|
+
"or bucket-files get-upload-url",
|
|
832
|
+
"or bucket-files list",
|
|
833
|
+
"or bucket-files list-dirs",
|
|
834
|
+
"or bucket-files upload",
|
|
835
|
+
"or buckets",
|
|
836
|
+
"or buckets create",
|
|
837
|
+
"or buckets delete",
|
|
838
|
+
"or buckets get",
|
|
839
|
+
"or buckets list",
|
|
840
|
+
"or buckets list-folders",
|
|
841
|
+
"or buckets share",
|
|
842
|
+
"or buckets unshare",
|
|
843
|
+
"or buckets update",
|
|
844
|
+
"or calendars",
|
|
845
|
+
"or calendars create",
|
|
846
|
+
"or calendars delete",
|
|
847
|
+
"or calendars get",
|
|
848
|
+
"or calendars list",
|
|
849
|
+
"or calendars update",
|
|
850
|
+
"or credential-stores",
|
|
851
|
+
"or credential-stores get",
|
|
852
|
+
"or credential-stores list",
|
|
853
|
+
"or feeds",
|
|
854
|
+
"or feeds list",
|
|
855
|
+
"or folders",
|
|
856
|
+
"or folders create",
|
|
857
|
+
"or folders delete",
|
|
858
|
+
"or folders edit",
|
|
859
|
+
"or folders get",
|
|
860
|
+
"or folders list",
|
|
861
|
+
"or folders move",
|
|
862
|
+
"or folders runtimes",
|
|
863
|
+
"or jobs",
|
|
864
|
+
"or jobs get",
|
|
865
|
+
"or jobs healing-data",
|
|
866
|
+
"or jobs history",
|
|
867
|
+
"or jobs list",
|
|
868
|
+
"or jobs logs",
|
|
869
|
+
"or jobs restart",
|
|
870
|
+
"or jobs resume",
|
|
871
|
+
"or jobs start",
|
|
872
|
+
"or jobs stop",
|
|
873
|
+
"or jobs traces",
|
|
874
|
+
"or libraries",
|
|
875
|
+
"or libraries delete",
|
|
876
|
+
"or libraries download",
|
|
877
|
+
"or libraries get",
|
|
878
|
+
"or libraries list",
|
|
879
|
+
"or libraries upload",
|
|
880
|
+
"or libraries versions",
|
|
881
|
+
"or licenses",
|
|
882
|
+
"or licenses info",
|
|
883
|
+
"or licenses list",
|
|
884
|
+
"or licenses toggle",
|
|
885
|
+
"or machines",
|
|
886
|
+
"or machines assign",
|
|
887
|
+
"or machines create",
|
|
888
|
+
"or machines delete",
|
|
889
|
+
"or machines edit",
|
|
890
|
+
"or machines get",
|
|
891
|
+
"or machines list",
|
|
892
|
+
"or machines unassign",
|
|
893
|
+
"or packages",
|
|
894
|
+
"or packages download",
|
|
895
|
+
"or packages entry-points",
|
|
896
|
+
"or packages get",
|
|
897
|
+
"or packages list",
|
|
898
|
+
"or packages upload",
|
|
899
|
+
"or packages versions",
|
|
900
|
+
"or processes",
|
|
901
|
+
"or processes create",
|
|
902
|
+
"or processes delete",
|
|
903
|
+
"or processes edit",
|
|
904
|
+
"or processes get",
|
|
905
|
+
"or processes list",
|
|
906
|
+
"or processes resources",
|
|
907
|
+
"or processes rollback",
|
|
908
|
+
"or processes update-version",
|
|
909
|
+
"or processes version-history",
|
|
910
|
+
"or queue-items",
|
|
911
|
+
"or queue-items add",
|
|
912
|
+
"or queue-items bulk-add",
|
|
913
|
+
"or queue-items delete",
|
|
914
|
+
"or queue-items delete-bulk",
|
|
915
|
+
"or queue-items get",
|
|
916
|
+
"or queue-items get-history",
|
|
917
|
+
"or queue-items get-last-retry",
|
|
918
|
+
"or queue-items get-reviewers",
|
|
919
|
+
"or queue-items has-video",
|
|
920
|
+
"or queue-items list",
|
|
921
|
+
"or queue-items set-progress",
|
|
922
|
+
"or queue-items set-result",
|
|
923
|
+
"or queue-items set-review-status",
|
|
924
|
+
"or queue-items set-reviewer",
|
|
925
|
+
"or queue-items start-transaction",
|
|
926
|
+
"or queue-items unset-reviewer",
|
|
927
|
+
"or queue-items update",
|
|
928
|
+
"or queues",
|
|
929
|
+
"or queues create",
|
|
930
|
+
"or queues delete",
|
|
931
|
+
"or queues get",
|
|
932
|
+
"or queues get-folders",
|
|
933
|
+
"or queues get-stats",
|
|
934
|
+
"or queues list",
|
|
935
|
+
"or queues share",
|
|
936
|
+
"or queues unshare",
|
|
937
|
+
"or queues update",
|
|
938
|
+
"or roles",
|
|
939
|
+
"or roles assign",
|
|
940
|
+
"or roles create",
|
|
941
|
+
"or roles delete",
|
|
942
|
+
"or roles edit",
|
|
943
|
+
"or roles get",
|
|
944
|
+
"or roles list",
|
|
945
|
+
"or roles permissions",
|
|
946
|
+
"or roles permissions list",
|
|
947
|
+
"or roles user-permissions",
|
|
948
|
+
"or roles user-permissions list",
|
|
949
|
+
"or roles user-roles",
|
|
950
|
+
"or roles user-roles list",
|
|
951
|
+
"or roles users",
|
|
952
|
+
"or roles users list",
|
|
953
|
+
"or roles users set",
|
|
954
|
+
"or sessions",
|
|
955
|
+
"or sessions attended",
|
|
956
|
+
"or sessions attended list",
|
|
957
|
+
"or sessions delete-inactive",
|
|
958
|
+
"or sessions list-user-executors",
|
|
959
|
+
"or sessions list-usernames",
|
|
960
|
+
"or sessions machines",
|
|
961
|
+
"or sessions machines list",
|
|
962
|
+
"or sessions set-maintenance-mode",
|
|
963
|
+
"or sessions toggle-debug-mode",
|
|
964
|
+
"or sessions unattended",
|
|
965
|
+
"or sessions unattended list",
|
|
966
|
+
"or settings",
|
|
967
|
+
"or settings execution",
|
|
968
|
+
"or settings get",
|
|
969
|
+
"or settings list",
|
|
970
|
+
"or settings timezones",
|
|
971
|
+
"or settings update",
|
|
972
|
+
"or triggers",
|
|
973
|
+
"or triggers create",
|
|
974
|
+
"or triggers delete",
|
|
975
|
+
"or triggers get",
|
|
976
|
+
"or triggers history",
|
|
977
|
+
"or triggers list",
|
|
978
|
+
"or triggers update",
|
|
979
|
+
"or users",
|
|
980
|
+
"or users assign",
|
|
981
|
+
"or users assign-roles",
|
|
982
|
+
"or users current",
|
|
983
|
+
"or users edit",
|
|
984
|
+
"or users get",
|
|
985
|
+
"or users import",
|
|
986
|
+
"or users list",
|
|
987
|
+
"or users list-available",
|
|
988
|
+
"or users list-in-folder",
|
|
989
|
+
"or users unassign",
|
|
990
|
+
"or webhooks",
|
|
991
|
+
"or webhooks create",
|
|
992
|
+
"or webhooks delete",
|
|
993
|
+
"or webhooks event-types",
|
|
994
|
+
"or webhooks get",
|
|
995
|
+
"or webhooks list",
|
|
996
|
+
"or webhooks ping",
|
|
997
|
+
"or webhooks update",
|
|
998
|
+
"platform",
|
|
999
|
+
"platform groups",
|
|
1000
|
+
"platform groups rules",
|
|
1001
|
+
"platform groups rules details",
|
|
1002
|
+
"platform groups rules get",
|
|
1003
|
+
"platform groups rules set",
|
|
1004
|
+
"platform licenses",
|
|
1005
|
+
"platform licenses consumables",
|
|
1006
|
+
"platform licenses consumables get",
|
|
1007
|
+
"platform tenants",
|
|
1008
|
+
"platform tenants licenses",
|
|
1009
|
+
"platform tenants licenses get",
|
|
1010
|
+
"platform tenants licenses set",
|
|
1011
|
+
"platform users",
|
|
1012
|
+
"platform users licenses",
|
|
1013
|
+
"platform users licenses available",
|
|
1014
|
+
"platform users licenses get",
|
|
1015
|
+
"platform users licenses set",
|
|
1016
|
+
"resource",
|
|
1017
|
+
"resource assets",
|
|
1018
|
+
"resource assets create",
|
|
1019
|
+
"resource assets delete",
|
|
1020
|
+
"resource assets get",
|
|
1021
|
+
"resource assets get-asset-value",
|
|
1022
|
+
"resource assets get-folders",
|
|
1023
|
+
"resource assets list",
|
|
1024
|
+
"resource assets share",
|
|
1025
|
+
"resource assets unshare",
|
|
1026
|
+
"resource assets update",
|
|
1027
|
+
"resource bucket-files",
|
|
1028
|
+
"resource bucket-files delete",
|
|
1029
|
+
"resource bucket-files download",
|
|
1030
|
+
"resource bucket-files get",
|
|
1031
|
+
"resource bucket-files get-download-url",
|
|
1032
|
+
"resource bucket-files get-upload-url",
|
|
1033
|
+
"resource bucket-files list",
|
|
1034
|
+
"resource bucket-files list-dirs",
|
|
1035
|
+
"resource bucket-files upload",
|
|
1036
|
+
"resource buckets",
|
|
1037
|
+
"resource buckets create",
|
|
1038
|
+
"resource buckets delete",
|
|
1039
|
+
"resource buckets get",
|
|
1040
|
+
"resource buckets list",
|
|
1041
|
+
"resource buckets list-folders",
|
|
1042
|
+
"resource buckets share",
|
|
1043
|
+
"resource buckets unshare",
|
|
1044
|
+
"resource buckets update",
|
|
1045
|
+
"resource libraries",
|
|
1046
|
+
"resource libraries delete",
|
|
1047
|
+
"resource libraries download",
|
|
1048
|
+
"resource libraries get",
|
|
1049
|
+
"resource libraries list",
|
|
1050
|
+
"resource libraries upload",
|
|
1051
|
+
"resource libraries versions",
|
|
1052
|
+
"resource queue-items",
|
|
1053
|
+
"resource queue-items add",
|
|
1054
|
+
"resource queue-items bulk-add",
|
|
1055
|
+
"resource queue-items delete",
|
|
1056
|
+
"resource queue-items delete-bulk",
|
|
1057
|
+
"resource queue-items get",
|
|
1058
|
+
"resource queue-items get-history",
|
|
1059
|
+
"resource queue-items get-last-retry",
|
|
1060
|
+
"resource queue-items get-reviewers",
|
|
1061
|
+
"resource queue-items has-video",
|
|
1062
|
+
"resource queue-items list",
|
|
1063
|
+
"resource queue-items set-progress",
|
|
1064
|
+
"resource queue-items set-result",
|
|
1065
|
+
"resource queue-items set-review-status",
|
|
1066
|
+
"resource queue-items set-reviewer",
|
|
1067
|
+
"resource queue-items start-transaction",
|
|
1068
|
+
"resource queue-items unset-reviewer",
|
|
1069
|
+
"resource queue-items update",
|
|
1070
|
+
"resource queues",
|
|
1071
|
+
"resource queues create",
|
|
1072
|
+
"resource queues delete",
|
|
1073
|
+
"resource queues get",
|
|
1074
|
+
"resource queues get-folders",
|
|
1075
|
+
"resource queues get-stats",
|
|
1076
|
+
"resource queues list",
|
|
1077
|
+
"resource queues share",
|
|
1078
|
+
"resource queues unshare",
|
|
1079
|
+
"resource queues update",
|
|
1080
|
+
"resource triggers",
|
|
1081
|
+
"resource triggers create",
|
|
1082
|
+
"resource triggers delete",
|
|
1083
|
+
"resource triggers get",
|
|
1084
|
+
"resource triggers history",
|
|
1085
|
+
"resource triggers list",
|
|
1086
|
+
"resource triggers update",
|
|
1087
|
+
"resource webhooks",
|
|
1088
|
+
"resource webhooks create",
|
|
1089
|
+
"resource webhooks delete",
|
|
1090
|
+
"resource webhooks event-types",
|
|
1091
|
+
"resource webhooks get",
|
|
1092
|
+
"resource webhooks list",
|
|
1093
|
+
"resource webhooks ping",
|
|
1094
|
+
"resource webhooks update",
|
|
1095
|
+
"rpa",
|
|
1096
|
+
"rpa-legacy",
|
|
1097
|
+
"rpa-legacy debug",
|
|
1098
|
+
"rpa-legacy find-activities",
|
|
1099
|
+
"rpa-legacy find-package",
|
|
1100
|
+
"rpa-legacy pack",
|
|
1101
|
+
"rpa-legacy type-definition",
|
|
1102
|
+
"rpa-legacy validate",
|
|
1103
|
+
"skills",
|
|
1104
|
+
"skills install",
|
|
1105
|
+
"skills list",
|
|
1106
|
+
"skills search",
|
|
1107
|
+
"skills show",
|
|
1108
|
+
"skills uninstall",
|
|
1109
|
+
"skills update",
|
|
1110
|
+
"solution",
|
|
1111
|
+
"solution delete",
|
|
1112
|
+
"solution deploy",
|
|
1113
|
+
"solution deploy activate",
|
|
1114
|
+
"solution deploy config",
|
|
1115
|
+
"solution deploy config get",
|
|
1116
|
+
"solution deploy config link",
|
|
1117
|
+
"solution deploy config set",
|
|
1118
|
+
"solution deploy config unlink",
|
|
1119
|
+
"solution deploy list",
|
|
1120
|
+
"solution deploy run",
|
|
1121
|
+
"solution deploy status",
|
|
1122
|
+
"solution deploy uninstall",
|
|
1123
|
+
"solution download",
|
|
1124
|
+
"solution init",
|
|
1125
|
+
"solution pack",
|
|
1126
|
+
"solution packages",
|
|
1127
|
+
"solution packages delete",
|
|
1128
|
+
"solution packages download",
|
|
1129
|
+
"solution packages list",
|
|
1130
|
+
"solution project",
|
|
1131
|
+
"solution project add",
|
|
1132
|
+
"solution project import",
|
|
1133
|
+
"solution project list",
|
|
1134
|
+
"solution project publish",
|
|
1135
|
+
"solution project remove",
|
|
1136
|
+
"solution project resync",
|
|
1137
|
+
"solution publish",
|
|
1138
|
+
"solution resource",
|
|
1139
|
+
"solution resource add",
|
|
1140
|
+
"solution resource edit",
|
|
1141
|
+
"solution resource get",
|
|
1142
|
+
"solution resource list",
|
|
1143
|
+
"solution resource refresh",
|
|
1144
|
+
"solution resource remove",
|
|
1145
|
+
"solution upload",
|
|
1146
|
+
"tasks",
|
|
1147
|
+
"tasks assign",
|
|
1148
|
+
"tasks complete",
|
|
1149
|
+
"tasks get",
|
|
1150
|
+
"tasks list",
|
|
1151
|
+
"tasks reassign",
|
|
1152
|
+
"tasks unassign",
|
|
1153
|
+
"tasks users",
|
|
1154
|
+
"tm",
|
|
1155
|
+
"tm attachment",
|
|
1156
|
+
"tm attachment download",
|
|
1157
|
+
"tm customfield",
|
|
1158
|
+
"tm customfield create",
|
|
1159
|
+
"tm customfield delete",
|
|
1160
|
+
"tm customfield get",
|
|
1161
|
+
"tm customfield label",
|
|
1162
|
+
"tm customfield label add",
|
|
1163
|
+
"tm customfield label create",
|
|
1164
|
+
"tm customfield label get",
|
|
1165
|
+
"tm customfield label list",
|
|
1166
|
+
"tm customfield label remove",
|
|
1167
|
+
"tm customfield list",
|
|
1168
|
+
"tm customfield update",
|
|
1169
|
+
"tm customfield value",
|
|
1170
|
+
"tm customfield value create",
|
|
1171
|
+
"tm customfield value delete",
|
|
1172
|
+
"tm customfield value get",
|
|
1173
|
+
"tm customfield value list",
|
|
1174
|
+
"tm customfield value update",
|
|
1175
|
+
"tm executions",
|
|
1176
|
+
"tm executions get-stats",
|
|
1177
|
+
"tm executions list",
|
|
1178
|
+
"tm executions list-filtered",
|
|
1179
|
+
"tm executions retry",
|
|
1180
|
+
"tm executions run",
|
|
1181
|
+
"tm executions testcaselogs",
|
|
1182
|
+
"tm executions testcaselogs list",
|
|
1183
|
+
"tm objectlabel",
|
|
1184
|
+
"tm objectlabel add",
|
|
1185
|
+
"tm objectlabel get",
|
|
1186
|
+
"tm objectlabel list",
|
|
1187
|
+
"tm objectlabel remove",
|
|
1188
|
+
"tm project",
|
|
1189
|
+
"tm project clear-default-folder",
|
|
1190
|
+
"tm project create",
|
|
1191
|
+
"tm project delete",
|
|
1192
|
+
"tm project list",
|
|
1193
|
+
"tm project owners",
|
|
1194
|
+
"tm project owners list",
|
|
1195
|
+
"tm project set-default-folder",
|
|
1196
|
+
"tm project update",
|
|
1197
|
+
"tm report",
|
|
1198
|
+
"tm report get",
|
|
1199
|
+
"tm result",
|
|
1200
|
+
"tm result download",
|
|
1201
|
+
"tm testcaselog",
|
|
1202
|
+
"tm testcaselog finish",
|
|
1203
|
+
"tm testcaselog list-assertions",
|
|
1204
|
+
"tm testcaselog start",
|
|
1205
|
+
"tm testcases",
|
|
1206
|
+
"tm testcases add",
|
|
1207
|
+
"tm testcases create",
|
|
1208
|
+
"tm testcases delete",
|
|
1209
|
+
"tm testcases link-automation",
|
|
1210
|
+
"tm testcases list",
|
|
1211
|
+
"tm testcases list-automations",
|
|
1212
|
+
"tm testcases list-result-history",
|
|
1213
|
+
"tm testcases list-steps",
|
|
1214
|
+
"tm testcases list-testsets",
|
|
1215
|
+
"tm testcases remove",
|
|
1216
|
+
"tm testcases run",
|
|
1217
|
+
"tm testcases unlink-automation",
|
|
1218
|
+
"tm testcases update",
|
|
1219
|
+
"tm testsets",
|
|
1220
|
+
"tm testsets create",
|
|
1221
|
+
"tm testsets delete",
|
|
1222
|
+
"tm testsets list",
|
|
1223
|
+
"tm testsets list-testcases",
|
|
1224
|
+
"tm testsets run",
|
|
1225
|
+
"tm testsets update",
|
|
1226
|
+
"tm teststeplog",
|
|
1227
|
+
"tm teststeplog list",
|
|
1228
|
+
"tm user",
|
|
1229
|
+
"tm user get",
|
|
1230
|
+
"tm wait",
|
|
1231
|
+
"tools",
|
|
1232
|
+
"tools install",
|
|
1233
|
+
"tools list",
|
|
1234
|
+
"tools search",
|
|
1235
|
+
"tools uninstall",
|
|
1236
|
+
"tools update",
|
|
1237
|
+
"traces",
|
|
1238
|
+
"traces feedback",
|
|
1239
|
+
"traces feedback create",
|
|
1240
|
+
"traces feedback delete",
|
|
1241
|
+
"traces feedback get",
|
|
1242
|
+
"traces feedback list",
|
|
1243
|
+
"traces feedback list detailed",
|
|
1244
|
+
"traces feedback update",
|
|
1245
|
+
"traces spans",
|
|
1246
|
+
"traces spans get",
|
|
1247
|
+
"update",
|
|
1248
|
+
"user",
|
|
1249
|
+
"vss",
|
|
1250
|
+
"vss add",
|
|
1251
|
+
"vss generate",
|
|
1252
|
+
"vss init",
|
|
1253
|
+
"vss sync"
|
|
1254
|
+
],
|
|
1255
|
+
"unwalkable_groups": [
|
|
1256
|
+
"codedagent add",
|
|
1257
|
+
"codedagent debug",
|
|
1258
|
+
"codedagent deploy",
|
|
1259
|
+
"codedagent dev",
|
|
1260
|
+
"codedagent eval",
|
|
1261
|
+
"codedagent init",
|
|
1262
|
+
"codedagent invoke",
|
|
1263
|
+
"codedagent list-models",
|
|
1264
|
+
"codedagent new",
|
|
1265
|
+
"codedagent pack",
|
|
1266
|
+
"codedagent publish",
|
|
1267
|
+
"codedagent pull",
|
|
1268
|
+
"codedagent push",
|
|
1269
|
+
"codedagent register",
|
|
1270
|
+
"codedagent run",
|
|
1271
|
+
"context-grounding",
|
|
1272
|
+
"llm-configuration",
|
|
1273
|
+
"rpa"
|
|
1274
|
+
]
|
|
1275
|
+
}
|