@uipath/skills 1.195.1 → 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.
Files changed (786) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/CODEOWNERS +29 -10
  4. package/README.md +51 -4
  5. package/assets/skill-status.json +197 -0
  6. package/assets/uip-catalog-snapshot.json +78 -97
  7. package/commands/install-permissions.md +46 -2
  8. package/hooks/hooks.json +12 -0
  9. package/hooks/send-telemetry.sh +421 -0
  10. package/hooks/suggest-permissions.sh +6 -0
  11. package/hooks/validate-skill-descriptions.sh +0 -0
  12. package/package.json +1 -1
  13. package/skills/uipath-admin/SKILL.md +27 -8
  14. package/skills/uipath-admin/references/audit-commands.md +40 -14
  15. package/skills/uipath-admin/references/audit-workflow-guide.md +40 -20
  16. package/skills/uipath-admin/references/diagnose/CAPABILITY.md +74 -0
  17. package/skills/uipath-admin/references/diagnose/references/failure-modes.md +228 -0
  18. package/skills/uipath-admin/references/diagnose/references/troubleshooting-guide.md +106 -0
  19. package/skills/uipath-admin/references/identity-troubleshoot-guide.md +251 -0
  20. package/skills/uipath-admin/references/ip-restriction/ip-restriction-commands.md +1 -1
  21. package/skills/uipath-agents/SKILL.md +12 -7
  22. package/skills/uipath-agents/references/coded/capabilities/context-grounding.md +2 -0
  23. package/skills/uipath-agents/references/coded/capabilities/conversational-agents.md +2 -0
  24. package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails-recommend.md +7 -4
  25. package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails.md +141 -1
  26. package/skills/uipath-agents/references/coded/capabilities/human-in-the-loop.md +2 -0
  27. package/skills/uipath-agents/references/coded/capabilities/integration-service.md +19 -33
  28. package/skills/uipath-agents/references/coded/embedding-in-flows.md +6 -0
  29. package/skills/uipath-agents/references/coded/flow-integration.md +1 -0
  30. package/skills/uipath-agents/references/coded/frameworks/langgraph-integration.md +2 -2
  31. package/skills/uipath-agents/references/coded/frameworks/llamaindex-integration.md +1 -1
  32. package/skills/uipath-agents/references/coded/frameworks/openai-agents-integration.md +5 -1
  33. package/skills/uipath-agents/references/coded/lifecycle/bindings-reference.md +54 -22
  34. package/skills/uipath-agents/references/coded/lifecycle/build.md +1 -0
  35. package/skills/uipath-agents/references/coded/lifecycle/evaluate.md +8 -6
  36. package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluation-sets.md +5 -1
  37. package/skills/uipath-agents/references/coded/lifecycle/setup.md +2 -0
  38. package/skills/uipath-agents/references/coded/quickstart.md +21 -16
  39. package/skills/uipath-agents/references/coded-vs-lowcode-guide.md +1 -0
  40. package/skills/uipath-agents/references/context-grounding-patterns.md +1 -1
  41. package/skills/uipath-agents/references/lowcode/agent-definition.md +113 -27
  42. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/analyze-attachments.md +4 -4
  43. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/impl-json.md +41 -15
  44. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/built-in-tools.md +8 -7
  45. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/impl-json.md +39 -7
  46. package/skills/uipath-agents/references/lowcode/capabilities/context/attachments.md +1 -1
  47. package/skills/uipath-agents/references/lowcode/capabilities/context/context.md +2 -2
  48. package/skills/uipath-agents/references/lowcode/capabilities/context/datafabric.md +2 -2
  49. package/skills/uipath-agents/references/lowcode/capabilities/context/index.md +19 -15
  50. package/skills/uipath-agents/references/lowcode/capabilities/escalation/escalation.md +59 -48
  51. package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails-recommend.md +1 -1
  52. package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails.md +64 -61
  53. package/skills/uipath-agents/references/lowcode/capabilities/inline-in-flow/inline-in-flow.md +37 -36
  54. package/skills/uipath-agents/references/lowcode/capabilities/integration-service/integration-service.md +13 -14
  55. package/skills/uipath-agents/references/lowcode/capabilities/mcp/mcp.md +133 -0
  56. package/skills/uipath-agents/references/lowcode/capabilities/memory/memory.md +11 -9
  57. package/skills/uipath-agents/references/lowcode/capabilities/process/process.md +27 -26
  58. package/skills/uipath-agents/references/lowcode/capabilities/process/solution-files.md +6 -6
  59. package/skills/uipath-agents/references/lowcode/critical-rules/autonomous-critical-rules.md +15 -0
  60. package/skills/uipath-agents/references/lowcode/critical-rules/conversational-critical-rules.md +19 -0
  61. package/skills/uipath-agents/references/lowcode/critical-rules/critical-rules.md +74 -0
  62. package/skills/uipath-agents/references/lowcode/debug.md +58 -0
  63. package/skills/uipath-agents/references/lowcode/evaluations/evaluate.md +8 -6
  64. package/skills/uipath-agents/references/lowcode/evaluations/evaluation-sets.md +1 -1
  65. package/skills/uipath-agents/references/lowcode/evaluations/evaluators.md +3 -3
  66. package/skills/uipath-agents/references/lowcode/evaluations/running-evaluations.md +8 -8
  67. package/skills/uipath-agents/references/lowcode/lowcode.md +47 -18
  68. package/skills/uipath-agents/references/lowcode/model-selection-guide.md +7 -4
  69. package/skills/uipath-agents/references/lowcode/project-lifecycle.md +63 -40
  70. package/skills/uipath-agents/references/lowcode/prompting/agent-prompting-guide.md +17 -0
  71. package/skills/uipath-agents/references/lowcode/{agent-prompting-guide.md → prompting/autonomous-agent-prompting-guide.md} +9 -11
  72. package/skills/uipath-agents/references/lowcode/prompting/conversational-agent-prompting-guide.md +123 -0
  73. package/skills/uipath-agents/references/lowcode/solution-resources.md +8 -8
  74. package/skills/uipath-api-workflow/SKILL.md +32 -83
  75. package/skills/uipath-api-workflow/references/cli-reference.md +46 -29
  76. package/skills/uipath-api-workflow/references/connector-activity-discovery.md +118 -27
  77. package/skills/uipath-api-workflow/references/troubleshooting.md +11 -14
  78. package/skills/uipath-automation-discovery/SKILL.md +234 -0
  79. package/skills/uipath-automation-discovery/references/intake-guide.md +85 -0
  80. package/skills/uipath-automation-discovery/references/mining-guide.md +156 -0
  81. package/skills/uipath-automation-discovery/references/report-template.md +95 -0
  82. package/skills/uipath-coded-apps/SKILL.md +3 -2
  83. package/skills/uipath-coded-apps/assets/templates/action-app/app-template.css +9 -0
  84. package/skills/uipath-coded-apps/assets/templates/action-app/document-tab-template.css +139 -0
  85. package/skills/uipath-coded-apps/assets/templates/action-app/form-template.css +442 -0
  86. package/skills/uipath-coded-apps/assets/templates/action-app/index-template.css +111 -0
  87. package/skills/uipath-coded-apps/assets/templates/action-app-template.md +357 -152
  88. package/skills/uipath-coded-apps/references/create-action-app.md +284 -195
  89. package/skills/uipath-coded-apps/references/create-web-app.md +2 -0
  90. package/skills/uipath-coded-apps/references/oauth-scopes.md +20 -0
  91. package/skills/uipath-coded-apps/references/pack-publish-deploy.md +2 -0
  92. package/skills/uipath-coded-apps/references/sdk/action-center.md +32 -6
  93. package/skills/uipath-coded-apps/references/sdk/orchestrator.md +6 -2
  94. package/skills/uipath-coded-apps/references/widgets/validation-station.md +308 -0
  95. package/skills/uipath-coded-apps/scripts/validate-action-schema.js +241 -0
  96. package/skills/uipath-connector-builder/SKILL.md +192 -0
  97. package/skills/uipath-connector-builder/references/auth.md +171 -0
  98. package/skills/uipath-connector-builder/references/configuration.md +130 -0
  99. package/skills/uipath-connector-builder/references/debugging.md +80 -0
  100. package/skills/uipath-connector-builder/references/element-json.md +148 -0
  101. package/skills/uipath-connector-builder/references/events.md +132 -0
  102. package/skills/uipath-connector-builder/references/hooks.md +198 -0
  103. package/skills/uipath-connector-builder/references/overview.md +78 -0
  104. package/skills/uipath-connector-builder/references/standard-resources.md +111 -0
  105. package/skills/uipath-connector-builder/references/system-resources.md +85 -0
  106. package/skills/uipath-feedback/SKILL.md +44 -30
  107. package/skills/uipath-governance/SKILL.md +13 -3
  108. package/skills/uipath-governance/references/aops-policy/aops-policy-commands.md +10 -10
  109. package/skills/uipath-governance/references/aops-policy/aops-policy-deploy-guide.md +7 -7
  110. package/skills/uipath-governance/references/diagnose/CAPABILITY.md +71 -0
  111. package/skills/uipath-governance/references/diagnose/references/failure-modes.md +201 -0
  112. package/skills/uipath-governance/references/diagnose/references/troubleshooting-guide.md +137 -0
  113. package/skills/uipath-human-in-the-loop/SKILL.md +2 -3
  114. package/skills/uipath-ixp/SKILL.md +48 -13
  115. package/skills/uipath-ixp/references/cli-reference.md +28 -20
  116. package/skills/uipath-ixp/references/improve-prompts-guide.md +4 -4
  117. package/skills/uipath-ixp/references/label-documents-guide.md +38 -8
  118. package/skills/uipath-ixp/references/project-setup-guide.md +2 -2
  119. package/skills/uipath-maestro-bpmn/SKILL.md +167 -68
  120. package/skills/uipath-maestro-bpmn/references/cli-conventions.md +47 -0
  121. package/skills/uipath-maestro-bpmn/references/diagnose/CAPABILITY.md +6 -6
  122. package/skills/uipath-maestro-bpmn/references/operate/CAPABILITY.md +3 -3
  123. package/skills/uipath-maestro-bpmn/references/operate/references/run.md +1 -1
  124. package/skills/uipath-maestro-bpmn/references/registry-workflow.md +199 -0
  125. package/skills/uipath-maestro-bpmn/references/shared/local-metadata-regeneration-guide.md +2 -2
  126. package/skills/uipath-maestro-bpmn/references/structural-bpmn.md +500 -0
  127. package/skills/uipath-maestro-bpmn/validator/README.md +214 -0
  128. package/skills/uipath-maestro-bpmn/validator/bpmn-spec.json +2473 -0
  129. package/skills/uipath-maestro-bpmn/validator/model.mjs +419 -0
  130. package/skills/uipath-maestro-bpmn/validator/package.json +17 -0
  131. package/skills/uipath-maestro-bpmn/validator/rules.mjs +1403 -0
  132. package/skills/uipath-maestro-bpmn/validator/samples/invalid-conditional-and-variable.bpmn +25 -0
  133. package/skills/uipath-maestro-bpmn/validator/samples/valid-baseline.bpmn +52 -0
  134. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/A.2.0.bpmn +157 -0
  135. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/A.2.1.bpmn +333 -0
  136. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/B.1.0.bpmn +598 -0
  137. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/B.2.0.bpmn +1709 -0
  138. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.2.0.bpmn +564 -0
  139. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.3.0.bpmn +671 -0
  140. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.4.0.bpmn +1045 -0
  141. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.5.0.bpmn +1176 -0
  142. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.6.0.bpmn +670 -0
  143. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/C.7.0.bpmn +466 -0
  144. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Can_Parse_Complex_Process_With_Task_Gateway_BoundaryEvent_etc.bpmn +74 -0
  145. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/ExclusiveGatewayDefaultFlow.bpmn +32 -0
  146. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/ExternalAgentWorkflow.bpmn +62 -0
  147. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Golden_Scenario.initial.bpmn +361 -0
  148. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/InclusiveJoinRouteAwayBranch.bpmn +62 -0
  149. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_AsyncExecution_And_Create_CorrectModel.bpmn +74 -0
  150. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_IXP_ExtractionValidation_And_Create_CorrectModel.bpmn +35 -0
  151. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_IXP_Extraction_FileUpload_And_Create_CorrectModel.bpmn +33 -0
  152. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_IXP_Extraction_JobAttachment_And_Create_CorrectModel.bpmn +35 -0
  153. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/Parse_SubProcess_With_Multiple_Element_Types.bpmn +76 -0
  154. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/StartEventWithOutputs.bpmn +36 -0
  155. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/StartGatewayEnd.bpmn +44 -0
  156. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/all elements.bpmn +516 -0
  157. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/all_sequence_flow_types.bpmn +173 -0
  158. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/demo.bpmn +181 -0
  159. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/subprocess-example-001-collapsed.bpmn +126 -0
  160. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/subprocess-example-001-expanded.bpmn +122 -0
  161. package/skills/uipath-maestro-bpmn/validator/test/fixtures/expected-findings/subprocess-example-003-collapsed_deeply-nested.bpmn +438 -0
  162. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/A.1.0.bpmn +87 -0
  163. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/A.3.0.bpmn +165 -0
  164. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ApiWorkflow.bpmn +39 -0
  165. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnNestedSubProcessTests.bpmn +102 -0
  166. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnTimerBoundaryEvents.bpmn +160 -0
  167. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnXmlWithCatchAllErrorEventSubProcess.bpmn +45 -0
  168. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/BpmnXmlWithSpecificErrorEventSubProcess.bpmn +46 -0
  169. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/CaseManagementWithConstantIdentifier.bpmn +218 -0
  170. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ErrorBoundary.bpmn +78 -0
  171. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ErrorPropagationInEventSubprocess.bpmn +340 -0
  172. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/EventBasedGatewayFirstCatcherWins.bpmn +56 -0
  173. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Example-EventBasedGateway.bpmn +117 -0
  174. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ExclusiveGatewayConditional.bpmn +45 -0
  175. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ExclusiveGatewaySharedEndEvent.bpmn +45 -0
  176. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ExclusiveWithParallelGateway.bpmn +68 -0
  177. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/FourScriptTasks.bpmn +84 -0
  178. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/HitlTaskOnly.bpmn +55 -0
  179. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/InclusiveGatewayForkJoin.bpmn +69 -0
  180. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_BPMN_Elements_And_Create_CorrectModel.bpmn +20 -0
  181. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_HttpRequest_ServiceTask_And_Create_Correct_Model.bpmn +34 -0
  182. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_MessageBoundaryEvent_And_Create_CorrectModel.bpmn +87 -0
  183. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_Script_Task_V2_And_Create_Correct_Model.bpmn +31 -0
  184. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/Parse_Sets_Containers_Properly.bpmn +129 -0
  185. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/ScriptWritesVariableThenGatewayBranches.bpmn +55 -0
  186. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/boundaryevent.bpmn +30 -0
  187. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/collapsed-subprocess.bpmn +83 -0
  188. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/connectable-types.bpmn +85 -0
  189. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/extensions-orchestrator-start-job.bpmn +80 -0
  190. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/multiparticipantpool.bpmn +77 -0
  191. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/nestedsubprocess.bpmn +36 -0
  192. package/skills/uipath-maestro-bpmn/validator/test/fixtures/known-good/simple.bpmn +59 -0
  193. package/skills/uipath-maestro-bpmn/validator/test/integration.test.mjs +146 -0
  194. package/skills/uipath-maestro-bpmn/validator/test/model-helpers.mjs +42 -0
  195. package/skills/uipath-maestro-bpmn/validator/test/ported-rule-tests.mjs +983 -0
  196. package/skills/uipath-maestro-bpmn/validator/test/run-tests.mjs +530 -0
  197. package/skills/uipath-maestro-bpmn/validator/uipath-moddle.v1.json +715 -0
  198. package/skills/uipath-maestro-bpmn/validator/validate-bpmn.mjs +164 -0
  199. package/skills/uipath-maestro-case/SKILL.md +27 -28
  200. package/skills/uipath-maestro-case/assets/templates/sdd-template-examples.md +10 -0
  201. package/skills/uipath-maestro-case/assets/templates/sdd-template.md +89 -17
  202. package/skills/uipath-maestro-case/references/bindings-and-expressions.md +33 -1
  203. package/skills/uipath-maestro-case/references/bindings-v2-sync.md +7 -16
  204. package/skills/uipath-maestro-case/references/case-commands.md +9 -9
  205. package/skills/uipath-maestro-case/references/case-editing-operations.md +54 -67
  206. package/skills/uipath-maestro-case/references/case-schema.md +74 -138
  207. package/skills/uipath-maestro-case/references/connector-integration.md +32 -5
  208. package/skills/uipath-maestro-case/references/connector-trigger-common.md +39 -12
  209. package/skills/uipath-maestro-case/references/evals/evals.json +9 -23
  210. package/skills/uipath-maestro-case/references/implementation.md +35 -28
  211. package/skills/uipath-maestro-case/references/phase-0-interview.md +8 -7
  212. package/skills/uipath-maestro-case/references/phased-execution.md +26 -39
  213. package/skills/uipath-maestro-case/references/placeholder-tasks.md +9 -9
  214. package/skills/uipath-maestro-case/references/planning.md +20 -79
  215. package/skills/uipath-maestro-case/references/plugins/case/impl-json.md +15 -122
  216. package/skills/uipath-maestro-case/references/plugins/case/planning.md +3 -1
  217. package/skills/uipath-maestro-case/references/plugins/conditions/case-exit-conditions/impl-json.md +10 -22
  218. package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/impl-json.md +7 -5
  219. package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/planning.md +2 -0
  220. package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/impl-json.md +26 -5
  221. package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/planning.md +3 -1
  222. package/skills/uipath-maestro-case/references/plugins/conditions/task-entry-conditions/impl-json.md +4 -4
  223. package/skills/uipath-maestro-case/references/plugins/logging/impl-json.md +10 -0
  224. package/skills/uipath-maestro-case/references/plugins/sla/impl-json.md +10 -42
  225. package/skills/uipath-maestro-case/references/plugins/sla/planning.md +5 -5
  226. package/skills/uipath-maestro-case/references/plugins/stages/impl-json.md +8 -79
  227. package/skills/uipath-maestro-case/references/plugins/stages/planning.md +7 -14
  228. package/skills/uipath-maestro-case/references/plugins/tasks/agent/impl-json.md +1 -1
  229. package/skills/uipath-maestro-case/references/plugins/tasks/agent/planning.md +3 -2
  230. package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/impl-json.md +1 -1
  231. package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/planning.md +3 -2
  232. package/skills/uipath-maestro-case/references/plugins/tasks/case-management/impl-json.md +1 -1
  233. package/skills/uipath-maestro-case/references/plugins/tasks/case-management/planning.md +4 -3
  234. package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/impl-json.md +2 -2
  235. package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/planning.md +12 -7
  236. package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/impl-json.md +1 -1
  237. package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/planning.md +2 -0
  238. package/skills/uipath-maestro-case/references/plugins/tasks/process/impl-json.md +1 -1
  239. package/skills/uipath-maestro-case/references/plugins/tasks/process/planning.md +4 -3
  240. package/skills/uipath-maestro-case/references/plugins/tasks/rpa/impl-json.md +1 -1
  241. package/skills/uipath-maestro-case/references/plugins/tasks/rpa/planning.md +4 -3
  242. package/skills/uipath-maestro-case/references/plugins/tasks/wait-for-timer/impl-json.md +3 -0
  243. package/skills/uipath-maestro-case/references/plugins/triggers/event/impl-json.md +6 -7
  244. package/skills/uipath-maestro-case/references/plugins/triggers/event/planning.md +4 -2
  245. package/skills/uipath-maestro-case/references/plugins/triggers/manual/impl-json.md +4 -27
  246. package/skills/uipath-maestro-case/references/plugins/triggers/timer/impl-json.md +8 -20
  247. package/skills/uipath-maestro-case/references/plugins/variables/bindings/impl-json.md +6 -11
  248. package/skills/uipath-maestro-case/references/plugins/variables/global-vars/impl-json.md +30 -39
  249. package/skills/uipath-maestro-case/references/plugins/variables/global-vars/planning.md +4 -4
  250. package/skills/uipath-maestro-case/references/plugins/variables/io-binding/impl-json.md +138 -10
  251. package/skills/uipath-maestro-case/references/registry-discovery.md +4 -4
  252. package/skills/uipath-maestro-case/references/sdd-generation-rules.md +105 -26
  253. package/skills/uipath-maestro-case/references/troubleshooting-guide.md +1 -1
  254. package/skills/uipath-maestro-flow/.maintenance/check-all.sh +0 -0
  255. package/skills/uipath-maestro-flow/.maintenance/check-anchors.sh +0 -0
  256. package/skills/uipath-maestro-flow/.maintenance/check-depth.sh +0 -0
  257. package/skills/uipath-maestro-flow/.maintenance/check-link-text.sh +0 -0
  258. package/skills/uipath-maestro-flow/.maintenance/check-links.sh +0 -0
  259. package/skills/uipath-maestro-flow/.maintenance/check-orphans.sh +0 -0
  260. package/skills/uipath-maestro-flow/.maintenance/check-plugin-pairs.sh +0 -0
  261. package/skills/uipath-maestro-flow/.maintenance/check-template.sh +0 -0
  262. package/skills/uipath-maestro-flow/.maintenance/check-uip-commands.sh +0 -0
  263. package/skills/uipath-maestro-flow/.maintenance/check-versions.sh +0 -0
  264. package/skills/uipath-maestro-flow/SKILL.md +9 -6
  265. package/skills/uipath-maestro-flow/references/author/CAPABILITY.md +4 -4
  266. package/skills/uipath-maestro-flow/references/author/references/brownfield.md +17 -2
  267. package/skills/uipath-maestro-flow/references/author/references/editing-operations-cli.md +1 -1
  268. package/skills/uipath-maestro-flow/references/author/references/editing-operations-json.md +3 -3
  269. package/skills/uipath-maestro-flow/references/author/references/editing-operations.md +9 -9
  270. package/skills/uipath-maestro-flow/references/author/references/greenfield.md +13 -10
  271. package/skills/uipath-maestro-flow/references/author/references/planning-arch.md +75 -5
  272. package/skills/uipath-maestro-flow/references/author/references/planning-impl.md +2 -1
  273. package/skills/uipath-maestro-flow/references/author/references/plugins/connector/impl.md +14 -4
  274. package/skills/uipath-maestro-flow/references/author/references/plugins/connector-trigger/impl.md +20 -4
  275. package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/impl.md +5 -5
  276. package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/planning.md +5 -5
  277. package/skills/uipath-maestro-flow/references/author/references/plugins/http/impl-connector.md +84 -0
  278. package/skills/uipath-maestro-flow/references/author/references/plugins/http/impl-manual.md +63 -0
  279. package/skills/uipath-maestro-flow/references/author/references/plugins/http/impl.md +59 -57
  280. package/skills/uipath-maestro-flow/references/author/references/plugins/http/planning.md +8 -7
  281. package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/impl.md +84 -59
  282. package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/planning.md +17 -5
  283. package/skills/uipath-maestro-flow/references/diagnose/CAPABILITY.md +1 -1
  284. package/skills/uipath-maestro-flow/references/diagnose/references/failure-modes.md +6 -6
  285. package/skills/uipath-maestro-flow/references/evaluate/CAPABILITY.md +2 -2
  286. package/skills/uipath-maestro-flow/references/evaluate/references/commands-reference.md +8 -8
  287. package/skills/uipath-maestro-flow/references/evaluate/references/running-guide.md +3 -3
  288. package/skills/uipath-maestro-flow/references/evaluate/references/upload-safety.md +1 -1
  289. package/skills/uipath-maestro-flow/references/operate/CAPABILITY.md +8 -8
  290. package/skills/uipath-maestro-flow/references/operate/references/run.md +2 -2
  291. package/skills/uipath-maestro-flow/references/operate/references/ship.md +7 -7
  292. package/skills/uipath-maestro-flow/references/shared/cli-commands.md +19 -17
  293. package/skills/uipath-maestro-flow/references/shared/cli-conventions.md +1 -1
  294. package/skills/uipath-maestro-flow/references/shared/file-format.md +1 -1
  295. package/skills/uipath-maestro-flow/references/shared/ux-narration-and-todos.md +7 -7
  296. package/skills/uipath-planner/SKILL.md +119 -74
  297. package/skills/{uipath-solution → uipath-planner}/assets/templates/agent-sdd-template.md +17 -3
  298. package/skills/{uipath-solution → uipath-planner}/assets/templates/api-workflow-sdd-template.md +18 -4
  299. package/skills/{uipath-solution → uipath-planner}/assets/templates/case-sdd-template.md +18 -4
  300. package/skills/{uipath-solution → uipath-planner}/assets/templates/coded-app-sdd-template.md +17 -3
  301. package/skills/{uipath-solution → uipath-planner}/assets/templates/flow-sdd-template.md +18 -4
  302. package/skills/{uipath-solution → uipath-planner}/assets/templates/rpa-sdd-template.md +36 -16
  303. package/skills/uipath-planner/references/multi-skill-patterns-guide.md +5 -3
  304. package/skills/uipath-planner/references/non-pdd-lane-guide.md +12 -6
  305. package/skills/{uipath-solution/references/design → uipath-planner/references}/pdd-analysis-guide.md +23 -1
  306. package/skills/uipath-planner/references/pdd-driven-lane-guide.md +22 -8
  307. package/skills/uipath-planner/references/plan-and-tasks-format.md +4 -2
  308. package/skills/uipath-planner/references/platform-availability-guide.md +44 -0
  309. package/skills/{uipath-solution/references/design → uipath-planner/references}/product-selection-guide.md +28 -8
  310. package/skills/{uipath-solution/references/design → uipath-planner/references}/rpa-product-guide.md +1 -1
  311. package/skills/{uipath-solution/references/design → uipath-planner/references}/sdd-generation-guide.md +102 -52
  312. package/skills/{uipath-solution/references/design → uipath-planner/references}/tenant-library-search-guide.md +11 -7
  313. package/skills/uipath-planner/scripts/docx-extract.sh +54 -0
  314. package/skills/uipath-planner/scripts/sdd-to-docx.sh +77 -0
  315. package/skills/uipath-platform/SKILL.md +73 -52
  316. package/skills/uipath-platform/references/context-grounding/index-management.md +123 -0
  317. package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/bulk-import.md +15 -4
  318. package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/choice-sets.md +27 -11
  319. package/skills/uipath-platform/references/data-fabric/data-fabric.md +303 -0
  320. package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/entity-schema.md +94 -37
  321. package/skills/uipath-platform/references/data-fabric/file-attachments.md +122 -0
  322. package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/filter-platform-contract.md +3 -3
  323. package/skills/{uipath-data-fabric/references → uipath-platform/references/data-fabric}/records-query.md +46 -10
  324. package/skills/uipath-platform/references/integration-service/http-request.md +19 -2
  325. package/skills/uipath-platform/references/integration-service/reference-resolution.md +19 -1
  326. package/skills/uipath-platform/references/integration-service/triggers.md +21 -5
  327. package/skills/uipath-platform/references/integration-service/vendor-docs-registry.json +173 -0
  328. package/skills/uipath-platform/references/licensing/consumables-report.md +1 -1
  329. package/skills/uipath-platform/references/licensing/tenant-allocations.md +1 -1
  330. package/skills/uipath-platform/references/licensing/user-licenses-allocations.md +1 -1
  331. package/skills/uipath-platform/references/{resources → orchestrator}/manage-assets.md +37 -34
  332. package/skills/uipath-platform/references/orchestrator/manage-sessions.md +1 -1
  333. package/skills/uipath-platform/references/orchestrator/orchestrator.md +4 -31
  334. package/skills/uipath-platform/references/{resources → orchestrator}/process-queues.md +61 -50
  335. package/skills/uipath-platform/references/{resources → orchestrator}/resources.md +21 -21
  336. package/skills/uipath-platform/references/orchestrator/run-jobs.md +26 -14
  337. package/skills/uipath-platform/references/orchestrator/setup-environment.md +20 -16
  338. package/skills/uipath-platform/references/orchestrator/tenant-admin.md +7 -7
  339. package/skills/uipath-platform/references/{resources → orchestrator}/triggers-and-webhooks.md +41 -37
  340. package/skills/uipath-platform/references/{resources → orchestrator}/work-with-storage.md +56 -34
  341. package/skills/uipath-platform/references/uip-commands.md +32 -22
  342. package/skills/uipath-review/SKILL.md +130 -15
  343. package/skills/uipath-review/references/agents/agent-common-issues.md +42 -0
  344. package/skills/uipath-review/references/agents/agent-grading-rubric.md +133 -0
  345. package/skills/uipath-review/references/agents/agent-review-checklist.md +100 -58
  346. package/skills/uipath-review/references/agents/agents-coded-rules.md +167 -0
  347. package/skills/uipath-review/references/agents/agents-common-rules.md +32 -0
  348. package/skills/uipath-review/references/agents/agents-lowcode-rules.md +138 -0
  349. package/skills/uipath-review/references/agents/guardrails/guardrails-review.md +198 -0
  350. package/skills/uipath-review/references/architecture-assessment-guide.md +2 -0
  351. package/skills/uipath-review/references/platform/platform-resources-checklist.md +2 -2
  352. package/skills/uipath-review/references/review-workflow-guide.md +10 -6
  353. package/skills/uipath-review/references/rpa/rpa-review-checklist.md +2 -2
  354. package/skills/uipath-review/references/rule-catalog-workflow.md +90 -0
  355. package/skills/uipath-review/references/rule-format.md +91 -0
  356. package/skills/uipath-rpa/SKILL.md +22 -9
  357. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/CreateEntityRecord.md +149 -0
  358. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/CreateMultipleEntityRecords.md +67 -0
  359. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/DeleteEntityRecord.md +44 -0
  360. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/DeleteFileFromRecordField.md +56 -0
  361. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/DeleteMultipleEntityRecords.md +65 -0
  362. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/DownloadFileFromRecordField.md +115 -0
  363. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/GetEntityRecordById.md +50 -0
  364. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/QueryEntityRecords.md +69 -0
  365. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/UpdateEntityRecord.md +120 -0
  366. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/UpdateMultipleEntityRecords.md +67 -0
  367. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/activities/UploadFileToRecordField.md +103 -0
  368. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/guides/data-service-filter-builder-guide.md +461 -0
  369. package/skills/uipath-rpa/references/activity-docs/UiPath.DataService.Activities/overview.md +355 -0
  370. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AppendRangeX.md +1 -1
  371. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFillX.md +1 -1
  372. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFitX.md +1 -1
  373. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangeDataRangeModification.md +1 -1
  374. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangePivotTableDataSourceX.md +1 -1
  375. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ClearRangeX.md +1 -1
  376. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CopyPasteRangeX.md +1 -1
  377. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreatePivotTableXv2.md +1 -1
  378. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreateTableX.md +1 -1
  379. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteColumnX.md +1 -1
  380. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteRowsX.md +1 -1
  381. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteSheetX.md +1 -1
  382. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DuplicateSheetX.md +1 -1
  383. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroArgumentX.md +1 -1
  384. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroX.md +1 -1
  385. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExportExcelToCsvX.md +1 -1
  386. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FillRangeX.md +1 -1
  387. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterPivotTableX.md +1 -1
  388. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterX.md +1 -1
  389. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindFirstLastDataRowX.md +1 -1
  390. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindReplaceValueX.md +1 -1
  391. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FormatRangeX.md +2 -2
  392. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertColumnX.md +1 -1
  393. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertExcelChartX.md +1 -1
  394. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertRowsX.md +1 -1
  395. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertSheetX.md +1 -1
  396. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAArgumentX.md +1 -1
  397. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAX.md +1 -1
  398. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/LookupX.md +1 -1
  399. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/PivotTableFieldX.md +1 -1
  400. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ProtectSheetX.md +1 -1
  401. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellFormulaX.md +1 -1
  402. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellValueX.md +1 -1
  403. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RefreshPivotTableX.md +1 -1
  404. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RemoveDuplicatesX.md +1 -1
  405. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RenameSheetX.md +1 -1
  406. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveAsPdfX.md +1 -1
  407. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveExcelFileX.md +1 -1
  408. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortColumnX.md +1 -1
  409. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortX.md +1 -1
  410. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UnprotectSheetX.md +1 -1
  411. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UpdateChartX.md +1 -1
  412. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/VLookupX.md +1 -1
  413. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteCellX.md +1 -1
  414. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/overview.md +2 -2
  415. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/overview.md +2 -2
  416. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/overview.md +2 -2
  417. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/SendMailConnections.md +1 -1
  418. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/overview.md +3 -3
  419. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/overview.md +2 -2
  420. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/overview.md +1 -1
  421. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/overview.md +2 -2
  422. package/skills/uipath-rpa/references/cli-reference.md +126 -544
  423. package/skills/uipath-rpa/references/coded/coding-guidelines.md +1 -1
  424. package/skills/uipath-rpa/references/coded/operations-guide.md +3 -3
  425. package/skills/uipath-rpa/references/coded/third-party-packages-guide.md +1 -1
  426. package/skills/uipath-rpa/references/connector-capabilities.md +5 -2
  427. package/skills/uipath-rpa/references/data-manipulation-guide.md +311 -0
  428. package/skills/uipath-rpa/references/debugging.md +43 -36
  429. package/skills/uipath-rpa/references/environment-setup.md +3 -5
  430. package/skills/uipath-rpa/references/is-connector-xaml-guide.md +130 -14
  431. package/skills/uipath-rpa/references/library-authoring-guide.md +226 -0
  432. package/skills/uipath-rpa/references/project-structure-guide.md +43 -0
  433. package/skills/uipath-rpa/references/publishing-guide.md +5 -5
  434. package/skills/uipath-rpa/references/tenant-library-search-guide.md +18 -14
  435. package/skills/uipath-rpa/references/testing-guide.md +6 -6
  436. package/skills/uipath-rpa/references/trigger-pattern-guide.md +2 -2
  437. package/skills/uipath-rpa/references/ui-automation-guide.md +170 -22
  438. package/skills/uipath-rpa/references/uia-configure-target-workflows.md +24 -3
  439. package/skills/uipath-rpa/references/uia-elements-interaction-guide.md +93 -0
  440. package/skills/uipath-rpa/references/uia-prerequisites.md +1 -1
  441. package/skills/uipath-rpa/references/validation-guide.md +4 -4
  442. package/skills/uipath-rpa/references/xaml/canvas-layout-guide.md +45 -5
  443. package/skills/uipath-rpa/references/xaml/common-pitfalls.md +30 -9
  444. package/skills/uipath-rpa/references/xaml/flowchart-guide.md +113 -0
  445. package/skills/uipath-rpa/references/xaml/long-running-workflow-guide.md +304 -0
  446. package/skills/uipath-rpa/references/xaml/xaml-basics-and-rules.md +8 -9
  447. package/skills/uipath-solution/SKILL.md +31 -130
  448. package/skills/uipath-solution/references/{operate/activate-and-manage.md → activate-and-manage.md} +1 -1
  449. package/skills/uipath-solution/references/{operate/develop-solution.md → develop-solution.md} +43 -37
  450. package/skills/uipath-solution/references/{operate/pack-and-deploy.md → pack-and-deploy.md} +21 -4
  451. package/skills/uipath-solution/references/{operate/scenarios → scenarios}/intra-solution-references.md +2 -2
  452. package/skills/uipath-solution/references/{operate/scenarios → scenarios}/manual-edits.md +4 -4
  453. package/skills/uipath-solution/references/{operate/scenarios → scenarios}/same-name-across-folders.md +2 -2
  454. package/skills/uipath-solution/references/{operate/scenarios → scenarios}/shared-cloud-resource.md +3 -3
  455. package/skills/uipath-solution/references/{operate/scenarios → scenarios}/virtual-resource.md +4 -4
  456. package/skills/uipath-solution/references/{operate/scenarios.md → scenarios.md} +5 -5
  457. package/skills/uipath-solution/references/{operate/solution-overview.md → solution-overview.md} +6 -3
  458. package/skills/uipath-tasks/SKILL.md +0 -2
  459. package/skills/uipath-test/SKILL.md +28 -8
  460. package/skills/uipath-troubleshoot/SKILL.md +24 -26
  461. package/skills/uipath-troubleshoot/agents/depth-verifier.md +24 -25
  462. package/skills/uipath-troubleshoot/agents/hypothesis-generator.md +8 -4
  463. package/skills/uipath-troubleshoot/agents/hypothesis-tester.md +85 -38
  464. package/skills/uipath-troubleshoot/agents/presenter.md +7 -7
  465. package/skills/uipath-troubleshoot/agents/scope-checker.md +3 -6
  466. package/skills/uipath-troubleshoot/agents/shared.md +26 -21
  467. package/skills/uipath-troubleshoot/agents/triage.md +118 -48
  468. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/overview.md +55 -0
  469. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/add-queue-item-failed.md +58 -0
  470. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/application-launch-failed.md +56 -0
  471. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/browser-open-or-attach-failed.md +59 -0
  472. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/file-operation-failed.md +60 -0
  473. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/foreach-row-failed.md +56 -0
  474. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/image-target-not-found.md +56 -0
  475. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/invoke-code-failed.md +54 -0
  476. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/invoke-workflow-failed.md +58 -0
  477. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/kill-process-failed.md +49 -0
  478. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/ui-activity-configuration-error.md +80 -0
  479. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/ui-activity-timeout.md +61 -0
  480. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/ui-element-interaction-failed.md +61 -0
  481. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/playbooks/ui-element-not-found.md +64 -0
  482. package/skills/uipath-troubleshoot/references/activity-packages/classic-activities/summary.md +24 -0
  483. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/investigation_guide.md +43 -0
  484. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/overview.md +57 -0
  485. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-action-failed-after-find.md +100 -0
  486. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-cell-targeting-failures.md +111 -0
  487. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-element-not-found.md +125 -0
  488. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-get-text-empty-or-wrong-result.md +117 -0
  489. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-invalid-descriptor.md +102 -0
  490. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-scope-setup-failures.md +136 -0
  491. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-scroll-search-failures.md +114 -0
  492. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-server-auth-throttling-network.md +95 -0
  493. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/playbooks/cv-silent-failures-and-false-results.md +124 -0
  494. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/presentation.md +8 -0
  495. package/skills/uipath-troubleshoot/references/activity-packages/cv-activities/summary.md +15 -0
  496. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/investigation_guide.md +42 -0
  497. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/overview.md +41 -0
  498. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/connect-to-database-failures.md +104 -0
  499. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/execute-non-query-failures.md +97 -0
  500. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/execute-query-failures.md +134 -0
  501. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/playbooks/start-transaction-failures.md +94 -0
  502. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/presentation.md +10 -0
  503. package/skills/uipath-troubleshoot/references/activity-packages/database-activities/summary.md +10 -0
  504. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/investigation_guide.md +27 -9
  505. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/overview.md +51 -10
  506. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/append-range-failures.md +146 -0
  507. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/delete-range-failures.md +126 -0
  508. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/excel-application-card-failures.md +139 -0
  509. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/excel-application-scope-failures.md +118 -0
  510. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/execute-macro-failures.md +149 -0
  511. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/read-range-file-locked.md +142 -0
  512. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/read-range-file-not-found.md +140 -0
  513. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/read-range-null-reference.md +119 -0
  514. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/read-range-sheet-not-found.md +146 -0
  515. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/write-cell-failures.md +131 -0
  516. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/write-range-failures.md +145 -0
  517. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/presentation.md +12 -7
  518. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/summary.md +11 -0
  519. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/investigation_guide.md +1 -0
  520. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/overview.md +12 -4
  521. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/connection-and-auth-failures.md +55 -0
  522. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-file-not-found.md +18 -10
  523. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/get-newest-email-not-found.md +9 -8
  524. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/invalid-or-null-input.md +68 -0
  525. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/transient-and-timeout-errors.md +52 -0
  526. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/upload-storage-quota-exceeded.md +1 -1
  527. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/summary.md +5 -2
  528. package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/overview.md +28 -0
  529. package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/delete-outlook-mail-failures.md +105 -0
  530. package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/get-outlook-mail-failures.md +109 -0
  531. package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/move-outlook-mail-failures.md +97 -0
  532. package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/playbooks/send-outlook-mail-failures.md +95 -0
  533. package/skills/uipath-troubleshoot/references/activity-packages/mail-activities/summary.md +8 -0
  534. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/investigation_guide.md +23 -0
  535. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/overview.md +9 -0
  536. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/application-scope-misconfigured.md +49 -0
  537. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/authentication-token-invalid.md +53 -0
  538. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/copy-item-argument-null.md +34 -0
  539. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/create-folder-invalid-path.md +36 -0
  540. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/download-file-conversion-or-destination.md +40 -0
  541. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/drive-item-not-found.md +1 -1
  542. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/email-trigger-connection-event-failure.md +45 -0
  543. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/insufficient-graph-scope.md +44 -0
  544. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/legacy-mail-null-reference.md +43 -0
  545. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-folder-not-found.md +4 -3
  546. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-invalid-odata-query.md +43 -0
  547. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-message-not-found.md +45 -0
  548. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/request-throttled.md +45 -0
  549. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/send-mail-rejected.md +52 -0
  550. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/transient-service-error.md +48 -0
  551. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/upload-file-quota-or-size.md +47 -0
  552. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/summary.md +15 -1
  553. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/investigation_guide.md +32 -0
  554. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/overview.md +38 -0
  555. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/invoke-method-failures.md +57 -0
  556. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/invoke-python-method-pipe-is-broken.md +44 -0
  557. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/load-script-failures.md +62 -0
  558. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/python-path-not-valid.md +39 -0
  559. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/python-scope-architecture-version-mismatch.md +41 -0
  560. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/playbooks/working-folder-relative-path.md +34 -0
  561. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/presentation.md +9 -0
  562. package/skills/uipath-troubleshoot/references/activity-packages/python-activities/summary.md +12 -0
  563. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-activity-bug-silent-failure.md +1 -1
  564. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-robot-not-authenticated.md +29 -22
  565. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/summary.md +1 -1
  566. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/investigation_guide.md +1 -0
  567. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/overview.md +16 -0
  568. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/activity-configuration-error.md +42 -0
  569. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/ambiguous-selector.md +131 -0
  570. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/application-not-found.md +84 -0
  571. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/application-open-failed.md +46 -0
  572. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/browser-navigation-failed.md +45 -0
  573. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/click-coordinate-off-screen.md +120 -0
  574. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/disabled-element.md +0 -2
  575. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/element-found-not-actionable.md +43 -0
  576. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/healing-agent-no-license.md +12 -12
  577. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/healing-agent-orch-issues.md +108 -0
  578. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/inject-js-failed.md +41 -0
  579. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/scope-container-wrong-page.md +7 -0
  580. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/select-item-no-items.md +37 -0
  581. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-manual.md +2 -0
  582. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/timeout-issue.md +2 -2
  583. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/verify-execution-failure.md +120 -0
  584. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/wrong-target-application.md +41 -0
  585. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/summary.md +12 -0
  586. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/investigation_guide.md +30 -0
  587. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/overview.md +36 -0
  588. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/deserialize-malformed-input.md +36 -0
  589. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/deserialize-null-input.md +35 -0
  590. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/deserialize-type-mismatch.md +40 -0
  591. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/http-client-null-reference.md +34 -0
  592. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/http-request-connection-failure.md +48 -0
  593. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/http-request-timeout.md +40 -0
  594. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/playbooks/net-http-request-aggregate-failure.md +38 -0
  595. package/skills/uipath-troubleshoot/references/activity-packages/web-activities/summary.md +13 -0
  596. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/investigation_guide.md +55 -0
  597. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/overview.md +82 -0
  598. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/add-picture-failures.md +51 -0
  599. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/append-text-missing-container.md +31 -0
  600. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/append-text-zero-byte-file.md +32 -0
  601. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/export-pdf-com-hang.md +46 -0
  602. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/export-pdf-missing-output-dir.md +32 -0
  603. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/export-pdf-output-path-format.md +35 -0
  604. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/read-text-doc-format.md +30 -0
  605. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/read-text-missing-container.md +29 -0
  606. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/read-text-protected-view.md +32 -0
  607. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-com-busy.md +35 -0
  608. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-file-locked.md +33 -0
  609. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-headers-textboxes-skipped.md +30 -0
  610. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-length-limit.md +30 -0
  611. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-loop-template-overwrite.md +31 -0
  612. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-multiline-formatting.md +31 -0
  613. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-silent-no-substitution.md +32 -0
  614. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/replace-text-version-mismatch.md +30 -0
  615. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-com-interop-failures.md +52 -0
  616. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-com-start-background-session0.md +50 -0
  617. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-export-pdf-com-wrong-thread.md +46 -0
  618. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-open-sharepoint-url-com-command-failed.md +45 -0
  619. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-cannot-create-unknown-type.md +30 -0
  620. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-com-not-installed.md +35 -0
  621. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-file-corrupted.md +34 -0
  622. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-file-path-not-found.md +36 -0
  623. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/playbooks/word-scope-hangs-background-prompt.md +34 -0
  624. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/presentation.md +11 -0
  625. package/skills/uipath-troubleshoot/references/activity-packages/word-activities/summary.md +38 -0
  626. package/skills/uipath-troubleshoot/references/products/agents/playbooks/guardrail-violation.md +111 -0
  627. package/skills/uipath-troubleshoot/references/products/agents/playbooks/is-connection-disabled.md +90 -0
  628. package/skills/uipath-troubleshoot/references/products/agents/playbooks/is-invalid-credentials.md +123 -0
  629. package/skills/uipath-troubleshoot/references/products/agents/playbooks/is-invalid-element-instance.md +96 -0
  630. package/skills/uipath-troubleshoot/references/products/agents/playbooks/llm-insufficient-information.md +1 -1
  631. package/skills/uipath-troubleshoot/references/products/agents/summary.md +4 -0
  632. package/skills/uipath-troubleshoot/references/products/integration-service/investigation_guide.md +9 -0
  633. package/skills/uipath-troubleshoot/references/products/integration-service/overview.md +7 -0
  634. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-invalid.md +9 -0
  635. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-aggregate-exception.md +30 -0
  636. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-general-exception.md +43 -0
  637. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-null-reference.md +36 -0
  638. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-remote-exception.md +31 -0
  639. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connector-runtime-exception.md +40 -0
  640. package/skills/uipath-troubleshoot/references/products/integration-service/summary.md +5 -0
  641. package/skills/uipath-troubleshoot/references/products/maestro/investigation_guide.md +2 -1
  642. package/skills/uipath-troubleshoot/references/products/orchestrator/investigation_guide.md +112 -17
  643. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-faulted-logon-failure.md +1 -1
  644. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-no-host.md +3 -1
  645. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-stale-dispatch.md +2 -0
  646. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-stopped-exit-code-0x40010004.md +104 -0
  647. package/skills/uipath-troubleshoot/references/products/orchestrator/summary.md +1 -0
  648. package/skills/uipath-troubleshoot/references/summary.md +69 -4
  649. package/skills/uipath-troubleshoot/schemas/evidence.schema.md +48 -0
  650. package/skills/uipath-troubleshoot/schemas/hypotheses.schema.md +22 -7
  651. package/skills/uipath-troubleshoot/schemas/scope-check.schema.md +1 -1
  652. package/skills/uipath-troubleshoot/schemas/state.schema.md +81 -6
  653. package/version-manifest.json +2 -2
  654. package/skills/uipath-agents/references/lowcode/critical-rules.md +0 -76
  655. package/skills/uipath-data-fabric/SKILL.md +0 -241
  656. package/skills/uipath-data-fabric/references/file-attachments.md +0 -65
  657. package/skills/uipath-maestro-bpmn/.maintenance/README.md +0 -241
  658. package/skills/uipath-maestro-bpmn/.maintenance/check-all.sh +0 -41
  659. package/skills/uipath-maestro-bpmn/.maintenance/check-anchors.sh +0 -83
  660. package/skills/uipath-maestro-bpmn/.maintenance/check-depth.sh +0 -132
  661. package/skills/uipath-maestro-bpmn/.maintenance/check-link-text.sh +0 -123
  662. package/skills/uipath-maestro-bpmn/.maintenance/check-links.sh +0 -70
  663. package/skills/uipath-maestro-bpmn/.maintenance/check-orphans.sh +0 -93
  664. package/skills/uipath-maestro-bpmn/.maintenance/check-plugin-pairs.sh +0 -39
  665. package/skills/uipath-maestro-bpmn/.maintenance/check-real-pack.sh +0 -79
  666. package/skills/uipath-maestro-bpmn/.maintenance/check-template.sh +0 -42
  667. package/skills/uipath-maestro-bpmn/.maintenance/check-uip-commands.sh +0 -266
  668. package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.py +0 -1255
  669. package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.sh +0 -8
  670. package/skills/uipath-maestro-bpmn/fixtures/validation/README.md +0 -94
  671. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/agent-invocation.bpmn +0 -62
  672. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/bindings_v2.json +0 -37
  673. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/entry-points.json +0 -21
  674. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/operate.json +0 -9
  675. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/package-descriptor.json +0 -10
  676. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/project.uiproj +0 -7
  677. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/bindings_v2.json +0 -68
  678. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/contract-variants.bpmn +0 -270
  679. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/entry-points.json +0 -25
  680. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/operate.json +0 -9
  681. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/package-descriptor.json +0 -10
  682. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/project.uiproj +0 -7
  683. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/bindings_v2.json +0 -19
  684. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/entry-points.json +0 -25
  685. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/gateway-boundary-error.bpmn +0 -91
  686. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/operate.json +0 -9
  687. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/package-descriptor.json +0 -10
  688. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/project.uiproj +0 -7
  689. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/bindings_v2.json +0 -4
  690. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/entry-points.json +0 -25
  691. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/imported-brownfield-preservation.bpmn +0 -63
  692. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/operate.json +0 -9
  693. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/package-descriptor.json +0 -10
  694. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/project.uiproj +0 -7
  695. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/bindings_v2.json +0 -52
  696. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/entry-points.json +0 -21
  697. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/integration-service-enriched.bpmn +0 -65
  698. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/operate.json +0 -9
  699. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/package-descriptor.json +0 -10
  700. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/project.uiproj +0 -7
  701. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/bindings_v2.json +0 -4
  702. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/entry-points.json +0 -25
  703. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/linear-process.bpmn +0 -55
  704. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/operate.json +0 -9
  705. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/package-descriptor.json +0 -10
  706. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/project.uiproj +0 -7
  707. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/bindings_v2.json +0 -20
  708. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/entry-points.json +0 -17
  709. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/operate.json +0 -9
  710. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/package-descriptor.json +0 -10
  711. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/project.uiproj +0 -7
  712. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/registry-coverage-matrix.bpmn +0 -207
  713. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/bindings_v2.json +0 -4
  714. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/entry-points.json +0 -33
  715. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/operate.json +0 -9
  716. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/package-descriptor.json +0 -10
  717. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/project.uiproj +0 -7
  718. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/subprocess-multi-instance.bpmn +0 -94
  719. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/bindings_v2.json +0 -124
  720. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/entry-points.json +0 -25
  721. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/operate.json +0 -9
  722. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/package-descriptor.json +0 -10
  723. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/project.uiproj +0 -7
  724. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/wrapper-family-contract.bpmn +0 -151
  725. package/skills/uipath-maestro-bpmn/references/author/CAPABILITY.md +0 -141
  726. package/skills/uipath-maestro-bpmn/references/author/references/brownfield.md +0 -48
  727. package/skills/uipath-maestro-bpmn/references/author/references/editing-operations.md +0 -75
  728. package/skills/uipath-maestro-bpmn/references/author/references/greenfield.md +0 -41
  729. package/skills/uipath-maestro-bpmn/references/author/references/planning-arch.md +0 -82
  730. package/skills/uipath-maestro-bpmn/references/author/references/planning-impl.md +0 -104
  731. package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/impl.md +0 -34
  732. package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/planning.md +0 -38
  733. package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/impl.md +0 -37
  734. package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/planning.md +0 -28
  735. package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/impl.md +0 -36
  736. package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/planning.md +0 -29
  737. package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/impl.md +0 -67
  738. package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/planning.md +0 -29
  739. package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/impl.md +0 -29
  740. package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/planning.md +0 -33
  741. package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/impl.md +0 -32
  742. package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/planning.md +0 -34
  743. package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/impl.md +0 -42
  744. package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/planning.md +0 -30
  745. package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/impl.md +0 -134
  746. package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/planning.md +0 -67
  747. package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/impl.md +0 -50
  748. package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/planning.md +0 -29
  749. package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/impl.md +0 -29
  750. package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/planning.md +0 -29
  751. package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/impl.md +0 -35
  752. package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/planning.md +0 -29
  753. package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/impl.md +0 -118
  754. package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/planning.md +0 -30
  755. package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/impl.md +0 -30
  756. package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/planning.md +0 -30
  757. package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/impl.md +0 -33
  758. package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/planning.md +0 -31
  759. package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/impl.md +0 -33
  760. package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/planning.md +0 -46
  761. package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/impl.md +0 -59
  762. package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/planning.md +0 -37
  763. package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/impl.md +0 -40
  764. package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/planning.md +0 -34
  765. package/skills/uipath-maestro-bpmn/references/author/references/supported-elements.md +0 -123
  766. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/README.md +0 -29
  767. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/agent-job.md +0 -36
  768. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/api-workflow.md +0 -29
  769. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/business-rule.md +0 -18
  770. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/call-activity.md +0 -56
  771. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/hitl.md +0 -17
  772. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/http-request.md +0 -119
  773. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/queue.md +0 -21
  774. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/rpa-job.md +0 -23
  775. package/skills/uipath-maestro-bpmn/references/author/references/validation.md +0 -118
  776. package/skills/uipath-maestro-bpmn/references/shared/bpmn-xml-contract.md +0 -197
  777. package/skills/uipath-maestro-bpmn/references/shared/cli-conventions.md +0 -46
  778. package/skills/uipath-maestro-bpmn/references/shared/error-handling.md +0 -82
  779. package/skills/uipath-maestro-bpmn/references/shared/variables-bindings-expressions.md +0 -150
  780. package/skills/uipath-maestro-bpmn/references/shared/wrapper-shells.md +0 -554
  781. package/skills/uipath-maestro-case/references/plugins/edges/impl-json.md +0 -152
  782. package/skills/uipath-maestro-case/references/plugins/edges/planning.md +0 -93
  783. /package/skills/uipath-maestro-bpmn/references/{shared/expression-authoring.md → expression-authoring.md} +0 -0
  784. /package/skills/uipath-maestro-bpmn/references/{shared/public-safety.md → public-safety.md} +0 -0
  785. /package/skills/{uipath-solution/references/design → uipath-planner/references}/package-selection-guide.md +0 -0
  786. /package/skills/uipath-solution/references/{operate/scenarios → scenarios}/failure-modes.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": "0.0.32",
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": "0.0.33",
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
@@ -2,7 +2,8 @@
2
2
  * @gabrielavaduva @AlvinStanescu @marius-bughiu @RaduAna-Maria @uipreliga @dmetzgar @rockymadden @gozhang2 @smflorentino
