@uipath/skills 1.195.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1431) hide show
  1. package/.claude-plugin/marketplace.json +33 -0
  2. package/.claude-plugin/plugin.json +34 -0
  3. package/CODEOWNERS +141 -0
  4. package/LICENSE +21 -0
  5. package/README.md +164 -0
  6. package/agents/uipath-project-discovery-agent.md +333 -0
  7. package/assets/cli-versions.json +15 -0
  8. package/assets/uip-catalog-snapshot.json +1275 -0
  9. package/commands/install-permissions.md +97 -0
  10. package/hooks/ensure-uip.sh +220 -0
  11. package/hooks/hooks.json +23 -0
  12. package/hooks/suggest-permissions.sh +36 -0
  13. package/hooks/validate-skill-descriptions.sh +58 -0
  14. package/package.json +44 -0
  15. package/skills/uipath-admin/SKILL.md +217 -0
  16. package/skills/uipath-admin/references/audit-commands.md +216 -0
  17. package/skills/uipath-admin/references/audit-workflow-guide.md +297 -0
  18. package/skills/uipath-admin/references/authorization/authorization-commands.md +443 -0
  19. package/skills/uipath-admin/references/authorization/check-access.md +139 -0
  20. package/skills/uipath-admin/references/authorization/grant-permissions.md +132 -0
  21. package/skills/uipath-admin/references/authorization/permission-catalog.md +62 -0
  22. package/skills/uipath-admin/references/authorization/role-assignment-management.md +178 -0
  23. package/skills/uipath-admin/references/authorization/role-management.md +308 -0
  24. package/skills/uipath-admin/references/external-app-management.md +142 -0
  25. package/skills/uipath-admin/references/group-management.md +67 -0
  26. package/skills/uipath-admin/references/identity-commands.md +662 -0
  27. package/skills/uipath-admin/references/ip-restriction/bypass-rule-management.md +80 -0
  28. package/skills/uipath-admin/references/ip-restriction/enforcement-management.md +86 -0
  29. package/skills/uipath-admin/references/ip-restriction/ip-range-management.md +125 -0
  30. package/skills/uipath-admin/references/ip-restriction/ip-restriction-commands.md +318 -0
  31. package/skills/uipath-admin/references/organization-management.md +146 -0
  32. package/skills/uipath-admin/references/organizations-commands.md +175 -0
  33. package/skills/uipath-admin/references/pat-management.md +73 -0
  34. package/skills/uipath-admin/references/robot-account-management.md +36 -0
  35. package/skills/uipath-admin/references/smtp-management.md +73 -0
  36. package/skills/uipath-admin/references/tenant-management.md +308 -0
  37. package/skills/uipath-admin/references/tenants-commands.md +354 -0
  38. package/skills/uipath-admin/references/user-management.md +105 -0
  39. package/skills/uipath-agents/SKILL.md +79 -0
  40. package/skills/uipath-agents/assets/solutions/metadata.json +199 -0
  41. package/skills/uipath-agents/references/authentication.md +83 -0
  42. package/skills/uipath-agents/references/coded/capabilities/batch-transform/api-reference.md +38 -0
  43. package/skills/uipath-agents/references/coded/capabilities/batch-transform/impl-python.md +115 -0
  44. package/skills/uipath-agents/references/coded/capabilities/batch-transform/planning.md +90 -0
  45. package/skills/uipath-agents/references/coded/capabilities/context-grounding.md +253 -0
  46. package/skills/uipath-agents/references/coded/capabilities/conversational-agents.md +86 -0
  47. package/skills/uipath-agents/references/coded/capabilities/deeprag/api-reference.md +38 -0
  48. package/skills/uipath-agents/references/coded/capabilities/deeprag/impl-python.md +117 -0
  49. package/skills/uipath-agents/references/coded/capabilities/deeprag/planning.md +58 -0
  50. package/skills/uipath-agents/references/coded/capabilities/file-attachments.md +99 -0
  51. package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails-recommend.md +284 -0
  52. package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails.md +250 -0
  53. package/skills/uipath-agents/references/coded/capabilities/human-in-the-loop.md +208 -0
  54. package/skills/uipath-agents/references/coded/capabilities/integration-service.md +318 -0
  55. package/skills/uipath-agents/references/coded/capabilities/process-invocation.md +131 -0
  56. package/skills/uipath-agents/references/coded/capabilities/sdk-services.md +244 -0
  57. package/skills/uipath-agents/references/coded/capabilities/tracing.md +247 -0
  58. package/skills/uipath-agents/references/coded/embedding-in-flows.md +97 -0
  59. package/skills/uipath-agents/references/coded/flow-integration.md +88 -0
  60. package/skills/uipath-agents/references/coded/frameworks/agent-patterns.md +411 -0
  61. package/skills/uipath-agents/references/coded/frameworks/coded-functions.md +240 -0
  62. package/skills/uipath-agents/references/coded/frameworks/langgraph-integration.md +411 -0
  63. package/skills/uipath-agents/references/coded/frameworks/llamaindex-integration.md +404 -0
  64. package/skills/uipath-agents/references/coded/frameworks/openai-agents-integration.md +365 -0
  65. package/skills/uipath-agents/references/coded/lifecycle/bindings-reference.md +1114 -0
  66. package/skills/uipath-agents/references/coded/lifecycle/build.md +54 -0
  67. package/skills/uipath-agents/references/coded/lifecycle/deployment.md +143 -0
  68. package/skills/uipath-agents/references/coded/lifecycle/evaluate.md +101 -0
  69. package/skills/uipath-agents/references/coded/lifecycle/evaluations/best-practices.md +222 -0
  70. package/skills/uipath-agents/references/coded/lifecycle/evaluations/creating-evaluations.md +187 -0
  71. package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluation-sets.md +203 -0
  72. package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluators.md +321 -0
  73. package/skills/uipath-agents/references/coded/lifecycle/evaluations/running-evaluations.md +145 -0
  74. package/skills/uipath-agents/references/coded/lifecycle/file-sync.md +109 -0
  75. package/skills/uipath-agents/references/coded/lifecycle/local-workspace.md +67 -0
  76. package/skills/uipath-agents/references/coded/lifecycle/running-agents.md +92 -0
  77. package/skills/uipath-agents/references/coded/lifecycle/setup.md +126 -0
  78. package/skills/uipath-agents/references/coded/quickstart.md +333 -0
  79. package/skills/uipath-agents/references/coded-vs-lowcode-guide.md +115 -0
  80. package/skills/uipath-agents/references/context-grounding-patterns.md +52 -0
  81. package/skills/uipath-agents/references/lowcode/agent-definition.md +388 -0
  82. package/skills/uipath-agents/references/lowcode/agent-prompting-guide.md +149 -0
  83. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/analyze-attachments.md +115 -0
  84. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/api-reference.md +38 -0
  85. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/impl-json.md +97 -0
  86. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/planning.md +62 -0
  87. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/built-in-tools.md +75 -0
  88. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/api-reference.md +38 -0
  89. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/impl-json.md +84 -0
  90. package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/planning.md +49 -0
  91. package/skills/uipath-agents/references/lowcode/capabilities/context/attachments.md +54 -0
  92. package/skills/uipath-agents/references/lowcode/capabilities/context/context.md +40 -0
  93. package/skills/uipath-agents/references/lowcode/capabilities/context/datafabric.md +52 -0
  94. package/skills/uipath-agents/references/lowcode/capabilities/context/index.md +264 -0
  95. package/skills/uipath-agents/references/lowcode/capabilities/escalation/escalation.md +268 -0
  96. package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails-recommend.md +227 -0
  97. package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails.md +1107 -0
  98. package/skills/uipath-agents/references/lowcode/capabilities/inline-in-flow/inline-in-flow.md +371 -0
  99. package/skills/uipath-agents/references/lowcode/capabilities/integration-service/integration-service.md +350 -0
  100. package/skills/uipath-agents/references/lowcode/capabilities/memory/memory.md +186 -0
  101. package/skills/uipath-agents/references/lowcode/capabilities/process/process.md +257 -0
  102. package/skills/uipath-agents/references/lowcode/capabilities/process/solution-files.md +548 -0
  103. package/skills/uipath-agents/references/lowcode/critical-rules.md +76 -0
  104. package/skills/uipath-agents/references/lowcode/evaluations/evaluate.md +91 -0
  105. package/skills/uipath-agents/references/lowcode/evaluations/evaluation-sets.md +153 -0
  106. package/skills/uipath-agents/references/lowcode/evaluations/evaluators.md +280 -0
  107. package/skills/uipath-agents/references/lowcode/evaluations/orchestrator-eval-run.md +210 -0
  108. package/skills/uipath-agents/references/lowcode/evaluations/running-evaluations.md +207 -0
  109. package/skills/uipath-agents/references/lowcode/lowcode.md +101 -0
  110. package/skills/uipath-agents/references/lowcode/model-selection-guide.md +69 -0
  111. package/skills/uipath-agents/references/lowcode/project-lifecycle.md +408 -0
  112. package/skills/uipath-agents/references/lowcode/solution-resources.md +290 -0
  113. package/skills/uipath-api-workflow/SKILL.md +313 -0
  114. package/skills/uipath-api-workflow/assets/templates/api-workflow-template.json +58 -0
  115. package/skills/uipath-api-workflow/assets/templates/conditional-workflow-example.json +276 -0
  116. package/skills/uipath-api-workflow/assets/templates/connector-call-example.json +125 -0
  117. package/skills/uipath-api-workflow/assets/templates/loop-aggregation-example.json +184 -0
  118. package/skills/uipath-api-workflow/assets/templates/nested-control-flow-example.json +292 -0
  119. package/skills/uipath-api-workflow/assets/templates/solution-connection-resource-template.json +28 -0
  120. package/skills/uipath-api-workflow/assets/templates/vendor-curated-call-example.json +105 -0
  121. package/skills/uipath-api-workflow/references/cli-reference.md +421 -0
  122. package/skills/uipath-api-workflow/references/connector-activity-discovery.md +750 -0
  123. package/skills/uipath-api-workflow/references/control-flow-patterns.md +265 -0
  124. package/skills/uipath-api-workflow/references/expressions-and-context.md +269 -0
  125. package/skills/uipath-api-workflow/references/http-retry-config.md +156 -0
  126. package/skills/uipath-api-workflow/references/task-types.md +482 -0
  127. package/skills/uipath-api-workflow/references/troubleshooting.md +628 -0
  128. package/skills/uipath-api-workflow/references/workflow-file-format.md +205 -0
  129. package/skills/uipath-coded-apps/SKILL.md +186 -0
  130. package/skills/uipath-coded-apps/assets/templates/action-app-template.md +303 -0
  131. package/skills/uipath-coded-apps/assets/templates/web-app-template.md +333 -0
  132. package/skills/uipath-coded-apps/references/commands-reference.md +284 -0
  133. package/skills/uipath-coded-apps/references/create-action-app.md +344 -0
  134. package/skills/uipath-coded-apps/references/create-web-app.md +212 -0
  135. package/skills/uipath-coded-apps/references/debug.md +513 -0
  136. package/skills/uipath-coded-apps/references/file-sync.md +165 -0
  137. package/skills/uipath-coded-apps/references/oauth-client-setup.md +671 -0
  138. package/skills/uipath-coded-apps/references/oauth-scopes.md +244 -0
  139. package/skills/uipath-coded-apps/references/pack-publish-deploy.md +342 -0
  140. package/skills/uipath-coded-apps/references/patterns.md +1023 -0
  141. package/skills/uipath-coded-apps/references/sdk/action-center.md +278 -0
  142. package/skills/uipath-coded-apps/references/sdk/conversational-agent.md +736 -0
  143. package/skills/uipath-coded-apps/references/sdk/data-fabric.md +244 -0
  144. package/skills/uipath-coded-apps/references/sdk/feedback.md +142 -0
  145. package/skills/uipath-coded-apps/references/sdk/imports.md +58 -0
  146. package/skills/uipath-coded-apps/references/sdk/maestro.md +391 -0
  147. package/skills/uipath-coded-apps/references/sdk/orchestrator.md +358 -0
  148. package/skills/uipath-coded-apps/references/sdk/pagination.md +84 -0
  149. package/skills/uipath-data-fabric/SKILL.md +241 -0
  150. package/skills/uipath-data-fabric/references/bulk-import.md +73 -0
  151. package/skills/uipath-data-fabric/references/choice-sets.md +138 -0
  152. package/skills/uipath-data-fabric/references/entity-schema.md +391 -0
  153. package/skills/uipath-data-fabric/references/file-attachments.md +65 -0
  154. package/skills/uipath-data-fabric/references/filter-platform-contract.md +55 -0
  155. package/skills/uipath-data-fabric/references/records-query.md +246 -0
  156. package/skills/uipath-feedback/SKILL.md +350 -0
  157. package/skills/uipath-governance/SKILL.md +91 -0
  158. package/skills/uipath-governance/references/access-policy/access-policy-commands.md +234 -0
  159. package/skills/uipath-governance/references/access-policy/access-policy-overview-guide.md +342 -0
  160. package/skills/uipath-governance/references/access-policy/planning-arch.md +314 -0
  161. package/skills/uipath-governance/references/access-policy/planning-impl.md +126 -0
  162. package/skills/uipath-governance/references/access-policy/plugins/actor/impl.md +203 -0
  163. package/skills/uipath-governance/references/access-policy/plugins/actor/planning.md +178 -0
  164. package/skills/uipath-governance/references/access-policy/plugins/executable/impl.md +167 -0
  165. package/skills/uipath-governance/references/access-policy/plugins/executable/planning.md +122 -0
  166. package/skills/uipath-governance/references/access-policy/plugins/selector/impl.md +169 -0
  167. package/skills/uipath-governance/references/access-policy/plugins/selector/planning.md +98 -0
  168. package/skills/uipath-governance/references/access-policy/plugins/tags/impl.md +153 -0
  169. package/skills/uipath-governance/references/access-policy/plugins/tags/planning.md +117 -0
  170. package/skills/uipath-governance/references/access-policy/policy-manage-guide.md +403 -0
  171. package/skills/uipath-governance/references/access-policy/resource-lookup-guide.md +289 -0
  172. package/skills/uipath-governance/references/access-policy/sample-policy-guide.md +119 -0
  173. package/skills/uipath-governance/references/aops-policy/aops-governance-recipes-guide.md +226 -0
  174. package/skills/uipath-governance/references/aops-policy/aops-policy-commands.md +463 -0
  175. package/skills/uipath-governance/references/aops-policy/aops-policy-deploy-guide.md +371 -0
  176. package/skills/uipath-governance/references/aops-policy/aops-policy-deployed-guide.md +135 -0
  177. package/skills/uipath-governance/references/aops-policy/aops-policy-manage-guide.md +425 -0
  178. package/skills/uipath-governance/references/aops-policy/aops-policy-overview-guide.md +280 -0
  179. package/skills/uipath-governance/references/aops-policy/configure-aops-policy-data-guide.md +375 -0
  180. package/skills/uipath-governance/references/disambiguation-guide.md +67 -0
  181. package/skills/uipath-human-in-the-loop/SKILL.md +322 -0
  182. package/skills/uipath-human-in-the-loop/references/hitl-node-apptask.md +412 -0
  183. package/skills/uipath-human-in-the-loop/references/hitl-node-coded-action-app.md +334 -0
  184. package/skills/uipath-human-in-the-loop/references/hitl-node-quickform.md +392 -0
  185. package/skills/uipath-human-in-the-loop/references/hitl-patterns.md +154 -0
  186. package/skills/uipath-ixp/SKILL.md +84 -0
  187. package/skills/uipath-ixp/references/cli-reference.md +113 -0
  188. package/skills/uipath-ixp/references/improve-prompts-guide.md +283 -0
  189. package/skills/uipath-ixp/references/label-documents-guide.md +175 -0
  190. package/skills/uipath-ixp/references/project-setup-guide.md +90 -0
  191. package/skills/uipath-maestro-bpmn/.maintenance/README.md +241 -0
  192. package/skills/uipath-maestro-bpmn/.maintenance/check-all.sh +41 -0
  193. package/skills/uipath-maestro-bpmn/.maintenance/check-anchors.sh +83 -0
  194. package/skills/uipath-maestro-bpmn/.maintenance/check-depth.sh +132 -0
  195. package/skills/uipath-maestro-bpmn/.maintenance/check-link-text.sh +123 -0
  196. package/skills/uipath-maestro-bpmn/.maintenance/check-links.sh +70 -0
  197. package/skills/uipath-maestro-bpmn/.maintenance/check-orphans.sh +93 -0
  198. package/skills/uipath-maestro-bpmn/.maintenance/check-plugin-pairs.sh +39 -0
  199. package/skills/uipath-maestro-bpmn/.maintenance/check-real-pack.sh +79 -0
  200. package/skills/uipath-maestro-bpmn/.maintenance/check-template.sh +42 -0
  201. package/skills/uipath-maestro-bpmn/.maintenance/check-uip-commands.sh +266 -0
  202. package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.py +1255 -0
  203. package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.sh +8 -0
  204. package/skills/uipath-maestro-bpmn/SKILL.md +75 -0
  205. package/skills/uipath-maestro-bpmn/fixtures/validation/README.md +94 -0
  206. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/agent-invocation.bpmn +62 -0
  207. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/bindings_v2.json +37 -0
  208. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/entry-points.json +21 -0
  209. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/operate.json +9 -0
  210. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/package-descriptor.json +10 -0
  211. package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/project.uiproj +7 -0
  212. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/bindings_v2.json +68 -0
  213. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/contract-variants.bpmn +270 -0
  214. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/entry-points.json +25 -0
  215. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/operate.json +9 -0
  216. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/package-descriptor.json +10 -0
  217. package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/project.uiproj +7 -0
  218. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/bindings_v2.json +19 -0
  219. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/entry-points.json +25 -0
  220. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/gateway-boundary-error.bpmn +91 -0
  221. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/operate.json +9 -0
  222. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/package-descriptor.json +10 -0
  223. package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/project.uiproj +7 -0
  224. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/bindings_v2.json +4 -0
  225. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/entry-points.json +25 -0
  226. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/imported-brownfield-preservation.bpmn +63 -0
  227. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/operate.json +9 -0
  228. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/package-descriptor.json +10 -0
  229. package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/project.uiproj +7 -0
  230. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/bindings_v2.json +52 -0
  231. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/entry-points.json +21 -0
  232. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/integration-service-enriched.bpmn +65 -0
  233. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/operate.json +9 -0
  234. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/package-descriptor.json +10 -0
  235. package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/project.uiproj +7 -0
  236. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/bindings_v2.json +4 -0
  237. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/entry-points.json +25 -0
  238. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/linear-process.bpmn +55 -0
  239. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/operate.json +9 -0
  240. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/package-descriptor.json +10 -0
  241. package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/project.uiproj +7 -0
  242. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/bindings_v2.json +20 -0
  243. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/entry-points.json +17 -0
  244. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/operate.json +9 -0
  245. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/package-descriptor.json +10 -0
  246. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/project.uiproj +7 -0
  247. package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/registry-coverage-matrix.bpmn +207 -0
  248. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/bindings_v2.json +4 -0
  249. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/entry-points.json +33 -0
  250. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/operate.json +9 -0
  251. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/package-descriptor.json +10 -0
  252. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/project.uiproj +7 -0
  253. package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/subprocess-multi-instance.bpmn +94 -0
  254. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/bindings_v2.json +124 -0
  255. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/entry-points.json +25 -0
  256. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/operate.json +9 -0
  257. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/package-descriptor.json +10 -0
  258. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/project.uiproj +7 -0
  259. package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/wrapper-family-contract.bpmn +151 -0
  260. package/skills/uipath-maestro-bpmn/references/author/CAPABILITY.md +141 -0
  261. package/skills/uipath-maestro-bpmn/references/author/references/brownfield.md +48 -0
  262. package/skills/uipath-maestro-bpmn/references/author/references/editing-operations.md +75 -0
  263. package/skills/uipath-maestro-bpmn/references/author/references/greenfield.md +41 -0
  264. package/skills/uipath-maestro-bpmn/references/author/references/planning-arch.md +82 -0
  265. package/skills/uipath-maestro-bpmn/references/author/references/planning-impl.md +104 -0
  266. package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/impl.md +34 -0
  267. package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/planning.md +38 -0
  268. package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/impl.md +37 -0
  269. package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/planning.md +28 -0
  270. package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/impl.md +36 -0
  271. package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/planning.md +29 -0
  272. package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/impl.md +67 -0
  273. package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/planning.md +29 -0
  274. package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/impl.md +29 -0
  275. package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/planning.md +33 -0
  276. package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/impl.md +32 -0
  277. package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/planning.md +34 -0
  278. package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/impl.md +42 -0
  279. package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/planning.md +30 -0
  280. package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/impl.md +134 -0
  281. package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/planning.md +67 -0
  282. package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/impl.md +50 -0
  283. package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/planning.md +29 -0
  284. package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/impl.md +29 -0
  285. package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/planning.md +29 -0
  286. package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/impl.md +35 -0
  287. package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/planning.md +29 -0
  288. package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/impl.md +118 -0
  289. package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/planning.md +30 -0
  290. package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/impl.md +30 -0
  291. package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/planning.md +30 -0
  292. package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/impl.md +33 -0
  293. package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/planning.md +31 -0
  294. package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/impl.md +33 -0
  295. package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/planning.md +46 -0
  296. package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/impl.md +59 -0
  297. package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/planning.md +37 -0
  298. package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/impl.md +40 -0
  299. package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/planning.md +34 -0
  300. package/skills/uipath-maestro-bpmn/references/author/references/supported-elements.md +123 -0
  301. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/README.md +29 -0
  302. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/agent-job.md +36 -0
  303. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/api-workflow.md +29 -0
  304. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/business-rule.md +18 -0
  305. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/call-activity.md +56 -0
  306. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/hitl.md +17 -0
  307. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/http-request.md +119 -0
  308. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/queue.md +21 -0
  309. package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/rpa-job.md +23 -0
  310. package/skills/uipath-maestro-bpmn/references/author/references/validation.md +118 -0
  311. package/skills/uipath-maestro-bpmn/references/diagnose/CAPABILITY.md +91 -0
  312. package/skills/uipath-maestro-bpmn/references/diagnose/references/failure-modes.md +129 -0
  313. package/skills/uipath-maestro-bpmn/references/diagnose/references/troubleshooting-guide.md +159 -0
  314. package/skills/uipath-maestro-bpmn/references/operate/CAPABILITY.md +91 -0
  315. package/skills/uipath-maestro-bpmn/references/operate/references/manage.md +71 -0
  316. package/skills/uipath-maestro-bpmn/references/operate/references/run.md +122 -0
  317. package/skills/uipath-maestro-bpmn/references/operate/references/ship.md +119 -0
  318. package/skills/uipath-maestro-bpmn/references/shared/bpmn-xml-contract.md +197 -0
  319. package/skills/uipath-maestro-bpmn/references/shared/cli-conventions.md +46 -0
  320. package/skills/uipath-maestro-bpmn/references/shared/error-handling.md +82 -0
  321. package/skills/uipath-maestro-bpmn/references/shared/expression-authoring.md +95 -0
  322. package/skills/uipath-maestro-bpmn/references/shared/local-metadata-regeneration-guide.md +181 -0
  323. package/skills/uipath-maestro-bpmn/references/shared/project-layout.md +58 -0
  324. package/skills/uipath-maestro-bpmn/references/shared/public-safety.md +29 -0
  325. package/skills/uipath-maestro-bpmn/references/shared/variables-bindings-expressions.md +150 -0
  326. package/skills/uipath-maestro-bpmn/references/shared/wrapper-shells.md +554 -0
  327. package/skills/uipath-maestro-case/SKILL.md +196 -0
  328. package/skills/uipath-maestro-case/assets/templates/sdd-template-examples.md +489 -0
  329. package/skills/uipath-maestro-case/assets/templates/sdd-template.md +524 -0
  330. package/skills/uipath-maestro-case/assets/templates/sdd-viewer.html +1519 -0
  331. package/skills/uipath-maestro-case/references/bindings-and-expressions.md +171 -0
  332. package/skills/uipath-maestro-case/references/bindings-v2-sync.md +142 -0
  333. package/skills/uipath-maestro-case/references/case-commands.md +476 -0
  334. package/skills/uipath-maestro-case/references/case-editing-operations.md +329 -0
  335. package/skills/uipath-maestro-case/references/case-schema.md +591 -0
  336. package/skills/uipath-maestro-case/references/case-spec-input-details.md +495 -0
  337. package/skills/uipath-maestro-case/references/connector-integration.md +157 -0
  338. package/skills/uipath-maestro-case/references/connector-trigger-common.md +477 -0
  339. package/skills/uipath-maestro-case/references/evals/evals.json +91 -0
  340. package/skills/uipath-maestro-case/references/implementation.md +327 -0
  341. package/skills/uipath-maestro-case/references/phase-0-interview.md +548 -0
  342. package/skills/uipath-maestro-case/references/phased-execution.md +263 -0
  343. package/skills/uipath-maestro-case/references/placeholder-tasks.md +195 -0
  344. package/skills/uipath-maestro-case/references/planning.md +374 -0
  345. package/skills/uipath-maestro-case/references/plugins/case/impl-json.md +369 -0
  346. package/skills/uipath-maestro-case/references/plugins/case/planning.md +78 -0
  347. package/skills/uipath-maestro-case/references/plugins/conditions/case-exit-conditions/impl-json.md +95 -0
  348. package/skills/uipath-maestro-case/references/plugins/conditions/case-exit-conditions/planning.md +69 -0
  349. package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/impl-json.md +90 -0
  350. package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/planning.md +60 -0
  351. package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/impl-json.md +110 -0
  352. package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/planning.md +74 -0
  353. package/skills/uipath-maestro-case/references/plugins/conditions/task-entry-conditions/impl-json.md +104 -0
  354. package/skills/uipath-maestro-case/references/plugins/conditions/task-entry-conditions/planning.md +55 -0
  355. package/skills/uipath-maestro-case/references/plugins/edges/impl-json.md +152 -0
  356. package/skills/uipath-maestro-case/references/plugins/edges/planning.md +93 -0
  357. package/skills/uipath-maestro-case/references/plugins/logging/impl-json.md +67 -0
  358. package/skills/uipath-maestro-case/references/plugins/sla/impl-json.md +164 -0
  359. package/skills/uipath-maestro-case/references/plugins/sla/planning.md +189 -0
  360. package/skills/uipath-maestro-case/references/plugins/stages/impl-json.md +164 -0
  361. package/skills/uipath-maestro-case/references/plugins/stages/planning.md +100 -0
  362. package/skills/uipath-maestro-case/references/plugins/tasks/action/impl-json.md +90 -0
  363. package/skills/uipath-maestro-case/references/plugins/tasks/action/planning.md +81 -0
  364. package/skills/uipath-maestro-case/references/plugins/tasks/agent/impl-json.md +66 -0
  365. package/skills/uipath-maestro-case/references/plugins/tasks/agent/planning.md +49 -0
  366. package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/impl-json.md +64 -0
  367. package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/planning.md +47 -0
  368. package/skills/uipath-maestro-case/references/plugins/tasks/case-management/impl-json.md +66 -0
  369. package/skills/uipath-maestro-case/references/plugins/tasks/case-management/planning.md +52 -0
  370. package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/impl-json.md +271 -0
  371. package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/planning.md +202 -0
  372. package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/impl-json.md +131 -0
  373. package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/planning.md +51 -0
  374. package/skills/uipath-maestro-case/references/plugins/tasks/process/impl-json.md +64 -0
  375. package/skills/uipath-maestro-case/references/plugins/tasks/process/planning.md +60 -0
  376. package/skills/uipath-maestro-case/references/plugins/tasks/rpa/impl-json.md +65 -0
  377. package/skills/uipath-maestro-case/references/plugins/tasks/rpa/planning.md +49 -0
  378. package/skills/uipath-maestro-case/references/plugins/tasks/wait-for-timer/impl-json.md +97 -0
  379. package/skills/uipath-maestro-case/references/plugins/tasks/wait-for-timer/planning.md +70 -0
  380. package/skills/uipath-maestro-case/references/plugins/triggers/event/impl-json.md +176 -0
  381. package/skills/uipath-maestro-case/references/plugins/triggers/event/planning.md +55 -0
  382. package/skills/uipath-maestro-case/references/plugins/triggers/manual/impl-json.md +139 -0
  383. package/skills/uipath-maestro-case/references/plugins/triggers/manual/planning.md +38 -0
  384. package/skills/uipath-maestro-case/references/plugins/triggers/timer/impl-json.md +127 -0
  385. package/skills/uipath-maestro-case/references/plugins/triggers/timer/planning.md +77 -0
  386. package/skills/uipath-maestro-case/references/plugins/variables/bindings/impl-json.md +141 -0
  387. package/skills/uipath-maestro-case/references/plugins/variables/global-vars/impl-json.md +437 -0
  388. package/skills/uipath-maestro-case/references/plugins/variables/global-vars/planning.md +119 -0
  389. package/skills/uipath-maestro-case/references/plugins/variables/io-binding/impl-json.md +255 -0
  390. package/skills/uipath-maestro-case/references/plugins/variables/io-binding/planning.md +80 -0
  391. package/skills/uipath-maestro-case/references/registry-discovery.md +170 -0
  392. package/skills/uipath-maestro-case/references/sdd-generation-rules.md +803 -0
  393. package/skills/uipath-maestro-case/references/troubleshooting-guide.md +119 -0
  394. package/skills/uipath-maestro-flow/.maintenance/README.md +258 -0
  395. package/skills/uipath-maestro-flow/.maintenance/check-all.sh +40 -0
  396. package/skills/uipath-maestro-flow/.maintenance/check-anchors.sh +83 -0
  397. package/skills/uipath-maestro-flow/.maintenance/check-depth.sh +132 -0
  398. package/skills/uipath-maestro-flow/.maintenance/check-link-text.sh +123 -0
  399. package/skills/uipath-maestro-flow/.maintenance/check-links.sh +70 -0
  400. package/skills/uipath-maestro-flow/.maintenance/check-orphans.sh +93 -0
  401. package/skills/uipath-maestro-flow/.maintenance/check-plugin-pairs.sh +39 -0
  402. package/skills/uipath-maestro-flow/.maintenance/check-template.sh +42 -0
  403. package/skills/uipath-maestro-flow/.maintenance/check-uip-commands.sh +270 -0
  404. package/skills/uipath-maestro-flow/.maintenance/check-versions.sh +160 -0
  405. package/skills/uipath-maestro-flow/SKILL.md +96 -0
  406. package/skills/uipath-maestro-flow/references/author/CAPABILITY.md +181 -0
  407. package/skills/uipath-maestro-flow/references/author/references/brownfield.md +77 -0
  408. package/skills/uipath-maestro-flow/references/author/references/editing-operations-cli.md +183 -0
  409. package/skills/uipath-maestro-flow/references/author/references/editing-operations-json.md +542 -0
  410. package/skills/uipath-maestro-flow/references/author/references/editing-operations.md +131 -0
  411. package/skills/uipath-maestro-flow/references/author/references/greenfield.md +345 -0
  412. package/skills/uipath-maestro-flow/references/author/references/planning-arch.md +557 -0
  413. package/skills/uipath-maestro-flow/references/author/references/planning-impl.md +302 -0
  414. package/skills/uipath-maestro-flow/references/author/references/plugins/agent/impl.md +189 -0
  415. package/skills/uipath-maestro-flow/references/author/references/plugins/agent/planning.md +83 -0
  416. package/skills/uipath-maestro-flow/references/author/references/plugins/agentic-process/impl.md +111 -0
  417. package/skills/uipath-maestro-flow/references/author/references/plugins/agentic-process/planning.md +61 -0
  418. package/skills/uipath-maestro-flow/references/author/references/plugins/api-workflow/impl.md +111 -0
  419. package/skills/uipath-maestro-flow/references/author/references/plugins/api-workflow/planning.md +60 -0
  420. package/skills/uipath-maestro-flow/references/author/references/plugins/batch-transform/impl.md +174 -0
  421. package/skills/uipath-maestro-flow/references/author/references/plugins/batch-transform/planning.md +72 -0
  422. package/skills/uipath-maestro-flow/references/author/references/plugins/connector/data-fabric/impl.md +683 -0
  423. package/skills/uipath-maestro-flow/references/author/references/plugins/connector/data-fabric/planning.md +45 -0
  424. package/skills/uipath-maestro-flow/references/author/references/plugins/connector/impl.md +681 -0
  425. package/skills/uipath-maestro-flow/references/author/references/plugins/connector/planning.md +135 -0
  426. package/skills/uipath-maestro-flow/references/author/references/plugins/connector-trigger/impl.md +495 -0
  427. package/skills/uipath-maestro-flow/references/author/references/plugins/connector-trigger/planning.md +113 -0
  428. package/skills/uipath-maestro-flow/references/author/references/plugins/decision/impl.md +62 -0
  429. package/skills/uipath-maestro-flow/references/author/references/plugins/decision/planning.md +38 -0
  430. package/skills/uipath-maestro-flow/references/author/references/plugins/delay/impl.md +75 -0
  431. package/skills/uipath-maestro-flow/references/author/references/plugins/delay/planning.md +53 -0
  432. package/skills/uipath-maestro-flow/references/author/references/plugins/end/impl.md +65 -0
  433. package/skills/uipath-maestro-flow/references/author/references/plugins/end/planning.md +28 -0
  434. package/skills/uipath-maestro-flow/references/author/references/plugins/flow/impl.md +111 -0
  435. package/skills/uipath-maestro-flow/references/author/references/plugins/flow/planning.md +58 -0
  436. package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/impl.md +204 -0
  437. package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/planning.md +144 -0
  438. package/skills/uipath-maestro-flow/references/author/references/plugins/http/impl.md +196 -0
  439. package/skills/uipath-maestro-flow/references/author/references/plugins/http/planning.md +102 -0
  440. package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/impl.md +479 -0
  441. package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/planning.md +103 -0
  442. package/skills/uipath-maestro-flow/references/author/references/plugins/ixp/impl.md +326 -0
  443. package/skills/uipath-maestro-flow/references/author/references/plugins/ixp/planning.md +90 -0
  444. package/skills/uipath-maestro-flow/references/author/references/plugins/loop/impl.md +242 -0
  445. package/skills/uipath-maestro-flow/references/author/references/plugins/loop/planning.md +52 -0
  446. package/skills/uipath-maestro-flow/references/author/references/plugins/merge/impl.md +43 -0
  447. package/skills/uipath-maestro-flow/references/author/references/plugins/merge/planning.md +29 -0
  448. package/skills/uipath-maestro-flow/references/author/references/plugins/queue/impl.md +94 -0
  449. package/skills/uipath-maestro-flow/references/author/references/plugins/queue/planning.md +44 -0
  450. package/skills/uipath-maestro-flow/references/author/references/plugins/rpa/impl.md +120 -0
  451. package/skills/uipath-maestro-flow/references/author/references/plugins/rpa/planning.md +61 -0
  452. package/skills/uipath-maestro-flow/references/author/references/plugins/scheduled-trigger/impl.md +79 -0
  453. package/skills/uipath-maestro-flow/references/author/references/plugins/scheduled-trigger/planning.md +56 -0
  454. package/skills/uipath-maestro-flow/references/author/references/plugins/script/impl.md +90 -0
  455. package/skills/uipath-maestro-flow/references/author/references/plugins/script/planning.md +42 -0
  456. package/skills/uipath-maestro-flow/references/author/references/plugins/subflow/impl.md +234 -0
  457. package/skills/uipath-maestro-flow/references/author/references/plugins/subflow/planning.md +34 -0
  458. package/skills/uipath-maestro-flow/references/author/references/plugins/summarize/impl.md +198 -0
  459. package/skills/uipath-maestro-flow/references/author/references/plugins/summarize/planning.md +71 -0
  460. package/skills/uipath-maestro-flow/references/author/references/plugins/switch/impl.md +60 -0
  461. package/skills/uipath-maestro-flow/references/author/references/plugins/switch/planning.md +38 -0
  462. package/skills/uipath-maestro-flow/references/author/references/plugins/terminate/impl.md +45 -0
  463. package/skills/uipath-maestro-flow/references/author/references/plugins/terminate/planning.md +29 -0
  464. package/skills/uipath-maestro-flow/references/author/references/plugins/transform/impl.md +274 -0
  465. package/skills/uipath-maestro-flow/references/author/references/plugins/transform/planning.md +47 -0
  466. package/skills/uipath-maestro-flow/references/diagnose/CAPABILITY.md +69 -0
  467. package/skills/uipath-maestro-flow/references/diagnose/references/failure-modes.md +283 -0
  468. package/skills/uipath-maestro-flow/references/diagnose/references/troubleshooting-guide.md +115 -0
  469. package/skills/uipath-maestro-flow/references/evaluate/CAPABILITY.md +132 -0
  470. package/skills/uipath-maestro-flow/references/evaluate/references/commands-reference.md +306 -0
  471. package/skills/uipath-maestro-flow/references/evaluate/references/eval-sets-guide.md +226 -0
  472. package/skills/uipath-maestro-flow/references/evaluate/references/evaluators-guide.md +143 -0
  473. package/skills/uipath-maestro-flow/references/evaluate/references/running-guide.md +215 -0
  474. package/skills/uipath-maestro-flow/references/evaluate/references/upload-safety.md +82 -0
  475. package/skills/uipath-maestro-flow/references/operate/CAPABILITY.md +76 -0
  476. package/skills/uipath-maestro-flow/references/operate/references/manage.md +39 -0
  477. package/skills/uipath-maestro-flow/references/operate/references/run.md +99 -0
  478. package/skills/uipath-maestro-flow/references/operate/references/ship.md +57 -0
  479. package/skills/uipath-maestro-flow/references/shared/action-nodes.md +92 -0
  480. package/skills/uipath-maestro-flow/references/shared/cli-commands.md +369 -0
  481. package/skills/uipath-maestro-flow/references/shared/cli-conventions.md +168 -0
  482. package/skills/uipath-maestro-flow/references/shared/file-format.md +530 -0
  483. package/skills/uipath-maestro-flow/references/shared/node-output-wiring.md +138 -0
  484. package/skills/uipath-maestro-flow/references/shared/ux-narration-and-todos.md +150 -0
  485. package/skills/uipath-maestro-flow/references/shared/variables-and-expressions.md +726 -0
  486. package/skills/uipath-mcp-servers/SKILL.md +93 -0
  487. package/skills/uipath-mcp-servers/references/is-activity-workflow.md +158 -0
  488. package/skills/uipath-planner/SKILL.md +142 -0
  489. package/skills/uipath-planner/references/multi-skill-patterns-guide.md +143 -0
  490. package/skills/uipath-planner/references/non-pdd-lane-guide.md +184 -0
  491. package/skills/uipath-planner/references/pdd-driven-lane-guide.md +168 -0
  492. package/skills/uipath-planner/references/plan-and-tasks-format.md +228 -0
  493. package/skills/uipath-platform/SKILL.md +286 -0
  494. package/skills/uipath-platform/references/integration-service/activities.md +223 -0
  495. package/skills/uipath-platform/references/integration-service/agent-workflow.md +286 -0
  496. package/skills/uipath-platform/references/integration-service/connections.md +256 -0
  497. package/skills/uipath-platform/references/integration-service/connector-overrides/README.md +45 -0
  498. package/skills/uipath-platform/references/integration-service/connector-overrides/uipath-microsoft-teams.md +29 -0
  499. package/skills/uipath-platform/references/integration-service/connector-overrides/uipath-salesforce-slack.md +43 -0
  500. package/skills/uipath-platform/references/integration-service/connectors.md +121 -0
  501. package/skills/uipath-platform/references/integration-service/http-request.md +116 -0
  502. package/skills/uipath-platform/references/integration-service/integration-service.md +83 -0
  503. package/skills/uipath-platform/references/integration-service/reference-resolution.md +316 -0
  504. package/skills/uipath-platform/references/integration-service/resources.md +237 -0
  505. package/skills/uipath-platform/references/integration-service/triggers.md +235 -0
  506. package/skills/uipath-platform/references/licensing/consumables-report.md +217 -0
  507. package/skills/uipath-platform/references/licensing/licensing.md +103 -0
  508. package/skills/uipath-platform/references/licensing/tenant-allocations.md +152 -0
  509. package/skills/uipath-platform/references/licensing/user-licenses-allocations.md +323 -0
  510. package/skills/uipath-platform/references/llmgateway/byo-connections.md +226 -0
  511. package/skills/uipath-platform/references/orchestrator/manage-sessions.md +217 -0
  512. package/skills/uipath-platform/references/orchestrator/orchestrator.md +130 -0
  513. package/skills/uipath-platform/references/orchestrator/run-jobs.md +332 -0
  514. package/skills/uipath-platform/references/orchestrator/setup-environment.md +410 -0
  515. package/skills/uipath-platform/references/orchestrator/tenant-admin.md +225 -0
  516. package/skills/uipath-platform/references/resources/manage-assets.md +277 -0
  517. package/skills/uipath-platform/references/resources/process-queues.md +302 -0
  518. package/skills/uipath-platform/references/resources/resources.md +116 -0
  519. package/skills/uipath-platform/references/resources/triggers-and-webhooks.md +277 -0
  520. package/skills/uipath-platform/references/resources/work-with-storage.md +258 -0
  521. package/skills/uipath-platform/references/traces/feedback.md +144 -0
  522. package/skills/uipath-platform/references/traces/traces.md +50 -0
  523. package/skills/uipath-platform/references/uip-commands.md +127 -0
  524. package/skills/uipath-review/SKILL.md +535 -0
  525. package/skills/uipath-review/references/agents/agent-common-issues.md +359 -0
  526. package/skills/uipath-review/references/agents/agent-review-checklist.md +362 -0
  527. package/skills/uipath-review/references/architecture-assessment-guide.md +192 -0
  528. package/skills/uipath-review/references/coded-apps/coded-app-review-checklist.md +134 -0
  529. package/skills/uipath-review/references/devops-readiness-checklist.md +55 -0
  530. package/skills/uipath-review/references/document-understanding/du-review-checklist.md +227 -0
  531. package/skills/uipath-review/references/flows/flow-common-issues.md +280 -0
  532. package/skills/uipath-review/references/flows/flow-review-checklist.md +316 -0
  533. package/skills/uipath-review/references/platform/platform-resources-checklist.md +407 -0
  534. package/skills/uipath-review/references/review-workflow-guide.md +512 -0
  535. package/skills/uipath-review/references/rpa/long-running-workflow-issues.md +101 -0
  536. package/skills/uipath-review/references/rpa/modern-studio-issues.md +135 -0
  537. package/skills/uipath-review/references/rpa/rpa-advanced-checklist.md +338 -0
  538. package/skills/uipath-review/references/rpa/rpa-common-issues.md +748 -0
  539. package/skills/uipath-review/references/rpa/rpa-review-checklist.md +482 -0
  540. package/skills/uipath-review/references/solution-review-guide.md +392 -0
  541. package/skills/uipath-rpa/CLAUDE.md +86 -0
  542. package/skills/uipath-rpa/SKILL.md +460 -0
  543. package/skills/uipath-rpa/assets/before-after-hooks-template.md +115 -0
  544. package/skills/uipath-rpa/assets/codedworkflow-template.md +186 -0
  545. package/skills/uipath-rpa/assets/helper-utility-template.md +22 -0
  546. package/skills/uipath-rpa/assets/json-template.md +91 -0
  547. package/skills/uipath-rpa/assets/testcase-template.md +92 -0
  548. package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/active-directory.md +118 -0
  549. package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/api.md +569 -0
  550. package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/examples.md +393 -0
  551. package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/amazon-web-services.md +314 -0
  552. package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/api.md +998 -0
  553. package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/examples.md +417 -0
  554. package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/amazon-workspaces.md +127 -0
  555. package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/api.md +223 -0
  556. package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/examples.md +249 -0
  557. package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/api.md +1241 -0
  558. package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/azure.md +109 -0
  559. package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/examples.md +594 -0
  560. package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/api.md +637 -0
  561. package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/azure-active-directory.md +96 -0
  562. package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/examples.md +629 -0
  563. package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/api.md +368 -0
  564. package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/azure-wvd.md +257 -0
  565. package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/examples.md +336 -0
  566. package/skills/uipath-rpa/references/activity-docs/UiPath.Callout.Activities/26.0/README.md +34 -0
  567. package/skills/uipath-rpa/references/activity-docs/UiPath.Callout.Activities/26.0/activities.md +49 -0
  568. package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/api.md +452 -0
  569. package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/citrix.md +69 -0
  570. package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/examples.md +549 -0
  571. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AppendRange.md +16 -0
  572. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AppendRangeX.md +9 -0
  573. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFillX.md +9 -0
  574. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFitX.md +9 -0
  575. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangeDataRangeModification.md +14 -0
  576. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangePivotTableDataSourceX.md +9 -0
  577. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ClearRangeX.md +9 -0
  578. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CopyPasteRangeX.md +9 -0
  579. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreatePivotTableXv2.md +9 -0
  580. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreateTableX.md +9 -0
  581. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteColumnX.md +9 -0
  582. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteRowsX.md +9 -0
  583. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteSheetX.md +9 -0
  584. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DuplicateSheetX.md +9 -0
  585. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelApplicationCard.md +28 -0
  586. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelForEachRowX.md +26 -0
  587. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelProcessScopeX.md +29 -0
  588. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroArgumentX.md +9 -0
  589. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroX.md +9 -0
  590. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExportExcelToCsvX.md +9 -0
  591. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FillRangeX.md +9 -0
  592. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterPivotTableX.md +14 -0
  593. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterX.md +14 -0
  594. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindFirstLastDataRowX.md +9 -0
  595. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindReplaceValueX.md +9 -0
  596. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ForEachRow.md +24 -0
  597. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ForEachSheetX.md +23 -0
  598. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FormatRangeX.md +9 -0
  599. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertColumnX.md +9 -0
  600. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertExcelChartX.md +14 -0
  601. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertRowsX.md +9 -0
  602. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertSheetX.md +9 -0
  603. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAArgumentX.md +9 -0
  604. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAX.md +9 -0
  605. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/LookupX.md +9 -0
  606. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/PivotTableFieldX.md +9 -0
  607. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ProtectSheetX.md +9 -0
  608. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellFormulaX.md +9 -0
  609. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellValueX.md +9 -0
  610. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadRange.md +18 -0
  611. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadRangeX.md +8 -0
  612. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RefreshPivotTableX.md +9 -0
  613. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RemoveDuplicatesX.md +9 -0
  614. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RenameSheetX.md +9 -0
  615. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveAsPdfX.md +9 -0
  616. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveExcelFileX.md +9 -0
  617. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortColumnX.md +9 -0
  618. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortX.md +9 -0
  619. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UnprotectSheetX.md +9 -0
  620. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UpdateChartX.md +14 -0
  621. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/VLookupX.md +9 -0
  622. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteCellX.md +9 -0
  623. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteRange.md +17 -0
  624. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteRangeX.md +9 -0
  625. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/overview.md +54 -0
  626. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/examples.md +355 -0
  627. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/excel.md +49 -0
  628. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/portable-api.md +181 -0
  629. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/windows-api.md +974 -0
  630. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AddSensitivityLabelX.md +32 -0
  631. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendRange.md +41 -0
  632. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendRangeX.md +55 -0
  633. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendWriteCsvFile.md +59 -0
  634. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AutoFillX.md +30 -0
  635. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AutoFitX.md +37 -0
  636. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ChangePivotTableDataSourceX.md +32 -0
  637. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ClearRangeX.md +36 -0
  638. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CopyChartToClipboardX.md +58 -0
  639. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CopyPasteRangeX.md +51 -0
  640. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreateNewWorkbook.md +49 -0
  641. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreatePivotTable.md +61 -0
  642. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreatePivotTableXv2.md +106 -0
  643. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreateTableX.md +47 -0
  644. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteColumnX.md +39 -0
  645. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteRowsX.md +57 -0
  646. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteSheetX.md +27 -0
  647. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DuplicateSheetX.md +30 -0
  648. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelApplicationCard.md +97 -0
  649. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelForEachRowX.md +71 -0
  650. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelProcessScopeX.md +86 -0
  651. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExecuteMacroX.md +58 -0
  652. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExportExcelToCsvX.md +32 -0
  653. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FillRangeX.md +33 -0
  654. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FilterPivotTableX.md +75 -0
  655. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FilterX.md +97 -0
  656. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FindFirstLastDataRowX.md +65 -0
  657. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FindReplaceValueX.md +66 -0
  658. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ForEachSheetX.md +54 -0
  659. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FormatRangeX.md +155 -0
  660. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetCellColor.md +47 -0
  661. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetCellColorX.md +34 -0
  662. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSelectedRangeX.md +34 -0
  663. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSensitivityLabelX.md +33 -0
  664. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSheets.md +45 -0
  665. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetTableRange.md +49 -0
  666. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertChart.md +74 -0
  667. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertColumnX.md +87 -0
  668. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertExcelChartX.md +77 -0
  669. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertRowsX.md +56 -0
  670. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertSheetX.md +35 -0
  671. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InvokeVBAX.md +63 -0
  672. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/LookupX.md +41 -0
  673. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/MatchFunctionX.md +49 -0
  674. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ProtectSheetX.md +59 -0
  675. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCell.md +48 -0
  676. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellFormula.md +48 -0
  677. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellFormulaX.md +36 -0
  678. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellValueX.md +43 -0
  679. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadColumn.md +49 -0
  680. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCsvFile.md +59 -0
  681. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRange.md +50 -0
  682. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRangeX.md +54 -0
  683. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRow.md +49 -0
  684. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RefreshDataConnectionsX.md +27 -0
  685. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RefreshPivotTableX.md +42 -0
  686. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RemoveDuplicatesX.md +54 -0
  687. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RenameSheetX.md +28 -0
  688. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveAsPdfX.md +52 -0
  689. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveExcelFileAsX.md +48 -0
  690. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveExcelFileX.md +27 -0
  691. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SelectRangeX.md +28 -0
  692. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SetRangeColor.md +42 -0
  693. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SortX.md +68 -0
  694. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/TextToColumnsX.md +76 -0
  695. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UnprotectSheetX.md +32 -0
  696. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UpdateChart.md +44 -0
  697. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UpdateChartX.md +63 -0
  698. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/VLookupX.md +43 -0
  699. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteCell.md +42 -0
  700. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteCellX.md +43 -0
  701. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteRange.md +45 -0
  702. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteRangeX.md +47 -0
  703. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/coded-api.md +878 -0
  704. package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/overview.md +124 -0
  705. package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/api.md +96 -0
  706. package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/examples.md +170 -0
  707. package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/exchange-server.md +46 -0
  708. package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/README.md +59 -0
  709. package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/activities.md +147 -0
  710. package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/triggers.md +54 -0
  711. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ApplyEmailLabelsConnections.md +6 -0
  712. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ArchiveEmailConnections.md +6 -0
  713. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/CreateEventConnections.md +19 -0
  714. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/CreateSpreadsheetConnections.md +9 -0
  715. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DeleteEmailConnections.md +5 -0
  716. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DownloadAttachmentsConnections.md +9 -0
  717. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DownloadFileConnections.md +9 -0
  718. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/EmailSent.md +8 -0
  719. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ForEachEmailConnections.md +12 -0
  720. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ForEachFileFolderConnections.md +9 -0
  721. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetFileFolderConnections.md +5 -0
  722. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetFileListConnections.md +10 -0
  723. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetNewestEmailConnections.md +12 -0
  724. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/MarkAsReadUnreadConnections.md +5 -0
  725. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/MoveEmailConnections.md +6 -0
  726. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEmailReceived.md +12 -0
  727. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEventCreated.md +9 -0
  728. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEventInvitationReceived.md +7 -0
  729. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewFileCreated.md +10 -0
  730. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ReadRangeConnections.md +10 -0
  731. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/RemoveEmailLabelsConnections.md +5 -0
  732. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/RowAddedToSheetBottom.md +11 -0
  733. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/SendEmailConnections.md +9 -0
  734. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/TurnOffAutomaticRepliesConnections.md +3 -0
  735. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/TurnOnAutomaticRepliesConnections.md +7 -0
  736. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/UploadFilesConnections.md +9 -0
  737. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/WriteRangeConnections.md +10 -0
  738. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/WriteRowConnections.md +10 -0
  739. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/overview.md +49 -0
  740. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/api.md +613 -0
  741. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/examples.md +660 -0
  742. package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/gsuite.md +60 -0
  743. package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/api.md +524 -0
  744. package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/examples.md +369 -0
  745. package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/google-cloud.md +76 -0
  746. package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/api.md +436 -0
  747. package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/examples.md +503 -0
  748. package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/hyperv.md +85 -0
  749. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ClassifyDocument.md +166 -0
  750. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateClassificationValidationTask.md +52 -0
  751. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateClassificationValidationTaskAndWait.md +53 -0
  752. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateDocumentValidationArtifacts.md +59 -0
  753. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateValidationTask.md +86 -0
  754. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateValidationTaskAndWait.md +84 -0
  755. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ExtractDocumentData/data-type-patterns.md +224 -0
  756. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ExtractDocumentData.md +249 -0
  757. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/RetrieveDocumentValidationArtifacts.md +50 -0
  758. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/WaitForClassificationValidationTaskAndResume.md +40 -0
  759. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/WaitForValidationTaskAndResume.md +63 -0
  760. package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/overview.md +516 -0
  761. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/ForEachEmailX.md +48 -0
  762. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/GetOutlookMailMessages.md +26 -0
  763. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/MoveOutlookMessage.md +14 -0
  764. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/OutlookApplicationCard.md +23 -0
  765. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/SaveMailAttachments.md +18 -0
  766. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/SendOutlookMail.md +39 -0
  767. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/overview.md +71 -0
  768. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/examples.md +487 -0
  769. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/mail.md +58 -0
  770. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/portable-api.md +285 -0
  771. package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/windows-api.md +245 -0
  772. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/DownloadEmailAttachments.md +24 -0
  773. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/GetNewestEmail.md +39 -0
  774. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/NewEmailReceived.md +41 -0
  775. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/SendMailConnections.md +45 -0
  776. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/overview.md +43 -0
  777. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/api.md +748 -0
  778. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/examples.md +709 -0
  779. package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/office365.md +57 -0
  780. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/DrawPattern.md +47 -0
  781. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ElementExists.md +41 -0
  782. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ExecuteCommand.md +45 -0
  783. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetAttribute.md +41 -0
  784. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetDeviceOrientation.md +34 -0
  785. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetLogTypes.md +28 -0
  786. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetLogs.md +34 -0
  787. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetPageSource.md +30 -0
  788. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSelectedItem.md +38 -0
  789. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSessionIdentifier.md +30 -0
  790. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSystemTime.md +31 -0
  791. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetText.md +38 -0
  792. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/InstallApp.md +33 -0
  793. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ManageCurrentApp.md +46 -0
  794. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ManageOtherApp.md +49 -0
  795. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/MobileDeviceConnection.md +88 -0
  796. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/OpenDeepLink.md +34 -0
  797. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/OpenUrl.md +30 -0
  798. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/PositionalSwipe.md +40 -0
  799. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/PressHardwareButton.md +37 -0
  800. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetDeviceGeoLocation.md +36 -0
  801. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetDeviceOrientation.md +34 -0
  802. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetSelectedItem.md +34 -0
  803. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetText.md +44 -0
  804. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/Swipe.md +38 -0
  805. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TakeScreenshot.md +31 -0
  806. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TakeScreenshotPart.md +34 -0
  807. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/Tap.md +33 -0
  808. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TypeText.md +41 -0
  809. package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/overview.md +123 -0
  810. package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/api.md +509 -0
  811. package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/examples.md +361 -0
  812. package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/netiq-edirectory.md +109 -0
  813. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertEmailToPDF.md +59 -0
  814. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertHtmlToPDF.md +91 -0
  815. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertTextToPDF.md +95 -0
  816. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExportPDFPageAsImage.md +57 -0
  817. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExtractImagesFromPDF.md +57 -0
  818. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExtractPDFPageRange.md +50 -0
  819. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/GetPDFPageCount.md +48 -0
  820. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/JoinPDF.md +75 -0
  821. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ManagePDFPassword.md +54 -0
  822. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadPDFText.md +48 -0
  823. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadPDFWithOCR.md +146 -0
  824. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadXPSText.md +47 -0
  825. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadXPSWithOCR.md +135 -0
  826. package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/overview.md +29 -0
  827. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/ActivateSolutionDeployment.md +43 -0
  828. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Analyze.md +50 -0
  829. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Build.md +60 -0
  830. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Clone.md +54 -0
  831. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DeleteSolutionPackage.md +43 -0
  832. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DeploySolution.md +54 -0
  833. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadPackage.md +59 -0
  834. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadSolutionPackage.md +50 -0
  835. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadSolutionPackageConfiguration.md +62 -0
  836. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/PublishPackage.md +50 -0
  837. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/PublishSolutionPackage.md +47 -0
  838. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/ResyncSolutionProject.md +52 -0
  839. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/RunExistingTestSet.md +58 -0
  840. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/RunTests.md +74 -0
  841. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Stage.md +44 -0
  842. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UninstallSolution.md +43 -0
  843. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UpdateProcess.md +47 -0
  844. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UploadSolutionPackage.md +43 -0
  845. package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/overview.md +72 -0
  846. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/CopyPasteSlide.md +17 -0
  847. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/DeleteSlide.md +10 -0
  848. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/FindAndReplaceTextInPresentation.md +18 -0
  849. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/InsertSlide.md +17 -0
  850. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/InsertTextInPresentation.md +17 -0
  851. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/PasteIntoSlide.md +11 -0
  852. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/PowerPointApplicationScope.md +40 -0
  853. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/ReplaceShapeWithDataTable.md +21 -0
  854. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/ReplaceShapeWithMedia.md +15 -0
  855. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/RunMacro.md +24 -0
  856. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/SavePresentationAsPdf.md +14 -0
  857. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/SavePresentationFileAs.md +15 -0
  858. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/overview.md +75 -0
  859. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/examples.md +680 -0
  860. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/portable-api.md +196 -0
  861. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/powerpoint.md +34 -0
  862. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/windows-api.md +416 -0
  863. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/AddSensitivityLabel.md +35 -0
  864. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/CopyPasteSlide.md +44 -0
  865. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/DeleteSlide.md +32 -0
  866. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/FindAndReplaceTextInPresentation.md +52 -0
  867. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/FormatSlideContent.md +72 -0
  868. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/GetSensitivityLabel.md +38 -0
  869. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertFile.md +40 -0
  870. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertSlide.md +58 -0
  871. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertTextInPresentation.md +43 -0
  872. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PasteIntoSlide.md +43 -0
  873. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PowerPointApplicationScope.md +63 -0
  874. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentAddTextToSlide.md +52 -0
  875. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentCreateNew.md +77 -0
  876. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentDeleteSlide.md +39 -0
  877. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentFindAndReplaceTextInPresentation.md +59 -0
  878. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentFormatSlideContent.md +64 -0
  879. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentInsertSlide.md +77 -0
  880. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentReplaceShapeWithDataTable.md +59 -0
  881. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentReplaceShapeWithMedia.md +53 -0
  882. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/ReplaceShapeWithDataTable.md +52 -0
  883. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/ReplaceShapeWithMedia.md +46 -0
  884. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/RunMacro.md +66 -0
  885. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/SavePresentationAsPdf.md +39 -0
  886. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/SavePresentationFileAs.md +46 -0
  887. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/coded-api.md +416 -0
  888. package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/overview.md +76 -0
  889. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Assign.md +67 -0
  890. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/CodedWorkflows.md +52 -0
  891. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Delay.md +21 -0
  892. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/DoWhile.md +16 -0
  893. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/ForEach.md +57 -0
  894. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/If.md +28 -0
  895. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/InvokeCode.md +182 -0
  896. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/InvokeWorkflowFile.md +27 -0
  897. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/LogMessage.md +28 -0
  898. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Switch.md +40 -0
  899. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Throw.md +17 -0
  900. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/TryCatch.md +43 -0
  901. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/VariablesAndScoping.md +48 -0
  902. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/While.md +21 -0
  903. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/overview.md +93 -0
  904. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/examples.md +1088 -0
  905. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/system.md +61 -0
  906. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/windows-api.md +801 -0
  907. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddDataColumn.md +66 -0
  908. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddDataRow.md +60 -0
  909. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddLogFields.md +39 -0
  910. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddOrSubtractFromDate.md +55 -0
  911. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddQueueItem.md +60 -0
  912. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddTransactionItem.md +44 -0
  913. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AppendItemToCollection.md +40 -0
  914. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AppendLine.md +48 -0
  915. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Assign.md +65 -0
  916. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Beep.md +34 -0
  917. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BeginProcess.md +83 -0
  918. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Break.md +25 -0
  919. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BuildCollection.md +52 -0
  920. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BulkAddQueueItems.md +62 -0
  921. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ChangeCase.md +55 -0
  922. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ChangeType.md +47 -0
  923. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CheckFalse.md +41 -0
  924. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CheckTrue.md +39 -0
  925. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ClearDataTable.md +34 -0
  926. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CollectionToDataTable.md +43 -0
  927. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CombineText.md +47 -0
  928. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Comment.md +31 -0
  929. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CommentOut.md +31 -0
  930. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CompressFiles.md +83 -0
  931. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Continue.md +25 -0
  932. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CopyFile.md +57 -0
  933. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CopyFolderX.md +56 -0
  934. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CreateDirectory.md +40 -0
  935. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CreateFile.md +51 -0
  936. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Delay.md +44 -0
  937. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Delete.md +43 -0
  938. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DeleteQueueItems.md +37 -0
  939. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DeleteStorageFile.md +33 -0
  940. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DoWhile.md +55 -0
  941. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DownloadFileFromUrl.md +52 -0
  942. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DownloadStorageFile.md +43 -0
  943. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ElseIf.md +61 -0
  944. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/EvaluateBusinessRule.md +44 -0
  945. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExistsInCollection.md +43 -0
  946. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractDateTime.md +50 -0
  947. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractFiles.md +66 -0
  948. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractText.md +71 -0
  949. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FilterCollection.md +52 -0
  950. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FilterDataTable.md +93 -0
  951. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FindAndReplace.md +49 -0
  952. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ForEach.md +64 -0
  953. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ForEachRow.md +50 -0
  954. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FormatDateAsText.md +47 -0
  955. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FormatValue.md +58 -0
  956. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GenerateDataTable.md +76 -0
  957. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetCurrentJobInfo.md +34 -0
  958. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetEnvironmentFolder.md +58 -0
  959. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetEnvironmentVariable.md +42 -0
  960. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetJobs.md +80 -0
  961. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetLastDownloadedFile.md +58 -0
  962. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetProcesses.md +42 -0
  963. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetQueueItem.md +63 -0
  964. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetQueueItems.md +69 -0
  965. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRobotAsset.md +47 -0
  966. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRobotCredential.md +42 -0
  967. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRowItem.md +64 -0
  968. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetSecret.md +41 -0
  969. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetUsernamePasswordX.md +66 -0
  970. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/If.md +56 -0
  971. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeCode.md +59 -0
  972. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeComMethod.md +63 -0
  973. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeProcess.md +70 -0
  974. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeVBScript.md +58 -0
  975. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeWorkflow.md +66 -0
  976. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/IsMatch.md +51 -0
  977. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/JoinDataTables.md +85 -0
  978. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/KillProcess.md +67 -0
  979. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ListStorageFiles.md +36 -0
  980. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/LogMessage.md +62 -0
  981. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/LookupDataTable.md +81 -0
  982. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Matches.md +54 -0
  983. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MergeCollections.md +41 -0
  984. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MergeDataTable.md +64 -0
  985. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MessageBox.md +69 -0
  986. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MoveFile.md +53 -0
  987. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/OrchestratorHttpRequest.md +78 -0
  988. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/OutputDataTable.md +41 -0
  989. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/PathExists.md +47 -0
  990. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Placeholder.md +32 -0
  991. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/PostponeTransactionItem.md +38 -0
  992. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ProcessTrackingScope.md +89 -0
  993. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/QueueTrigger.md +48 -0
  994. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RaiseAlert.md +48 -0
  995. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadListItem.md +51 -0
  996. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadStorageText.md +43 -0
  997. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadTextFile.md +51 -0
  998. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDataColumn.md +66 -0
  999. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDataRow.md +60 -0
  1000. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDuplicateRows.md +42 -0
  1001. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveFromCollection.md +60 -0
  1002. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveLogFields.md +40 -0
  1003. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RenameFileX.md +59 -0
  1004. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RepeatNumberOfTimesX.md +52 -0
  1005. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Replace.md +54 -0
  1006. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReportStatus.md +36 -0
  1007. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ResetTimer.md +40 -0
  1008. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ResumeTimer.md +40 -0
  1009. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Rethrow.md +29 -0
  1010. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RetryScope.md +48 -0
  1011. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Return.md +27 -0
  1012. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RunJob.md +87 -0
  1013. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RuntimeContext.md +34 -0
  1014. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SendEmailNotification.md +43 -0
  1015. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Sequence.md +42 -0
  1016. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetAsset.md +36 -0
  1017. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetCredential.md +57 -0
  1018. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetEnvironmentVariable.md +37 -0
  1019. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetSecret.md +54 -0
  1020. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTaskStatus.md +39 -0
  1021. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTraceStatus.md +40 -0
  1022. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTransactionProgress.md +34 -0
  1023. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTransactionStatus.md +82 -0
  1024. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ShouldStop.md +44 -0
  1025. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SortDataTable.md +68 -0
  1026. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SplitText.md +49 -0
  1027. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StartJob.md +68 -0
  1028. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StartTimer.md +40 -0
  1029. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StopJob.md +51 -0
  1030. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StopTimer.md +40 -0
  1031. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Switch.md +59 -0
  1032. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TextToLeftRight.md +56 -0
  1033. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Throw.md +40 -0
  1034. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TimeTrigger.md +130 -0
  1035. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TimeoutScope.md +45 -0
  1036. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TrackObject.md +42 -0
  1037. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TryCatch.md +67 -0
  1038. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UpdateListItem.md +50 -0
  1039. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UpdateRowItem.md +59 -0
  1040. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UploadStorageFile.md +57 -0
  1041. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WaitQueueItem.md +61 -0
  1042. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/While.md +49 -0
  1043. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteLine.md +41 -0
  1044. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteStorageText.md +38 -0
  1045. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteTextFile.md +55 -0
  1046. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/coded/coded-api.md +1293 -0
  1047. package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/overview.md +246 -0
  1048. package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/api.md +150 -0
  1049. package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/examples.md +205 -0
  1050. package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/system-center.md +48 -0
  1051. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/FindText.md +57 -0
  1052. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetColorAtPosition.md +51 -0
  1053. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetCursorPosition.md +40 -0
  1054. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetField.md +69 -0
  1055. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetFieldAtPosition.md +51 -0
  1056. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetScreenArea.md +51 -0
  1057. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetText.md +42 -0
  1058. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetTextAtPosition.md +49 -0
  1059. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/MoveCursor.md +40 -0
  1060. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/MoveCursorToText.md +56 -0
  1061. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendControlKey.md +78 -0
  1062. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendKeys.md +42 -0
  1063. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendKeysSecure.md +43 -0
  1064. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SetField.md +55 -0
  1065. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SetFieldAtPosition.md +54 -0
  1066. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/TerminalSession.md +106 -0
  1067. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitFieldText.md +53 -0
  1068. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitScreenReady.md +37 -0
  1069. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitScreenText.md +44 -0
  1070. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitTextAtPosition.md +49 -0
  1071. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/coded/coded-api.md +650 -0
  1072. package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/overview.md +42 -0
  1073. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/Address.md +42 -0
  1074. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/AttachDocument.md +44 -0
  1075. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/BulkAddTestDataQueue.md +40 -0
  1076. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/ComparePdfDocuments.md +102 -0
  1077. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/CompareText.md +98 -0
  1078. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/CreateComparisonRule.md +83 -0
  1079. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/DeleteTestDataQueueItems.md +38 -0
  1080. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GetTestDataQueueItem.md +49 -0
  1081. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GetTestDataQueueItems.md +79 -0
  1082. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GivenName.md +29 -0
  1083. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/LastName.md +29 -0
  1084. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/NewAddTestDataQueueItem.md +41 -0
  1085. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomDate.md +38 -0
  1086. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomNumber.md +49 -0
  1087. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomString.md +57 -0
  1088. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomValue.md +44 -0
  1089. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyExpression.md +61 -0
  1090. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyExpressionWithOperator.md +86 -0
  1091. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyRange.md +75 -0
  1092. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/examples.md +456 -0
  1093. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-comparison.md +250 -0
  1094. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-data.md +335 -0
  1095. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-verification.md +284 -0
  1096. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing.md +51 -0
  1097. package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/overview.md +81 -0
  1098. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeJson.md +56 -0
  1099. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeJsonArray.md +41 -0
  1100. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeXml.md +40 -0
  1101. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/ExecuteXPath.md +65 -0
  1102. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/GetXMLNodeAttributes.md +42 -0
  1103. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/GetXMLNodes.md +61 -0
  1104. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/HttpClient.md +126 -0
  1105. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/NetHttpRequest.md +559 -0
  1106. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/SerializeJson.md +42 -0
  1107. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/coded-api.md +809 -0
  1108. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/curl-import.md +207 -0
  1109. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/http-request-upgrade.md +686 -0
  1110. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/service-discovery.md +506 -0
  1111. package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/overview.md +35 -0
  1112. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordAddImage.md +16 -0
  1113. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordAppendText.md +15 -0
  1114. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordApplicationScope.md +32 -0
  1115. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordExportToPdf.md +15 -0
  1116. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordInsertDataTable.md +22 -0
  1117. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordReadText.md +13 -0
  1118. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordReplaceText.md +19 -0
  1119. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordSaveAs.md +13 -0
  1120. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordSetBookmark.md +15 -0
  1121. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/overview.md +109 -0
  1122. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/examples.md +323 -0
  1123. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/portable-api.md +83 -0
  1124. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/windows-api.md +433 -0
  1125. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/word.md +47 -0
  1126. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/AddComment.md +148 -0
  1127. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DisableTrackChanges.md +79 -0
  1128. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentAddImage.md +84 -0
  1129. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentAppendText.md +47 -0
  1130. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentCreateNew.md +48 -0
  1131. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentInsertDataTable.md +84 -0
  1132. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentInsertHyperlink.md +90 -0
  1133. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentReadText.md +46 -0
  1134. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentReplaceText.md +49 -0
  1135. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentSetBookmarkContent.md +43 -0
  1136. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/EnableTrackChanges.md +89 -0
  1137. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAddImage.md +67 -0
  1138. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAddSensitivityLabel.md +35 -0
  1139. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAppendText.md +38 -0
  1140. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordApplicationScope.md +56 -0
  1141. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordExportToPdf.md +39 -0
  1142. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordGetSensitivityLabel.md +33 -0
  1143. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordInsertDataTable.md +68 -0
  1144. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordInsertHyperlink.md +73 -0
  1145. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordPasteFromClipboard.md +73 -0
  1146. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReadText.md +37 -0
  1147. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReplacePicture.md +35 -0
  1148. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReplaceText.md +47 -0
  1149. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSaveAs.md +44 -0
  1150. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSetBookmarkContent.md +34 -0
  1151. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSetContentProperty.md +55 -0
  1152. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/coded-api.md +558 -0
  1153. package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/overview.md +106 -0
  1154. package/skills/uipath-rpa/references/cli-reference.md +668 -0
  1155. package/skills/uipath-rpa/references/coded/codedworkflow-reference.md +275 -0
  1156. package/skills/uipath-rpa/references/coded/coding-guidelines.md +240 -0
  1157. package/skills/uipath-rpa/references/coded/inspect-package-guide.md +80 -0
  1158. package/skills/uipath-rpa/references/coded/integration-service-guide.md +508 -0
  1159. package/skills/uipath-rpa/references/coded/operations-guide.md +417 -0
  1160. package/skills/uipath-rpa/references/coded/third-party-packages-guide.md +67 -0
  1161. package/skills/uipath-rpa/references/coded-vs-xaml-guide.md +187 -0
  1162. package/skills/uipath-rpa/references/common-activity-card.md +371 -0
  1163. package/skills/uipath-rpa/references/connector-capabilities.md +76 -0
  1164. package/skills/uipath-rpa/references/debugging.md +424 -0
  1165. package/skills/uipath-rpa/references/environment-setup.md +196 -0
  1166. package/skills/uipath-rpa/references/is-connector-xaml-guide.md +294 -0
  1167. package/skills/uipath-rpa/references/legacy/activity-docs/ActiveDirectory.md +25 -0
  1168. package/skills/uipath-rpa/references/legacy/activity-docs/AllActivities.md +1136 -0
  1169. package/skills/uipath-rpa/references/legacy/activity-docs/Cognitive.md +32 -0
  1170. package/skills/uipath-rpa/references/legacy/activity-docs/CommunicationsMining.md +28 -0
  1171. package/skills/uipath-rpa/references/legacy/activity-docs/ComplexScenarios.md +74 -0
  1172. package/skills/uipath-rpa/references/legacy/activity-docs/Credentials.md +45 -0
  1173. package/skills/uipath-rpa/references/legacy/activity-docs/Cryptography.md +82 -0
  1174. package/skills/uipath-rpa/references/legacy/activity-docs/Database.md +79 -0
  1175. package/skills/uipath-rpa/references/legacy/activity-docs/Excel.md +101 -0
  1176. package/skills/uipath-rpa/references/legacy/activity-docs/FTP.md +75 -0
  1177. package/skills/uipath-rpa/references/legacy/activity-docs/Forms.md +81 -0
  1178. package/skills/uipath-rpa/references/legacy/activity-docs/GSuite.md +74 -0
  1179. package/skills/uipath-rpa/references/legacy/activity-docs/Google-Speech.md +25 -0
  1180. package/skills/uipath-rpa/references/legacy/activity-docs/ImageProcessing.md +32 -0
  1181. package/skills/uipath-rpa/references/legacy/activity-docs/IntelligentOCR.md +113 -0
  1182. package/skills/uipath-rpa/references/legacy/activity-docs/Java.md +60 -0
  1183. package/skills/uipath-rpa/references/legacy/activity-docs/Mail.md +101 -0
  1184. package/skills/uipath-rpa/references/legacy/activity-docs/MicrosoftOffice365.md +84 -0
  1185. package/skills/uipath-rpa/references/legacy/activity-docs/MobileAutomation.md +35 -0
  1186. package/skills/uipath-rpa/references/legacy/activity-docs/OmniPage.md +60 -0
  1187. package/skills/uipath-rpa/references/legacy/activity-docs/PDF.md +86 -0
  1188. package/skills/uipath-rpa/references/legacy/activity-docs/Presentations.md +72 -0
  1189. package/skills/uipath-rpa/references/legacy/activity-docs/Python.md +66 -0
  1190. package/skills/uipath-rpa/references/legacy/activity-docs/SAP-BAPI.md +43 -0
  1191. package/skills/uipath-rpa/references/legacy/activity-docs/System.md +153 -0
  1192. package/skills/uipath-rpa/references/legacy/activity-docs/Terminal.md +120 -0
  1193. package/skills/uipath-rpa/references/legacy/activity-docs/Testing.md +95 -0
  1194. package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-BalaReva-Excel.md +120 -0
  1195. package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-Microsoft-WF4.md +84 -0
  1196. package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-Persistence.md +140 -0
  1197. package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-SharePoint.md +105 -0
  1198. package/skills/uipath-rpa/references/legacy/activity-docs/UIAutomation.md +159 -0
  1199. package/skills/uipath-rpa/references/legacy/activity-docs/Vision-OCR.md +37 -0
  1200. package/skills/uipath-rpa/references/legacy/activity-docs/Web.md +108 -0
  1201. package/skills/uipath-rpa/references/legacy/activity-docs/Word.md +76 -0
  1202. package/skills/uipath-rpa/references/legacy/activity-docs/WorkflowEvents.md +34 -0
  1203. package/skills/uipath-rpa/references/legacy/activity-docs/_BUILT-IN-ACTIVITIES.md +425 -0
  1204. package/skills/uipath-rpa/references/legacy/activity-docs/_COMMON-PITFALLS.md +296 -0
  1205. package/skills/uipath-rpa/references/legacy/activity-docs/_DU-PROCESS.md +340 -0
  1206. package/skills/uipath-rpa/references/legacy/activity-docs/_INDEX.md +70 -0
  1207. package/skills/uipath-rpa/references/legacy/activity-docs/_INVOKE-CODE.md +367 -0
  1208. package/skills/uipath-rpa/references/legacy/activity-docs/_PATTERNS.md +278 -0
  1209. package/skills/uipath-rpa/references/legacy/activity-docs/_REFRAMEWORK.md +598 -0
  1210. package/skills/uipath-rpa/references/legacy/activity-docs/_XAML-GUIDE.md +692 -0
  1211. package/skills/uipath-rpa/references/legacy/cli-reference.md +363 -0
  1212. package/skills/uipath-rpa/references/legacy/common-pitfalls.md +318 -0
  1213. package/skills/uipath-rpa/references/legacy/data-manipulation-guide.md +390 -0
  1214. package/skills/uipath-rpa/references/legacy/discovery-workflow.md +147 -0
  1215. package/skills/uipath-rpa/references/legacy/environment-setup.md +78 -0
  1216. package/skills/uipath-rpa/references/legacy/error-handling-guide.md +255 -0
  1217. package/skills/uipath-rpa/references/legacy/legacy-mode-guide.md +255 -0
  1218. package/skills/uipath-rpa/references/legacy/orchestrator-guide.md +252 -0
  1219. package/skills/uipath-rpa/references/legacy/project-organization-guide.md +324 -0
  1220. package/skills/uipath-rpa/references/legacy/project-structure.md +206 -0
  1221. package/skills/uipath-rpa/references/legacy/selector-guide.md +326 -0
  1222. package/skills/uipath-rpa/references/legacy/test-data-guide.md +142 -0
  1223. package/skills/uipath-rpa/references/legacy/testing-guide.md +309 -0
  1224. package/skills/uipath-rpa/references/legacy/validation-and-fixing.md +154 -0
  1225. package/skills/uipath-rpa/references/legacy/xaml-basics-and-rules.md +457 -0
  1226. package/skills/uipath-rpa/references/powershell-interop-guide.md +68 -0
  1227. package/skills/uipath-rpa/references/project-structure-guide.md +125 -0
  1228. package/skills/uipath-rpa/references/project-structure.md +135 -0
  1229. package/skills/uipath-rpa/references/publishing-guide.md +80 -0
  1230. package/skills/uipath-rpa/references/reframework-guide.md +178 -0
  1231. package/skills/uipath-rpa/references/tenant-library-search-guide.md +111 -0
  1232. package/skills/uipath-rpa/references/testing-guide.md +420 -0
  1233. package/skills/uipath-rpa/references/trigger-pattern-guide.md +228 -0
  1234. package/skills/uipath-rpa/references/ui-automation-guide.md +401 -0
  1235. package/skills/uipath-rpa/references/uia-configure-target-workflows.md +167 -0
  1236. package/skills/uipath-rpa/references/uia-prerequisites.md +42 -0
  1237. package/skills/uipath-rpa/references/validation-guide.md +171 -0
  1238. package/skills/uipath-rpa/references/xaml/canvas-layout-guide.md +643 -0
  1239. package/skills/uipath-rpa/references/xaml/common-pitfalls.md +1008 -0
  1240. package/skills/uipath-rpa/references/xaml/csharp-activity-binding-guide.md +120 -0
  1241. package/skills/uipath-rpa/references/xaml/csharp-expression-pitfalls.md +38 -0
  1242. package/skills/uipath-rpa/references/xaml/jit-custom-types-schema.md +90 -0
  1243. package/skills/uipath-rpa/references/xaml/workflow-guide.md +258 -0
  1244. package/skills/uipath-rpa/references/xaml/xaml-basics-and-rules.md +816 -0
  1245. package/skills/uipath-solution/SKILL.md +202 -0
  1246. package/skills/uipath-solution/assets/templates/agent-sdd-template.md +306 -0
  1247. package/skills/uipath-solution/assets/templates/api-workflow-sdd-template.md +300 -0
  1248. package/skills/uipath-solution/assets/templates/case-sdd-template.md +410 -0
  1249. package/skills/uipath-solution/assets/templates/coded-app-sdd-template.md +280 -0
  1250. package/skills/uipath-solution/assets/templates/flow-sdd-template.md +272 -0
  1251. package/skills/uipath-solution/assets/templates/rpa-sdd-template.md +613 -0
  1252. package/skills/uipath-solution/references/design/package-selection-guide.md +182 -0
  1253. package/skills/uipath-solution/references/design/pdd-analysis-guide.md +265 -0
  1254. package/skills/uipath-solution/references/design/product-selection-guide.md +431 -0
  1255. package/skills/uipath-solution/references/design/rpa-product-guide.md +305 -0
  1256. package/skills/uipath-solution/references/design/sdd-generation-guide.md +443 -0
  1257. package/skills/uipath-solution/references/design/tenant-library-search-guide.md +106 -0
  1258. package/skills/uipath-solution/references/operate/activate-and-manage.md +208 -0
  1259. package/skills/uipath-solution/references/operate/develop-solution.md +567 -0
  1260. package/skills/uipath-solution/references/operate/pack-and-deploy.md +328 -0
  1261. package/skills/uipath-solution/references/operate/scenarios/failure-modes.md +14 -0
  1262. package/skills/uipath-solution/references/operate/scenarios/intra-solution-references.md +61 -0
  1263. package/skills/uipath-solution/references/operate/scenarios/manual-edits.md +132 -0
  1264. package/skills/uipath-solution/references/operate/scenarios/same-name-across-folders.md +57 -0
  1265. package/skills/uipath-solution/references/operate/scenarios/shared-cloud-resource.md +41 -0
  1266. package/skills/uipath-solution/references/operate/scenarios/virtual-resource.md +89 -0
  1267. package/skills/uipath-solution/references/operate/scenarios.md +51 -0
  1268. package/skills/uipath-solution/references/operate/solution-overview.md +125 -0
  1269. package/skills/uipath-tasks/SKILL.md +208 -0
  1270. package/skills/uipath-tasks/references/action-center-urls.md +152 -0
  1271. package/skills/uipath-tasks/references/task-assignment.md +92 -0
  1272. package/skills/uipath-tasks/references/task-completion.md +102 -0
  1273. package/skills/uipath-tasks/references/task-lifecycle.md +69 -0
  1274. package/skills/uipath-test/SKILL.md +295 -0
  1275. package/skills/uipath-test/references/publish-and-link-guide.md +111 -0
  1276. package/skills/uipath-test/references/test-result-report-guide.md +96 -0
  1277. package/skills/uipath-troubleshoot/SKILL.md +177 -0
  1278. package/skills/uipath-troubleshoot/agents/depth-verifier.md +165 -0
  1279. package/skills/uipath-troubleshoot/agents/hypothesis-generator.md +38 -0
  1280. package/skills/uipath-troubleshoot/agents/hypothesis-tester.md +56 -0
  1281. package/skills/uipath-troubleshoot/agents/presenter.md +160 -0
  1282. package/skills/uipath-troubleshoot/agents/scope-checker.md +45 -0
  1283. package/skills/uipath-troubleshoot/agents/shared.md +92 -0
  1284. package/skills/uipath-troubleshoot/agents/triage.md +78 -0
  1285. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/investigation_guide.md +60 -0
  1286. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/overview.md +43 -0
  1287. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-code-file-path.md +46 -0
  1288. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-com-interop-failure.md +49 -0
  1289. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-entry-method-name.md +36 -0
  1290. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-parameter-formatting.md +45 -0
  1291. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-trust-access.md +38 -0
  1292. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-active-filters.md +35 -0
  1293. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-excel-not-installed.md +36 -0
  1294. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-file-locked.md +40 -0
  1295. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-formula-cells.md +53 -0
  1296. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-invalid-range.md +42 -0
  1297. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-null-reference.md +37 -0
  1298. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/presentation.md +9 -0
  1299. package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/summary.md +17 -0
  1300. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/investigation_guide.md +28 -0
  1301. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/overview.md +54 -0
  1302. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/add-sheet-name-conflict.md +29 -0
  1303. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-file-not-found.md +37 -0
  1304. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-multiple-items-name-conflict.md +40 -0
  1305. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/get-newest-email-not-found.md +32 -0
  1306. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/sheets-cell-limit-exceeded.md +46 -0
  1307. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/sheets-invalid-range.md +51 -0
  1308. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/upload-storage-quota-exceeded.md +40 -0
  1309. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/presentation.md +11 -0
  1310. package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/summary.md +13 -0
  1311. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/investigation_guide.md +30 -0
  1312. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/overview.md +55 -0
  1313. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/download-multiple-items-name-conflict.md +37 -0
  1314. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/drive-item-not-found.md +59 -0
  1315. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/get-newest-email-no-match.md +34 -0
  1316. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/item-name-already-exists.md +38 -0
  1317. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-folder-not-found.md +47 -0
  1318. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/presentation.md +19 -0
  1319. package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/summary.md +11 -0
  1320. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/investigation_guide.md +25 -0
  1321. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/overview.md +29 -0
  1322. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-activity-bug-silent-failure.md +35 -0
  1323. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-external-vault-failure.md +40 -0
  1324. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-folder-scope-mismatch.md +38 -0
  1325. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-network-connectivity.md +46 -0
  1326. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-not-found.md +35 -0
  1327. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-per-robot-no-value.md +31 -0
  1328. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-permission-denied.md +33 -0
  1329. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-robot-not-authenticated.md +40 -0
  1330. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-wrong-activity-type.md +32 -0
  1331. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/presentation.md +7 -0
  1332. package/skills/uipath-troubleshoot/references/activity-packages/system-activities/summary.md +15 -0
  1333. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/interpretations/healing-agent-data.md +277 -0
  1334. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/investigation_guide.md +25 -0
  1335. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/overview.md +39 -0
  1336. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/disabled-element.md +81 -0
  1337. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/healing-agent-no-license.md +109 -0
  1338. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/no-recovery-data.md +35 -0
  1339. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/scope-container-wrong-page.md +44 -0
  1340. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-healing-disabled.md +55 -0
  1341. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-healing-fix.md +45 -0
  1342. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-manual.md +44 -0
  1343. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/timeout-issue.md +35 -0
  1344. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/presentation.md +5 -0
  1345. package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/summary.md +14 -0
  1346. package/skills/uipath-troubleshoot/references/investigation_guide.md +60 -0
  1347. package/skills/uipath-troubleshoot/references/knowledge-base-guide.md +110 -0
  1348. package/skills/uipath-troubleshoot/references/products/agents/playbooks/context-grounding-index-not-found.md +94 -0
  1349. package/skills/uipath-troubleshoot/references/products/agents/playbooks/input-schema-validation-failure.md +89 -0
  1350. package/skills/uipath-troubleshoot/references/products/agents/playbooks/llm-insufficient-information.md +78 -0
  1351. package/skills/uipath-troubleshoot/references/products/agents/summary.md +9 -0
  1352. package/skills/uipath-troubleshoot/references/products/integration-service/investigation_guide.md +50 -0
  1353. package/skills/uipath-troubleshoot/references/products/integration-service/overview.md +73 -0
  1354. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-auth-expired.md +35 -0
  1355. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-invalid.md +53 -0
  1356. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/operation-failed.md +39 -0
  1357. package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/trigger-not-firing.md +40 -0
  1358. package/skills/uipath-troubleshoot/references/products/integration-service/presentation.md +14 -0
  1359. package/skills/uipath-troubleshoot/references/products/integration-service/summary.md +10 -0
  1360. package/skills/uipath-troubleshoot/references/products/llm-gateway/overview.md +64 -0
  1361. package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/byo-connection-dead.md +59 -0
  1362. package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/byo-routing-bypassed.md +86 -0
  1363. package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/validation-probe-failed.md +54 -0
  1364. package/skills/uipath-troubleshoot/references/products/llm-gateway/summary.md +9 -0
  1365. package/skills/uipath-troubleshoot/references/products/maestro/error_codes.md +341 -0
  1366. package/skills/uipath-troubleshoot/references/products/maestro/investigation_guide.md +92 -0
  1367. package/skills/uipath-troubleshoot/references/products/maestro/overview.md +98 -0
  1368. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/agent-traces-disappearing.md +22 -0
  1369. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/argument-mismatch-400.md +38 -0
  1370. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/attachment-not-found.md +24 -0
  1371. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/autopilot-429.md +24 -0
  1372. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/boundary-event-duplicate-task.md +35 -0
  1373. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/bpmn-job-stuck.md +23 -0
  1374. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/debug-vs-deploy.md +39 -0
  1375. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-datetime-input.md +23 -0
  1376. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-email-received.md +23 -0
  1377. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-failure.md +36 -0
  1378. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/expression-evaluation-errors.md +52 -0
  1379. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/file-field-required.md +45 -0
  1380. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/file-handling.md +38 -0
  1381. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/folder-not-accessible.md +46 -0
  1382. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/foreground-unattended-robot.md +46 -0
  1383. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/gateway-no-outgoing-flow.md +54 -0
  1384. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/generic-error-400.md +51 -0
  1385. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/index-out-of-bounds.md +49 -0
  1386. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/input-schema-mismatch.md +47 -0
  1387. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/insufficient-funds.md +44 -0
  1388. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/integration-service-400.md +51 -0
  1389. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/integration-service-404.md +54 -0
  1390. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/job-operation-timeout.md +44 -0
  1391. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/js-runtime-discrepancy.md +26 -0
  1392. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/loop-detected.md +44 -0
  1393. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/maestro-service-disabled.md +26 -0
  1394. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/marker-input-null.md +45 -0
  1395. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/marker-invalid-cast.md +38 -0
  1396. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/missing-required-parameter.md +48 -0
  1397. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/multi-instance-parallel.md +37 -0
  1398. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/no-message-events.md +51 -0
  1399. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/no-suitable-runtime-machine.md +45 -0
  1400. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/personal-automation-quota.md +42 -0
  1401. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/process-not-found-404.md +47 -0
  1402. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/service-task-child-job-faulted.md +38 -0
  1403. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/unattended-robot-permissions.md +44 -0
  1404. package/skills/uipath-troubleshoot/references/products/maestro/playbooks/variable-expression-errors.md +40 -0
  1405. package/skills/uipath-troubleshoot/references/products/maestro/presentation.md +8 -0
  1406. package/skills/uipath-troubleshoot/references/products/maestro/summary.md +56 -0
  1407. package/skills/uipath-troubleshoot/references/products/orchestrator/investigation_guide.md +73 -0
  1408. package/skills/uipath-troubleshoot/references/products/orchestrator/overview.md +83 -0
  1409. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/foreground-already-running.md +65 -0
  1410. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-faulted-logon-failure.md +103 -0
  1411. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-no-host.md +42 -0
  1412. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-stale-dispatch.md +63 -0
  1413. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-stuck.md +35 -0
  1414. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/queue-items-failing.md +38 -0
  1415. package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/robot-credentials.md +43 -0
  1416. package/skills/uipath-troubleshoot/references/products/orchestrator/presentation.md +9 -0
  1417. package/skills/uipath-troubleshoot/references/products/orchestrator/summary.md +13 -0
  1418. package/skills/uipath-troubleshoot/references/runtime-exceptions/investigation_guide.md +61 -0
  1419. package/skills/uipath-troubleshoot/references/runtime-exceptions/overview.md +35 -0
  1420. package/skills/uipath-troubleshoot/references/runtime-exceptions/playbooks/argument-null-exception.md +47 -0
  1421. package/skills/uipath-troubleshoot/references/runtime-exceptions/playbooks/null-reference-exception.md +47 -0
  1422. package/skills/uipath-troubleshoot/references/runtime-exceptions/summary.md +8 -0
  1423. package/skills/uipath-troubleshoot/references/summary.md +112 -0
  1424. package/skills/uipath-troubleshoot/references/templates/playbook-template.md +29 -0
  1425. package/skills/uipath-troubleshoot/schemas/evidence.schema.md +70 -0
  1426. package/skills/uipath-troubleshoot/schemas/hypotheses.schema.md +56 -0
  1427. package/skills/uipath-troubleshoot/schemas/scope-check.schema.md +27 -0
  1428. package/skills/uipath-troubleshoot/schemas/state.schema.md +70 -0
  1429. package/skills/uipath-troubleshoot/scripts/strip-ha-images.ps1 +61 -0
  1430. package/skills/uipath-troubleshoot/scripts/strip-ha-images.sh +41 -0
  1431. package/version-manifest.json +5 -0
