@uipath/skills 1.196.0 → 1.197.0-preview.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 +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/CODEOWNERS +17 -4
- package/README.md +13 -1
- package/assets/skill-status.json +9 -1
- package/assets/uip-catalog-snapshot.json +13 -2
- package/hooks/hooks.json +12 -0
- package/hooks/send-telemetry.sh +421 -0
- package/hooks/suggest-permissions.sh +6 -0
- package/hooks/validate-skill-descriptions.sh +0 -0
- package/package.json +1 -1
- package/skills/uipath-admin/SKILL.md +24 -4
- package/skills/uipath-admin/references/audit-commands.md +25 -21
- package/skills/uipath-admin/references/audit-workflow-guide.md +26 -25
- package/skills/uipath-admin/references/diagnose/CAPABILITY.md +74 -0
- package/skills/uipath-admin/references/diagnose/references/failure-modes.md +228 -0
- package/skills/uipath-admin/references/diagnose/references/troubleshooting-guide.md +106 -0
- package/skills/uipath-admin/references/identity-troubleshoot-guide.md +251 -0
- package/skills/uipath-agents/SKILL.md +7 -4
- package/skills/uipath-agents/references/coded/capabilities/context-grounding.md +2 -0
- package/skills/uipath-agents/references/coded/capabilities/conversational-agents.md +2 -0
- package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails-recommend.md +7 -4
- package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails.md +141 -1
- package/skills/uipath-agents/references/coded/capabilities/human-in-the-loop.md +2 -0
- package/skills/uipath-agents/references/coded/capabilities/integration-service.md +19 -33
- package/skills/uipath-agents/references/coded/lifecycle/bindings-reference.md +54 -22
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluation-sets.md +5 -1
- package/skills/uipath-agents/references/coded/lifecycle/setup.md +2 -0
- package/skills/uipath-agents/references/coded/quickstart.md +4 -4
- package/skills/uipath-agents/references/coded-vs-lowcode-guide.md +1 -0
- package/skills/uipath-agents/references/context-grounding-patterns.md +1 -1
- package/skills/uipath-agents/references/lowcode/agent-definition.md +97 -12
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/analyze-attachments.md +2 -2
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/impl-json.md +40 -14
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/built-in-tools.md +4 -3
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/impl-json.md +38 -6
- package/skills/uipath-agents/references/lowcode/capabilities/context/attachments.md +1 -1
- package/skills/uipath-agents/references/lowcode/capabilities/context/context.md +1 -1
- package/skills/uipath-agents/references/lowcode/capabilities/context/datafabric.md +1 -1
- package/skills/uipath-agents/references/lowcode/capabilities/context/index.md +7 -3
- package/skills/uipath-agents/references/lowcode/capabilities/escalation/escalation.md +49 -38
- package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails.md +45 -45
- package/skills/uipath-agents/references/lowcode/capabilities/inline-in-flow/inline-in-flow.md +11 -11
- package/skills/uipath-agents/references/lowcode/capabilities/integration-service/integration-service.md +1 -1
- package/skills/uipath-agents/references/lowcode/capabilities/memory/memory.md +2 -0
- package/skills/uipath-agents/references/lowcode/capabilities/process/process.md +2 -2
- package/skills/uipath-agents/references/lowcode/capabilities/process/solution-files.md +1 -1
- package/skills/uipath-agents/references/lowcode/critical-rules/autonomous-critical-rules.md +15 -0
- package/skills/uipath-agents/references/lowcode/critical-rules/conversational-critical-rules.md +19 -0
- package/skills/uipath-agents/references/lowcode/{critical-rules.md → critical-rules/critical-rules.md} +25 -27
- package/skills/uipath-agents/references/lowcode/debug.md +6 -3
- package/skills/uipath-agents/references/lowcode/evaluations/evaluate.md +2 -0
- package/skills/uipath-agents/references/lowcode/lowcode.md +29 -6
- package/skills/uipath-agents/references/lowcode/model-selection-guide.md +4 -1
- package/skills/uipath-agents/references/lowcode/project-lifecycle.md +11 -8
- package/skills/uipath-agents/references/lowcode/prompting/agent-prompting-guide.md +17 -0
- package/skills/uipath-agents/references/lowcode/{agent-prompting-guide.md → prompting/autonomous-agent-prompting-guide.md} +9 -11
- package/skills/uipath-agents/references/lowcode/prompting/conversational-agent-prompting-guide.md +123 -0
- package/skills/uipath-agents/references/lowcode/solution-resources.md +1 -1
- package/skills/uipath-api-workflow/SKILL.md +1 -1
- package/skills/uipath-api-workflow/references/cli-reference.md +8 -5
- package/skills/uipath-api-workflow/references/connector-activity-discovery.md +43 -4
- package/skills/uipath-api-workflow/references/troubleshooting.md +7 -2
- package/skills/uipath-coded-apps/SKILL.md +3 -0
- package/skills/uipath-coded-apps/assets/templates/action-app/app-template.css +9 -0
- package/skills/uipath-coded-apps/assets/templates/action-app/document-tab-template.css +139 -0
- package/skills/uipath-coded-apps/assets/templates/action-app/form-template.css +442 -0
- package/skills/uipath-coded-apps/assets/templates/action-app/index-template.css +111 -0
- package/skills/uipath-coded-apps/assets/templates/action-app-template.md +357 -152
- package/skills/uipath-coded-apps/references/create-action-app.md +284 -195
- package/skills/uipath-coded-apps/references/create-web-app.md +2 -0
- package/skills/uipath-coded-apps/references/oauth-scopes.md +20 -0
- package/skills/uipath-coded-apps/references/pack-publish-deploy.md +2 -0
- package/skills/uipath-coded-apps/references/sdk/action-center.md +32 -6
- package/skills/uipath-coded-apps/references/sdk/orchestrator.md +6 -2
- package/skills/uipath-coded-apps/references/widgets/validation-station.md +308 -0
- package/skills/uipath-coded-apps/scripts/validate-action-schema.js +241 -0
- package/skills/uipath-connector-builder/SKILL.md +192 -0
- package/skills/uipath-connector-builder/references/auth.md +171 -0
- package/skills/uipath-connector-builder/references/configuration.md +130 -0
- package/skills/uipath-connector-builder/references/debugging.md +80 -0
- package/skills/uipath-connector-builder/references/element-json.md +148 -0
- package/skills/uipath-connector-builder/references/events.md +132 -0
- package/skills/uipath-connector-builder/references/hooks.md +198 -0
- package/skills/uipath-connector-builder/references/overview.md +78 -0
- package/skills/uipath-connector-builder/references/standard-resources.md +111 -0
- package/skills/uipath-connector-builder/references/system-resources.md +85 -0
- package/skills/uipath-feedback/SKILL.md +43 -29
- package/skills/uipath-governance/SKILL.md +13 -1
- package/skills/uipath-governance/references/aops-policy/aops-policy-commands.md +10 -10
- package/skills/uipath-governance/references/aops-policy/aops-policy-deploy-guide.md +7 -7
- package/skills/uipath-governance/references/diagnose/CAPABILITY.md +71 -0
- package/skills/uipath-governance/references/diagnose/references/failure-modes.md +201 -0
- package/skills/uipath-governance/references/diagnose/references/troubleshooting-guide.md +137 -0
- package/skills/uipath-ixp/SKILL.md +119 -0
- package/skills/uipath-ixp/references/cli-reference.md +121 -0
- package/skills/uipath-ixp/references/improve-prompts-guide.md +283 -0
- package/skills/uipath-ixp/references/label-documents-guide.md +205 -0
- package/skills/uipath-ixp/references/project-setup-guide.md +90 -0
- package/skills/uipath-maestro-bpmn/SKILL.md +167 -68
- package/skills/uipath-maestro-bpmn/references/cli-conventions.md +47 -0
- package/skills/uipath-maestro-bpmn/references/diagnose/CAPABILITY.md +6 -6
- package/skills/uipath-maestro-bpmn/references/operate/CAPABILITY.md +3 -3
- package/skills/uipath-maestro-bpmn/references/registry-workflow.md +199 -0
- package/skills/uipath-maestro-bpmn/references/structural-bpmn.md +500 -0
- package/skills/uipath-maestro-bpmn/validator/README.md +214 -0
- package/skills/uipath-maestro-bpmn/validator/bpmn-spec.json +2473 -0
- package/skills/uipath-maestro-bpmn/validator/model.mjs +419 -0
- package/skills/uipath-maestro-bpmn/validator/package.json +17 -0
- package/skills/uipath-maestro-bpmn/validator/rules.mjs +1403 -0
- package/skills/uipath-maestro-bpmn/validator/samples/invalid-conditional-and-variable.bpmn +25 -0
- package/skills/uipath-maestro-bpmn/validator/samples/valid-baseline.bpmn +52 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/A.2.0.bpmn +157 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/A.2.1.bpmn +333 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/B.1.0.bpmn +598 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/B.2.0.bpmn +1709 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.2.0.bpmn +564 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.3.0.bpmn +671 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.4.0.bpmn +1045 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.5.0.bpmn +1176 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.6.0.bpmn +670 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.7.0.bpmn +466 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Can_Parse_Complex_Process_With_Task_Gateway_BoundaryEvent_etc.bpmn +74 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/ExclusiveGatewayDefaultFlow.bpmn +32 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/ExternalAgentWorkflow.bpmn +62 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Golden_Scenario.initial.bpmn +361 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/InclusiveJoinRouteAwayBranch.bpmn +62 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_AsyncExecution_And_Create_CorrectModel.bpmn +74 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_IXP_ExtractionValidation_And_Create_CorrectModel.bpmn +35 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_IXP_Extraction_FileUpload_And_Create_CorrectModel.bpmn +33 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_IXP_Extraction_JobAttachment_And_Create_CorrectModel.bpmn +35 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_SubProcess_With_Multiple_Element_Types.bpmn +76 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/StartEventWithOutputs.bpmn +36 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/StartGatewayEnd.bpmn +44 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/all elements.bpmn +516 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/all_sequence_flow_types.bpmn +173 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/demo.bpmn +181 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/subprocess-example-001-collapsed.bpmn +126 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/subprocess-example-001-expanded.bpmn +122 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/subprocess-example-003-collapsed_deeply-nested.bpmn +438 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/A.1.0.bpmn +87 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/A.3.0.bpmn +165 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ApiWorkflow.bpmn +39 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnNestedSubProcessTests.bpmn +102 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnTimerBoundaryEvents.bpmn +160 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnXmlWithCatchAllErrorEventSubProcess.bpmn +45 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnXmlWithSpecificErrorEventSubProcess.bpmn +46 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/CaseManagementWithConstantIdentifier.bpmn +218 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ErrorBoundary.bpmn +78 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ErrorPropagationInEventSubprocess.bpmn +340 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/EventBasedGatewayFirstCatcherWins.bpmn +56 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Example-EventBasedGateway.bpmn +117 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ExclusiveGatewayConditional.bpmn +45 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ExclusiveGatewaySharedEndEvent.bpmn +45 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ExclusiveWithParallelGateway.bpmn +68 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/FourScriptTasks.bpmn +84 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/HitlTaskOnly.bpmn +55 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/InclusiveGatewayForkJoin.bpmn +69 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_BPMN_Elements_And_Create_CorrectModel.bpmn +20 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_HttpRequest_ServiceTask_And_Create_Correct_Model.bpmn +34 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_MessageBoundaryEvent_And_Create_CorrectModel.bpmn +87 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_Script_Task_V2_And_Create_Correct_Model.bpmn +31 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_Sets_Containers_Properly.bpmn +129 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ScriptWritesVariableThenGatewayBranches.bpmn +55 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/boundaryevent.bpmn +30 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/collapsed-subprocess.bpmn +83 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/connectable-types.bpmn +85 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/extensions-orchestrator-start-job.bpmn +80 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/multiparticipantpool.bpmn +77 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/nestedsubprocess.bpmn +36 -0
- package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/simple.bpmn +59 -0
- package/skills/uipath-maestro-bpmn/validator/test/integration.test.mjs +146 -0
- package/skills/uipath-maestro-bpmn/validator/test/model-helpers.mjs +42 -0
- package/skills/uipath-maestro-bpmn/validator/test/ported-rule-tests.mjs +983 -0
- package/skills/uipath-maestro-bpmn/validator/test/run-tests.mjs +530 -0
- package/skills/uipath-maestro-bpmn/validator/uipath-moddle.v1.json +715 -0
- package/skills/uipath-maestro-bpmn/validator/validate-bpmn.mjs +164 -0
- package/skills/uipath-maestro-case/SKILL.md +5 -1
- package/skills/uipath-maestro-case/assets/templates/sdd-template-examples.md +10 -0
- package/skills/uipath-maestro-case/assets/templates/sdd-template.md +89 -17
- package/skills/uipath-maestro-case/references/bindings-and-expressions.md +26 -0
- package/skills/uipath-maestro-case/references/case-editing-operations.md +3 -0
- package/skills/uipath-maestro-case/references/implementation.md +11 -4
- package/skills/uipath-maestro-case/references/phase-0-interview.md +8 -7
- package/skills/uipath-maestro-case/references/phased-execution.md +2 -1
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/impl-json.md +21 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/planning.md +2 -0
- package/skills/uipath-maestro-case/references/plugins/variables/global-vars/impl-json.md +15 -9
- package/skills/uipath-maestro-case/references/plugins/variables/io-binding/impl-json.md +131 -4
- package/skills/uipath-maestro-case/references/sdd-generation-rules.md +94 -17
- package/skills/uipath-maestro-flow/.maintenance/check-all.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-anchors.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-depth.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-link-text.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-links.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-orphans.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-plugin-pairs.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-template.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-uip-commands.sh +0 -0
- package/skills/uipath-maestro-flow/.maintenance/check-versions.sh +0 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/http/impl-connector.md +4 -1
- package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/impl.md +73 -48
- package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/planning.md +16 -4
- package/skills/uipath-maestro-flow/references/evaluate/references/commands-reference.md +8 -8
- package/skills/uipath-maestro-flow/references/evaluate/references/running-guide.md +3 -3
- package/skills/uipath-planner/SKILL.md +16 -7
- package/skills/uipath-planner/assets/templates/agent-sdd-template.md +14 -0
- package/skills/uipath-planner/assets/templates/api-workflow-sdd-template.md +14 -0
- package/skills/uipath-planner/assets/templates/case-sdd-template.md +14 -0
- package/skills/uipath-planner/assets/templates/coded-app-sdd-template.md +14 -0
- package/skills/uipath-planner/assets/templates/flow-sdd-template.md +14 -0
- package/skills/uipath-planner/assets/templates/rpa-sdd-template.md +25 -5
- package/skills/uipath-planner/references/multi-skill-patterns-guide.md +2 -0
- package/skills/uipath-planner/references/non-pdd-lane-guide.md +2 -0
- package/skills/uipath-planner/references/pdd-analysis-guide.md +23 -1
- package/skills/uipath-planner/references/pdd-driven-lane-guide.md +6 -2
- package/skills/uipath-planner/references/plan-and-tasks-format.md +2 -0
- package/skills/uipath-planner/references/platform-availability-guide.md +44 -0
- package/skills/uipath-planner/references/product-selection-guide.md +20 -0
- package/skills/uipath-planner/references/sdd-generation-guide.md +84 -21
- package/skills/uipath-planner/references/tenant-library-search-guide.md +5 -1
- package/skills/uipath-planner/scripts/docx-extract.sh +54 -0
- package/skills/uipath-planner/scripts/sdd-to-docx.sh +77 -0
- package/skills/uipath-platform/SKILL.md +54 -6
- package/skills/uipath-platform/references/context-grounding/index-management.md +123 -0
- package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/bulk-import.md +15 -4
- package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/choice-sets.md +27 -11
- package/skills/uipath-platform/references/data-fabric/data-fabric.md +303 -0
- package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/entity-schema.md +94 -37
- package/skills/uipath-platform/references/data-fabric/file-attachments.md +122 -0
- package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/filter-platform-contract.md +3 -3
- package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/records-query.md +46 -10
- package/skills/uipath-platform/references/integration-service/http-request.md +15 -1
- package/skills/uipath-platform/references/integration-service/vendor-docs-registry.json +173 -0
- package/skills/uipath-platform/references/uip-commands.md +12 -3
- package/skills/uipath-review/SKILL.md +53 -12
- package/skills/uipath-review/references/agents/agent-common-issues.md +1 -1
- package/skills/uipath-review/references/agents/agent-grading-rubric.md +133 -0
- package/skills/uipath-review/references/agents/agent-review-checklist.md +23 -3
- package/skills/uipath-review/references/agents/agents-coded-rules.md +7 -0
- package/skills/uipath-review/references/agents/agents-lowcode-rules.md +13 -3
- package/skills/uipath-review/references/agents/guardrails/guardrails-review.md +198 -0
- package/skills/uipath-review/references/architecture-assessment-guide.md +2 -0
- package/skills/uipath-review/references/review-workflow-guide.md +9 -5
- package/skills/uipath-review/references/rule-catalog-workflow.md +3 -3
- package/skills/uipath-rpa/SKILL.md +7 -4
- package/skills/uipath-rpa/references/cli-reference.md +29 -1
- package/skills/uipath-rpa/references/connector-capabilities.md +2 -0
- package/skills/uipath-rpa/references/data-manipulation-guide.md +311 -0
- package/skills/uipath-rpa/references/environment-setup.md +0 -2
- package/skills/uipath-rpa/references/is-connector-xaml-guide.md +127 -11
- package/skills/uipath-rpa/references/ui-automation-guide.md +129 -18
- package/skills/uipath-rpa/references/uia-configure-target-workflows.md +22 -1
- package/skills/uipath-rpa/references/uia-elements-interaction-guide.md +93 -0
- package/skills/uipath-rpa/references/xaml/canvas-layout-guide.md +41 -4
- package/skills/uipath-rpa/references/xaml/common-pitfalls.md +12 -3
- package/skills/uipath-rpa/references/xaml/flowchart-guide.md +113 -0
- package/skills/uipath-rpa/references/xaml/xaml-basics-and-rules.md +5 -9
- package/skills/uipath-solution/SKILL.md +11 -8
- package/skills/uipath-solution/references/pack-and-deploy.md +18 -1
- package/skills/uipath-solution/references/solution-overview.md +3 -0
- package/skills/uipath-test/SKILL.md +2 -1
- package/skills/uipath-troubleshoot/SKILL.md +24 -26
- package/skills/uipath-troubleshoot/agents/depth-verifier.md +24 -25
- package/skills/uipath-troubleshoot/agents/hypothesis-generator.md +8 -4
- package/skills/uipath-troubleshoot/agents/hypothesis-tester.md +85 -38
- package/skills/uipath-troubleshoot/agents/presenter.md +7 -7
- package/skills/uipath-troubleshoot/agents/scope-checker.md +3 -6
- package/skills/uipath-troubleshoot/agents/shared.md +26 -21
- package/skills/uipath-troubleshoot/agents/triage.md +117 -49
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/investigation_guide.md +43 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/overview.md +57 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-action-failed-after-find.md +100 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-cell-targeting-failures.md +111 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-element-not-found.md +125 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-get-text-empty-or-wrong-result.md +117 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-invalid-descriptor.md +102 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-scope-setup-failures.md +136 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-scroll-search-failures.md +114 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-server-auth-throttling-network.md +95 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-silent-failures-and-false-results.md +124 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/presentation.md +8 -0
- package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/summary.md +15 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/investigation_guide.md +42 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/overview.md +41 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/connect-to-database-failures.md +104 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/execute-non-query-failures.md +97 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/execute-query-failures.md +134 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/start-transaction-failures.md +94 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/presentation.md +10 -0
- package/skills/uipath-troubleshoot/references/activity-packages/database-activities/summary.md +10 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/investigation_guide.md +27 -9
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/overview.md +51 -10
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/append-range-failures.md +146 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/delete-range-failures.md +126 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/excel-application-card-failures.md +139 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/excel-application-scope-failures.md +118 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/execute-macro-failures.md +149 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/write-range-failures.md +145 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/presentation.md +12 -7
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/summary.md +6 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/investigation_guide.md +1 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/overview.md +12 -4
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/connection-and-auth-failures.md +55 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-file-not-found.md +18 -10
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/get-newest-email-not-found.md +9 -8
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/invalid-or-null-input.md +68 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/transient-and-timeout-errors.md +52 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/upload-storage-quota-exceeded.md +1 -1
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/summary.md +5 -2
- package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/overview.md +28 -0
- package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/delete-outlook-mail-failures.md +105 -0
- package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/get-outlook-mail-failures.md +109 -0
- package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/move-outlook-mail-failures.md +97 -0
- package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/send-outlook-mail-failures.md +95 -0
- package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/summary.md +8 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/investigation_guide.md +23 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/overview.md +9 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/application-scope-misconfigured.md +49 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/authentication-token-invalid.md +53 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/copy-item-argument-null.md +34 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/create-folder-invalid-path.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/download-file-conversion-or-destination.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/drive-item-not-found.md +1 -1
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/email-trigger-connection-event-failure.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/insufficient-graph-scope.md +44 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/legacy-mail-null-reference.md +43 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-folder-not-found.md +4 -3
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-invalid-odata-query.md +43 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-message-not-found.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/request-throttled.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/send-mail-rejected.md +52 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/transient-service-error.md +48 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/upload-file-quota-or-size.md +47 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/summary.md +15 -1
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/investigation_guide.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/overview.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/invoke-method-failures.md +57 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/invoke-python-method-pipe-is-broken.md +44 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/load-script-failures.md +62 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/python-path-not-valid.md +39 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/python-scope-architecture-version-mismatch.md +41 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/working-folder-relative-path.md +34 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/presentation.md +9 -0
- package/skills/uipath-troubleshoot/references/activity-packages/python-activities/summary.md +12 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-activity-bug-silent-failure.md +1 -1
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-robot-not-authenticated.md +29 -22
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/summary.md +1 -1
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/investigation_guide.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/overview.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/deserialize-malformed-input.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/deserialize-null-input.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/deserialize-type-mismatch.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/http-client-null-reference.md +34 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/http-request-connection-failure.md +48 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/http-request-timeout.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/net-http-request-aggregate-failure.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/web-activities/summary.md +13 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/investigation_guide.md +55 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/overview.md +82 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/add-picture-failures.md +51 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/append-text-missing-container.md +31 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/append-text-zero-byte-file.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/export-pdf-com-hang.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/export-pdf-missing-output-dir.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/export-pdf-output-path-format.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/read-text-doc-format.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/read-text-missing-container.md +29 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/read-text-protected-view.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-com-busy.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-file-locked.md +33 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-headers-textboxes-skipped.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-length-limit.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-loop-template-overwrite.md +31 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-multiline-formatting.md +31 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-silent-no-substitution.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-version-mismatch.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-com-interop-failures.md +52 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-com-start-background-session0.md +50 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-export-pdf-com-wrong-thread.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-open-sharepoint-url-com-command-failed.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-cannot-create-unknown-type.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-com-not-installed.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-file-corrupted.md +34 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-file-path-not-found.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-hangs-background-prompt.md +34 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/presentation.md +11 -0
- package/skills/uipath-troubleshoot/references/activity-packages/word-activities/summary.md +38 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/investigation_guide.md +9 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/overview.md +7 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-invalid.md +9 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-aggregate-exception.md +30 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-general-exception.md +43 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-null-reference.md +36 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-remote-exception.md +31 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-runtime-exception.md +40 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/summary.md +5 -0
- package/skills/uipath-troubleshoot/references/products/maestro/investigation_guide.md +2 -1
- package/skills/uipath-troubleshoot/references/products/orchestrator/investigation_guide.md +105 -10
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-faulted-logon-failure.md +1 -1
- package/skills/uipath-troubleshoot/references/summary.md +59 -3
- package/skills/uipath-troubleshoot/schemas/evidence.schema.md +48 -0
- package/skills/uipath-troubleshoot/schemas/hypotheses.schema.md +22 -7
- package/skills/uipath-troubleshoot/schemas/scope-check.schema.md +1 -1
- package/skills/uipath-troubleshoot/schemas/state.schema.md +81 -6
- package/version-manifest.json +2 -2
- package/skills/uipath-data-fabric/SKILL.md +0 -239
- package/skills/uipath-data-fabric/references/file-attachments.md +0 -65
- package/skills/uipath-maestro-bpmn/.maintenance/README.md +0 -241
- package/skills/uipath-maestro-bpmn/.maintenance/check-all.sh +0 -41
- package/skills/uipath-maestro-bpmn/.maintenance/check-anchors.sh +0 -83
- package/skills/uipath-maestro-bpmn/.maintenance/check-depth.sh +0 -132
- package/skills/uipath-maestro-bpmn/.maintenance/check-link-text.sh +0 -123
- package/skills/uipath-maestro-bpmn/.maintenance/check-links.sh +0 -70
- package/skills/uipath-maestro-bpmn/.maintenance/check-orphans.sh +0 -93
- package/skills/uipath-maestro-bpmn/.maintenance/check-plugin-pairs.sh +0 -39
- package/skills/uipath-maestro-bpmn/.maintenance/check-real-pack.sh +0 -79
- package/skills/uipath-maestro-bpmn/.maintenance/check-template.sh +0 -42
- package/skills/uipath-maestro-bpmn/.maintenance/check-uip-commands.sh +0 -266
- package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.py +0 -1255
- package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.sh +0 -8
- package/skills/uipath-maestro-bpmn/fixtures/validation/README.md +0 -94
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/agent-invocation.bpmn +0 -62
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/bindings_v2.json +0 -37
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/entry-points.json +0 -21
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/bindings_v2.json +0 -68
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/contract-variants.bpmn +0 -270
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/entry-points.json +0 -25
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/bindings_v2.json +0 -19
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/entry-points.json +0 -25
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/gateway-boundary-error.bpmn +0 -91
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/bindings_v2.json +0 -4
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/entry-points.json +0 -25
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/imported-brownfield-preservation.bpmn +0 -63
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/bindings_v2.json +0 -52
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/entry-points.json +0 -21
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/integration-service-enriched.bpmn +0 -65
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/bindings_v2.json +0 -4
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/entry-points.json +0 -25
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/linear-process.bpmn +0 -55
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/bindings_v2.json +0 -20
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/entry-points.json +0 -17
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/registry-coverage-matrix.bpmn +0 -207
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/bindings_v2.json +0 -4
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/entry-points.json +0 -33
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/subprocess-multi-instance.bpmn +0 -94
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/bindings_v2.json +0 -124
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/entry-points.json +0 -25
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/operate.json +0 -9
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/package-descriptor.json +0 -10
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/project.uiproj +0 -7
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/wrapper-family-contract.bpmn +0 -151
- package/skills/uipath-maestro-bpmn/references/author/CAPABILITY.md +0 -141
- package/skills/uipath-maestro-bpmn/references/author/references/brownfield.md +0 -48
- package/skills/uipath-maestro-bpmn/references/author/references/editing-operations.md +0 -75
- package/skills/uipath-maestro-bpmn/references/author/references/greenfield.md +0 -41
- package/skills/uipath-maestro-bpmn/references/author/references/planning-arch.md +0 -82
- package/skills/uipath-maestro-bpmn/references/author/references/planning-impl.md +0 -104
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/impl.md +0 -34
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/planning.md +0 -38
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/impl.md +0 -37
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/planning.md +0 -28
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/impl.md +0 -36
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/planning.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/impl.md +0 -67
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/planning.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/impl.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/planning.md +0 -33
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/impl.md +0 -32
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/planning.md +0 -34
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/impl.md +0 -42
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/planning.md +0 -30
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/impl.md +0 -134
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/planning.md +0 -67
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/impl.md +0 -50
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/planning.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/impl.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/planning.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/impl.md +0 -35
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/planning.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/impl.md +0 -118
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/planning.md +0 -30
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/impl.md +0 -30
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/planning.md +0 -30
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/impl.md +0 -33
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/planning.md +0 -31
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/impl.md +0 -33
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/planning.md +0 -46
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/impl.md +0 -59
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/planning.md +0 -37
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/impl.md +0 -40
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/planning.md +0 -34
- package/skills/uipath-maestro-bpmn/references/author/references/supported-elements.md +0 -123
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/README.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/agent-job.md +0 -36
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/api-workflow.md +0 -29
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/business-rule.md +0 -18
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/call-activity.md +0 -56
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/hitl.md +0 -17
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/http-request.md +0 -119
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/queue.md +0 -21
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/rpa-job.md +0 -23
- package/skills/uipath-maestro-bpmn/references/author/references/validation.md +0 -118
- package/skills/uipath-maestro-bpmn/references/shared/bpmn-xml-contract.md +0 -197
- package/skills/uipath-maestro-bpmn/references/shared/cli-conventions.md +0 -46
- package/skills/uipath-maestro-bpmn/references/shared/error-handling.md +0 -82
- package/skills/uipath-maestro-bpmn/references/shared/variables-bindings-expressions.md +0 -150
- package/skills/uipath-maestro-bpmn/references/shared/wrapper-shells.md +0 -554
- /package/skills/uipath-maestro-bpmn/references/{shared/expression-authoring.md → expression-authoring.md} +0 -0
- /package/skills/uipath-maestro-bpmn/references/{shared/public-safety.md → public-safety.md} +0 -0
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"name": "uipath",
|
|
10
10
|
"source": "./",
|
|
11
11
|
"description": "UiPath plugin for Claude Code — custom skills, agents, hooks, and MCP servers for UiPath workflows, UI automation, UI testing and UiPath troubleshoot",
|
|
12
|
-
"version": "
|
|
12
|
+
"version": "1.197.0",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "UiPath"
|
|
15
15
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uipath",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.197.0",
|
|
4
4
|
"description": "UiPath plugin for Claude Code — custom skills, agents, hooks, and MCP servers for UiPath RPA workflows, UI automation, UI testing, Python coded agents and UiPath troubleshoot",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "UiPath"
|
package/CODEOWNERS
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
# CI workflows and review config
|
|
5
5
|
/.github/ @uipreliga @bai-uipath @akshaylive
|
|
6
|
+
/tests/.coder-eval-version @uipreliga @bai-uipath @akshaylive
|
|
6
7
|
|
|
7
8
|
# Hooks
|
|
8
9
|
/hooks/ @DragosUnguru @RaduAna-Maria
|
|
@@ -28,6 +29,7 @@
|
|
|
28
29
|
/skills/uipath-platform/ @gabrielavaduva @alexenica @andreiopr @vlad-voinea-uipath @emanueldejanu @gcoman @puscasu-ion-daniel @razvalex @aeremencu @alinahornet @DinuDanNicolae @florin-munteanu-uipath @StefanPopaUi @razvanpotcoveanu @vladbucur-8 @busesorin94 @dmorosanu @MarinRzv @vladimir-cozma @UiPath/team-merlot @UiPath/team-orange
|
|
29
30
|
/skills/uipath-platform/references/traces/ @UiPath/llmops-team
|
|
30
31
|
/skills/uipath-platform/references/integration-service/ @chandusailella @baishalighosh
|
|
32
|
+
/skills/uipath-platform/references/data-fabric/ @UiPath/DatafabricCodingAgent
|
|
31
33
|
/skills/uipath-platform/references/llmgateway/ @denispetre @vstoleru-uipath @dragosvelcea
|
|
32
34
|
/tests/tasks/uipath-platform/ @gabrielavaduva @alexenica @andreiopr @vlad-voinea-uipath @emanueldejanu @gcoman @puscasu-ion-daniel @razvalex @aeremencu @alinahornet @DinuDanNicolae @florin-munteanu-uipath @StefanPopaUi @razvanpotcoveanu @vladbucur-8 @busesorin94 @dmorosanu @MarinRzv @vladimir-cozma @UiPath/team-merlot @UiPath/team-orange
|
|
33
35
|
/tests/tasks/uipath-platform/orchestrator/ @gabrielavaduva @alexenica @andreiopr @vlad-voinea-uipath @emanueldejanu @gcoman @puscasu-ion-daniel @razvalex @aeremencu @alinahornet @DinuDanNicolae @florin-munteanu-uipath @StefanPopaUi @razvanpotcoveanu @vladbucur-8 @busesorin94 @dmorosanu @MarinRzv @vladimir-cozma @UiPath/team-merlot @UiPath/team-orange
|
|
@@ -36,12 +38,14 @@
|
|
|
36
38
|
/tests/tasks/uipath-platform/llmgateway/ @denispetre @vstoleru-uipath @dragosvelcea
|
|
37
39
|
/tests/tasks/uipath-platform/traces/ @UiPath/llmops-team
|
|
38
40
|
/tests/fixtures/ @gabrielavaduva @alexenica @andreiopr @vlad-voinea-uipath @emanueldejanu @gcoman @puscasu-ion-daniel @razvalex @aeremencu @alinahornet @DinuDanNicolae @florin-munteanu-uipath @StefanPopaUi @razvanpotcoveanu @vladbucur-8 @busesorin94 @dmorosanu @MarinRzv @vladimir-cozma @UiPath/team-merlot @UiPath/team-orange
|
|
41
|
+
/tests/tasks/uipath-platform/data-fabric/ @UiPath/DatafabricCodingAgent
|
|
39
42
|
|
|
40
43
|
# Agents skill (coded + low-code)
|
|
41
44
|
/skills/uipath-agents/ @UiPath/team-coded-agents @AlexandruCGhimisi @andreibalas-uipath @al3xanndru @andreitava-uip
|
|
42
45
|
/tests/tasks/uipath-agents/ @UiPath/team-coded-agents @AlexandruCGhimisi @andreibalas-uipath @al3xanndru @andreitava-uip
|
|
46
|
+
/tests/tasks/uipath-agents/lowcode/conversational/ @maxduu @andrewwan-uipath
|
|
43
47
|
|
|
44
|
-
# Context grounding capabilities
|
|
48
|
+
# Context grounding capabilities — DeepRAG + BatchTransform (uipath-agents) and index-management CLI (uipath-platform)
|
|
45
49
|
/skills/uipath-agents/references/coded/capabilities/deeprag/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
46
50
|
/skills/uipath-agents/references/coded/capabilities/batch-transform/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
47
51
|
/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
@@ -51,6 +55,9 @@
|
|
|
51
55
|
/tests/tasks/uipath-agents/batch_transform_coded/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
52
56
|
/tests/tasks/uipath-agents/lowcode/deeprag/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
53
57
|
/tests/tasks/uipath-agents/lowcode/batch_transform/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
58
|
+
# Context grounding — index-management CLI (moved to uipath-platform); overrides the platform-team entries above
|
|
59
|
+
/skills/uipath-platform/references/context-grounding/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
60
|
+
/tests/tasks/uipath-platform/context-grounding/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
|
|
54
61
|
|
|
55
62
|
# Guardrails capability docs
|
|
56
63
|
/skills/uipath-agents/references/lowcode/capabilities/guardrails/ @apetraru-uipath @valentinabojan @ctiliescuuipath
|
|
@@ -96,6 +103,10 @@
|
|
|
96
103
|
/skills/uipath-coded-apps/ @Raina451 @deepeshrai-tech @Sandeepan-Ghosh-0312 @swati354
|
|
97
104
|
/tests/tasks/uipath-coded-apps/ @Raina451 @deepeshrai-tech @Sandeepan-Ghosh-0312 @swati354
|
|
98
105
|
|
|
106
|
+
# Connector Builder skill
|
|
107
|
+
/skills/uipath-connector-builder/ @mukeshkumar-uipath @chandusailella @apoosarla-uipath
|
|
108
|
+
/tests/tasks/uipath-connector-builder/ @mukeshkumar-uipath @chandusailella @apoosarla-uipath
|
|
109
|
+
|
|
99
110
|
# Flow skill — plugin guides (away team owned)
|
|
100
111
|
# Add your team here when contributing a new plugin category
|
|
101
112
|
/skills/uipath-maestro-flow/references/plugins/connector/ @baishalighosh @chandusailella @bai-uipath @rockymadden
|
|
@@ -117,6 +128,7 @@
|
|
|
117
128
|
# Troubleshooting
|
|
118
129
|
/skills/uipath-troubleshoot/ @MarinRzv @dmorosanu @vladimir-cozma @costin-uipath @Stefan-Virgil
|
|
119
130
|
/tests/tasks/uipath-troubleshoot/ @MarinRzv @dmorosanu @vladimir-cozma @costin-uipath @Stefan-Virgil
|
|
131
|
+
/tests/tasks/activation/uipath-troubleshoot.jsonl @MarinRzv @dmorosanu @vladimir-cozma @costin-uipath @Stefan-Virgil
|
|
120
132
|
/skills/uipath-troubleshoot/references/products/agents/ @UiPath/llmops-team @andreibalas-uipath
|
|
121
133
|
|
|
122
134
|
# Governance skill
|
|
@@ -127,9 +139,6 @@
|
|
|
127
139
|
/skills/uipath-test/ @vaishalisharma-uipath @amoluipath @ganeshborle
|
|
128
140
|
/tests/tasks/uipath-test/ @vaishalisharma-uipath @amoluipath @ganeshborle
|
|
129
141
|
|
|
130
|
-
# Data Fabric skill (CLI entity/record management)
|
|
131
|
-
/skills/uipath-data-fabric/ @aditi-goyal-uipath
|
|
132
|
-
/tests/tasks/uipath-data-fabric/ @aditi-goyal-uipath
|
|
133
142
|
|
|
134
143
|
# Tasks skill (Action Center Operate)
|
|
135
144
|
/skills/uipath-tasks/ @UiPath/ActionCenterDev
|
|
@@ -139,6 +148,10 @@
|
|
|
139
148
|
/skills/uipath-admin/ @sriramva-uipath @bansal-anushree @jianjunwang2 @t-hsia @ZuerWang99 @litheon @IsabellaCapriottiUIPath @uipathswapnil @ashleyetheridge @yadvender-uipath @CalinMPopa @chandhanshanth
|
|
140
149
|
/tests/tasks/uipath-admin/ @sriramva-uipath @bansal-anushree @jianjunwang2 @t-hsia @ZuerWang99 @litheon @IsabellaCapriottiUIPath @uipathswapnil @ashleyetheridge @yadvender-uipath @CalinMPopa @chandhanshanth
|
|
141
150
|
|
|
151
|
+
# IXP skill
|
|
152
|
+
/skills/uipath-ixp/ @cezara98t @paul-ciobanu @misupantea-uipath @andrei-uipath
|
|
153
|
+
/skills/uipath-ixp/ @cezara98t @paul-ciobanu @misupantea-uipath @andrei-uipath
|
|
154
|
+
/tests/tasks/uipath-ixp/ @cezara98t @paul-ciobanu @misupantea-uipath @andrei-uipath
|
|
142
155
|
# MCP skill (UiPath AgentHub MCP server registration + tool authoring)
|
|
143
156
|
/skills/uipath-mcp-servers/ @cosminpaunel @UiPath/team-coded-agents
|
|
144
157
|
/tests/tasks/uipath-mcp-servers/ @cosminpaunel @UiPath/team-coded-agents
|
package/README.md
CHANGED
|
@@ -93,10 +93,11 @@ Every skill's maturity is tracked in [`assets/skill-status.json`](assets/skill-s
|
|
|
93
93
|
| `uipath-api-workflow` | In-development |
|
|
94
94
|
| `uipath-automation-discovery` | Preview |
|
|
95
95
|
| `uipath-coded-apps` | Preview |
|
|
96
|
-
| `uipath-
|
|
96
|
+
| `uipath-connector-builder` | In-development |
|
|
97
97
|
| `uipath-feedback` | Stable |
|
|
98
98
|
| `uipath-governance` | In-development |
|
|
99
99
|
| `uipath-human-in-the-loop` | In-development |
|
|
100
|
+
| `uipath-ixp` | In-development |
|
|
100
101
|
| `uipath-maestro-bpmn` | In-development |
|
|
101
102
|
| `uipath-maestro-case` | In-development |
|
|
102
103
|
| `uipath-maestro-flow` | In-development |
|
|
@@ -152,6 +153,17 @@ Gemini CLI is supported by `uip skills install`. If the Gemini CLI is on your PA
|
|
|
152
153
|
|
|
153
154
|
This repository is configured as a Codex CLI skill provider. The `AGENTS.md` file (symlinked to `CLAUDE.md`) provides project instructions, and skills are discovered via `.agents/skills/` (symlinked to `skills/`).
|
|
154
155
|
|
|
156
|
+
This repository also includes Codex plugin metadata under `.codex-plugin/`. The Codex plugin manifest exposes the same `skills/` directory and shared session hooks.
|
|
157
|
+
|
|
158
|
+
Install with Codex CLI:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
codex plugin marketplace add UiPath/skills --ref main
|
|
162
|
+
codex plugin add uipath@uipath-marketplace
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
The marketplace entry currently uses a `plugins/uipath` symlink so Codex can load the repository root as the plugin root; remove it once [openai/codex#17066](https://github.com/openai/codex/issues/17066) is resolved.
|
|
166
|
+
|
|
155
167
|
> **Windows users:** This repo uses git symlinks. Clone with symlinks enabled:
|
|
156
168
|
> ```bash
|
|
157
169
|
> git clone -c core.symlinks=true https://github.com/UiPath/skills
|
package/assets/skill-status.json
CHANGED
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
},
|
|
58
58
|
"last_synced": null
|
|
59
59
|
},
|
|
60
|
-
"uipath-
|
|
60
|
+
"uipath-connector-builder": {
|
|
61
61
|
"status": "in-development",
|
|
62
62
|
"confluence": {
|
|
63
63
|
"page_id": null,
|
|
@@ -89,6 +89,14 @@
|
|
|
89
89
|
},
|
|
90
90
|
"last_synced": null
|
|
91
91
|
},
|
|
92
|
+
"uipath-ixp": {
|
|
93
|
+
"status": "in-development",
|
|
94
|
+
"confluence": {
|
|
95
|
+
"page_id": null,
|
|
96
|
+
"url": null
|
|
97
|
+
},
|
|
98
|
+
"last_synced": null
|
|
99
|
+
},
|
|
92
100
|
"uipath-maestro-bpmn": {
|
|
93
101
|
"status": "in-development",
|
|
94
102
|
"confluence": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generated_at": "2026-06-
|
|
3
|
-
"cli_version": "1.
|
|
2
|
+
"generated_at": "2026-06-24T05:25:39Z",
|
|
3
|
+
"cli_version": "1.197.0-alpha.20260623.7621",
|
|
4
4
|
"verbs": [
|
|
5
5
|
"admin",
|
|
6
6
|
"admin audit",
|
|
@@ -298,6 +298,7 @@
|
|
|
298
298
|
"api-workflow bindings",
|
|
299
299
|
"api-workflow bindings sync",
|
|
300
300
|
"api-workflow build",
|
|
301
|
+
"api-workflow init",
|
|
301
302
|
"api-workflow pack",
|
|
302
303
|
"api-workflow registry",
|
|
303
304
|
"api-workflow registry resolve",
|
|
@@ -535,6 +536,8 @@
|
|
|
535
536
|
"ixp projects list",
|
|
536
537
|
"ixp projects list-models",
|
|
537
538
|
"ixp projects publish",
|
|
539
|
+
"ixp projects unpublish",
|
|
540
|
+
"ixp projects untag",
|
|
538
541
|
"ixp projects update-prompt",
|
|
539
542
|
"ixp projects update-title",
|
|
540
543
|
"llm-configuration",
|
|
@@ -1101,6 +1104,7 @@
|
|
|
1101
1104
|
"solution resources list",
|
|
1102
1105
|
"solution resources refresh",
|
|
1103
1106
|
"solution resources remove",
|
|
1107
|
+
"solution restore",
|
|
1104
1108
|
"solution upload",
|
|
1105
1109
|
"tasks",
|
|
1106
1110
|
"tasks assign",
|
|
@@ -1184,6 +1188,13 @@
|
|
|
1184
1188
|
"tm testcases list-testsets",
|
|
1185
1189
|
"tm testcases remove",
|
|
1186
1190
|
"tm testcases run",
|
|
1191
|
+
"tm testcases steps",
|
|
1192
|
+
"tm testcases steps add",
|
|
1193
|
+
"tm testcases steps delete",
|
|
1194
|
+
"tm testcases steps get",
|
|
1195
|
+
"tm testcases steps list",
|
|
1196
|
+
"tm testcases steps move",
|
|
1197
|
+
"tm testcases steps update",
|
|
1187
1198
|
"tm testcases unlink-automation",
|
|
1188
1199
|
"tm testcases update",
|
|
1189
1200
|
"tm testsets",
|
package/hooks/hooks.json
CHANGED
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# PostToolUse telemetry hook for the UiPath skills plugin.
|
|
3
|
+
#
|
|
4
|
+
# Reads the hook JSON payload from stdin, decides whether the tool call is
|
|
5
|
+
# attributable to THIS plugin (skill gate), resolves the UiPath environment
|
|
6
|
+
# (alpha / staging / prod), and pipes one flat JSON object to `uip track`,
|
|
7
|
+
# which forwards it through the CLI's own telemetry tracker as a single
|
|
8
|
+
# uip.skills.tool-use Application Insights event. Calls from other plugins or
|
|
9
|
+
# bare Claude Code are dropped.
|
|
10
|
+
#
|
|
11
|
+
# The CLI (see UiPath/cli#2600) owns transport, the App Insights connection,
|
|
12
|
+
# the event name, the authenticated cloud identity, and the `source:
|
|
13
|
+
# "skills-plugin"` dimension. This hook only derives + sanitizes fields and
|
|
14
|
+
# gates on opt-in; value sanitization stays the hook's responsibility because
|
|
15
|
+
# the CLI and skills ship co-versioned.
|
|
16
|
+
#
|
|
17
|
+
# REGION-SCOPED EXTRACTION (see extract_fields): the payload embeds free-form
|
|
18
|
+
# customer content (prompts, command lines, stdout/stderr, file contents). A
|
|
19
|
+
# naive grep over the whole payload mis-extracts fields when that content
|
|
20
|
+
# contains JSON-shaped text (`"success":false`, `uip solution publish`,
|
|
21
|
+
# `.flow"`, `"resolvedModel":"..."`). So a single string-aware awk pass walks
|
|
22
|
+
# the JSON once and pulls each field ONLY from the region it lives in:
|
|
23
|
+
# ENVELOPE (top-level) -> toolName, toolUseId, sessionId, permissionMode,
|
|
24
|
+
# durationMs, effortLevel (effort.level), agentType
|
|
25
|
+
# tool_input -> skillName, uipSubcommand (command), fileExtension
|
|
26
|
+
# (file_path), subagentType
|
|
27
|
+
# tool_response -> outcome (interrupted/success), subagentModel
|
|
28
|
+
# (resolvedModel)
|
|
29
|
+
# Only derived, low-cardinality, PII-free values ever leave the machine.
|
|
30
|
+
#
|
|
31
|
+
# Non-blocking by contract: registered as an async hook in hooks.json
|
|
32
|
+
# ("async": true), so Claude Code runs it in the background and never waits for
|
|
33
|
+
# it. Always exits 0, swallows every error, and pipes to `uip track` in a
|
|
34
|
+
# detached subshell. Cross-platform (macOS, Linux, Windows via Git Bash /
|
|
35
|
+
# MSYS). Pure bash + grep/sed/awk — no jq, node, or python.
|
|
36
|
+
#
|
|
37
|
+
# Structure: pure helpers + side-effecting procedures (below), driven by main()
|
|
38
|
+
# (bottom). Configuration is env only:
|
|
39
|
+
# UIPATH_TELEMETRY_DISABLED Gate. Reuses the uip CLI's variable name.
|
|
40
|
+
# Send ONLY when explicitly set to "0". Unset
|
|
41
|
+
# (default) or "1" -> do not send. Privacy-first
|
|
42
|
+
# default-off; absent is treated as disabled.
|
|
43
|
+
|
|
44
|
+
set +e
|
|
45
|
+
|
|
46
|
+
# schemaVersion of the emitted event. Bump on ANY change to the key set so App
|
|
47
|
+
# Insights can segment events emitted with older/churned schemas.
|
|
48
|
+
SCHEMA_VERSION=1
|
|
49
|
+
|
|
50
|
+
# --- extraction ------------------------------------------------------------
|
|
51
|
+
|
|
52
|
+
# extract_fields: one string-aware awk pass over the payload (stdin). Prints
|
|
53
|
+
# `key<TAB>value` lines, each field pulled ONLY from its region (see header),
|
|
54
|
+
# so embedded customer content can never false-match a top-level field. String
|
|
55
|
+
# values are emitted raw (escapes left as-is) and single-line (valid JSON
|
|
56
|
+
# escapes control chars, so a real TAB never appears inside a value). Large,
|
|
57
|
+
# uninteresting value strings (stdout, file contents, prompts) are scanned but
|
|
58
|
+
# never buffered, so this stays O(n) without the awk O(n^2) string-concat trap.
|
|
59
|
+
extract_fields() {
|
|
60
|
+
awk '
|
|
61
|
+
function interesting(k, d, c) {
|
|
62
|
+
if (d == 1)
|
|
63
|
+
return (k=="tool_name"||k=="tool_use_id"||k=="session_id"|| \
|
|
64
|
+
k=="permission_mode"||k=="duration_ms"||k=="agent_type"|| \
|
|
65
|
+
k=="hook_event_name")
|
|
66
|
+
if (d == 2 && c == "input")
|
|
67
|
+
return (k=="skill"||k=="command"||k=="file_path"||k=="subagent_type")
|
|
68
|
+
if (d == 2 && c == "response")
|
|
69
|
+
return (k=="interrupted"||k=="success"||k=="resolvedModel")
|
|
70
|
+
if (d == 2 && c == "effort")
|
|
71
|
+
return (k=="level")
|
|
72
|
+
return 0
|
|
73
|
+
}
|
|
74
|
+
{ buf = buf $0 "\n" }
|
|
75
|
+
END {
|
|
76
|
+
n = length(buf)
|
|
77
|
+
depth = 0; instr = 0; esc = 0
|
|
78
|
+
pend = 0; pkey = ""; pdepth = 0 # pending value after a key + colon
|
|
79
|
+
ctx = "" # region at depth 2: input/response/effort/other
|
|
80
|
+
laststr = "" # last closed string (candidate key)
|
|
81
|
+
cur = ""; buffering = 0; isval = 0
|
|
82
|
+
i = 1
|
|
83
|
+
while (i <= n) {
|
|
84
|
+
c = substr(buf, i, 1)
|
|
85
|
+
if (instr) {
|
|
86
|
+
if (esc) { if (buffering) cur = cur c; esc = 0; i++; continue }
|
|
87
|
+
if (c == "\\") { if (buffering) cur = cur c; esc = 1; i++; continue }
|
|
88
|
+
if (c == "\"") {
|
|
89
|
+
instr = 0
|
|
90
|
+
if (isval) {
|
|
91
|
+
if (buffering) print pkey "\t" cur
|
|
92
|
+
pend = 0; isval = 0
|
|
93
|
+
} else {
|
|
94
|
+
laststr = cur
|
|
95
|
+
}
|
|
96
|
+
cur = ""; buffering = 0; i++; continue
|
|
97
|
+
}
|
|
98
|
+
if (buffering) cur = cur c
|
|
99
|
+
i++; continue
|
|
100
|
+
}
|
|
101
|
+
if (c == "\"") {
|
|
102
|
+
instr = 1; cur = ""
|
|
103
|
+
if (pend) { isval = 1; buffering = interesting(pkey, pdepth, ctx) }
|
|
104
|
+
else { isval = 0; buffering = 1 } # key strings are small
|
|
105
|
+
i++; continue
|
|
106
|
+
}
|
|
107
|
+
if (c == ":") {
|
|
108
|
+
pkey = laststr; pdepth = depth; pend = 1
|
|
109
|
+
if (depth == 1 && laststr == "tool_response") print "tool_response_seen\t1"
|
|
110
|
+
i++; continue
|
|
111
|
+
}
|
|
112
|
+
if (c == "{") {
|
|
113
|
+
if (pend) {
|
|
114
|
+
if (pdepth == 1) {
|
|
115
|
+
if (pkey == "tool_input") ctx = "input"
|
|
116
|
+
else if (pkey == "tool_response") ctx = "response"
|
|
117
|
+
else if (pkey == "effort") ctx = "effort"
|
|
118
|
+
else ctx = "other"
|
|
119
|
+
}
|
|
120
|
+
pend = 0
|
|
121
|
+
}
|
|
122
|
+
depth++; i++; continue
|
|
123
|
+
}
|
|
124
|
+
if (c == "[") {
|
|
125
|
+
if (pend) { if (pdepth == 1) ctx = "other"; pend = 0 }
|
|
126
|
+
depth++; i++; continue
|
|
127
|
+
}
|
|
128
|
+
if (c == "}" || c == "]") {
|
|
129
|
+
depth--; if (depth <= 1) ctx = ""; pend = 0; i++; continue
|
|
130
|
+
}
|
|
131
|
+
if (c == ",") { pend = 0; i++; continue }
|
|
132
|
+
if (c == " " || c == "\t" || c == "\n" || c == "\r") { i++; continue }
|
|
133
|
+
if (pend) { # literal value: number/true/false/null
|
|
134
|
+
lit = ""
|
|
135
|
+
while (i <= n) {
|
|
136
|
+
c = substr(buf, i, 1)
|
|
137
|
+
if (c==","||c=="}"||c=="]"||c==" "||c=="\t"||c=="\n"||c=="\r") break
|
|
138
|
+
lit = lit c; i++
|
|
139
|
+
}
|
|
140
|
+
if (interesting(pkey, pdepth, ctx)) print pkey "\t" lit
|
|
141
|
+
pend = 0; continue # leave delimiter for the main loop
|
|
142
|
+
}
|
|
143
|
+
i++
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
'
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
# read_fields: parse extract_fields output ($1) into the field globals. The
|
|
150
|
+
# while loop runs in the current shell (here-doc, not a pipe), so the
|
|
151
|
+
# assignments persist.
|
|
152
|
+
read_fields() {
|
|
153
|
+
event=""; tool=""; tool_use_id=""; session_id=""; permission_mode=""
|
|
154
|
+
duration_ms=""; agent_type=""; skill=""; command=""; file_path=""
|
|
155
|
+
subagent_type=""; interrupted=""; success=""; resolved_model=""
|
|
156
|
+
effort_level=""; response_seen=""
|
|
157
|
+
local k v
|
|
158
|
+
while IFS="$(printf '\t')" read -r k v; do
|
|
159
|
+
case "$k" in
|
|
160
|
+
hook_event_name) event="$v" ;;
|
|
161
|
+
tool_name) tool="$v" ;;
|
|
162
|
+
tool_use_id) tool_use_id="$v" ;;
|
|
163
|
+
session_id) session_id="$v" ;;
|
|
164
|
+
permission_mode) permission_mode="$v" ;;
|
|
165
|
+
duration_ms) duration_ms="$v" ;;
|
|
166
|
+
agent_type) agent_type="$v" ;;
|
|
167
|
+
skill) skill="$v" ;;
|
|
168
|
+
command) command="$v" ;;
|
|
169
|
+
file_path) file_path="$v" ;;
|
|
170
|
+
subagent_type) subagent_type="$v" ;;
|
|
171
|
+
interrupted) interrupted="$v" ;;
|
|
172
|
+
success) success="$v" ;;
|
|
173
|
+
resolvedModel) resolved_model="$v" ;;
|
|
174
|
+
level) effort_level="$v" ;;
|
|
175
|
+
tool_response_seen) response_seen="1" ;;
|
|
176
|
+
esac
|
|
177
|
+
done <<EOF
|
|
178
|
+
$1
|
|
179
|
+
EOF
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
# --- relevance gate --------------------------------------------------------
|
|
183
|
+
|
|
184
|
+
# is_uipath_call: 0 if this call is attributable to the plugin, else 1. No
|
|
185
|
+
# "active plugin" field exists, so attribute per-call from tool_input signals
|
|
186
|
+
# only (command / file_path), so stdout or prompt content can never
|
|
187
|
+
# over-attribute.
|
|
188
|
+
is_uipath_call() {
|
|
189
|
+
case "$tool" in
|
|
190
|
+
Skill)
|
|
191
|
+
case "$skill" in uipath:*|uipath-*) return 0 ;; esac
|
|
192
|
+
;;
|
|
193
|
+
Agent)
|
|
194
|
+
# UiPath agents or Claude's built-in agent types only — NOT custom agents
|
|
195
|
+
# from other plugins (`<plugin>:<name>`) or user-defined ones.
|
|
196
|
+
case "$subagent_type" in
|
|
197
|
+
uipath:*|uipath-*) return 0 ;;
|
|
198
|
+
general-purpose|Explore|Plan|claude|claude-code-guide|statusline-setup|fork) return 0 ;;
|
|
199
|
+
esac
|
|
200
|
+
;;
|
|
201
|
+
Bash|PowerShell)
|
|
202
|
+
printf '%s' "$command" \
|
|
203
|
+
| grep -Eq '(^|[\\"[:space:];|&(])(uip|rpa-tool)[[:space:]]|\$UIP\b' && return 0
|
|
204
|
+
;;
|
|
205
|
+
Edit|Write|Read|Glob|Grep)
|
|
206
|
+
printf '%s' "$file_path" \
|
|
207
|
+
| grep -Eiq '\.(cs|flow|xaml|uipx|bpmn)$|(^|[/\\])(agent|caseplan|project|app\.config|action-schema)\.json$' && return 0
|
|
208
|
+
;;
|
|
209
|
+
esac
|
|
210
|
+
return 1
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
# --- environment resolution ------------------------------------------------
|
|
214
|
+
|
|
215
|
+
# cache_val <file> <key>: emit a cached value stripped to a safe charset. Parses
|
|
216
|
+
# the cache as DATA — never `source` it, so a tampered cache can't execute
|
|
217
|
+
# arbitrary shell in this hook's context.
|
|
218
|
+
cache_val() {
|
|
219
|
+
grep -E "^$2=" "$1" 2>/dev/null | head -1 | cut -d= -f2- | tr -cd 'A-Za-z0-9:._/-'
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
# resolve_environment: set env_name + base_url from `uip login status` (~0.5s),
|
|
223
|
+
# cached per-user for 1h so only one tool call per hour pays the cost. The cache
|
|
224
|
+
# dir is per-user, owner-only (NOT world-writable /tmp), so another local user
|
|
225
|
+
# can't pre-create the file. chmod is a no-op on Windows but harmless.
|
|
226
|
+
resolve_environment() {
|
|
227
|
+
local cache_dir cache ttl now _ts status_json
|
|
228
|
+
cache_dir="${XDG_CACHE_HOME:-$HOME/.cache}/uipath-telemetry"
|
|
229
|
+
mkdir -p "$cache_dir" 2>/dev/null && chmod 700 "$cache_dir" 2>/dev/null
|
|
230
|
+
cache="$cache_dir/env.cache"
|
|
231
|
+
ttl=3600
|
|
232
|
+
now="$(date +%s 2>/dev/null || echo 0)"
|
|
233
|
+
|
|
234
|
+
env_name="unknown"; base_url=""; _ts=0
|
|
235
|
+
if [ -f "$cache" ]; then
|
|
236
|
+
_ts="$(cache_val "$cache" _ts)"
|
|
237
|
+
env_name="$(cache_val "$cache" env_name)"
|
|
238
|
+
base_url="$(cache_val "$cache" base_url)"
|
|
239
|
+
case "$_ts" in *[!0-9]*|"") _ts=0 ;; esac # non-numeric -> treat as stale
|
|
240
|
+
fi
|
|
241
|
+
|
|
242
|
+
[ "$(( now - _ts ))" -ge "$ttl" ] || return 0
|
|
243
|
+
|
|
244
|
+
status_json="$(uip login status --output json 2>/dev/null)"
|
|
245
|
+
base_url="$(printf '%s' "$status_json" \
|
|
246
|
+
| grep -oE '"BaseUrl"[[:space:]]*:[[:space:]]*"[^"]*"' | head -1 | sed 's/.*"\([^"]*\)"$/\1/')"
|
|
247
|
+
case "$base_url" in
|
|
248
|
+
*alpha.uipath.com*) env_name="alpha" ;;
|
|
249
|
+
*staging.uipath.com*) env_name="staging" ;;
|
|
250
|
+
*cloud.uipath.com*) env_name="prod" ;;
|
|
251
|
+
"") env_name="unknown" ;;
|
|
252
|
+
*) env_name="other" ;;
|
|
253
|
+
esac
|
|
254
|
+
{
|
|
255
|
+
echo "_ts=$now"
|
|
256
|
+
echo "env_name=$env_name"
|
|
257
|
+
echo "base_url=$base_url"
|
|
258
|
+
} > "$cache" 2>/dev/null
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
# --- field derivation ------------------------------------------------------
|
|
262
|
+
|
|
263
|
+
# derive_fields: set skill_name, uip_subcommand, file_ext from the parsed
|
|
264
|
+
# tool_input values (so stdout content can't leak in).
|
|
265
|
+
derive_fields() {
|
|
266
|
+
skill_name=""; uip_subcommand=""; file_ext=""
|
|
267
|
+
case "$tool" in
|
|
268
|
+
Skill)
|
|
269
|
+
skill_name="$skill"
|
|
270
|
+
;;
|
|
271
|
+
Bash|PowerShell)
|
|
272
|
+
# e.g. "solution publish" from "uip solution publish --output json".
|
|
273
|
+
uip_subcommand="$(printf '%s' "$command" \
|
|
274
|
+
| grep -oE '(uip|\$UIP)[[:space:]]+[a-z][a-z-]*([[:space:]]+[a-z][a-z-]*)?' \
|
|
275
|
+
| head -1 | sed -E 's/^(uip|\$UIP)[[:space:]]+//')"
|
|
276
|
+
;;
|
|
277
|
+
Edit|Write|Read|Glob|Grep)
|
|
278
|
+
file_ext="$(printf '%s' "$file_path" | grep -oE '\.[A-Za-z0-9]+$' | head -1)"
|
|
279
|
+
case "$file_path" in
|
|
280
|
+
*agent.json) file_ext="agent.json" ;;
|
|
281
|
+
*caseplan.json) file_ext="caseplan.json" ;;
|
|
282
|
+
esac
|
|
283
|
+
;;
|
|
284
|
+
esac
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
# compute_outcome: print outcome from the tool_response region ONLY — content
|
|
288
|
+
# never flips it.
|
|
289
|
+
# interrupted == true -> interrupted (takes precedence)
|
|
290
|
+
# success == false -> failure
|
|
291
|
+
# tool_response present, no failure signal -> ok (Read/Edit/Write/most MCP)
|
|
292
|
+
# no tool_response at all -> unknown
|
|
293
|
+
compute_outcome() {
|
|
294
|
+
if [ "$interrupted" = "true" ]; then printf 'interrupted'
|
|
295
|
+
elif [ "$success" = "false" ]; then printf 'failure'
|
|
296
|
+
elif [ -n "$response_seen" ]; then printf 'ok'
|
|
297
|
+
else printf 'unknown'
|
|
298
|
+
fi
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
# model_family <resolvedModel>: print the low-cardinality family and drop the
|
|
302
|
+
# context-window marker (e.g. claude-opus-4-8[1m] -> opus). Empty when absent
|
|
303
|
+
# (plain main-loop call); `other` for an unrecognized family.
|
|
304
|
+
model_family() {
|
|
305
|
+
case "$1" in
|
|
306
|
+
"") printf '' ;;
|
|
307
|
+
*opus*) printf 'opus' ;;
|
|
308
|
+
*sonnet*) printf 'sonnet' ;;
|
|
309
|
+
*haiku*) printf 'haiku' ;;
|
|
310
|
+
*fable*) printf 'fable' ;;
|
|
311
|
+
*) printf 'other' ;;
|
|
312
|
+
esac
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
# read_skills_version: skills/CLI co-version from version-manifest.json (NOT
|
|
316
|
+
# git, NOT the plugin package version). The CLI's own app version already rides
|
|
317
|
+
# the tracker as application_Version, so no separate cliVersion is sent.
|
|
318
|
+
read_skills_version() {
|
|
319
|
+
grep -oE '"skillsVersion"[[:space:]]*:[[:space:]]*"[^"]*"' \
|
|
320
|
+
"${CLAUDE_PLUGIN_ROOT:-.}/version-manifest.json" 2>/dev/null \
|
|
321
|
+
| head -1 | sed 's/.*"\([^"]*\)"$/\1/'
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
# san: sanitize free-ish text to keep the assembled JSON valid and bounded.
|
|
325
|
+
# Strips anything outside a safe charset (so no quotes / backslashes / control
|
|
326
|
+
# chars / pipes survive) and caps length.
|
|
327
|
+
san() { printf '%s' "$1" | tr -c 'A-Za-z0-9:._/ -' '_' | cut -c1-120; }
|
|
328
|
+
|
|
329
|
+
# build_event_json: assemble the canonical, ordered, flat JSON from the
|
|
330
|
+
# (already sanitized) field globals + dur_json + SCHEMA_VERSION. The key set is
|
|
331
|
+
# defined ONCE here and assembled by iteration (fixed order, every key always
|
|
332
|
+
# emitted). Each row is `name|type|value`: `s` -> JSON string, `n` -> JSON
|
|
333
|
+
# number/literal. Sanitized values cannot contain `|` (san maps it to `_`).
|
|
334
|
+
build_event_json() {
|
|
335
|
+
local spec json sep fkey ftyp fval
|
|
336
|
+
spec="schemaVersion|n|$SCHEMA_VERSION
|
|
337
|
+
toolName|s|$tool
|
|
338
|
+
skillName|s|$skill_name
|
|
339
|
+
uipSubcommand|s|$uip_subcommand
|
|
340
|
+
fileExtension|s|$file_ext
|
|
341
|
+
environment|s|$env_name
|
|
342
|
+
baseUrl|s|$base_url
|
|
343
|
+
outcome|s|$outcome
|
|
344
|
+
permissionMode|s|$permission_mode
|
|
345
|
+
effortLevel|s|$effort_level
|
|
346
|
+
skillsVersion|s|$skills_ver
|
|
347
|
+
toolUseId|s|$tool_use_id
|
|
348
|
+
sessionId|s|$session_id
|
|
349
|
+
subagentModel|s|$subagent_model
|
|
350
|
+
subagentType|s|$subagent_type
|
|
351
|
+
agentType|s|$agent_type
|
|
352
|
+
durationMs|n|$dur_json"
|
|
353
|
+
json="{"; sep=""
|
|
354
|
+
while IFS='|' read -r fkey ftyp fval; do
|
|
355
|
+
[ -n "$fkey" ] || continue
|
|
356
|
+
case "$ftyp" in
|
|
357
|
+
n) json="$json$sep\"$fkey\":$fval" ;;
|
|
358
|
+
*) json="$json$sep\"$fkey\":\"$fval\"" ;;
|
|
359
|
+
esac
|
|
360
|
+
sep=","
|
|
361
|
+
done <<EOF
|
|
362
|
+
$spec
|
|
363
|
+
EOF
|
|
364
|
+
printf '%s}' "$json"
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
# --- main ------------------------------------------------------------------
|
|
368
|
+
main() {
|
|
369
|
+
# Send only when telemetry is explicitly NOT disabled (=0). `uip track`
|
|
370
|
+
# enforces the same gate on its side; we short-circuit here too.
|
|
371
|
+
[ "${UIPATH_TELEMETRY_DISABLED:-1}" = "0" ] || exit 0
|
|
372
|
+
|
|
373
|
+
payload="$(cat)"
|
|
374
|
+
read_fields "$(printf '%s' "$payload" | extract_fields)"
|
|
375
|
+
|
|
376
|
+
[ "$event" = "PostToolUse" ] || exit 0
|
|
377
|
+
is_uipath_call || exit 0
|
|
378
|
+
|
|
379
|
+
resolve_environment
|
|
380
|
+
derive_fields
|
|
381
|
+
|
|
382
|
+
outcome="$(compute_outcome)"
|
|
383
|
+
# durationMs is a JSON number. Emit JSON null (not 0) when absent, so a missing
|
|
384
|
+
# value doesn't skew latency aggregations. The CLI drops a null-valued
|
|
385
|
+
# property, so a missing duration records as "no data". Stays unquoted.
|
|
386
|
+
case "$duration_ms" in ''|*[!0-9]*) dur_json="null" ;; *) dur_json="$duration_ms" ;; esac
|
|
387
|
+
subagent_model="$(model_family "$resolved_model")"
|
|
388
|
+
skills_ver="$(read_skills_version)"
|
|
389
|
+
|
|
390
|
+
# Sanitize every string field before assembly.
|
|
391
|
+
tool="$(san "$tool")"
|
|
392
|
+
skill_name="$(san "$skill_name")"
|
|
393
|
+
uip_subcommand="$(san "$uip_subcommand")"
|
|
394
|
+
file_ext="$(san "$file_ext")"
|
|
395
|
+
env_name="$(san "$env_name")"
|
|
396
|
+
base_url="$(san "$base_url")"
|
|
397
|
+
outcome="$(san "$outcome")"
|
|
398
|
+
permission_mode="$(san "$permission_mode")"
|
|
399
|
+
effort_level="$(san "$effort_level")"
|
|
400
|
+
skills_ver="$(san "$skills_ver")"
|
|
401
|
+
tool_use_id="$(san "$tool_use_id")"
|
|
402
|
+
session_id="$(san "$session_id")"
|
|
403
|
+
subagent_model="$(san "$subagent_model")"
|
|
404
|
+
subagent_type="$(san "$subagent_type")"
|
|
405
|
+
agent_type="$(san "$agent_type")"
|
|
406
|
+
|
|
407
|
+
# Hand off to the CLI telemetry tracker. The CLI hard-codes the event name
|
|
408
|
+
# (uip.skills.tool-use), stamps source: "skills-plugin", attaches the
|
|
409
|
+
# authenticated cloud identity + CLI app version, and owns transport + flush;
|
|
410
|
+
# it drops any non-scalar value (so a null durationMs disappears). Send no
|
|
411
|
+
# `event` key, no envelope, and no `source` (the CLI overrides it).
|
|
412
|
+
#
|
|
413
|
+
# Detached subshell ( cmd & ) survives this hook's exit so the agent never
|
|
414
|
+
# waits. `uip track` is opt-in and never-fail (exits 0, emits nothing when
|
|
415
|
+
# telemetry is off); piping to it is harmless even if the CLI is absent.
|
|
416
|
+
( printf '%s' "$(build_event_json)" | uip track >/dev/null 2>&1 & )
|
|
417
|
+
|
|
418
|
+
exit 0
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
main
|
|
@@ -9,6 +9,12 @@ if [ -z "${CLAUDE_PLUGIN_ROOT:-}" ]; then
|
|
|
9
9
|
exit 0
|
|
10
10
|
fi
|
|
11
11
|
|
|
12
|
+
# Codex exposes Claude-compatible plugin environment variables for hook
|
|
13
|
+
# compatibility. This nudge is Claude-specific, so keep Codex sessions silent.
|
|
14
|
+
if [ -n "${PLUGIN_ROOT:-}" ]; then
|
|
15
|
+
exit 0
|
|
16
|
+
fi
|
|
17
|
+
|
|
12
18
|
# Candidate settings files, most-to-least specific.
|
|
13
19
|
candidates=()
|
|
14
20
|
if [ -n "${CLAUDE_PROJECT_DIR:-}" ]; then
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/skills",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.197.0-preview.0",
|
|
4
4
|
"description": "UiPath agent skills for Claude Code, Codex, Cursor, Copilot, Gemini and OpenCode — RPA, UI automation, UI testing, coded agents/apps/workflows, and troubleshooting. Distributed as the UiPath Claude Code plugin.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "UiPath"
|