3
3
 
4
4
  # CI workflows and review config
5
- /.github/ @uipreliga
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
@@ -22,11 +23,13 @@
22
23
  # RPA skill (coded + XAML workflows)
23
24
  /skills/uipath-rpa/ @DragosUnguru @RaduAna-Maria @gabrielavaduva @AlvinStanescu @Mihaiii
24
25
  /skills/uipath-rpa/references/coded/integration-service-guide.md @baishalighosh @ojalkumar-pixel @shyamgupta52
26
+ /tests/tasks/uipath-rpa/ @DragosUnguru @RaduAna-Maria @gabrielavaduva @AlvinStanescu @Mihaiii
25
27
 
26
28
  # Platform skill
27
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
28
30
  /skills/uipath-platform/references/traces/ @UiPath/llmops-team
29
31
  /skills/uipath-platform/references/integration-service/ @chandusailella @baishalighosh
32
+ /skills/uipath-platform/references/data-fabric/ @UiPath/DatafabricCodingAgent
30
33
  /skills/uipath-platform/references/llmgateway/ @denispetre @vstoleru-uipath @dragosvelcea
31
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
32
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
@@ -35,12 +38,14 @@
35
38
  /tests/tasks/uipath-platform/llmgateway/ @denispetre @vstoleru-uipath @dragosvelcea