@@ -0,0 +1,1519 @@
1
+ <!doctype html>
2
+ <!--
3
+ SDD Viewer — interactive preview of a UiPath Case Management SDD.
4
+
5
+ Generation contract (Phase 0 / Approve mode):
6
+ 1. Read this file.
7
+ 2. Replace the sentinel token in the <script id="sdd-data"> block
8
+ with a JSON object matching the schema documented in the JS section below.
9
+ The token appears exactly once — inside that script tag only — so any
10
+ string-replace or Edit-tool swap is unambiguous.
11
+ 3. Write the populated file to ./sdd-viewer.html in the working directory.
12
+ 4. Tell the user: "Generated ./sdd-viewer.html — open it in a browser to review."
13
+
14
+ No external dependencies — the file is self-contained. Open via file:// URI.
15
+ Edits to this template must keep CSS, HTML, and JS inline (single-file portability).
16
+ -->
17
+ <html lang="en">
18
+ <head>
19
+ <meta charset="utf-8">
20
+ <meta name="viewport" content="width=device-width,initial-scale=1">
21
+ <title>SDD Preview</title>
22
+ <style>
23
+ /* ---------- reset + base ---------- */
24
+ *, *::before, *::after { box-sizing: border-box; }
25
+ html, body { margin: 0; padding: 0; }
26
+ body {
27
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
28
+ font-size: 14px;
29
+ line-height: 1.5;
30
+ color: var(--text);
31
+ background: var(--bg);
32
+ -webkit-font-smoothing: antialiased;
33
+ }
34
+
35
+ :root {
36
+ --bg: #f7f8fa;
37
+ --surface: #ffffff;
38
+ --surface-2: #fafbfc;
39
+ --border: #e3e6ea;
40
+ --border-strong: #cdd2d9;
41
+ --text: #1a1f2e;
42
+ --text-muted: #6b7280;
43
+ --text-subtle: #9ca3af;
44
+ --accent: #fa4616;
45
+ --accent-light: #fff1ea;
46
+ --accent-strong: #c93a12;
47
+ --warn-bg: #fff8e1;
48
+ --warn-border: #f59e0b;
49
+ --warn-text: #92400e;
50
+ --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04);
51
+ --shadow-md: 0 6px 20px rgba(15, 23, 42, .08);
52
+ --radius-sm: 4px;
53
+ --radius-md: 8px;
54
+ --radius-lg: 12px;
55
+
56
+ /* Task type accents — colored left border + badge background tint */
57
+ --t-action: #8b5cf6;
58
+ --t-agent: #0891b2;
59
+ --t-process: #2563eb;
60
+ --t-rpa: #f59e0b;
61
+ --t-api-workflow: #10b981;
62
+ --t-execute-connector-activity: #ec4899;
63
+ --t-wait-for-connector: #6366f1;
64
+ --t-wait-for-timer: #6b7280;
65
+ --t-case-management: #ef4444;
66
+ }
67
+
68
+ /* ---------- topbar ---------- */
69
+ .topbar {
70
+ position: sticky; top: 0; z-index: 30;
71
+ display: grid;
72
+ grid-template-columns: auto 1fr auto;
73
+ gap: 16px;
74
+ align-items: center;
75
+ padding: 12px 24px;
76
+ background: var(--surface);
77
+ border-bottom: 1px solid var(--border);
78
+ box-shadow: var(--shadow-sm);
79
+ }
80
+ .brand {
81
+ display: flex; align-items: center; gap: 10px;
82
+ font-weight: 600; font-size: 13px;
83
+ color: var(--text-muted);
84
+ text-transform: uppercase; letter-spacing: .04em;
85
+ }
86
+ .brand::before {
87
+ content: ""; width: 8px; height: 8px; border-radius: 50%;
88
+ background: var(--accent);
89
+ }
90
+ .case-title {
91
+ font-weight: 600; font-size: 16px; color: var(--text);
92
+ overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
93
+ }
94
+ .case-title small {
95
+ font-weight: 400; font-size: 13px; color: var(--text-muted);
96
+ margin-left: 8px;
97
+ }
98
+ .controls { display: flex; gap: 8px; align-items: center; }
99
+ .controls input[type="search"] {
100
+ width: 240px;
101
+ padding: 7px 10px;
102
+ border: 1px solid var(--border); border-radius: var(--radius-sm);
103
+ font: inherit; color: var(--text);
104
+ background: var(--surface);
105
+ }
106
+ .controls input[type="search"]:focus {
107
+ outline: 2px solid var(--accent-light);
108
+ border-color: var(--accent);
109
+ }
110
+ .controls button {
111
+ padding: 7px 12px;
112
+ background: var(--surface);
113
+ border: 1px solid var(--border); border-radius: var(--radius-sm);
114
+ font: inherit; color: var(--text);
115
+ cursor: pointer;
116
+ }
117
+ .controls button:hover { background: var(--surface-2); border-color: var(--border-strong); }
118
+ .controls button[aria-pressed="true"] {
119
+ background: var(--accent); color: white; border-color: var(--accent);
120
+ }
121
+
122
+ /* ---------- layout ---------- */
123
+ .layout {
124
+ display: grid;
125
+ grid-template-columns: 240px 1fr;
126
+ min-height: calc(100vh - 57px);
127
+ }
128
+ .sidebar {
129
+ position: sticky; top: 57px;
130
+ align-self: start;
131
+ height: calc(100vh - 57px);
132
+ overflow-y: auto;
133
+ padding: 20px 16px;
134
+ border-right: 1px solid var(--border);
135
+ background: var(--surface);
136
+ }
137
+ main { padding: 24px 32px 80px; max-width: 1100px; }
138
+
139
+ /* ---------- toc ---------- */
140
+ .toc h4 {
141
+ margin: 0 0 8px;
142
+ font-size: 11px; font-weight: 600; letter-spacing: .06em;
143
+ color: var(--text-subtle); text-transform: uppercase;
144
+ }
145
+ .toc ul { list-style: none; padding: 0; margin: 0 0 16px; }
146
+ .toc li { margin: 0; }
147
+ .toc a {
148
+ display: block;
149
+ padding: 6px 8px;
150
+ color: var(--text-muted);
151
+ text-decoration: none;
152
+ border-radius: var(--radius-sm);
153
+ font-size: 13px;
154
+ }
155
+ .toc a:hover { color: var(--text); background: var(--surface-2); }
156
+ .toc a.active { color: var(--accent); background: var(--accent-light); font-weight: 500; }
157
+ .toc .toc-sub { margin-left: 12px; }
158
+ .toc .toc-sub a { font-size: 12px; padding: 4px 8px; }
159
+
160
+ /* ---------- sections ---------- */
161
+ section { margin-bottom: 48px; scroll-margin-top: 80px; }
162
+ section > h2 {
163
+ margin: 0 0 16px;
164
+ font-size: 20px; font-weight: 600; color: var(--text);
165
+ padding-bottom: 8px;
166
+ border-bottom: 2px solid var(--border);
167
+ }
168
+ section > h2 .count {
169
+ font-size: 13px; font-weight: 400; color: var(--text-muted);
170
+ margin-left: 8px;
171
+ }
172
+ h3 { font-size: 16px; font-weight: 600; margin: 24px 0 12px; }
173
+ h4 { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin: 16px 0 8px; }
174
+
175
+ /* ---------- cards / tables ---------- */
176
+ .card {
177
+ background: var(--surface);
178
+ border: 1px solid var(--border);
179
+ border-radius: var(--radius-md);
180
+ padding: 16px 20px;
181
+ margin-bottom: 12px;
182
+ box-shadow: var(--shadow-sm);
183
+ }
184
+ .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
185
+ @media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }
186
+ .meta-row {
187
+ display: flex; gap: 8px 16px; flex-wrap: wrap;
188
+ font-size: 13px;
189
+ }
190
+ .meta-row .k { color: var(--text-muted); margin-right: 4px; }
191
+ .meta-row .v { color: var(--text); font-weight: 500; }
192
+
193
+ table {
194
+ width: 100%;
195
+ border-collapse: collapse;
196
+ font-size: 13px;
197
+ margin: 8px 0;
198
+ }
199
+ th, td {
200
+ text-align: left;
201
+ padding: 8px 10px;
202
+ border-bottom: 1px solid var(--border);
203
+ vertical-align: top;
204
+ }
205
+ th {
206
+ font-weight: 600; color: var(--text-muted);
207
+ background: var(--surface-2);
208
+ font-size: 12px; text-transform: uppercase; letter-spacing: .03em;
209
+ }
210
+ tr:last-child td { border-bottom: none; }
211
+ td code, .mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
212
+
213
+ /* ---------- stage cards ---------- */
214
+ .stage {
215
+ background: var(--surface);
216
+ border: 1px solid var(--border);
217
+ border-radius: var(--radius-lg);
218
+ margin-bottom: 16px;
219
+ overflow: hidden;
220
+ box-shadow: var(--shadow-sm);
221
+ }
222
+ .stage.collapsed .stage-body { display: none; }
223
+ .stage-header {
224
+ display: grid;
225
+ grid-template-columns: auto 1fr auto;
226
+ align-items: center;
227
+ gap: 12px;
228
+ padding: 14px 20px;
229
+ cursor: pointer;
230
+ user-select: none;
231
+ background: var(--surface);
232
+ }
233
+ .stage-header:hover { background: var(--surface-2); }
234
+ .stage-header .twirl {
235
+ width: 16px; text-align: center;
236
+ transition: transform .15s;
237
+ color: var(--text-muted);
238
+ }
239
+ .stage.collapsed .twirl { transform: rotate(-90deg); }
240
+ .stage-title {
241
+ display: flex; align-items: baseline; gap: 8px;
242
+ font-size: 16px; font-weight: 600;
243
+ }
244
+ .stage-title .seq {
245
+ font-size: 12px; color: var(--text-subtle); font-weight: 400;
246
+ font-variant-numeric: tabular-nums;
247
+ }
248
+ .stage-type {
249
+ font-size: 11px; padding: 2px 8px; border-radius: 999px;
250
+ background: var(--surface-2); color: var(--text-muted);
251
+ text-transform: uppercase; letter-spacing: .03em;
252
+ }
253
+ .stage.exception .stage-type { background: #fef2f2; color: #b91c1c; }
254
+ .stage-summary {
255
+ display: flex; gap: 12px; flex-wrap: wrap;
256
+ font-size: 12px; color: var(--text-muted);
257
+ }
258
+ .stage-summary .pill {
259
+ padding: 2px 8px; border-radius: 999px;
260
+ background: var(--surface-2); border: 1px solid var(--border);
261
+ }
262
+ .stage-body { padding: 4px 20px 20px; border-top: 1px solid var(--border); background: var(--surface-2); }
263
+
264
+ /* ---------- task rows ---------- */
265
+ .tasks { margin: 16px 0 0; }
266
+ .task {
267
+ display: grid;
268
+ grid-template-columns: 28px 1fr auto;
269
+ gap: 12px;
270
+ align-items: center;
271
+ padding: 10px 12px;
272
+ background: var(--surface);
273
+ border: 1px solid var(--border);
274
+ border-left-width: 4px;
275
+ border-radius: var(--radius-md);
276
+ margin-bottom: 6px;
277
+ cursor: pointer;
278
+ transition: border-color .12s, transform .12s;
279
+ }
280
+ .task:hover { border-color: var(--border-strong); transform: translateX(2px); }
281
+ .task .num {
282
+ font-variant-numeric: tabular-nums;
283
+ color: var(--text-subtle); font-size: 12px;
284
+ text-align: right;
285
+ }
286
+ .task .name { font-weight: 500; }
287
+ .task .meta {
288
+ font-size: 12px; color: var(--text-muted);
289
+ display: flex; gap: 8px; flex-wrap: wrap;
290
+ }
291
+ .task .badges { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
292
+
293
+ /* per-type accent */
294
+ .task[data-type="action"] { border-left-color: var(--t-action); }
295
+ .task[data-type="agent"] { border-left-color: var(--t-agent); }
296
+ .task[data-type="process"] { border-left-color: var(--t-process); }
297
+ .task[data-type="rpa"] { border-left-color: var(--t-rpa); }
298
+ .task[data-type="api-workflow"] { border-left-color: var(--t-api-workflow); }
299
+ .task[data-type="execute-connector-activity"] { border-left-color: var(--t-execute-connector-activity); }
300
+ .task[data-type="wait-for-connector"] { border-left-color: var(--t-wait-for-connector); }
301
+ .task[data-type="wait-for-timer"] { border-left-color: var(--t-wait-for-timer); }
302
+ .task[data-type="case-management"] { border-left-color: var(--t-case-management); }
303
+
304
+ /* ---------- badges ---------- */
305
+ .badge {
306
+ display: inline-flex; align-items: center;
307
+ padding: 2px 8px; border-radius: 999px;
308
+ font-size: 11px; font-weight: 500;
309
+ background: var(--surface-2); color: var(--text-muted);
310
+ border: 1px solid var(--border);
311
+ white-space: nowrap;
312
+ }
313
+ .badge.type-action { background: color-mix(in srgb, var(--t-action) 12%, white); color: var(--t-action); border-color: color-mix(in srgb, var(--t-action) 25%, transparent); }
314
+ .badge.type-agent { background: color-mix(in srgb, var(--t-agent) 12%, white); color: var(--t-agent); border-color: color-mix(in srgb, var(--t-agent) 25%, transparent); }
315
+ .badge.type-process { background: color-mix(in srgb, var(--t-process) 12%, white); color: var(--t-process); border-color: color-mix(in srgb, var(--t-process) 25%, transparent); }
316
+ .badge.type-rpa { background: color-mix(in srgb, var(--t-rpa) 12%, white); color: var(--t-rpa); border-color: color-mix(in srgb, var(--t-rpa) 25%, transparent); }
317
+ .badge.type-api-workflow { background: color-mix(in srgb, var(--t-api-workflow) 12%, white); color: var(--t-api-workflow); border-color: color-mix(in srgb, var(--t-api-workflow) 25%, transparent); }
318
+ .badge.type-execute-connector-activity { background: color-mix(in srgb, var(--t-execute-connector-activity) 12%, white); color: var(--t-execute-connector-activity); border-color: color-mix(in srgb, var(--t-execute-connector-activity) 25%, transparent); }
319
+ .badge.type-wait-for-connector { background: color-mix(in srgb, var(--t-wait-for-connector) 12%, white); color: var(--t-wait-for-connector); border-color: color-mix(in srgb, var(--t-wait-for-connector) 25%, transparent); }
320
+ .badge.type-wait-for-timer { background: color-mix(in srgb, var(--t-wait-for-timer) 15%, white); color: var(--t-wait-for-timer); border-color: color-mix(in srgb, var(--t-wait-for-timer) 30%, transparent); }
321
+ .badge.type-case-management { background: color-mix(in srgb, var(--t-case-management) 12%, white); color: var(--t-case-management); border-color: color-mix(in srgb, var(--t-case-management) 25%, transparent); }
322
+ .badge.unresolved {
323
+ background: var(--warn-bg); color: var(--warn-text); border-color: var(--warn-border);
324
+ }
325
+ .badge.persona { background: var(--accent-light); color: var(--accent-strong); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
326
+ .badge.sla { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
327
+ .badge.runonce { background: #eef2ff; color: #4338ca; border-color: #c7d2fe; }
328
+
329
+ /* filter pills (top of stages section) */
330
+ .filters {
331
+ display: flex; gap: 12px; flex-wrap: wrap;
332
+ margin-bottom: 16px;
333
+ padding: 12px 16px;
334
+ background: var(--surface);
335
+ border: 1px solid var(--border);
336
+ border-radius: var(--radius-md);
337
+ }
338
+ .filter-group { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
339
+ .filter-group .filter-label {
340
+ font-size: 12px; color: var(--text-muted); font-weight: 500;
341
+ text-transform: uppercase; letter-spacing: .04em;
342
+ margin-right: 4px;
343
+ }
344
+ .filter-chip {
345
+ padding: 4px 10px; border-radius: 999px;
346
+ font-size: 12px;
347
+ background: var(--surface-2); border: 1px solid var(--border);
348
+ color: var(--text-muted);
349
+ cursor: pointer; user-select: none;
350
+ }
351
+ .filter-chip[aria-pressed="true"] {
352
+ background: var(--accent); color: white; border-color: var(--accent);
353
+ }
354
+ .filter-chip:hover:not([aria-pressed="true"]) { border-color: var(--border-strong); color: var(--text); }
355
+
356
+ /* unresolved markers in body */
357
+ .unresolved-text {
358
+ background: var(--warn-bg); color: var(--warn-text);
359
+ padding: 1px 5px; border-radius: var(--radius-sm);
360
+ font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px;
361
+ }
362
+
363
+ /* schema-name tooltips */
364
+ body.schema-on .schema-name {
365
+ display: inline; color: var(--text-subtle);
366
+ font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
367
+ font-size: 11px;
368
+ margin-left: 4px;
369
+ }
370
+ .schema-name { display: none; }
371
+
372
+ /* warning banner (lightweight-override) */
373
+ .banner-warn {
374
+ background: var(--warn-bg);
375
+ border: 1px solid var(--warn-border);
376
+ color: var(--warn-text);
377
+ padding: 12px 16px;
378
+ border-radius: var(--radius-md);
379
+ margin-bottom: 24px;
380
+ font-size: 13px;
381
+ }
382
+ .banner-warn strong { font-weight: 600; }
383
+
384
+ /* ---------- detail panel ---------- */
385
+ .detail-panel {
386
+ position: fixed; top: 0; right: 0; bottom: 0;
387
+ width: 480px; max-width: 100vw;
388
+ background: var(--surface);
389
+ border-left: 1px solid var(--border);
390
+ box-shadow: -8px 0 24px rgba(15, 23, 42, .12);
391
+ transform: translateX(100%);
392
+ transition: transform .2s ease-out;
393
+ overflow-y: auto;
394
+ z-index: 50;
395
+ padding: 24px 28px 48px;
396
+ }
397
+ .detail-panel[data-open="true"] { transform: translateX(0); }
398
+ .detail-panel .close {
399
+ position: absolute; top: 12px; right: 12px;
400
+ width: 32px; height: 32px;
401
+ background: transparent; border: none; cursor: pointer;
402
+ font-size: 22px; color: var(--text-muted);
403
+ border-radius: var(--radius-sm);
404
+ }
405
+ .detail-panel .close:hover { background: var(--surface-2); color: var(--text); }
406
+ .detail-panel h2 { font-size: 18px; margin: 0 0 4px; padding: 0; border: none; }
407
+ .detail-panel .crumb { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
408
+ .detail-panel .description { color: var(--text-muted); margin: 12px 0 16px; }
409
+
410
+ /* ---------- flow diagram ---------- */
411
+ .flow-wrap {
412
+ background: var(--surface);
413
+ border: 1px solid var(--border);
414
+ border-radius: var(--radius-md);
415
+ padding: 16px;
416
+ margin-bottom: 16px;
417
+ overflow-x: auto;
418
+ box-shadow: var(--shadow-sm);
419
+ }
420
+ .flow-wrap-empty { color: var(--text-subtle); font-style: italic; padding: 8px 4px; }
421
+ .flow-legend {
422
+ display: flex; gap: 16px; flex-wrap: wrap;
423
+ font-size: 11px; color: var(--text-muted);
424
+ margin: 8px 4px 0;
425
+ }
426
+ .flow-legend .swatch {
427
+ display: inline-block; width: 12px; height: 12px;
428
+ border-radius: 3px; vertical-align: middle; margin-right: 6px;
429
+ border: 1px solid var(--border-strong);
430
+ }
431
+ .flow-node-group { cursor: pointer; }
432
+ .flow-node-group:hover .flow-node-rect { filter: brightness(0.96); }
433
+ .flow-node-rect { transition: filter .12s; }
434
+ .flow-node-active .flow-node-rect { stroke-width: 2.5; }
435
+
436
+ /* ---------- print ---------- */
437
+ @media print {
438
+ .topbar, .sidebar, .detail-panel, .filters, .controls, #toggle-collapse-all { display: none !important; }
439
+ .layout { grid-template-columns: 1fr; }
440
+ .stage.collapsed .stage-body { display: block !important; }
441
+ main { padding: 0; max-width: none; }
442
+ .card, .stage, .task { break-inside: avoid; box-shadow: none; border-color: #ccc; }
443
+ body { background: white; color: black; font-size: 11pt; }
444
+ }
445
+
446
+ /* ---------- responsive ---------- */
447
+ @media (max-width: 768px) {
448
+ .layout { grid-template-columns: 1fr; }
449
+ .sidebar { display: none; }
450
+ .controls input[type="search"] { width: 140px; }
451
+ .detail-panel { width: 100vw; }
452
+ }
453
+ </style>
454
+ </head>
455
+ <body>
456
+ <div class="topbar">
457
+ <div class="brand">SDD Preview</div>
458
+ <div class="case-title" id="case-title">—</div>
459
+ <div class="controls">
460
+ <input type="search" id="search" placeholder="Search stages, tasks, variables…" aria-label="Search">
461
+ <button id="toggle-unresolved" aria-pressed="false" title="Show only items with unresolved markers">Unresolved only</button>
462
+ <button id="toggle-schema" aria-pressed="false" title="Show schema field names">Schema view</button>
463
+ <button id="toggle-collapse-all" title="Collapse or expand all stages">Collapse all</button>
464
+ <button id="print" title="Print or save as PDF">Print</button>
465
+ </div>
466
+ </div>
467
+
468
+ <div class="layout">
469
+ <aside class="sidebar">
470
+ <nav class="toc" id="toc" aria-label="Table of contents"></nav>
471
+ </aside>
472
+ <main id="main">
473
+ <div id="banner-mount"></div>
474
+ <section id="case-definition" data-section><h2>1. Case Definition</h2><div id="case-body"></div></section>
475
+ <section id="stages-tasks" data-section><h2>2. Stages &amp; Tasks <span class="count" id="stage-count"></span></h2>
476
+ <div id="flow-diagram"></div>
477
+ <div class="filters" id="filters"></div>
478
+ <div id="stages-body"></div>
479
+ </section>
480
+ <section id="personas" data-section><h2>3. Personas &amp; App Views</h2><div id="personas-body"></div></section>
481
+ <section id="integrations" data-section><h2>4. Integrations</h2><div id="integrations-body"></div></section>
482
+ </main>
483
+ </div>
484
+
485
+ <aside class="detail-panel" id="detail-panel" data-open="false" aria-hidden="true">
486
+ <button class="close" id="close-detail" aria-label="Close detail panel">×</button>
487
+ <div id="detail-body"></div>
488
+ </aside>
489
+
490
+ <!--
491
+ SDD data — populated by the Phase 0 generator. Swap the sentinel token in
492
+ the script tag below with a JSON object that matches this shape (fields
493
+ marked optional may be omitted or set to null; unknown values render as
494
+ "—" or are hidden by the renderer):
495
+
496
+ {
497
+ "case": {
498
+ "name": string, // PascalCase
499
+ "description": string,
500
+ "prefix": string, // 2-4 UPPER (constant only)
501
+ "identifierType": "constant" | "external",
502
+ "identifierExpression": string | null, // external only: =vars.<id> or =js:`...`
503
+ "priority": { "values": string[], "default": string } | null,
504
+ "sla": { "count": number, "unit": "h"|"d"|"w"|"m", "type": "Static"|"Variable" } | null,
505
+ "slaEscalation": [{ "status": "At-Risk"|"Breached", "threshold": string, "action": string }],
506
+ "variableSla": [{ "expression": string, "sla": number, "unit": string }],
507
+ "triggers": [{ "type": string, "source": string, "config": string, "mappings": [{"from": string, "to": string}] }],
508
+ "exitConditions": [{ "when": string, "if": string, "then": string, "marksComplete": "Yes"|"No", "displayName": string }],
509
+ "variables": [{ "name": string, "type": string, "default": string, "description": string, "producedBy": string, "consumedBy": string[] }]
510
+ },
511
+ "stages": [
512
+ {
513
+ "name": string,
514
+ "type": "Stage" | "ExceptionStage",
515
+ "description": string,
516
+ "requiredForCompletion": boolean,
517
+ "interrupting": boolean | null, // ExceptionStage only
518
+ "entryConditions": [{ "when": string, "if": string, "interrupting": "Yes"|"No", "displayName": string }],
519
+ "exitConditions": [{ "when": string, "if": string, "exitType": string, "marksComplete": "Yes"|"No", "displayName": string }],
520
+ "sla": { "count": number, "unit": string, "atRiskPct": string, "atRiskAction": string, "breachAction": string } | null,
521
+ "tasks": [
522
+ {
523
+ "name": string,
524
+ "type": "action"|"agent"|"process"|"rpa"|"api-workflow"|"wait-for-timer"|"wait-for-connector"|"execute-connector-activity"|"case-management",
525
+ "required": boolean,
526
+ "runOnlyOnce": boolean,
527
+ "persona": string | null,
528
+ "sla": { "count": number, "unit": string } | null,
529
+ "description": string,
530
+ "entryCondition": { "when": string, "if": string, "displayName": string },
531
+ "details": { ... } // shape varies by type — see renderTaskDetail below
532
+ }
533
+ ]
534
+ }
535
+ ],
536
+ "personas": [{ "name": string, "stageScope": string[]|"All", "permissions": string[], "description": string }],
537
+ "appViews": [{ "app": string, "view": string, "persona": string, "purpose": string, "components": string }],
538
+ "integrations": [{ "connector": string, "system": string, "authMethod": string, "operations": [{ "name": string, "method": string, "inputs": string, "outputs": string }], "usedByTasks": string[] }],
539
+ "externalAgents": [{ "name": string, "serviceType": string, "endpoint": string, "usedByTasks": string[] }],
540
+ "warningHeader": string | null // populated when soft-redirect was overridden
541
+ }
542
+ -->
543
+ <script id="sdd-data" type="application/json">__SDD_DATA__</script>
544
+
545
+ <script>
546
+ (function () {
547
+ "use strict";
548
+
549
+ // ---------- data ----------
550
+ let data;
551
+ try {
552
+ const raw = document.getElementById("sdd-data").textContent.trim();
553
+ data = JSON.parse(raw);
554
+ } catch (e) {
555
+ document.getElementById("main").innerHTML =
556
+ '<div class="banner-warn"><strong>Failed to load SDD data.</strong> ' +
557
+ 'The <code>__SDD_DATA__</code> placeholder was not replaced with valid JSON. ' +
558
+ 'Error: ' + (e && e.message ? e.message : String(e)) + '</div>';
559
+ return;
560
+ }
561
+
562
+ // ---------- state ----------
563
+ const state = {
564
+ filters: { personas: new Set(), types: new Set() },
565
+ unresolvedOnly: false,
566
+ schemaOn: false,
567
+ search: "",
568
+ collapsedStages: new Set(),
569
+ allCollapsed: false
570
+ };
571
+
572
+ // ---------- helpers ----------
573
+ const $ = (sel, root) => (root || document).querySelector(sel);
574
+ const $$ = (sel, root) => Array.from((root || document).querySelectorAll(sel));
575
+ const el = (tag, attrs, children) => {
576
+ const node = document.createElement(tag);
577
+ if (attrs) for (const k in attrs) {
578
+ if (k === "class") node.className = attrs[k];
579
+ else if (k === "html") node.innerHTML = attrs[k];
580
+ else if (k.startsWith("on") && typeof attrs[k] === "function") node.addEventListener(k.slice(2), attrs[k]);
581
+ else if (k === "dataset" && attrs[k]) Object.assign(node.dataset, attrs[k]);
582
+ else if (attrs[k] !== null && attrs[k] !== undefined) node.setAttribute(k, attrs[k]);
583
+ }
584
+ if (children) (Array.isArray(children) ? children : [children]).forEach(c => {
585
+ if (c === null || c === undefined) return;
586
+ node.appendChild(typeof c === "string" ? document.createTextNode(c) : c);
587
+ });
588
+ return node;
589
+ };
590
+ const txt = (s) => (s === null || s === undefined || s === "" ? "—" : String(s));
591
+ const isUnresolved = (s) => typeof s === "string" && /<UNRESOLVED:/i.test(s);
592
+ const escapeHtml = (s) => String(s).replace(/[&<>"']/g, c => ({ "&": "&amp;", "<": "&lt;", ">": "&gt;", '"': "&quot;", "'": "&#39;" }[c]));
593
+ const renderInline = (s) => {
594
+ if (s === null || s === undefined || s === "") return "—";
595
+ const escaped = escapeHtml(String(s));
596
+ return escaped.replace(/&lt;UNRESOLVED:([^&]*?)&gt;/gi, (_, q) => `<span class="unresolved-text">&lt;UNRESOLVED:${q}&gt;</span>`);
597
+ };
598
+ const slug = (s) => String(s || "").toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-|-$/g, "");
599
+ const schemaTag = (name) => `<span class="schema-name">(${escapeHtml(name)})</span>`;
600
+
601
+ function badge(label, cls) {
602
+ return el("span", { class: "badge " + (cls || "") }, label);
603
+ }
604
+
605
+ function pluralize(n, single, plural) {
606
+ return `${n} ${n === 1 ? single : (plural || single + "s")}`;
607
+ }
608
+
609
+ // ---------- title ----------
610
+ function renderTitle() {
611
+ const c = data.case || {};
612
+ const t = $("#case-title");
613
+ t.innerHTML = "";
614
+ t.appendChild(document.createTextNode(c.name || "Untitled Case"));
615
+ if (c.identifierType === "external" && c.identifierExpression) {
616
+ const s = document.createElement("small");
617
+ s.textContent = "id " + c.identifierExpression;
618
+ t.appendChild(s);
619
+ } else if (c.prefix) {
620
+ const s = document.createElement("small");
621
+ s.textContent = "prefix " + c.prefix;
622
+ t.appendChild(s);
623
+ }
624
+ document.title = "SDD — " + (c.name || "Preview");
625
+ }
626
+
627
+ // ---------- warning banner ----------
628
+ function renderBanner() {
629
+ const mount = $("#banner-mount");
630
+ mount.innerHTML = "";
631
+ if (data.warningHeader) {
632
+ mount.appendChild(el("div", { class: "banner-warn", html: "<strong>⚠ Generated lightweight.</strong> " + escapeHtml(data.warningHeader) }));
633
+ }
634
+ }
635
+
636
+ // ---------- toc ----------
637
+ function renderTOC() {
638
+ const toc = $("#toc");
639
+ toc.innerHTML = "";
640
+ const groups = [
641
+ { id: "case-definition", label: "1. Case Definition", subs: [] },
642
+ {
643
+ id: "stages-tasks", label: "2. Stages & Tasks",
644
+ subs: (data.stages || []).map((s, i) => ({ id: "stage-" + slug(s.name) || "stage-" + i, label: `${i + 1}. ${s.name || "(unnamed)"}` }))
645
+ },
646
+ { id: "personas", label: "3. Personas & App Views", subs: [] },
647
+ { id: "integrations", label: "4. Integrations", subs: [] }
648
+ ];
649
+ groups.forEach(g => {
650
+ const sectionHeader = el("h4", null, g.label.split(". ")[0] + ". Section");
651
+ if (g.id === "stages-tasks") sectionHeader.textContent = "Stages";
652
+ else sectionHeader.textContent = g.label;
653
+ const ul = el("ul");
654
+ ul.appendChild(el("li", null, el("a", { href: "#" + g.id, "data-jump": g.id }, g.label)));
655
+ if (g.subs.length) {
656
+ const sub = el("ul", { class: "toc-sub" });
657
+ g.subs.forEach(s => {
658
+ sub.appendChild(el("li", null, el("a", { href: "#" + s.id, "data-jump": s.id }, s.label)));
659
+ });
660
+ ul.appendChild(sub);
661
+ }
662
+ toc.appendChild(ul);
663
+ });
664
+ // smooth scroll
665
+ $$(".toc a").forEach(a => a.addEventListener("click", (e) => {
666
+ const id = a.getAttribute("href").slice(1);
667
+ const tgt = document.getElementById(id);
668
+ if (tgt) { e.preventDefault(); tgt.scrollIntoView({ behavior: "smooth", block: "start" }); }
669
+ }));
670
+ }
671
+
672
+ // ---------- case definition ----------
673
+ function renderCase() {
674
+ const c = data.case || {};
675
+ const mount = $("#case-body");
676
+ mount.innerHTML = "";
677
+
678
+ const meta = el("div", { class: "card" });
679
+ meta.appendChild(el("h3", null, "Metadata"));
680
+ const rows = [
681
+ ["Case Name", c.name],
682
+ ["Description", c.description],
683
+ ["Identifier", c.identifierType === "external"
684
+ ? `${c.identifierExpression || "—"} (external)`
685
+ : (c.prefix ? `${c.prefix} (${c.identifierType || "constant"})` : null)],
686
+ ["Priority", c.priority ? `${(c.priority.values || []).join(", ")} — default ${c.priority.default || "—"}` : null],
687
+ ["Case-Level SLA", c.sla ? `${c.sla.count} ${c.sla.unit} — ${c.sla.type || "Static"}` : null]
688
+ ];
689
+ const tbl = el("table");
690
+ rows.forEach(([k, v]) => {
691
+ tbl.appendChild(el("tr", null, [el("th", { style: "width:180px" }, k), el("td", { html: renderInline(v) })]));
692
+ });
693
+ meta.appendChild(tbl);
694
+ mount.appendChild(meta);
695
+
696
+ if ((c.slaEscalation || []).length) {
697
+ const card = el("div", { class: "card" });
698
+ card.appendChild(el("h3", null, "SLA Escalation Rules"));
699
+ const t = el("table");
700
+ t.appendChild(el("tr", null, [el("th", null, "Status"), el("th", null, "Threshold"), el("th", null, "Action")]));
701
+ c.slaEscalation.forEach(r => t.appendChild(el("tr", null, [el("td", { html: renderInline(r.status) }), el("td", { html: renderInline(r.threshold) }), el("td", { html: renderInline(r.action) })])));
702
+ card.appendChild(t);
703
+ mount.appendChild(card);
704
+ }
705
+
706
+ if ((c.variableSla || []).length) {
707
+ const card = el("div", { class: "card" });
708
+ card.appendChild(el("h3", null, "Variable SLA Rules"));
709
+ const t = el("table");
710
+ t.appendChild(el("tr", null, [el("th", null, "Expression"), el("th", null, "SLA"), el("th", null, "Unit")]));
711
+ c.variableSla.forEach(r => t.appendChild(el("tr", null, [el("td", { html: '<code>' + escapeHtml(r.expression || "—") + '</code>' }), el("td", { html: renderInline(r.sla) }), el("td", { html: renderInline(r.unit) })])));
712
+ card.appendChild(t);
713
+ mount.appendChild(card);
714
+ }
715
+
716
+ if ((c.triggers || []).length) {
717
+ const card = el("div", { class: "card" });
718
+ card.appendChild(el("h3", null, "Triggers" + " " + schemaTag("triggers")));
719
+ const t = el("table");
720
+ t.appendChild(el("tr", null, [el("th", null, "Type"), el("th", null, "Source"), el("th", null, "Configuration"), el("th", null, "Mappings")]));
721
+ c.triggers.forEach(tr => {
722
+ const mapStr = (tr.mappings || []).map(m => `${m.from} → ${m.to}`).join("<br>") || "—";
723
+ t.appendChild(el("tr", null, [
724
+ el("td", { html: renderInline(tr.type) }),
725
+ el("td", { html: renderInline(tr.source) }),
726
+ el("td", { html: renderInline(tr.config) }),
727
+ el("td", { html: mapStr })
728
+ ]));
729
+ });
730
+ card.appendChild(t);
731
+ mount.appendChild(card);
732
+ }
733
+
734
+ if ((c.exitConditions || []).length) {
735
+ const card = el("div", { class: "card" });
736
+ card.appendChild(el("h3", null, "Case Exit Conditions"));
737
+ const t = el("table");
738
+ t.appendChild(el("tr", null, [el("th", null, "WHEN"), el("th", null, "IF"), el("th", null, "THEN"), el("th", null, "Marks Case Complete" + schemaTag("markCaseComplete")), el("th", null, "Display Name")]));
739
+ c.exitConditions.forEach(r => t.appendChild(el("tr", null, [
740
+ el("td", { html: '<code>' + escapeHtml(r.when || "—") + '</code>' }),
741
+ el("td", { html: '<code>' + escapeHtml(r.if || "—") + '</code>' }),
742
+ el("td", { html: renderInline(r.then) }),
743
+ el("td", { html: renderInline(r.marksComplete) }),
744
+ el("td", { html: renderInline(r.displayName) })
745
+ ])));
746
+ card.appendChild(t);
747
+ mount.appendChild(card);
748
+ }
749
+
750
+ if ((c.variables || []).length) {
751
+ const card = el("div", { class: "card" });
752
+ card.appendChild(el("h3", null, `Case Variables (${c.variables.length})`));
753
+ const t = el("table");
754
+ t.appendChild(el("tr", null, [el("th", null, "Variable"), el("th", null, "Type"), el("th", null, "Default"), el("th", null, "Description"), el("th", null, "Produced By"), el("th", null, "Consumed By")]));
755
+ c.variables.forEach(v => t.appendChild(el("tr", null, [
756
+ el("td", null, el("code", null, v.name || "—")),
757
+ el("td", { html: renderInline(v.type) }),
758
+ el("td", { html: renderInline(v.default) }),
759
+ el("td", { html: renderInline(v.description) }),
760
+ el("td", { html: renderInline(v.producedBy) }),
761
+ el("td", { html: renderInline((v.consumedBy || []).join(", ") || "—") })
762
+ ])));
763
+ card.appendChild(t);
764
+ mount.appendChild(card);
765
+ }
766
+ }
767
+
768
+ // ---------- filters ----------
769
+ function renderFilters() {
770
+ const mount = $("#filters");
771
+ mount.innerHTML = "";
772
+
773
+ const allPersonas = new Set();
774
+ const allTypes = new Set();
775
+ (data.stages || []).forEach(s => (s.tasks || []).forEach(t => {
776
+ if (t.persona) allPersonas.add(t.persona);
777
+ if (t.type) allTypes.add(t.type);
778
+ }));
779
+
780
+ const personaGroup = el("div", { class: "filter-group" });
781
+ personaGroup.appendChild(el("span", { class: "filter-label" }, "Persona:"));
782
+ Array.from(allPersonas).sort().forEach(p => {
783
+ const chip = el("span", { class: "filter-chip", "aria-pressed": "false", "data-persona": p }, p);
784
+ chip.addEventListener("click", () => toggleSet(state.filters.personas, p, chip));
785
+ personaGroup.appendChild(chip);
786
+ });
787
+ if (allPersonas.size === 0) personaGroup.appendChild(el("span", { class: "filter-chip", "aria-pressed": "false" }, "(none)"));
788
+
789
+ const typeGroup = el("div", { class: "filter-group" });
790
+ typeGroup.appendChild(el("span", { class: "filter-label" }, "Task type:"));
791
+ Array.from(allTypes).sort().forEach(typ => {
792
+ const chip = el("span", { class: "filter-chip", "aria-pressed": "false", "data-type": typ }, typ);
793
+ chip.addEventListener("click", () => toggleSet(state.filters.types, typ, chip));
794
+ typeGroup.appendChild(chip);
795
+ });
796
+
797
+ mount.appendChild(personaGroup);
798
+ mount.appendChild(typeGroup);
799
+ }
800
+
801
+ function toggleSet(set, val, chip) {
802
+ if (set.has(val)) { set.delete(val); chip.setAttribute("aria-pressed", "false"); }
803
+ else { set.add(val); chip.setAttribute("aria-pressed", "true"); }
804
+ applyFilters();
805
+ }
806
+
807
+ // ---------- flow diagram ----------
808
+ function renderFlowDiagram() {
809
+ const mount = $("#flow-diagram");
810
+ mount.innerHTML = "";
811
+ const stages = data.stages || [];
812
+ const triggers = (data.case && data.case.triggers) || [];
813
+ if (!stages.length) {
814
+ mount.appendChild(el("div", { class: "flow-wrap flow-wrap-empty" }, "No stages to diagram."));
815
+ return;
816
+ }
817
+
818
+ const wrap = el("div", { class: "flow-wrap" });
819
+ mount.appendChild(wrap);
820
+
821
+ // ----- build graph -----
822
+ const triggerNodes = triggers.map((t, i) => ({
823
+ id: "t-" + i, kind: "trigger",
824
+ label: (t.type === "Manual" ? "Manual" : (t.source || t.type || "Trigger")),
825
+ sub: t.type === "Manual" ? "manual" : (t.type || ""),
826
+ level: 0
827
+ }));
828
+ const stageNodes = stages.map((s, i) => ({
829
+ id: "s-" + i,
830
+ kind: s.type === "ExceptionStage" ? "exception" : "stage",
831
+ label: s.name || "(unnamed)",
832
+ sub: pluralize((s.tasks || []).length, "task") + (s.sla ? ` · SLA ${s.sla.count}${s.sla.unit}` : ""),
833
+ stageIdx: i,
834
+ level: -1,
835
+ predecessors: []
836
+ }));
837
+ const allNodes = triggerNodes.concat(stageNodes);
838
+ const byId = Object.create(null);
839
+ allNodes.forEach(n => { byId[n.id] = n; });
840
+
841
+ function findStageIdxByTaskName(taskName) {
842
+ const lower = String(taskName || "").toLowerCase();
843
+ for (let i = 0; i < stages.length; i++) {
844
+ if ((stages[i].tasks || []).some(t => (t.name || "").toLowerCase() === lower)) return i;
845
+ }
846
+ return -1;
847
+ }
848
+ function findStageIdxByName(name) {
849
+ const lower = String(name || "").toLowerCase();
850
+ return stages.findIndex(s => (s.name || "").toLowerCase() === lower);
851
+ }
852
+
853
+ // resolve predecessors from entry conditions
854
+ stageNodes.forEach((sn, i) => {
855
+ const conds = stages[i].entryConditions || [];
856
+ const preds = new Set();
857
+ conds.forEach(c => {
858
+ const when = String(c.when || "");
859
+ if (/case-entered|adhoc/i.test(when)) {
860
+ triggerNodes.forEach(t => preds.add(t.id));
861
+ }
862
+ const ms = when.match(/selected-stage-(?:completed|exited)\("([^"]+)"\)/i);
863
+ if (ms) {
864
+ const idx = findStageIdxByName(ms[1]);
865
+ if (idx >= 0 && idx !== i) preds.add("s-" + idx);
866
+ }
867
+ const mt = when.match(/selected-tasks-completed\("([^"]+)"\)/i);
868
+ if (mt) {
869
+ const idx = findStageIdxByTaskName(mt[1]);
870
+ if (idx >= 0 && idx !== i) preds.add("s-" + idx);
871
+ }
872
+ const mr = when.match(/required-stages-completed/i);
873
+ if (mr) {
874
+ stageNodes.forEach((other, oi) => {
875
+ if (oi < i && other.kind !== "exception" && (stages[oi].requiredForCompletion !== false)) {
876
+ preds.add(other.id);
877
+ }
878
+ });
879
+ }
880
+ });
881
+ if (preds.size === 0) {
882
+ if (i === 0) triggerNodes.forEach(t => preds.add(t.id));
883
+ else preds.add("s-" + (i - 1));
884
+ }
885
+ sn.predecessors = Array.from(preds);
886
+ });
887
+
888
+ // compute levels — longest path from any trigger
889
+ triggerNodes.forEach(t => { t.level = 0; });
890
+ let changed = true, iters = 0;
891
+ while (changed && iters < 100) {
892
+ changed = false; iters++;
893
+ stageNodes.forEach(sn => {
894
+ let maxPred = -1;
895
+ (sn.predecessors || []).forEach(pid => {
896
+ const p = byId[pid];
897
+ if (p && typeof p.level === "number" && p.level >= 0 && p.level > maxPred) maxPred = p.level;
898
+ });
899
+ const next = maxPred + 1;
900
+ if (next !== sn.level) { sn.level = next; changed = true; }
901
+ });
902
+ }
903
+ // any node still negative (cycle / orphan) → put at level 0
904
+ allNodes.forEach(n => { if (n.level < 0) n.level = 0; });
905
+
906
+ // group by level
907
+ const byLevel = {};
908
+ allNodes.forEach(n => { (byLevel[n.level] = byLevel[n.level] || []).push(n); });
909
+ const levelKeys = Object.keys(byLevel).map(Number).sort((a, b) => a - b);
910
+ // sort each level: stages before exceptions, original order otherwise
911
+ levelKeys.forEach(lv => {
912
+ byLevel[lv].sort((a, b) => {
913
+ const ka = a.kind === "exception" ? 2 : (a.kind === "trigger" ? 0 : 1);
914
+ const kb = b.kind === "exception" ? 2 : (b.kind === "trigger" ? 0 : 1);
915
+ if (ka !== kb) return ka - kb;
916
+ return (a.stageIdx !== undefined ? a.stageIdx : 0) - (b.stageIdx !== undefined ? b.stageIdx : 0);
917
+ });
918
+ });
919
+
920
+ // layout constants
921
+ const colW = 200, rowH = 78, nodeW = 168, nodeH = 56, padX = 24, padY = 24;
922
+ const maxLevel = levelKeys[levelKeys.length - 1] || 0;
923
+ const maxPerLevel = Math.max(1, ...levelKeys.map(k => byLevel[k].length));
924
+ const svgW = (maxLevel + 1) * colW + padX * 2 + 20;
925
+ const svgH = maxPerLevel * rowH + padY * 2 + 8;
926
+
927
+ levelKeys.forEach(lv => {
928
+ const col = byLevel[lv];
929
+ // center the column vertically
930
+ const usedH = col.length * rowH;
931
+ const offset = (maxPerLevel * rowH - usedH) / 2;
932
+ col.forEach((n, idx) => {
933
+ n.x = padX + lv * colW;
934
+ n.y = padY + offset + idx * rowH;
935
+ });
936
+ });
937
+
938
+ const SVG_NS = "http://www.w3.org/2000/svg";
939
+ const svg = document.createElementNS(SVG_NS, "svg");
940
+ svg.setAttribute("viewBox", `0 0 ${svgW} ${svgH}`);
941
+ svg.setAttribute("width", svgW);
942
+ svg.setAttribute("height", svgH);
943
+ svg.setAttribute("preserveAspectRatio", "xMidYMid meet");
944
+ svg.setAttribute("role", "img");
945
+ svg.setAttribute("aria-label", "Case flow diagram");
946
+
947
+ // defs: arrow markers
948
+ const defs = document.createElementNS(SVG_NS, "defs");
949
+ defs.innerHTML =
950
+ '<marker id="arrow" viewBox="0 0 10 10" refX="9" refY="5" markerWidth="6" markerHeight="6" orient="auto"><path d="M0,0 L10,5 L0,10 Z" fill="#9ca3af"/></marker>' +
951
+ '<marker id="arrow-ex" viewBox="0 0 10 10" refX="9" refY="5" markerWidth="6" markerHeight="6" orient="auto"><path d="M0,0 L10,5 L0,10 Z" fill="#ef4444"/></marker>';
952
+ svg.appendChild(defs);
953
+
954
+ // edges
955
+ const edgesGroup = document.createElementNS(SVG_NS, "g");
956
+ edgesGroup.setAttribute("class", "flow-edges");
957
+ stageNodes.forEach(n => {
958
+ (n.predecessors || []).forEach(pid => {
959
+ const p = byId[pid];
960
+ if (!p) return;
961
+ const x1 = p.x + nodeW;
962
+ const y1 = p.y + nodeH / 2;
963
+ const x2 = n.x;
964
+ const y2 = n.y + nodeH / 2;
965
+ const dx = Math.max(40, (x2 - x1) / 2);
966
+ const path = document.createElementNS(SVG_NS, "path");
967
+ const isExceptionEdge = n.kind === "exception";
968
+ path.setAttribute("d", `M${x1},${y1} C${x1 + dx},${y1} ${x2 - dx},${y2} ${x2},${y2}`);
969
+ path.setAttribute("fill", "none");
970
+ path.setAttribute("stroke", isExceptionEdge ? "#ef4444" : "#9ca3af");
971
+ path.setAttribute("stroke-width", "1.5");
972
+ if (isExceptionEdge) path.setAttribute("stroke-dasharray", "5 4");
973
+ path.setAttribute("marker-end", isExceptionEdge ? "url(#arrow-ex)" : "url(#arrow)");
974
+ edgesGroup.appendChild(path);
975
+ });
976
+ });
977
+ svg.appendChild(edgesGroup);
978
+
979
+ // nodes
980
+ allNodes.forEach(n => {
981
+ const g = document.createElementNS(SVG_NS, "g");
982
+ g.setAttribute("class", "flow-node-group");
983
+ if (n.stageIdx !== undefined) g.setAttribute("data-stage-jump", "stage-" + slug(n.label));
984
+
985
+ let fill = "#ffffff";
986
+ let stroke = "#cdd2d9";
987
+ if (n.kind === "trigger") { fill = "#fff1ea"; stroke = "#fa4616"; }
988
+ if (n.kind === "exception") { fill = "#fef2f2"; stroke = "#ef4444"; }
989
+
990
+ const rect = document.createElementNS(SVG_NS, "rect");
991
+ rect.setAttribute("class", "flow-node-rect");
992
+ rect.setAttribute("x", n.x);
993
+ rect.setAttribute("y", n.y);
994
+ rect.setAttribute("width", nodeW);
995
+ rect.setAttribute("height", nodeH);
996
+ rect.setAttribute("rx", 10);
997
+ rect.setAttribute("fill", fill);
998
+ rect.setAttribute("stroke", stroke);
999
+ rect.setAttribute("stroke-width", "1.5");
1000
+ g.appendChild(rect);
1001
+
1002
+ // type icon / glyph in top-left
1003
+ const glyph = document.createElementNS(SVG_NS, "text");
1004
+ glyph.setAttribute("x", n.x + 12);
1005
+ glyph.setAttribute("y", n.y + 18);
1006
+ glyph.setAttribute("font-size", "11");
1007
+ glyph.setAttribute("fill", stroke);
1008
+ glyph.setAttribute("font-weight", "600");
1009
+ glyph.setAttribute("text-transform", "uppercase");
1010
+ glyph.textContent = n.kind === "trigger" ? "TRIGGER" : (n.kind === "exception" ? "EXCEPTION" : "STAGE");
1011
+ g.appendChild(glyph);
1012
+
1013
+ // label
1014
+ const label = document.createElementNS(SVG_NS, "text");
1015
+ label.setAttribute("x", n.x + 12);
1016
+ label.setAttribute("y", n.y + 36);
1017
+ label.setAttribute("font-size", "13");
1018
+ label.setAttribute("font-weight", "600");
1019
+ label.setAttribute("fill", "#1a1f2e");
1020
+ label.textContent = n.label.length > 22 ? (n.label.slice(0, 21) + "…") : n.label;
1021
+ g.appendChild(label);
1022
+
1023
+ // sub-label
1024
+ if (n.sub) {
1025
+ const sub = document.createElementNS(SVG_NS, "text");
1026
+ sub.setAttribute("x", n.x + 12);
1027
+ sub.setAttribute("y", n.y + 50);
1028
+ sub.setAttribute("font-size", "11");
1029
+ sub.setAttribute("fill", "#6b7280");
1030
+ sub.textContent = n.sub;
1031
+ g.appendChild(sub);
1032
+ }
1033
+
1034
+ // tooltip
1035
+ const title = document.createElementNS(SVG_NS, "title");
1036
+ title.textContent = n.label + (n.sub ? " — " + n.sub : "");
1037
+ g.appendChild(title);
1038
+
1039
+ if (n.stageIdx !== undefined) {
1040
+ g.addEventListener("click", () => {
1041
+ const tgt = document.getElementById("stage-" + slug(n.label));
1042
+ if (tgt) tgt.scrollIntoView({ behavior: "smooth", block: "start" });
1043
+ });
1044
+ }
1045
+
1046
+ svg.appendChild(g);
1047
+ });
1048
+
1049
+ wrap.appendChild(svg);
1050
+
1051
+ // legend
1052
+ const legend = el("div", { class: "flow-legend" });
1053
+ legend.innerHTML =
1054
+ '<span><span class="swatch" style="background:#fff1ea;border-color:#fa4616"></span>Trigger</span>' +
1055
+ '<span><span class="swatch" style="background:#ffffff;border-color:#cdd2d9"></span>Stage</span>' +
1056
+ '<span><span class="swatch" style="background:#fef2f2;border-color:#ef4444"></span>Exception stage</span>' +
1057
+ '<span><span class="swatch" style="background:transparent;border-color:transparent;border-bottom:2px dashed #ef4444"></span>Interrupting edge</span>' +
1058
+ '<span style="color:var(--text-subtle)">· Click a stage to jump to its detail card.</span>';
1059
+ wrap.appendChild(legend);
1060
+ }
1061
+
1062
+ // ---------- stages ----------
1063
+ function renderStages() {
1064
+ const mount = $("#stages-body");
1065
+ mount.innerHTML = "";
1066
+ const stages = data.stages || [];
1067
+ $("#stage-count").textContent = `(${pluralize(stages.length, "stage")})`;
1068
+ stages.forEach((s, i) => mount.appendChild(renderStage(s, i)));
1069
+ }
1070
+
1071
+ function renderStage(stage, idx) {
1072
+ const id = "stage-" + slug(stage.name) || "stage-" + idx;
1073
+ const isException = stage.type === "ExceptionStage";
1074
+ const collapsed = state.collapsedStages.has(idx);
1075
+ const root = el("div", {
1076
+ class: "stage" + (isException ? " exception" : "") + (collapsed ? " collapsed" : ""),
1077
+ id: id,
1078
+ "data-stage-idx": idx
1079
+ });
1080
+
1081
+ const header = el("div", { class: "stage-header" });
1082
+ header.appendChild(el("div", { class: "twirl" }, "▾"));
1083
+
1084
+ const titleWrap = el("div");
1085
+ const title = el("div", { class: "stage-title" }, [
1086
+ el("span", { class: "seq" }, "Stage " + (idx + 1) + " ·"),
1087
+ document.createTextNode(stage.name || "(unnamed)"),
1088
+ el("span", { class: "stage-type" }, isException ? "Exception" : "Stage")
1089
+ ]);
1090
+ titleWrap.appendChild(title);
1091
+ const summary = el("div", { class: "stage-summary" });
1092
+ summary.appendChild(el("span", { class: "pill" }, pluralize((stage.tasks || []).length, "task")));
1093
+ if (stage.sla) summary.appendChild(el("span", { class: "pill" }, `SLA ${stage.sla.count}${stage.sla.unit}`));
1094
+ summary.appendChild(el("span", { class: "pill" }, "Required: " + (stage.requiredForCompletion ? "Yes" : "No")));
1095
+ if (stage.description) summary.appendChild(el("span", { class: "pill", style: "max-width:540px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap" }, stage.description));
1096
+ titleWrap.appendChild(summary);
1097
+ header.appendChild(titleWrap);
1098
+
1099
+ header.appendChild(el("div", { class: "stage-toggle-spacer" }));
1100
+
1101
+ header.addEventListener("click", () => {
1102
+ root.classList.toggle("collapsed");
1103
+ if (root.classList.contains("collapsed")) state.collapsedStages.add(idx);
1104
+ else state.collapsedStages.delete(idx);
1105
+ });
1106
+ root.appendChild(header);
1107
+
1108
+ const body = el("div", { class: "stage-body" });
1109
+
1110
+ if (stage.description) body.appendChild(el("p", { html: renderInline(stage.description), style: "color:var(--text-muted);margin:8px 0 12px" }));
1111
+
1112
+ if ((stage.entryConditions || []).length) {
1113
+ body.appendChild(el("h4", null, "Entry"));
1114
+ const t = el("table");
1115
+ t.appendChild(el("tr", null, [el("th", null, "WHEN"), el("th", null, "IF"), el("th", null, "Interrupting"), el("th", null, "Display Name")]));
1116
+ stage.entryConditions.forEach(c => t.appendChild(el("tr", null, [
1117
+ el("td", { html: '<code>' + escapeHtml(c.when || "—") + '</code>' }),
1118
+ el("td", { html: '<code>' + escapeHtml(c.if || "—") + '</code>' }),
1119
+ el("td", { html: renderInline(c.interrupting) }),
1120
+ el("td", { html: renderInline(c.displayName) })
1121
+ ])));
1122
+ body.appendChild(t);
1123
+ }
1124
+
1125
+ if ((stage.exitConditions || []).length) {
1126
+ body.appendChild(el("h4", null, "Exit"));
1127
+ const t = el("table");
1128
+ t.appendChild(el("tr", null, [el("th", null, "WHEN"), el("th", null, "IF"), el("th", null, "Exit Type"), el("th", null, "Marks Stage Complete" + schemaTag("markStageComplete")), el("th", null, "Display Name")]));
1129
+ stage.exitConditions.forEach(c => t.appendChild(el("tr", null, [
1130
+ el("td", { html: '<code>' + escapeHtml(c.when || "—") + '</code>' }),
1131
+ el("td", { html: '<code>' + escapeHtml(c.if || "—") + '</code>' }),
1132
+ el("td", { html: renderInline(c.exitType) }),
1133
+ el("td", { html: renderInline(c.marksComplete) }),
1134
+ el("td", { html: renderInline(c.displayName) })
1135
+ ])));
1136
+ body.appendChild(t);
1137
+ }
1138
+
1139
+ if (stage.sla) {
1140
+ body.appendChild(el("h4", null, "Stage SLA"));
1141
+ const t = el("table");
1142
+ t.appendChild(el("tr", null, [el("th", null, "SLA"), el("th", null, "Unit"), el("th", null, "At-Risk"), el("th", null, "At-Risk Action"), el("th", null, "Breach Action")]));
1143
+ t.appendChild(el("tr", null, [
1144
+ el("td", { html: renderInline(stage.sla.count) }),
1145
+ el("td", { html: renderInline(stage.sla.unit) }),
1146
+ el("td", { html: renderInline(stage.sla.atRiskPct) }),
1147
+ el("td", { html: renderInline(stage.sla.atRiskAction) }),
1148
+ el("td", { html: renderInline(stage.sla.breachAction) })
1149
+ ]));
1150
+ body.appendChild(t);
1151
+ }
1152
+
1153
+ body.appendChild(el("h4", null, "Tasks"));
1154
+ const tasks = el("div", { class: "tasks" });
1155
+ (stage.tasks || []).forEach((task, ti) => tasks.appendChild(renderTaskRow(task, idx, ti)));
1156
+ if ((stage.tasks || []).length === 0) tasks.appendChild(el("div", { style: "color:var(--text-subtle);font-style:italic" }, "No tasks defined."));
1157
+ body.appendChild(tasks);
1158
+
1159
+ root.appendChild(body);
1160
+ return root;
1161
+ }
1162
+
1163
+ function renderTaskRow(task, stageIdx, taskIdx) {
1164
+ const hasUnresolved = isUnresolved(task.name) || isUnresolved(task.persona) || isUnresolved(JSON.stringify(task.details || {}));
1165
+ const row = el("div", {
1166
+ class: "task",
1167
+ "data-type": task.type || "process",
1168
+ "data-task-idx": taskIdx,
1169
+ "data-stage-idx": stageIdx,
1170
+ "data-persona": task.persona || "",
1171
+ "data-unresolved": hasUnresolved ? "true" : "false",
1172
+ "data-search-text": [task.name, task.type, task.persona, task.description].filter(Boolean).join(" ").toLowerCase()
1173
+ });
1174
+ row.appendChild(el("div", { class: "num" }, String(taskIdx + 1)));
1175
+
1176
+ const middle = el("div");
1177
+ middle.appendChild(el("div", { class: "name", html: renderInline(task.name) }));
1178
+ const meta = el("div", { class: "meta" });
1179
+ if (task.persona) meta.appendChild(el("span", null, "👤 " + task.persona));
1180
+ if (task.required) meta.appendChild(el("span", null, "Required"));
1181
+ if (task.runOnlyOnce) meta.appendChild(el("span", null, "Run once"));
1182
+ if (task.sla) meta.appendChild(el("span", null, `SLA ${task.sla.count}${task.sla.unit}`));
1183
+ middle.appendChild(meta);
1184
+ row.appendChild(middle);
1185
+
1186
+ const badges = el("div", { class: "badges" });
1187
+ if (task.type) badges.appendChild(badge(task.type, "type-" + task.type));
1188
+ if (hasUnresolved) badges.appendChild(badge("UNRESOLVED", "unresolved"));
1189
+ row.appendChild(badges);
1190
+
1191
+ row.addEventListener("click", () => openDetail(stageIdx, taskIdx));
1192
+ return row;
1193
+ }
1194
+
1195
+ // ---------- personas & app views ----------
1196
+ function renderPersonas() {
1197
+ const mount = $("#personas-body");
1198
+ mount.innerHTML = "";
1199
+
1200
+ if ((data.personas || []).length) {
1201
+ const card = el("div", { class: "card" });
1202
+ card.appendChild(el("h3", null, "Personas"));
1203
+ const t = el("table");
1204
+ t.appendChild(el("tr", null, [el("th", null, "Persona"), el("th", null, "Stage Scope"), el("th", null, "Permissions"), el("th", null, "Description")]));
1205
+ data.personas.forEach(p => t.appendChild(el("tr", null, [
1206
+ el("td", null, el("strong", null, p.name || "—")),
1207
+ el("td", { html: renderInline(Array.isArray(p.stageScope) ? p.stageScope.join(", ") : p.stageScope) }),
1208
+ el("td", { html: renderInline((p.permissions || []).join(", ")) }),
1209
+ el("td", { html: renderInline(p.description) })
1210
+ ])));
1211
+ card.appendChild(t);
1212
+ mount.appendChild(card);
1213
+ }
1214
+
1215
+ if ((data.appViews || []).length) {
1216
+ const card = el("div", { class: "card" });
1217
+ card.appendChild(el("h3", null, "Process App Views"));
1218
+ const t = el("table");
1219
+ t.appendChild(el("tr", null, [el("th", null, "App"), el("th", null, "View"), el("th", null, "Persona"), el("th", null, "Purpose"), el("th", null, "Key Components")]));
1220
+ data.appViews.forEach(v => t.appendChild(el("tr", null, [
1221
+ el("td", { html: renderInline(v.app) }),
1222
+ el("td", { html: renderInline(v.view) }),
1223
+ el("td", { html: renderInline(v.persona) }),
1224
+ el("td", { html: renderInline(v.purpose) }),
1225
+ el("td", { html: renderInline(v.components) })
1226
+ ])));
1227
+ card.appendChild(t);
1228
+ mount.appendChild(card);
1229
+ }
1230
+
1231
+ if (!(data.personas || []).length && !(data.appViews || []).length) {
1232
+ mount.appendChild(el("div", { class: "card", style: "color:var(--text-subtle);font-style:italic" }, "No personas or app views defined."));
1233
+ }
1234
+ }
1235
+
1236
+ // ---------- integrations ----------
1237
+ function renderIntegrations() {
1238
+ const mount = $("#integrations-body");
1239
+ mount.innerHTML = "";
1240
+
1241
+ if ((data.integrations || []).length) {
1242
+ const card = el("div", { class: "card" });
1243
+ card.appendChild(el("h3", null, "Integration Service Connectors"));
1244
+ const t = el("table");
1245
+ t.appendChild(el("tr", null, [el("th", null, "Connector"), el("th", null, "System"), el("th", null, "Auth"), el("th", null, "Operations"), el("th", null, "Used By Tasks")]));
1246
+ data.integrations.forEach(intg => t.appendChild(el("tr", null, [
1247
+ el("td", null, el("strong", null, intg.connector || "—")),
1248
+ el("td", { html: renderInline(intg.system) }),
1249
+ el("td", { html: renderInline(intg.authMethod) }),
1250
+ el("td", { html: renderInline((intg.operations || []).map(o => o.name).join(", ")) }),
1251
+ el("td", { html: renderInline((intg.usedByTasks || []).join(", ")) })
1252
+ ])));
1253
+ card.appendChild(t);
1254
+ mount.appendChild(card);
1255
+
1256
+ // Per-connector operation detail
1257
+ data.integrations.forEach(intg => {
1258
+ if (!(intg.operations || []).length) return;
1259
+ const c = el("div", { class: "card" });
1260
+ c.appendChild(el("h3", null, intg.connector + " — Operations"));
1261
+ const tt = el("table");
1262
+ tt.appendChild(el("tr", null, [el("th", null, "Operation"), el("th", null, "Method"), el("th", null, "Inputs"), el("th", null, "Outputs")]));
1263
+ intg.operations.forEach(o => tt.appendChild(el("tr", null, [
1264
+ el("td", { html: renderInline(o.name) }),
1265
+ el("td", { html: renderInline(o.method) }),
1266
+ el("td", { html: '<code>' + escapeHtml(o.inputs || "—") + '</code>' }),
1267
+ el("td", { html: '<code>' + escapeHtml(o.outputs || "—") + '</code>' })
1268
+ ])));
1269
+ c.appendChild(tt);
1270
+ mount.appendChild(c);
1271
+ });
1272
+ }
1273
+
1274
+ if ((data.externalAgents || []).length) {
1275
+ const card = el("div", { class: "card" });
1276
+ card.appendChild(el("h3", null, "External Agents"));
1277
+ const t = el("table");
1278
+ t.appendChild(el("tr", null, [el("th", null, "Agent"), el("th", null, "Service Type"), el("th", null, "Endpoint"), el("th", null, "Used By Tasks")]));
1279
+ data.externalAgents.forEach(a => t.appendChild(el("tr", null, [
1280
+ el("td", null, el("strong", null, a.name || "—")),
1281
+ el("td", { html: renderInline(a.serviceType) }),
1282
+ el("td", { html: '<code>' + escapeHtml(a.endpoint || "—") + '</code>' }),
1283
+ el("td", { html: renderInline((a.usedByTasks || []).join(", ")) })
1284
+ ])));
1285
+ card.appendChild(t);
1286
+ mount.appendChild(card);
1287
+ }
1288
+
1289
+ if (!(data.integrations || []).length && !(data.externalAgents || []).length) {
1290
+ mount.appendChild(el("div", { class: "card", style: "color:var(--text-subtle);font-style:italic" }, "No integrations defined."));
1291
+ }
1292
+ }
1293
+
1294
+ // ---------- task detail panel ----------
1295
+ function openDetail(stageIdx, taskIdx) {
1296
+ const stage = (data.stages || [])[stageIdx];
1297
+ if (!stage) return;
1298
+ const task = (stage.tasks || [])[taskIdx];
1299
+ if (!task) return;
1300
+
1301
+ const body = $("#detail-body");
1302
+ body.innerHTML = "";
1303
+
1304
+ body.appendChild(el("div", { class: "crumb" }, `Stage ${stageIdx + 1} · ${stage.name || ""}`));
1305
+ body.appendChild(el("h2", { html: renderInline(task.name) }));
1306
+ const top = el("div", { class: "meta-row", style: "margin: 6px 0 16px" });
1307
+ if (task.type) top.appendChild(badge(task.type, "type-" + task.type));
1308
+ if (task.persona) top.appendChild(badge("👤 " + task.persona, "persona"));
1309
+ if (task.sla) top.appendChild(badge(`SLA ${task.sla.count}${task.sla.unit}`, "sla"));
1310
+ if (task.runOnlyOnce) top.appendChild(badge("Run once", "runonce"));
1311
+ if (task.required === false) top.appendChild(badge("Optional"));
1312
+ body.appendChild(top);
1313
+
1314
+ if (task.description) body.appendChild(el("div", { class: "description", html: renderInline(task.description) }));
1315
+
1316
+ if (task.entryCondition) {
1317
+ body.appendChild(el("h4", null, "Entry condition"));
1318
+ const t = el("table");
1319
+ t.appendChild(el("tr", null, [el("th", null, "WHEN"), el("th", null, "IF"), el("th", null, "Display Name")]));
1320
+ t.appendChild(el("tr", null, [
1321
+ el("td", { html: '<code>' + escapeHtml(task.entryCondition.when || "—") + '</code>' }),
1322
+ el("td", { html: '<code>' + escapeHtml(task.entryCondition.if || "—") + '</code>' }),
1323
+ el("td", { html: renderInline(task.entryCondition.displayName) })
1324
+ ]));
1325
+ body.appendChild(t);
1326
+ }
1327
+
1328
+ renderTaskDetail(body, task);
1329
+
1330
+ const panel = $("#detail-panel");
1331
+ panel.setAttribute("data-open", "true");
1332
+ panel.setAttribute("aria-hidden", "false");
1333
+ }
1334
+
1335
+ function renderTaskDetail(mount, task) {
1336
+ const d = task.details || {};
1337
+
1338
+ function ioTable(label, rows, withBinding) {
1339
+ if (!rows || !rows.length) return;
1340
+ mount.appendChild(el("h4", null, label));
1341
+ const t = el("table");
1342
+ const headers = withBinding === "out"
1343
+ ? [el("th", null, "Field"), el("th", null, "Type"), el("th", null, "→ Binding")]
1344
+ : withBinding === "in"
1345
+ ? [el("th", null, "Field"), el("th", null, "Type"), el("th", null, "Binding"), el("th", null, "Required")]
1346
+ : [el("th", null, "Field"), el("th", null, "Type"), el("th", null, "Binding")];
1347
+ t.appendChild(el("tr", null, headers));
1348
+ rows.forEach(r => {
1349
+ const cells = [
1350
+ el("td", { html: '<code>' + escapeHtml(r.field || r.name || "—") + '</code>' }),
1351
+ el("td", { html: renderInline(r.type) }),
1352
+ el("td", { html: renderInline(r.binding) })
1353
+ ];
1354
+ if (withBinding === "in") cells.push(el("td", { html: renderInline(r.required) }));
1355
+ t.appendChild(el("tr", null, cells));
1356
+ });
1357
+ mount.appendChild(t);
1358
+ }
1359
+
1360
+ switch (task.type) {
1361
+ case "action":
1362
+ if (d.hitlImplementation) mount.appendChild(el("div", { class: "meta-row", style: "margin:8px 0" }, [
1363
+ el("span", null, [el("span", { class: "k" }, "HITL:"), el("span", { class: "v" }, " " + d.hitlImplementation)])
1364
+ ]));
1365
+ ioTable("Input schema", d.inputs, "in");
1366
+ ioTable("Output schema", d.outputs, "out");
1367
+ if ((d.actions || []).length) {
1368
+ mount.appendChild(el("h4", null, "Actions"));
1369
+ const t = el("table");
1370
+ t.appendChild(el("tr", null, [el("th", null, "Button"), el("th", null, "Maps To"), el("th", null, "Behavior")]));
1371
+ d.actions.forEach(a => t.appendChild(el("tr", null, [
1372
+ el("td", { html: renderInline(a.button) }),
1373
+ el("td", { html: '<code>' + escapeHtml(a.mapsTo || "—") + '</code>' }),
1374
+ el("td", { html: renderInline(a.behavior) })
1375
+ ])));
1376
+ mount.appendChild(t);
1377
+ }
1378
+ break;
1379
+ case "wait-for-connector":
1380
+ case "execute-connector-activity":
1381
+ mount.appendChild(el("div", { class: "meta-row", style: "margin:8px 0 12px" }, [
1382
+ d.connector ? el("span", null, [el("span", { class: "k" }, "Connector:"), el("span", { class: "v" }, " " + d.connector)]) : null,
1383
+ d.connection ? el("span", null, [el("span", { class: "k" }, "Connection:"), el("span", { class: "v" }, " " + d.connection)]) : null,
1384
+ d.authMethod ? el("span", null, [el("span", { class: "k" }, "Auth:"), el("span", { class: "v" }, " " + d.authMethod)]) : null,
1385
+ d.endpoint ? el("span", null, [el("span", { class: "k" }, "Endpoint:"), el("span", { class: "v" }, " " + d.endpoint)]) : null,
1386
+ d.operation ? el("span", null, [el("span", { class: "k" }, "Operation:"), el("span", { class: "v" }, " " + d.operation)]) : null,
1387
+ d.trigger ? el("span", null, [el("span", { class: "k" }, "Trigger:"), el("span", { class: "v" }, " " + d.trigger)]) : null
1388
+ ].filter(Boolean)));
1389
+ ioTable("Inputs", d.inputs);
1390
+ ioTable("Outputs", d.outputs, "out");
1391
+ break;
1392
+ case "wait-for-timer":
1393
+ mount.appendChild(el("div", { class: "meta-row", style: "margin:8px 0" }, [
1394
+ d.timer ? el("span", null, [el("span", { class: "k" }, "Timer:"), el("span", { class: "v" }, " " + d.timer)]) : null,
1395
+ d.value ? el("span", null, [el("span", { class: "k" }, "Value:"), el("span", { class: "v" }, " "), el("code", null, d.value)]) : null
1396
+ ].filter(Boolean)));
1397
+ break;
1398
+ case "case-management":
1399
+ mount.appendChild(el("div", { class: "meta-row", style: "margin:8px 0" }, [
1400
+ d.childCase ? el("span", null, [el("span", { class: "k" }, "Child Case:"), el("span", { class: "v" }, " " + d.childCase)]) : null,
1401
+ d.waitForCompletion !== undefined ? el("span", null, [el("span", { class: "k" }, "Wait for completion:"), el("span", { class: "v" }, " " + (d.waitForCompletion ? "Yes" : "No"))]) : null
1402
+ ].filter(Boolean)));
1403
+ if ((d.dataIn || []).length) {
1404
+ mount.appendChild(el("h4", null, "Data passed (parent → child)"));
1405
+ const t = el("table"); t.appendChild(el("tr", null, [el("th", null, "Parent variable"), el("th", null, "Child variable")]));
1406
+ d.dataIn.forEach(r => t.appendChild(el("tr", null, [el("td", { html: renderInline(r.parent) }), el("td", { html: renderInline(r.child) })])));
1407
+ mount.appendChild(t);
1408
+ }
1409
+ if ((d.dataOut || []).length) {
1410
+ mount.appendChild(el("h4", null, "Data returned (child → parent)"));
1411
+ const t = el("table"); t.appendChild(el("tr", null, [el("th", null, "Child variable"), el("th", null, "Parent variable")]));
1412
+ d.dataOut.forEach(r => t.appendChild(el("tr", null, [el("td", { html: renderInline(r.child) }), el("td", { html: renderInline(r.parent) })])));
1413
+ mount.appendChild(t);
1414
+ }
1415
+ break;
1416
+ default:
1417
+ // process / agent / rpa / api-workflow
1418
+ ioTable("Inputs", d.inputs);
1419
+ ioTable("Outputs", d.outputs, "out");
1420
+ }
1421
+ }
1422
+
1423
+ function closeDetail() {
1424
+ const panel = $("#detail-panel");
1425
+ panel.setAttribute("data-open", "false");
1426
+ panel.setAttribute("aria-hidden", "true");
1427
+ }
1428
+
1429
+ // ---------- filtering & search ----------
1430
+ function applyFilters() {
1431
+ const personas = state.filters.personas;
1432
+ const types = state.filters.types;
1433
+ const search = (state.search || "").toLowerCase().trim();
1434
+ const unresolvedOnly = state.unresolvedOnly;
1435
+
1436
+ $$(".stage").forEach(stageEl => {
1437
+ const tasks = $$(".task", stageEl);
1438
+ let visibleTasks = 0;
1439
+ tasks.forEach(t => {
1440
+ const taskPersona = t.getAttribute("data-persona") || "";
1441
+ const taskType = t.getAttribute("data-type") || "";
1442
+ const taskUnresolved = t.getAttribute("data-unresolved") === "true";
1443
+ const taskText = t.getAttribute("data-search-text") || "";
1444
+
1445
+ const personaOk = personas.size === 0 || personas.has(taskPersona);
1446
+ const typeOk = types.size === 0 || types.has(taskType);
1447
+ const unresolvedOk = !unresolvedOnly || taskUnresolved;
1448
+ const searchOk = !search || taskText.includes(search);
1449
+
1450
+ const ok = personaOk && typeOk && unresolvedOk && searchOk;
1451
+ t.style.display = ok ? "" : "none";
1452
+ if (ok) visibleTasks++;
1453
+ });
1454
+
1455
+ // hide stage entirely if filters + search rule out all its tasks AND stage name doesn't match search
1456
+ const stageName = (stageEl.querySelector(".stage-title")?.textContent || "").toLowerCase();
1457
+ const stageMatches = !search || stageName.includes(search);
1458
+ stageEl.style.display = (visibleTasks > 0 || (stageMatches && !unresolvedOnly && personas.size === 0 && types.size === 0)) ? "" : "none";
1459
+ });
1460
+ }
1461
+
1462
+ // ---------- listeners ----------
1463
+ function attachListeners() {
1464
+ $("#search").addEventListener("input", (e) => { state.search = e.target.value; applyFilters(); });
1465
+ $("#toggle-unresolved").addEventListener("click", (e) => {
1466
+ state.unresolvedOnly = !state.unresolvedOnly;
1467
+ e.currentTarget.setAttribute("aria-pressed", String(state.unresolvedOnly));
1468
+ applyFilters();
1469
+ });
1470
+ $("#toggle-schema").addEventListener("click", (e) => {
1471
+ state.schemaOn = !state.schemaOn;
1472
+ e.currentTarget.setAttribute("aria-pressed", String(state.schemaOn));
1473
+ document.body.classList.toggle("schema-on", state.schemaOn);
1474
+ });
1475
+ $("#toggle-collapse-all").addEventListener("click", (e) => {
1476
+ state.allCollapsed = !state.allCollapsed;
1477
+ e.currentTarget.textContent = state.allCollapsed ? "Expand all" : "Collapse all";
1478
+ $$(".stage").forEach((s, i) => {
1479
+ if (state.allCollapsed) { s.classList.add("collapsed"); state.collapsedStages.add(i); }
1480
+ else { s.classList.remove("collapsed"); state.collapsedStages.delete(i); }
1481
+ });
1482
+ });
1483
+ $("#print").addEventListener("click", () => window.print());
1484
+ $("#close-detail").addEventListener("click", closeDetail);
1485
+ document.addEventListener("keydown", (e) => { if (e.key === "Escape") closeDetail(); });
1486
+
1487
+ // active TOC link on scroll
1488
+ const sections = $$("section[data-section]");
1489
+ const tocLinks = $$(".toc a[data-jump]");
1490
+ const obs = new IntersectionObserver((entries) => {
1491
+ entries.forEach(en => {
1492
+ if (en.isIntersecting) {
1493
+ const id = en.target.id;
1494
+ tocLinks.forEach(a => a.classList.toggle("active", a.getAttribute("data-jump") === id));
1495
+ }
1496
+ });
1497
+ }, { rootMargin: "-40% 0px -55% 0px", threshold: 0 });
1498
+ sections.forEach(s => obs.observe(s));
1499
+ }
1500
+
1501
+ // ---------- init ----------
1502
+ function renderAll() {
1503
+ renderTitle();
1504
+ renderBanner();
1505
+ renderTOC();
1506
+ renderCase();
1507
+ renderFlowDiagram();
1508
+ renderFilters();
1509
+ renderStages();
1510
+ renderPersonas();
1511
+ renderIntegrations();
1512
+ attachListeners();
1513
+ }
1514
+
1515
+ renderAll();
1516
+ })();
1517
+ </script>
1518
+ </body>
1519
+ </html>