36
39
  /tests/tasks/uipath-platform/traces/ @UiPath/llmops-team
37
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
38
42
 
39
43
  # Agents skill (coded + low-code)
40
44
  /skills/uipath-agents/ @UiPath/team-coded-agents @AlexandruCGhimisi @andreibalas-uipath @al3xanndru @andreitava-uip
41
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
42
47
 
43
- # Context grounding capabilities (DeepRAG + BatchTransform) now part of uipath-agents
48
+ # Context grounding capabilities DeepRAG + BatchTransform (uipath-agents) and index-management CLI (uipath-platform)
44
49
  /skills/uipath-agents/references/coded/capabilities/deeprag/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
45
50
  /skills/uipath-agents/references/coded/capabilities/batch-transform/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
46
51
  /skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
@@ -50,6 +55,9 @@
50
55
  /tests/tasks/uipath-agents/batch_transform_coded/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
51
56
  /tests/tasks/uipath-agents/lowcode/deeprag/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
52
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
53
61
 
54
62
  # Guardrails capability docs
55
63
  /skills/uipath-agents/references/lowcode/capabilities/guardrails/ @apetraru-uipath @valentinabojan @ctiliescuuipath
@@ -58,15 +66,18 @@
58
66
  /tests/tasks/uipath-agents/lowcode/guardrails/ @apetraru-uipath @valentinabojan @ctiliescuuipath
59
67
  /tests/tasks/uipath-agents/coded/guardrails/ @apetraru-uipath @valentinabojan @ctiliescuuipath
60
68
 
61
- # Planner skill
69
+ # Planner skill (PDD → SDD design + multi-skill task planning)
62
70
  /skills/uipath-planner/ @RaduAna-Maria
71
+ /tests/tasks/uipath-planner/ @RaduAna-Maria
63
72
 
64
- # Solution skill (design + uip solution lifecycle)
65
- /skills/uipath-solution/ @RaduAna-Maria @UiPath/team-merlot @UiPath/team-orange
66
- /tests/tasks/uipath-solution/ @RaduAna-Maria @UiPath/team-merlot @UiPath/team-orange
73
+ # Solution skill (uip solution lifecycle)
74
+ /skills/uipath-solution/ @UiPath/team-merlot @UiPath/team-orange
75
+ /tests/tasks/uipath-solution/ @UiPath/team-merlot @UiPath/team-orange
67
76
 
68
77
  # Flow skill
69
78
  /skills/uipath-maestro-flow/ @bai-uipath @rockymadden @gozhang2 @tmatup @akshaylive @jiyangzh @nikhil-maryala @baishalighosh
79
+ # Flow test tasks (general) — more specific subfolder rules below override this
80
+ /tests/tasks/uipath-maestro-flow/ @bai-uipath @rockymadden @gozhang2 @tmatup @akshaylive @jiyangzh @nikhil-maryala @baishalighosh
70
81
 
71
82
  # Context grounding team — flow plugins (Summarize/Batch Transform) + tasks
72
83
  /skills/uipath-maestro-flow/references/author/references/plugins/summarize/ @gcuip @JeremyReist2 @cfauchere @CalebMartinUiPath @jordan-uipath @eteodorovici @pateljay43 @swathiJayav
@@ -77,7 +88,8 @@
77
88
  /skills/uipath-maestro-bpmn/ @bai-uipath @rockymadden @gozhang2 @tmatup @akshaylive @jiyangzh @nikhil-maryala @baishalighosh
78
89
  /tests/tasks/uipath-maestro-bpmn/ @bai-uipath @rockymadden @gozhang2 @tmatup @akshaylive @jiyangzh @nikhil-maryala @baishalighosh
79
90
  # API Workflow skill
80
- /skills/uipath-api-workflow/ @rares-baesu-uipath
91
+ /skills/uipath-api-workflow/ @rares-baesu-uipath @liviubobocu @mirastroie
92
+ /tests/tasks/uipath-api-workflow/ @rares-baesu-uipath @liviubobocu @mirastroie
81
93
 
82
94
  # HITL skill
83
95
  /skills/uipath-human-in-the-loop/ @dushyant-uipath
@@ -89,6 +101,11 @@
89
101
 
90
102
  # Coded Apps skill
91
103
  /skills/uipath-coded-apps/ @Raina451 @deepeshrai-tech @Sandeepan-Ghosh-0312 @swati354
104
+ /tests/tasks/uipath-coded-apps/ @Raina451 @deepeshrai-tech @Sandeepan-Ghosh-0312 @swati354
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
92
109
 
93
110
  # Flow skill — plugin guides (away team owned)
94
111
  # Add your team here when contributing a new plugin category
@@ -103,6 +120,7 @@
103
120
 
104
121
  # Review skill
105
122
  /skills/uipath-review/ @AlvinStanescu @gabrielavaduva @roalexandru
123
+ /tests/tasks/uipath-review/ @AlvinStanescu @gabrielavaduva @roalexandru
106
124
 
107
125
  # Legacy RPA — merged into uipath-rpa
108
126
  /skills/uipath-rpa/references/legacy/ @roalexandru @DragosUnguru @RaduAna-Maria @gabrielavaduva @AlvinStanescu @Mihaiii
@@ -110,6 +128,7 @@
110
128
  # Troubleshooting
111
129
  /skills/uipath-troubleshoot/ @MarinRzv @dmorosanu @vladimir-cozma @costin-uipath @Stefan-Virgil
112
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
113
132
  /skills/uipath-troubleshoot/references/products/agents/ @UiPath/llmops-team @andreibalas-uipath
114
133
 
115
134
  # Governance skill
@@ -120,9 +139,6 @@
120
139
  /skills/uipath-test/ @vaishalisharma-uipath @amoluipath @ganeshborle
121
140
  /tests/tasks/uipath-test/ @vaishalisharma-uipath @amoluipath @ganeshborle
122
141
 
123
- # Data Fabric skill (CLI entity/record management)
124
- /skills/uipath-data-fabric/ @aditi-goyal-uipath
125
- /tests/tasks/uipath-data-fabric/ @aditi-goyal-uipath
126
142
 
127
143
  # Tasks skill (Action Center Operate)
128
144
  /skills/uipath-tasks/ @UiPath/ActionCenterDev
@@ -139,3 +155,6 @@
139
155
  # MCP skill (UiPath AgentHub MCP server registration + tool authoring)
140
156
  /skills/uipath-mcp-servers/ @cosminpaunel @UiPath/team-coded-agents
141
157
  /tests/tasks/uipath-mcp-servers/ @cosminpaunel @UiPath/team-coded-agents
158
+
159
+ # Automation Discovery skill
160
+ /skills/uipath-automation-discovery/ @uisherif
package/README.md CHANGED
@@ -14,7 +14,7 @@ npm -g install @uipath/cli
14
14
  uip skills install
15
15
  ```
16
16
 
17
- Select the skills you need from the wizard. Skills are installed into your coding agent's directory and ready to use.
17
+ `uip skills install` finds the AI coding agents installed on your machine and installs the skills for all of them, into each agent's directory, ready to use. If it can't find any agent, it asks which one to target. To install for just one agent, pass `--agent <name>` (e.g. `--agent claude`).
18
18
 
19
19
  <details>
20
20
  <summary>Don't have Node.js installed?</summary>
@@ -62,8 +62,8 @@ The repository ships skills covering authoring, platform operations, and diagnos
62
62
 
63
63
  | Skill | Description |
64
64
  |-------|-------------|
65
- | **uipath-solution** | Solution lifecycle (`.uipx`)author SDD from PDD, then `uip solution init/pack/publish/deploy/activate`. |
66
- | **uipath-planner** | Multi-skill task plannerreads SDDs or non-PDD requests and derives an executable task list across the other skills. |
65
+ | **uipath-planner** | Solution planner & designer turn a Process Design Document into an implementation-ready Solution Design Document (SDD), then derive an executable multi-skill task list across the other skills. |
66
+ | **uipath-solution** | Solution lifecycle (`.uipx`)`uip solution init/pack/publish/deploy/activate`. |
67
67
  | **uipath-review** | Read-only auditor — structural, quality, and best-practice review across RPA, agents, flows, BPMN, coded apps, and solutions. |
68
68
 
69
69
  ### Platform & Operations
@@ -81,6 +81,42 @@ The repository ships skills covering authoring, platform operations, and diagnos
81
81
  | **uipath-troubleshoot** | Root-cause investigation across any UiPath product — errors, failures, regressions, stuck jobs, traces, incidents. |
82
82
  | **uipath-feedback** | Submit bug reports and improvement suggestions via `uip feedback send`. |
83
83
 
84
+ ### Lifecycle Status
85
+
86
+ Every skill's maturity is tracked in [`assets/skill-status.json`](assets/skill-status.json) — the source of truth. The table below is generated; refresh it with `python3 scripts/check-skill-status.py --write-readme`.
87
+
88
+ <!-- BEGIN GENERATED SKILL STATUS -->
89
+ | Skill | Status |
90
+ |-------|--------|
91
+ | `uipath-admin` | In-development |
92
+ | `uipath-agents` | In-development |
93
+ | `uipath-api-workflow` | In-development |
94
+ | `uipath-automation-discovery` | Preview |
95
+ | `uipath-coded-apps` | Preview |
96
+ | `uipath-connector-builder` | In-development |
97
+ | `uipath-feedback` | Stable |
98
+ | `uipath-governance` | In-development |
99
+ | `uipath-human-in-the-loop` | In-development |
100
+ | `uipath-ixp` | In-development |
101
+ | `uipath-maestro-bpmn` | In-development |
102
+ | `uipath-maestro-case` | In-development |
103
+ | `uipath-maestro-flow` | In-development |
104
+ | `uipath-mcp-servers` | In-development |
105
+ | `uipath-planner` | Preview |
106
+ | `uipath-platform` | Preview |
107
+ | `uipath-review` | Preview |
108
+ | `uipath-rpa` | Preview |
109
+ | `uipath-solution` | Preview |
110
+ | `uipath-tasks` | Preview |
111
+ | `uipath-test` | In-development |
112
+ | `uipath-troubleshoot` | Preview |
113
+
114
+ **Status legend:**
115
+ - **Stable** — Stable, production-ready surface; safe for production.
116
+ - **Preview** — Not yet stable; may be broadly available or gated/allowlisted, and surface and behavior may change.
117
+ - **In-development** — Skill itself is incomplete or unstable; coverage is partial.
118
+ <!-- END GENERATED SKILL STATUS -->
119
+
84
120
  ## Agents
85
121
 
86
122
  | Agent | Description |
@@ -111,12 +147,23 @@ The command prints the recommended JSON and offers to merge it into your setting
111
147
 
112
148
  ### Google Gemini CLI
113
149
 
114
- Gemini CLI is supported by `uip skills install` pick **Gemini CLI** when the wizard prompts for a target and skills are wired up automatically.
150
+ Gemini CLI is supported by `uip skills install`. If the Gemini CLI is on your PATH, it's detected automatically and skills are wired up. If no agent is detected, pick **Gemini CLI** when prompted.
115
151
 
116
152
  ### OpenAI Codex CLI
117
153
 
118
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/`).
119
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
+
120
167
  > **Windows users:** This repo uses git symlinks. Clone with symlinks enabled:
121
168
  > ```bash
122
169
  > git clone -c core.symlinks=true https://github.com/UiPath/skills
@@ -0,0 +1,197 @@
1
+ {
2
+ "generated_at": "2026-05-27T00:00:00Z",
3
+ "source": "manual",
4
+ "schema_version": 1,
5
+ "statuses": {
6
+ "stable": {
7
+ "label": "Stable",
8
+ "meaning": "Stable, production-ready surface; safe for production."
9
+ },
10
+ "preview": {
11
+ "label": "Preview",
12
+ "meaning": "Not yet stable; may be broadly available or gated/allowlisted, and surface and behavior may change."
13
+ },
14
+ "in-development": {
15
+ "label": "In-development",
16
+ "meaning": "Skill itself is incomplete or unstable; coverage is partial."
17
+ }
18
+ },
19
+ "skills": {
20
+ "uipath-admin": {
21
+ "status": "in-development",
22
+ "confluence": {
23
+ "page_id": null,
24
+ "url": null
25
+ },
26
+ "last_synced": null
27
+ },
28
+ "uipath-agents": {
29
+ "status": "in-development",
30
+ "confluence": {
31
+ "page_id": null,
32
+ "url": null
33
+ },
34
+ "last_synced": null
35
+ },
36
+ "uipath-api-workflow": {
37
+ "status": "in-development",
38
+ "confluence": {
39
+ "page_id": null,
40
+ "url": null
41
+ },
42
+ "last_synced": null
43
+ },
44
+ "uipath-automation-discovery": {
45
+ "status": "preview",
46
+ "confluence": {
47
+ "page_id": null,
48
+ "url": null
49
+ },
50
+ "last_synced": null
51
+ },
52
+ "uipath-coded-apps": {
53
+ "status": "preview",
54
+ "confluence": {
55
+ "page_id": null,
56
+ "url": null
57
+ },
58
+ "last_synced": null
59
+ },
60
+ "uipath-connector-builder": {
61
+ "status": "in-development",
62
+ "confluence": {
63
+ "page_id": null,
64
+ "url": null
65
+ },
66
+ "last_synced": null
67
+ },
68
+ "uipath-feedback": {
69
+ "status": "stable",
70
+ "confluence": {
71
+ "page_id": null,
72
+ "url": null
73
+ },
74
+ "last_synced": null
75
+ },
76
+ "uipath-governance": {
77
+ "status": "in-development",
78
+ "confluence": {
79
+ "page_id": null,
80
+ "url": null
81
+ },
82
+ "last_synced": null
83
+ },
84
+ "uipath-human-in-the-loop": {
85
+ "status": "in-development",
86
+ "confluence": {
87
+ "page_id": null,
88
+ "url": null
89
+ },
90
+ "last_synced": null
91
+ },
92
+ "uipath-ixp": {
93
+ "status": "in-development",
94
+ "confluence": {
95
+ "page_id": null,
96
+ "url": null
97
+ },
98
+ "last_synced": null
99
+ },
100
+ "uipath-maestro-bpmn": {
101
+ "status": "in-development",
102
+ "confluence": {
103
+ "page_id": null,
104
+ "url": null
105
+ },
106
+ "last_synced": null
107
+ },
108
+ "uipath-maestro-case": {
109
+ "status": "in-development",
110
+ "confluence": {
111
+ "page_id": null,
112
+ "url": null
113
+ },
114
+ "last_synced": null
115
+ },
116
+ "uipath-maestro-flow": {
117
+ "status": "in-development",
118
+ "confluence": {
119
+ "page_id": null,
120
+ "url": null
121
+ },
122
+ "last_synced": null
123
+ },
124
+ "uipath-mcp-servers": {
125
+ "status": "in-development",
126
+ "confluence": {
127
+ "page_id": null,
128
+ "url": null
129
+ },
130
+ "last_synced": null
131
+ },
132
+ "uipath-planner": {
133
+ "status": "preview",
134
+ "confluence": {
135
+ "page_id": null,
136
+ "url": null
137
+ },
138
+ "last_synced": null
139
+ },
140
+ "uipath-platform": {
141
+ "status": "preview",
142
+ "confluence": {
143
+ "page_id": null,
144
+ "url": null
145
+ },
146
+ "last_synced": null
147
+ },
148
+ "uipath-review": {
149
+ "status": "preview",
150
+ "confluence": {
151
+ "page_id": null,
152
+ "url": null
153
+ },
154
+ "last_synced": null
155
+ },
156
+ "uipath-rpa": {
157
+ "status": "preview",
158
+ "confluence": {
159
+ "page_id": null,
160
+ "url": null
161
+ },
162
+ "last_synced": null
163
+ },
164
+ "uipath-solution": {
165
+ "status": "preview",
166
+ "confluence": {
167
+ "page_id": null,
168
+ "url": null
169
+ },
170
+ "last_synced": null
171
+ },
172
+ "uipath-tasks": {
173
+ "status": "preview",
174
+ "confluence": {
175
+ "page_id": null,
176
+ "url": null
177
+ },
178
+ "last_synced": null
179
+ },
180
+ "uipath-test": {
181
+ "status": "in-development",
182
+ "confluence": {
183
+ "page_id": null,
184
+ "url": null
185
+ },
186
+ "last_synced": null
187
+ },
188
+ "uipath-troubleshoot": {
189
+ "status": "preview",
190
+ "confluence": {
191
+ "page_id": null,
192
+ "url": null
193
+ },
194
+ "last_synced": null
195
+ }
196
+ }
197
+ }