agent-devkit 0.0.1

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 (4610) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +12 -0
  3. package/bin/agent.mjs +63 -0
  4. package/package.json +38 -0
  5. package/runtime/.env.example +79 -0
  6. package/runtime/AGENTS.md +119 -0
  7. package/runtime/LICENSE +21 -0
  8. package/runtime/README.md +367 -0
  9. package/runtime/agent +32 -0
  10. package/runtime/agents/README.md +78 -0
  11. package/runtime/agents/aws-architecture-analyst/AGENTS.md +30 -0
  12. package/runtime/agents/aws-architecture-analyst/README.md +19 -0
  13. package/runtime/agents/aws-architecture-analyst/agent.yaml +58 -0
  14. package/runtime/agents/aws-architecture-analyst/capabilities/_shared/runner_support.py +320 -0
  15. package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/capability.yaml +22 -0
  16. package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/decision-rules.md +57 -0
  17. package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/runner.py +9 -0
  18. package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/workflow.md +6 -0
  19. package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/capability.yaml +23 -0
  20. package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/decision-rules.md +62 -0
  21. package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/runner.py +9 -0
  22. package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/workflow.md +7 -0
  23. package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/capability.yaml +22 -0
  24. package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/decision-rules.md +56 -0
  25. package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/runner.py +9 -0
  26. package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/workflow.md +6 -0
  27. package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/capability.yaml +22 -0
  28. package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/decision-rules.md +58 -0
  29. package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/runner.py +9 -0
  30. package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/workflow.md +5 -0
  31. package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/capability.yaml +23 -0
  32. package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/decision-rules.md +58 -0
  33. package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/runner.py +9 -0
  34. package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/workflow.md +6 -0
  35. package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/capability.yaml +23 -0
  36. package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/decision-rules.md +55 -0
  37. package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/runner.py +9 -0
  38. package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/workflow.md +5 -0
  39. package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/capability.yaml +22 -0
  40. package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/decision-rules.md +55 -0
  41. package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/runner.py +9 -0
  42. package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/workflow.md +5 -0
  43. package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/capability.yaml +22 -0
  44. package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/decision-rules.md +55 -0
  45. package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/runner.py +9 -0
  46. package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/workflow.md +5 -0
  47. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/aws_repository.py +300 -0
  48. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/dependency_mapper.py +73 -0
  49. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/env.example +6 -0
  50. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/integration.yaml +13 -0
  51. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/analyze-workload-architecture.yaml +12 -0
  52. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/discover-account-inventory.yaml +10 -0
  53. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/estimate-blast-radius.yaml +12 -0
  54. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/generate-architecture-report.yaml +13 -0
  55. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/map-service-dependencies.yaml +12 -0
  56. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/review-networking.yaml +12 -0
  57. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/review-observability.yaml +12 -0
  58. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/review-resilience.yaml +12 -0
  59. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/normalizers.py +119 -0
  60. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/report_renderer.py +140 -0
  61. package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/tests/test_repository.py +72 -0
  62. package/runtime/agents/aws-architecture-analyst/knowledge/context.md +18 -0
  63. package/runtime/agents/aws-architecture-analyst/knowledge/policies.yaml +32 -0
  64. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/analyze-workload-architecture.md +28 -0
  65. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/discover-account-inventory.md +34 -0
  66. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/estimate-blast-radius.md +30 -0
  67. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/generate-architecture-report.md +27 -0
  68. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/map-service-dependencies.md +28 -0
  69. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/review-networking.md +25 -0
  70. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/review-observability.md +24 -0
  71. package/runtime/agents/aws-architecture-analyst/knowledge/prompts/review-resilience.md +29 -0
  72. package/runtime/agents/aws-architecture-analyst/knowledge/rubrics.md +70 -0
  73. package/runtime/agents/aws-architecture-analyst/knowledge/system.md +51 -0
  74. package/runtime/agents/aws-architecture-analyst/templates/architecture-report-output.md +48 -0
  75. package/runtime/agents/aws-architecture-analyst/templates/blast-radius-output.md +37 -0
  76. package/runtime/agents/aws-architecture-analyst/templates/dependency-map-output.md +28 -0
  77. package/runtime/agents/aws-architecture-analyst/templates/inventory-summary-output.md +33 -0
  78. package/runtime/agents/aws-architecture-analyst/templates/networking-review-output.md +28 -0
  79. package/runtime/agents/aws-architecture-analyst/templates/observability-review-output.md +26 -0
  80. package/runtime/agents/aws-architecture-analyst/templates/resilience-review-output.md +30 -0
  81. package/runtime/agents/aws-architecture-analyst/templates/workload-architecture-output.md +46 -0
  82. package/runtime/agents/aws-architecture-analyst/tests/test_runners.py +384 -0
  83. package/runtime/agents/aws-cloudwatch-log-analyzer/AGENTS.md +31 -0
  84. package/runtime/agents/aws-cloudwatch-log-analyzer/README.md +47 -0
  85. package/runtime/agents/aws-cloudwatch-log-analyzer/agent.yaml +53 -0
  86. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/_shared/runner_support.py +158 -0
  87. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/capability.yaml +42 -0
  88. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/decision-rules.md +8 -0
  89. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/runner.py +116 -0
  90. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/tests/test_runner.py +47 -0
  91. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/workflow.md +19 -0
  92. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/capability.yaml +39 -0
  93. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/decision-rules.md +8 -0
  94. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/runner.py +127 -0
  95. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/tests/test_runner.py +48 -0
  96. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/workflow.md +19 -0
  97. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/capability.yaml +39 -0
  98. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/decision-rules.md +8 -0
  99. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/runner.py +101 -0
  100. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/tests/test_runner.py +45 -0
  101. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/workflow.md +19 -0
  102. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/capability.yaml +38 -0
  103. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/decision-rules.md +8 -0
  104. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/runner.py +91 -0
  105. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/tests/test_runner.py +46 -0
  106. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/workflow.md +18 -0
  107. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/capability.yaml +40 -0
  108. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/decision-rules.md +8 -0
  109. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/runner.py +112 -0
  110. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/tests/test_runner.py +46 -0
  111. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/workflow.md +20 -0
  112. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/capability.yaml +37 -0
  113. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/decision-rules.md +8 -0
  114. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/runner.py +87 -0
  115. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/tests/test_runner.py +45 -0
  116. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/workflow.md +18 -0
  117. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/capability.yaml +36 -0
  118. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/decision-rules.md +8 -0
  119. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/runner.py +88 -0
  120. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/tests/test_runner.py +53 -0
  121. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/workflow.md +19 -0
  122. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/capability.yaml +53 -0
  123. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/decision-rules.md +8 -0
  124. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/runner.py +134 -0
  125. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/tests/test_runner.py +68 -0
  126. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/workflow.md +19 -0
  127. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/capability.yaml +38 -0
  128. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/decision-rules.md +8 -0
  129. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/runner.py +68 -0
  130. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/tests/test_runner.py +44 -0
  131. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/workflow.md +18 -0
  132. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/capability.yaml +39 -0
  133. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/decision-rules.md +8 -0
  134. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/runner.py +126 -0
  135. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/tests/test_runner.py +68 -0
  136. package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/workflow.md +18 -0
  137. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/README.md +15 -0
  138. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/README.md +7 -0
  139. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/README.md +20 -0
  140. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/cli.py +104 -0
  141. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/cloudwatch_repository.py +289 -0
  142. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/env.example +5 -0
  143. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/integration.yaml +28 -0
  144. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/mcp/README.md +3 -0
  145. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/describe-log-streams.yaml +20 -0
  146. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/filter-log-events.yaml +23 -0
  147. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/get-logs-insights-query-results.yaml +17 -0
  148. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/list-log-groups.yaml +19 -0
  149. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/start-logs-insights-query.yaml +22 -0
  150. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/models/README.md +3 -0
  151. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/models/log-event.schema.json +13 -0
  152. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/models/log-group.schema.json +14 -0
  153. package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/tests/test_repository.py +43 -0
  154. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/README.md +9 -0
  155. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/context.md +25 -0
  156. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/policies.yaml +49 -0
  157. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/README.md +3 -0
  158. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/analyze-service-error.md +34 -0
  159. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/correlate-azure-card-logs.md +34 -0
  160. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/detect-error-patterns.md +32 -0
  161. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/extract-log-samples.md +34 -0
  162. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/generate-incident-report.md +34 -0
  163. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/list-log-groups.md +34 -0
  164. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/list-log-streams.md +34 -0
  165. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/run-insights-query.md +36 -0
  166. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/search-log-events.md +35 -0
  167. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/trace-request.md +34 -0
  168. package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/system.md +37 -0
  169. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/README.md +3 -0
  170. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/analyze-service-error-output.md +22 -0
  171. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/correlate-azure-card-logs-output.md +20 -0
  172. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/detect-error-patterns-output.md +16 -0
  173. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/extract-log-samples-output.md +17 -0
  174. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/generate-incident-report-output.md +24 -0
  175. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/list-log-groups-output.md +19 -0
  176. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/list-log-streams-output.md +18 -0
  177. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/run-insights-query-output.md +30 -0
  178. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/search-log-events-output.md +16 -0
  179. package/runtime/agents/aws-cloudwatch-log-analyzer/templates/trace-request-output.md +17 -0
  180. package/runtime/agents/aws-cloudwatch-log-analyzer/tests/test_agentic_contracts.py +125 -0
  181. package/runtime/agents/aws-operations-operator/AGENTS.md +29 -0
  182. package/runtime/agents/aws-operations-operator/README.md +45 -0
  183. package/runtime/agents/aws-operations-operator/agent.yaml +73 -0
  184. package/runtime/agents/aws-operations-operator/capabilities/_shared/runner_support.py +260 -0
  185. package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/capability.yaml +21 -0
  186. package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/decision-rules.md +60 -0
  187. package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/runner.py +7 -0
  188. package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/workflow.md +24 -0
  189. package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/capability.yaml +21 -0
  190. package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/decision-rules.md +50 -0
  191. package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/runner.py +7 -0
  192. package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/workflow.md +19 -0
  193. package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/capability.yaml +21 -0
  194. package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/decision-rules.md +53 -0
  195. package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/runner.py +7 -0
  196. package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/workflow.md +20 -0
  197. package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/capability.yaml +21 -0
  198. package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/decision-rules.md +56 -0
  199. package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/runner.py +7 -0
  200. package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/workflow.md +22 -0
  201. package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/capability.yaml +21 -0
  202. package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/decision-rules.md +55 -0
  203. package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/runner.py +7 -0
  204. package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/workflow.md +22 -0
  205. package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/capability.yaml +21 -0
  206. package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/decision-rules.md +46 -0
  207. package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/runner.py +7 -0
  208. package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/workflow.md +17 -0
  209. package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/capability.yaml +21 -0
  210. package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/decision-rules.md +46 -0
  211. package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/runner.py +7 -0
  212. package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/workflow.md +18 -0
  213. package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/capability.yaml +21 -0
  214. package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/decision-rules.md +54 -0
  215. package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/runner.py +7 -0
  216. package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/workflow.md +18 -0
  217. package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/capability.yaml +21 -0
  218. package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/decision-rules.md +56 -0
  219. package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/runner.py +7 -0
  220. package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/workflow.md +22 -0
  221. package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/capability.yaml +21 -0
  222. package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/decision-rules.md +54 -0
  223. package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/runner.py +7 -0
  224. package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/workflow.md +20 -0
  225. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/aws_operations_repository.py +500 -0
  226. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/env.example +16 -0
  227. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/integration.yaml +17 -0
  228. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/force-ecs-deployment.yaml +10 -0
  229. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/generate-operation-report.yaml +10 -0
  230. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/invalidate-cloudfront-cache.yaml +10 -0
  231. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/invoke-lambda.yaml +10 -0
  232. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/plan-operational-action.yaml +10 -0
  233. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/purge-sqs-queue-plan.yaml +14 -0
  234. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/redrive-sqs-dlq.yaml +14 -0
  235. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/restart-ecs-service.yaml +10 -0
  236. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/scale-autoscaling-group.yaml +10 -0
  237. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/toggle-eventbridge-rule.yaml +10 -0
  238. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/report_renderer.py +83 -0
  239. package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/tests/test_repository.py +176 -0
  240. package/runtime/agents/aws-operations-operator/knowledge/context.md +25 -0
  241. package/runtime/agents/aws-operations-operator/knowledge/policies.yaml +87 -0
  242. package/runtime/agents/aws-operations-operator/knowledge/prompts/force-ecs-deployment.md +31 -0
  243. package/runtime/agents/aws-operations-operator/knowledge/prompts/generate-operation-report.md +24 -0
  244. package/runtime/agents/aws-operations-operator/knowledge/prompts/invalidate-cloudfront-cache.md +27 -0
  245. package/runtime/agents/aws-operations-operator/knowledge/prompts/invoke-lambda.md +30 -0
  246. package/runtime/agents/aws-operations-operator/knowledge/prompts/plan-operational-action.md +33 -0
  247. package/runtime/agents/aws-operations-operator/knowledge/prompts/purge-sqs-queue-plan.md +25 -0
  248. package/runtime/agents/aws-operations-operator/knowledge/prompts/redrive-sqs-dlq.md +26 -0
  249. package/runtime/agents/aws-operations-operator/knowledge/prompts/restart-ecs-service.md +26 -0
  250. package/runtime/agents/aws-operations-operator/knowledge/prompts/scale-autoscaling-group.md +30 -0
  251. package/runtime/agents/aws-operations-operator/knowledge/prompts/toggle-eventbridge-rule.md +28 -0
  252. package/runtime/agents/aws-operations-operator/knowledge/system.md +67 -0
  253. package/runtime/agents/aws-operations-operator/templates/operation-plan-output.md +31 -0
  254. package/runtime/agents/aws-operations-operator/templates/operation-report-output.md +38 -0
  255. package/runtime/agents/aws-operations-operator/templates/rollback-notes-output.md +25 -0
  256. package/runtime/agents/aws-operations-operator/tests/test_runners.py +555 -0
  257. package/runtime/agents/aws-security-governance-auditor/AGENTS.md +30 -0
  258. package/runtime/agents/aws-security-governance-auditor/README.md +18 -0
  259. package/runtime/agents/aws-security-governance-auditor/agent.yaml +64 -0
  260. package/runtime/agents/aws-security-governance-auditor/capabilities/_shared/runner_support.py +221 -0
  261. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/capability.yaml +21 -0
  262. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/decision-rules.md +50 -0
  263. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/runner.py +7 -0
  264. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/workflow.md +4 -0
  265. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/capability.yaml +21 -0
  266. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/decision-rules.md +47 -0
  267. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/runner.py +7 -0
  268. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/workflow.md +4 -0
  269. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/capability.yaml +21 -0
  270. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/decision-rules.md +47 -0
  271. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/runner.py +7 -0
  272. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/workflow.md +4 -0
  273. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/capability.yaml +21 -0
  274. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/decision-rules.md +49 -0
  275. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/runner.py +7 -0
  276. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/workflow.md +5 -0
  277. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/capability.yaml +21 -0
  278. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/decision-rules.md +47 -0
  279. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/runner.py +7 -0
  280. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/workflow.md +5 -0
  281. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/capability.yaml +21 -0
  282. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/decision-rules.md +47 -0
  283. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/runner.py +7 -0
  284. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/workflow.md +5 -0
  285. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/capability.yaml +21 -0
  286. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/decision-rules.md +47 -0
  287. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/runner.py +7 -0
  288. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/workflow.md +5 -0
  289. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/capability.yaml +21 -0
  290. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/decision-rules.md +48 -0
  291. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/runner.py +7 -0
  292. package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/workflow.md +5 -0
  293. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/capability.yaml +21 -0
  294. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/decision-rules.md +47 -0
  295. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/runner.py +7 -0
  296. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/workflow.md +5 -0
  297. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/capability.yaml +21 -0
  298. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/decision-rules.md +49 -0
  299. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/runner.py +7 -0
  300. package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/workflow.md +5 -0
  301. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/auditors.py +216 -0
  302. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/aws_security_repository.py +193 -0
  303. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/env.example +6 -0
  304. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/integration.yaml +14 -0
  305. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-cloudtrail-config.yaml +11 -0
  306. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-config-guardrails.yaml +11 -0
  307. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-encryption.yaml +11 -0
  308. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-iam-principals.yaml +11 -0
  309. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-public-exposure.yaml +11 -0
  310. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-s3-buckets.yaml +11 -0
  311. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-secrets-usage.yaml +11 -0
  312. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-security-groups.yaml +11 -0
  313. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/generate-remediation-plan.yaml +11 -0
  314. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/generate-security-report.yaml +11 -0
  315. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/report_renderer.py +64 -0
  316. package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/tests/test_repository.py +153 -0
  317. package/runtime/agents/aws-security-governance-auditor/knowledge/context.md +21 -0
  318. package/runtime/agents/aws-security-governance-auditor/knowledge/policies.yaml +42 -0
  319. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-cloudtrail-config.md +17 -0
  320. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-config-guardrails.md +15 -0
  321. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-encryption.md +15 -0
  322. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-iam-principals.md +29 -0
  323. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-public-exposure.md +21 -0
  324. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-s3-buckets.md +21 -0
  325. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-secrets-usage.md +15 -0
  326. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-security-groups.md +21 -0
  327. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/generate-remediation-plan.md +20 -0
  328. package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/generate-security-report.md +20 -0
  329. package/runtime/agents/aws-security-governance-auditor/knowledge/severity-rubric.md +38 -0
  330. package/runtime/agents/aws-security-governance-auditor/knowledge/system.md +42 -0
  331. package/runtime/agents/aws-security-governance-auditor/templates/cloudtrail-audit-output.md +24 -0
  332. package/runtime/agents/aws-security-governance-auditor/templates/config-guardrails-output.md +24 -0
  333. package/runtime/agents/aws-security-governance-auditor/templates/encryption-audit-output.md +24 -0
  334. package/runtime/agents/aws-security-governance-auditor/templates/iam-audit-output.md +24 -0
  335. package/runtime/agents/aws-security-governance-auditor/templates/public-exposure-output.md +28 -0
  336. package/runtime/agents/aws-security-governance-auditor/templates/remediation-plan-output.md +31 -0
  337. package/runtime/agents/aws-security-governance-auditor/templates/s3-buckets-output.md +28 -0
  338. package/runtime/agents/aws-security-governance-auditor/templates/secrets-usage-output.md +24 -0
  339. package/runtime/agents/aws-security-governance-auditor/templates/security-groups-output.md +28 -0
  340. package/runtime/agents/aws-security-governance-auditor/templates/security-report-output.md +41 -0
  341. package/runtime/agents/aws-security-governance-auditor/tests/test_runners.py +336 -0
  342. package/runtime/agents/azure-devops-orchestrator/AGENTS.md +36 -0
  343. package/runtime/agents/azure-devops-orchestrator/README.md +87 -0
  344. package/runtime/agents/azure-devops-orchestrator/agent.yaml +56 -0
  345. package/runtime/agents/azure-devops-orchestrator/capabilities/_shared/runner_support.py +146 -0
  346. package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/capability.yaml +38 -0
  347. package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/decision-rules.md +8 -0
  348. package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/runner.py +175 -0
  349. package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/tests/test_runner.py +56 -0
  350. package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/workflow.md +33 -0
  351. package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/capability.yaml +39 -0
  352. package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/decision-rules.md +10 -0
  353. package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/runner.py +112 -0
  354. package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/tests/test_runner.py +80 -0
  355. package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/workflow.md +7 -0
  356. package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/capability.yaml +37 -0
  357. package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/decision-rules.md +9 -0
  358. package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/runner.py +142 -0
  359. package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/tests/test_runner.py +49 -0
  360. package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/workflow.md +34 -0
  361. package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/capability.yaml +42 -0
  362. package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/decision-rules.md +9 -0
  363. package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/runner.py +294 -0
  364. package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/tests/test_runner.py +131 -0
  365. package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/workflow.md +37 -0
  366. package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/capability.yaml +37 -0
  367. package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/decision-rules.md +7 -0
  368. package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/runner.py +122 -0
  369. package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/tests/test_runner.py +56 -0
  370. package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/workflow.md +23 -0
  371. package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/capability.yaml +37 -0
  372. package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/decision-rules.md +9 -0
  373. package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/runner.py +150 -0
  374. package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/tests/test_runner.py +50 -0
  375. package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/workflow.md +32 -0
  376. package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/capability.yaml +36 -0
  377. package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/decision-rules.md +7 -0
  378. package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/runner.py +184 -0
  379. package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/tests/test_runner.py +53 -0
  380. package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/workflow.md +27 -0
  381. package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/capability.yaml +35 -0
  382. package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/decision-rules.md +7 -0
  383. package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/runner.py +186 -0
  384. package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/tests/test_runner.py +90 -0
  385. package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/workflow.md +37 -0
  386. package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/capability.yaml +37 -0
  387. package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/decision-rules.md +8 -0
  388. package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/runner.py +143 -0
  389. package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/tests/test_runner.py +49 -0
  390. package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/workflow.md +33 -0
  391. package/runtime/agents/azure-devops-orchestrator/infra/README.md +22 -0
  392. package/runtime/agents/azure-devops-orchestrator/infra/integrations/README.md +13 -0
  393. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/README.md +63 -0
  394. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/azure_repository.py +539 -0
  395. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/cli.py +116 -0
  396. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/env.example +6 -0
  397. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/integration.yaml +39 -0
  398. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/mcp/README.md +7 -0
  399. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/add-comment.yaml +34 -0
  400. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/attach-file.yaml +38 -0
  401. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/find-users.yaml +31 -0
  402. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/get-work-item-comments.yaml +33 -0
  403. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/get-work-item.yaml +43 -0
  404. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/list-work-items.yaml +39 -0
  405. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/update-work-item.yaml +38 -0
  406. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/README.md +6 -0
  407. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/comment-list.schema.json +15 -0
  408. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/comment.schema.json +14 -0
  409. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/identity.schema.json +12 -0
  410. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/work-item-list.schema.json +15 -0
  411. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/work-item.schema.json +30 -0
  412. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/write-result.schema.json +26 -0
  413. package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/tests/test_repository.py +120 -0
  414. package/runtime/agents/azure-devops-orchestrator/knowledge/README.md +22 -0
  415. package/runtime/agents/azure-devops-orchestrator/knowledge/context.md +28 -0
  416. package/runtime/agents/azure-devops-orchestrator/knowledge/policies.yaml +57 -0
  417. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/README.md +7 -0
  418. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/assign-card.md +34 -0
  419. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/attach-file.md +28 -0
  420. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/comment-card.md +35 -0
  421. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/generate-cards-report.md +32 -0
  422. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/list-cards.md +31 -0
  423. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/move-card.md +35 -0
  424. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/prepare-card-analysis.md +31 -0
  425. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/read-card.md +32 -0
  426. package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/update-card-tags.md +30 -0
  427. package/runtime/agents/azure-devops-orchestrator/knowledge/system.md +66 -0
  428. package/runtime/agents/azure-devops-orchestrator/templates/README.md +8 -0
  429. package/runtime/agents/azure-devops-orchestrator/templates/assign-card-output.md +21 -0
  430. package/runtime/agents/azure-devops-orchestrator/templates/attach-file-output.md +24 -0
  431. package/runtime/agents/azure-devops-orchestrator/templates/comment-card-output.md +21 -0
  432. package/runtime/agents/azure-devops-orchestrator/templates/generate-cards-report-output.md +38 -0
  433. package/runtime/agents/azure-devops-orchestrator/templates/list-cards-output.md +23 -0
  434. package/runtime/agents/azure-devops-orchestrator/templates/move-card-output.md +23 -0
  435. package/runtime/agents/azure-devops-orchestrator/templates/prepare-card-analysis-output.md +27 -0
  436. package/runtime/agents/azure-devops-orchestrator/templates/read-card-output.md +34 -0
  437. package/runtime/agents/azure-devops-orchestrator/templates/update-card-tags-output.md +22 -0
  438. package/runtime/agents/azure-devops-orchestrator/tests/test_agentic_contracts.py +176 -0
  439. package/runtime/agents/bpo-analyser/AGENTS.md +28 -0
  440. package/runtime/agents/bpo-analyser/README.md +63 -0
  441. package/runtime/agents/bpo-analyser/agent.yaml +64 -0
  442. package/runtime/agents/bpo-analyser/capabilities/_shared/runner_support.py +195 -0
  443. package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/capability.yaml +23 -0
  444. package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/decision-rules.md +10 -0
  445. package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/runner.py +81 -0
  446. package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/workflow.md +6 -0
  447. package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/capability.yaml +23 -0
  448. package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/decision-rules.md +7 -0
  449. package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/runner.py +91 -0
  450. package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/workflow.md +7 -0
  451. package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/capability.yaml +22 -0
  452. package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/decision-rules.md +7 -0
  453. package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/runner.py +69 -0
  454. package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/workflow.md +6 -0
  455. package/runtime/agents/bpo-analyser/capabilities/consult-proposal/capability.yaml +22 -0
  456. package/runtime/agents/bpo-analyser/capabilities/consult-proposal/decision-rules.md +6 -0
  457. package/runtime/agents/bpo-analyser/capabilities/consult-proposal/runner.py +53 -0
  458. package/runtime/agents/bpo-analyser/capabilities/consult-proposal/workflow.md +6 -0
  459. package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/capability.yaml +23 -0
  460. package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/decision-rules.md +8 -0
  461. package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/runner.py +64 -0
  462. package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/workflow.md +6 -0
  463. package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/capability.yaml +22 -0
  464. package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/decision-rules.md +5 -0
  465. package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/runner.py +62 -0
  466. package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/workflow.md +6 -0
  467. package/runtime/agents/bpo-analyser/capabilities/test-connection/capability.yaml +22 -0
  468. package/runtime/agents/bpo-analyser/capabilities/test-connection/decision-rules.md +5 -0
  469. package/runtime/agents/bpo-analyser/capabilities/test-connection/runner.py +62 -0
  470. package/runtime/agents/bpo-analyser/capabilities/test-connection/workflow.md +6 -0
  471. package/runtime/agents/bpo-analyser/infra/integrations/bpo/README.md +29 -0
  472. package/runtime/agents/bpo-analyser/infra/integrations/bpo/bpo_repository.py +858 -0
  473. package/runtime/agents/bpo-analyser/infra/integrations/bpo/env.example +16 -0
  474. package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/analyze-cpf-proposals.yaml +5 -0
  475. package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/analyze-proposal.yaml +6 -0
  476. package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/consult-attached-documents.yaml +5 -0
  477. package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/consult-proposal.yaml +5 -0
  478. package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/find-latest-proposal-by-cpf.yaml +5 -0
  479. package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/list-proposals-by-cpf.yaml +5 -0
  480. package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/test-connection.yaml +4 -0
  481. package/runtime/agents/bpo-analyser/infra/integrations/bpo/tests/test_repository.py +345 -0
  482. package/runtime/agents/bpo-analyser/knowledge/README.md +14 -0
  483. package/runtime/agents/bpo-analyser/knowledge/context.md +15 -0
  484. package/runtime/agents/bpo-analyser/knowledge/domain-glossary.md +53 -0
  485. package/runtime/agents/bpo-analyser/knowledge/policies.yaml +44 -0
  486. package/runtime/agents/bpo-analyser/knowledge/prompts/analyze-cpf-proposals.md +40 -0
  487. package/runtime/agents/bpo-analyser/knowledge/prompts/analyze-proposal.md +38 -0
  488. package/runtime/agents/bpo-analyser/knowledge/prompts/consult-attached-documents.md +39 -0
  489. package/runtime/agents/bpo-analyser/knowledge/prompts/consult-proposal.md +37 -0
  490. package/runtime/agents/bpo-analyser/knowledge/prompts/find-latest-proposal-by-cpf.md +37 -0
  491. package/runtime/agents/bpo-analyser/knowledge/prompts/list-proposals-by-cpf.md +37 -0
  492. package/runtime/agents/bpo-analyser/knowledge/prompts/test-connection.md +35 -0
  493. package/runtime/agents/bpo-analyser/knowledge/system.md +58 -0
  494. package/runtime/agents/bpo-analyser/templates/README.md +4 -0
  495. package/runtime/agents/bpo-analyser/templates/analyze-cpf-proposals-output.md +36 -0
  496. package/runtime/agents/bpo-analyser/templates/analyze-proposal-output.md +35 -0
  497. package/runtime/agents/bpo-analyser/templates/consult-attached-documents-output.md +27 -0
  498. package/runtime/agents/bpo-analyser/templates/consult-proposal-output.md +33 -0
  499. package/runtime/agents/bpo-analyser/templates/find-latest-proposal-by-cpf-output.md +31 -0
  500. package/runtime/agents/bpo-analyser/templates/list-proposals-by-cpf-output.md +21 -0
  501. package/runtime/agents/bpo-analyser/templates/test-connection-output.md +29 -0
  502. package/runtime/agents/bpo-analyser/tests/test_agentic_contracts.py +176 -0
  503. package/runtime/agents/bpo-analyser/tests/test_runners.py +257 -0
  504. package/runtime/agents/data-scientist-analyst/AGENTS.md +10 -0
  505. package/runtime/agents/data-scientist-analyst/README.md +137 -0
  506. package/runtime/agents/data-scientist-analyst/agent.yaml +104 -0
  507. package/runtime/agents/data-scientist-analyst/capabilities/_shared/runner_support.py +439 -0
  508. package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/capability.yaml +23 -0
  509. package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/decision-rules.md +8 -0
  510. package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/runner.py +13 -0
  511. package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/workflow.md +6 -0
  512. package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/capability.yaml +23 -0
  513. package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/decision-rules.md +8 -0
  514. package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/runner.py +13 -0
  515. package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/workflow.md +6 -0
  516. package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/capability.yaml +23 -0
  517. package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/decision-rules.md +8 -0
  518. package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/runner.py +13 -0
  519. package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/workflow.md +5 -0
  520. package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/capability.yaml +23 -0
  521. package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/decision-rules.md +8 -0
  522. package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/runner.py +13 -0
  523. package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/workflow.md +6 -0
  524. package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/capability.yaml +23 -0
  525. package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/decision-rules.md +8 -0
  526. package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/runner.py +13 -0
  527. package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/workflow.md +6 -0
  528. package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/capability.yaml +23 -0
  529. package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/decision-rules.md +8 -0
  530. package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/runner.py +13 -0
  531. package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/workflow.md +6 -0
  532. package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/capability.yaml +22 -0
  533. package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/decision-rules.md +8 -0
  534. package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/runner.py +13 -0
  535. package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/workflow.md +6 -0
  536. package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/capability.yaml +23 -0
  537. package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/decision-rules.md +8 -0
  538. package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/runner.py +13 -0
  539. package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/workflow.md +6 -0
  540. package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/capability.yaml +22 -0
  541. package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/decision-rules.md +8 -0
  542. package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/runner.py +13 -0
  543. package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/workflow.md +6 -0
  544. package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/capability.yaml +23 -0
  545. package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/decision-rules.md +8 -0
  546. package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/runner.py +13 -0
  547. package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/workflow.md +6 -0
  548. package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/capability.yaml +23 -0
  549. package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/decision-rules.md +8 -0
  550. package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/runner.py +13 -0
  551. package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/workflow.md +6 -0
  552. package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/capability.yaml +23 -0
  553. package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/decision-rules.md +8 -0
  554. package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/runner.py +13 -0
  555. package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/workflow.md +5 -0
  556. package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/capability.yaml +23 -0
  557. package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/decision-rules.md +8 -0
  558. package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/runner.py +13 -0
  559. package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/workflow.md +6 -0
  560. package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/capability.yaml +23 -0
  561. package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/decision-rules.md +8 -0
  562. package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/runner.py +13 -0
  563. package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/workflow.md +6 -0
  564. package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/capability.yaml +23 -0
  565. package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/decision-rules.md +8 -0
  566. package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/runner.py +13 -0
  567. package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/workflow.md +6 -0
  568. package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/capability.yaml +23 -0
  569. package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/decision-rules.md +8 -0
  570. package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/runner.py +13 -0
  571. package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/workflow.md +6 -0
  572. package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/capability.yaml +23 -0
  573. package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/decision-rules.md +8 -0
  574. package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/runner.py +13 -0
  575. package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/workflow.md +5 -0
  576. package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/capability.yaml +23 -0
  577. package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/decision-rules.md +8 -0
  578. package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/runner.py +13 -0
  579. package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/workflow.md +5 -0
  580. package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/capability.yaml +23 -0
  581. package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/decision-rules.md +8 -0
  582. package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/runner.py +13 -0
  583. package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/workflow.md +5 -0
  584. package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/capability.yaml +23 -0
  585. package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/decision-rules.md +8 -0
  586. package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/runner.py +13 -0
  587. package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/workflow.md +5 -0
  588. package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/capability.yaml +23 -0
  589. package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/decision-rules.md +8 -0
  590. package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/runner.py +13 -0
  591. package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/workflow.md +6 -0
  592. package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/capability.yaml +23 -0
  593. package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/decision-rules.md +8 -0
  594. package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/runner.py +13 -0
  595. package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/workflow.md +6 -0
  596. package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/capability.yaml +23 -0
  597. package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/decision-rules.md +8 -0
  598. package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/runner.py +13 -0
  599. package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/workflow.md +6 -0
  600. package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/capability.yaml +23 -0
  601. package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/decision-rules.md +8 -0
  602. package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/runner.py +13 -0
  603. package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/workflow.md +5 -0
  604. package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/capability.yaml +23 -0
  605. package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/decision-rules.md +8 -0
  606. package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/runner.py +13 -0
  607. package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/workflow.md +6 -0
  608. package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/capability.yaml +23 -0
  609. package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/decision-rules.md +8 -0
  610. package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/runner.py +13 -0
  611. package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/workflow.md +6 -0
  612. package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/capability.yaml +23 -0
  613. package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/decision-rules.md +8 -0
  614. package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/runner.py +13 -0
  615. package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/workflow.md +6 -0
  616. package/runtime/agents/data-scientist-analyst/capabilities/segment-data/capability.yaml +23 -0
  617. package/runtime/agents/data-scientist-analyst/capabilities/segment-data/decision-rules.md +8 -0
  618. package/runtime/agents/data-scientist-analyst/capabilities/segment-data/runner.py +13 -0
  619. package/runtime/agents/data-scientist-analyst/capabilities/segment-data/workflow.md +6 -0
  620. package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/capability.yaml +23 -0
  621. package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/decision-rules.md +8 -0
  622. package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/runner.py +13 -0
  623. package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/workflow.md +6 -0
  624. package/runtime/agents/data-scientist-analyst/infra/integrations/agent-bridge/methods/analyze-sql-source.yaml +4 -0
  625. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/artifacts.py +15 -0
  626. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/data_repository.py +1226 -0
  627. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/dataset_controls.py +46 -0
  628. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/dataset_io.py +150 -0
  629. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/dataset_models.py +22 -0
  630. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/analyze-cohorts.yaml +4 -0
  631. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/analyze-correlation.yaml +4 -0
  632. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/analyze-time-series.yaml +4 -0
  633. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/baseline-predictive-model.yaml +4 -0
  634. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/calculate-confidence-intervals.yaml +4 -0
  635. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/calculate-sample-size.yaml +4 -0
  636. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/compare-periods.yaml +4 -0
  637. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-anomalies.yaml +4 -0
  638. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-data-leakage.yaml +4 -0
  639. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-outliers.yaml +4 -0
  640. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-sensitive-data.yaml +4 -0
  641. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/evaluate-model.yaml +4 -0
  642. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/explain-model-results.yaml +4 -0
  643. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/explain-statistical-result.yaml +4 -0
  644. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/forecast-series.yaml +4 -0
  645. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/generate-data-report.yaml +4 -0
  646. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/generate-reconciliation-report.yaml +4 -0
  647. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/ingest-dataset.yaml +4 -0
  648. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/inspect-dataset-schema.yaml +4 -0
  649. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/measure-effect-size.yaml +4 -0
  650. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/monitor-model-drift.yaml +4 -0
  651. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/prepare-modeling-dataset.yaml +4 -0
  652. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/profile-dataset.yaml +4 -0
  653. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/reconcile-spreadsheets.yaml +4 -0
  654. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/run-data-pipeline.yaml +27 -0
  655. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/run-exploratory-analysis.yaml +4 -0
  656. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/segment-data.yaml +4 -0
  657. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/test-hypothesis.yaml +4 -0
  658. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/modeling_tools.py +219 -0
  659. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/privacy.py +124 -0
  660. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/profiling.py +267 -0
  661. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/reconciliation_tools.py +68 -0
  662. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/reporting.py +94 -0
  663. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/sql_result.py +100 -0
  664. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/statistics_tools.py +247 -0
  665. package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/time_series_tools.py +195 -0
  666. package/runtime/agents/data-scientist-analyst/knowledge/analysis-methods.md +30 -0
  667. package/runtime/agents/data-scientist-analyst/knowledge/context.md +16 -0
  668. package/runtime/agents/data-scientist-analyst/knowledge/contracts/analyze-sql-source.schema.json +14 -0
  669. package/runtime/agents/data-scientist-analyst/knowledge/contracts/evaluate-model.schema.json +15 -0
  670. package/runtime/agents/data-scientist-analyst/knowledge/contracts/profile-dataset.schema.json +13 -0
  671. package/runtime/agents/data-scientist-analyst/knowledge/contracts/run-data-pipeline.schema.json +14 -0
  672. package/runtime/agents/data-scientist-analyst/knowledge/data-policies.md +8 -0
  673. package/runtime/agents/data-scientist-analyst/knowledge/health-checklist.md +34 -0
  674. package/runtime/agents/data-scientist-analyst/knowledge/operational-runbook.md +47 -0
  675. package/runtime/agents/data-scientist-analyst/knowledge/policies.yaml +77 -0
  676. package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-cohorts.md +33 -0
  677. package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-correlation.md +33 -0
  678. package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-sql-source.md +44 -0
  679. package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-time-series.md +36 -0
  680. package/runtime/agents/data-scientist-analyst/knowledge/prompts/baseline-predictive-model.md +34 -0
  681. package/runtime/agents/data-scientist-analyst/knowledge/prompts/calculate-confidence-intervals.md +34 -0
  682. package/runtime/agents/data-scientist-analyst/knowledge/prompts/calculate-sample-size.md +33 -0
  683. package/runtime/agents/data-scientist-analyst/knowledge/prompts/compare-periods.md +34 -0
  684. package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-anomalies.md +33 -0
  685. package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-data-leakage.md +33 -0
  686. package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-outliers.md +37 -0
  687. package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-sensitive-data.md +38 -0
  688. package/runtime/agents/data-scientist-analyst/knowledge/prompts/evaluate-model.md +34 -0
  689. package/runtime/agents/data-scientist-analyst/knowledge/prompts/explain-model-results.md +33 -0
  690. package/runtime/agents/data-scientist-analyst/knowledge/prompts/explain-statistical-result.md +36 -0
  691. package/runtime/agents/data-scientist-analyst/knowledge/prompts/forecast-series.md +34 -0
  692. package/runtime/agents/data-scientist-analyst/knowledge/prompts/generate-data-report.md +36 -0
  693. package/runtime/agents/data-scientist-analyst/knowledge/prompts/generate-reconciliation-report.md +35 -0
  694. package/runtime/agents/data-scientist-analyst/knowledge/prompts/ingest-dataset.md +35 -0
  695. package/runtime/agents/data-scientist-analyst/knowledge/prompts/inspect-dataset-schema.md +36 -0
  696. package/runtime/agents/data-scientist-analyst/knowledge/prompts/measure-effect-size.md +34 -0
  697. package/runtime/agents/data-scientist-analyst/knowledge/prompts/monitor-model-drift.md +33 -0
  698. package/runtime/agents/data-scientist-analyst/knowledge/prompts/prepare-modeling-dataset.md +35 -0
  699. package/runtime/agents/data-scientist-analyst/knowledge/prompts/profile-dataset.md +40 -0
  700. package/runtime/agents/data-scientist-analyst/knowledge/prompts/reconcile-spreadsheets.md +40 -0
  701. package/runtime/agents/data-scientist-analyst/knowledge/prompts/run-data-pipeline.md +34 -0
  702. package/runtime/agents/data-scientist-analyst/knowledge/prompts/run-exploratory-analysis.md +34 -0
  703. package/runtime/agents/data-scientist-analyst/knowledge/prompts/segment-data.md +33 -0
  704. package/runtime/agents/data-scientist-analyst/knowledge/prompts/test-hypothesis.md +36 -0
  705. package/runtime/agents/data-scientist-analyst/knowledge/system.md +54 -0
  706. package/runtime/agents/data-scientist-analyst/templates/data-report.md +53 -0
  707. package/runtime/agents/data-scientist-analyst/templates/reconciliation-report.md +41 -0
  708. package/runtime/agents/data-scientist-analyst/tests/test_runners.py +1480 -0
  709. package/runtime/agents/database-change-operator/AGENTS.md +29 -0
  710. package/runtime/agents/database-change-operator/README.md +36 -0
  711. package/runtime/agents/database-change-operator/agent.yaml +57 -0
  712. package/runtime/agents/database-change-operator/capabilities/_shared/runner_support.py +115 -0
  713. package/runtime/agents/database-change-operator/capabilities/apply-migration/capability.yaml +23 -0
  714. package/runtime/agents/database-change-operator/capabilities/apply-migration/decision-rules.md +8 -0
  715. package/runtime/agents/database-change-operator/capabilities/apply-migration/runner.py +52 -0
  716. package/runtime/agents/database-change-operator/capabilities/apply-migration/workflow.md +8 -0
  717. package/runtime/agents/database-change-operator/capabilities/migration-report/capability.yaml +22 -0
  718. package/runtime/agents/database-change-operator/capabilities/migration-report/decision-rules.md +5 -0
  719. package/runtime/agents/database-change-operator/capabilities/migration-report/runner.py +41 -0
  720. package/runtime/agents/database-change-operator/capabilities/migration-report/workflow.md +5 -0
  721. package/runtime/agents/database-change-operator/capabilities/plan-migration/capability.yaml +23 -0
  722. package/runtime/agents/database-change-operator/capabilities/plan-migration/decision-rules.md +6 -0
  723. package/runtime/agents/database-change-operator/capabilities/plan-migration/runner.py +36 -0
  724. package/runtime/agents/database-change-operator/capabilities/plan-migration/workflow.md +8 -0
  725. package/runtime/agents/database-change-operator/capabilities/rollback-migration/capability.yaml +23 -0
  726. package/runtime/agents/database-change-operator/capabilities/rollback-migration/decision-rules.md +9 -0
  727. package/runtime/agents/database-change-operator/capabilities/rollback-migration/runner.py +50 -0
  728. package/runtime/agents/database-change-operator/capabilities/rollback-migration/workflow.md +7 -0
  729. package/runtime/agents/database-change-operator/capabilities/run-write-script/capability.yaml +23 -0
  730. package/runtime/agents/database-change-operator/capabilities/run-write-script/decision-rules.md +9 -0
  731. package/runtime/agents/database-change-operator/capabilities/run-write-script/runner.py +54 -0
  732. package/runtime/agents/database-change-operator/capabilities/run-write-script/workflow.md +7 -0
  733. package/runtime/agents/database-change-operator/capabilities/test-write-permissions/capability.yaml +22 -0
  734. package/runtime/agents/database-change-operator/capabilities/test-write-permissions/decision-rules.md +8 -0
  735. package/runtime/agents/database-change-operator/capabilities/test-write-permissions/runner.py +51 -0
  736. package/runtime/agents/database-change-operator/capabilities/test-write-permissions/workflow.md +6 -0
  737. package/runtime/agents/database-change-operator/capabilities/update-records/capability.yaml +23 -0
  738. package/runtime/agents/database-change-operator/capabilities/update-records/decision-rules.md +9 -0
  739. package/runtime/agents/database-change-operator/capabilities/update-records/runner.py +68 -0
  740. package/runtime/agents/database-change-operator/capabilities/update-records/workflow.md +7 -0
  741. package/runtime/agents/database-change-operator/capabilities/upsert-records/capability.yaml +23 -0
  742. package/runtime/agents/database-change-operator/capabilities/upsert-records/decision-rules.md +9 -0
  743. package/runtime/agents/database-change-operator/capabilities/upsert-records/runner.py +63 -0
  744. package/runtime/agents/database-change-operator/capabilities/upsert-records/workflow.md +7 -0
  745. package/runtime/agents/database-change-operator/infra/README.md +3 -0
  746. package/runtime/agents/database-change-operator/infra/integrations/postgres/README.md +6 -0
  747. package/runtime/agents/database-change-operator/infra/integrations/postgres/cli.py +97 -0
  748. package/runtime/agents/database-change-operator/infra/integrations/postgres/database_change_repository.py +581 -0
  749. package/runtime/agents/database-change-operator/infra/integrations/postgres/env.example +3 -0
  750. package/runtime/agents/database-change-operator/infra/integrations/postgres/integration.yaml +30 -0
  751. package/runtime/agents/database-change-operator/infra/integrations/postgres/mcp/README.md +3 -0
  752. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/apply-migration.yaml +8 -0
  753. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/migration-report.yaml +7 -0
  754. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/plan-migration.yaml +8 -0
  755. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/rollback-migration.yaml +8 -0
  756. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/run-write-script.yaml +8 -0
  757. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/test-write-permissions.yaml +7 -0
  758. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/update-records.yaml +8 -0
  759. package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/upsert-records.yaml +8 -0
  760. package/runtime/agents/database-change-operator/infra/integrations/postgres/models/README.md +3 -0
  761. package/runtime/agents/database-change-operator/infra/integrations/postgres/tests/test_repository.py +116 -0
  762. package/runtime/agents/database-change-operator/knowledge/README.md +13 -0
  763. package/runtime/agents/database-change-operator/knowledge/context.md +9 -0
  764. package/runtime/agents/database-change-operator/knowledge/policies.yaml +44 -0
  765. package/runtime/agents/database-change-operator/knowledge/prompts/README.md +7 -0
  766. package/runtime/agents/database-change-operator/knowledge/prompts/apply-migration.md +24 -0
  767. package/runtime/agents/database-change-operator/knowledge/prompts/migration-report.md +13 -0
  768. package/runtime/agents/database-change-operator/knowledge/prompts/plan-migration.md +22 -0
  769. package/runtime/agents/database-change-operator/knowledge/prompts/rollback-migration.md +21 -0
  770. package/runtime/agents/database-change-operator/knowledge/prompts/run-write-script.md +23 -0
  771. package/runtime/agents/database-change-operator/knowledge/prompts/test-write-permissions.md +20 -0
  772. package/runtime/agents/database-change-operator/knowledge/prompts/update-records.md +24 -0
  773. package/runtime/agents/database-change-operator/knowledge/prompts/upsert-records.md +23 -0
  774. package/runtime/agents/database-change-operator/knowledge/system.md +47 -0
  775. package/runtime/agents/database-change-operator/templates/README.md +8 -0
  776. package/runtime/agents/database-change-operator/templates/apply-migration-output.md +31 -0
  777. package/runtime/agents/database-change-operator/templates/migration-report-output.md +14 -0
  778. package/runtime/agents/database-change-operator/templates/plan-migration-output.md +21 -0
  779. package/runtime/agents/database-change-operator/templates/rollback-migration-output.md +30 -0
  780. package/runtime/agents/database-change-operator/templates/run-write-script-output.md +29 -0
  781. package/runtime/agents/database-change-operator/templates/test-write-permissions-output.md +18 -0
  782. package/runtime/agents/database-change-operator/templates/update-records-output.md +31 -0
  783. package/runtime/agents/database-change-operator/templates/upsert-records-output.md +31 -0
  784. package/runtime/agents/database-change-operator/tests/test_agentic_contracts.py +48 -0
  785. package/runtime/agents/database-change-operator/tests/test_runners.py +161 -0
  786. package/runtime/agents/drawio-diagram-builder/AGENTS.md +35 -0
  787. package/runtime/agents/drawio-diagram-builder/README.md +53 -0
  788. package/runtime/agents/drawio-diagram-builder/agent.yaml +60 -0
  789. package/runtime/agents/drawio-diagram-builder/capabilities/_shared/runner_support.py +496 -0
  790. package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/capability.yaml +20 -0
  791. package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/decision-rules.md +8 -0
  792. package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/runner.py +9 -0
  793. package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/workflow.md +28 -0
  794. package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/capability.yaml +21 -0
  795. package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/decision-rules.md +8 -0
  796. package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/runner.py +9 -0
  797. package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/workflow.md +21 -0
  798. package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/capability.yaml +20 -0
  799. package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/decision-rules.md +8 -0
  800. package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/runner.py +9 -0
  801. package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/workflow.md +27 -0
  802. package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/capability.yaml +20 -0
  803. package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/decision-rules.md +8 -0
  804. package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/runner.py +9 -0
  805. package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/workflow.md +24 -0
  806. package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/capability.yaml +19 -0
  807. package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/decision-rules.md +8 -0
  808. package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/runner.py +9 -0
  809. package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/workflow.md +22 -0
  810. package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/capability.yaml +20 -0
  811. package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/decision-rules.md +8 -0
  812. package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/runner.py +9 -0
  813. package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/workflow.md +20 -0
  814. package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/capability.yaml +20 -0
  815. package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/decision-rules.md +8 -0
  816. package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/runner.py +9 -0
  817. package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/workflow.md +21 -0
  818. package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/capability.yaml +20 -0
  819. package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/decision-rules.md +8 -0
  820. package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/runner.py +9 -0
  821. package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/workflow.md +23 -0
  822. package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/capability.yaml +20 -0
  823. package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/decision-rules.md +8 -0
  824. package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/runner.py +9 -0
  825. package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/workflow.md +20 -0
  826. package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/capability.yaml +20 -0
  827. package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/decision-rules.md +8 -0
  828. package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/runner.py +9 -0
  829. package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/workflow.md +21 -0
  830. package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/capability.yaml +20 -0
  831. package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/decision-rules.md +8 -0
  832. package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/runner.py +9 -0
  833. package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/workflow.md +22 -0
  834. package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/capability.yaml +20 -0
  835. package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/decision-rules.md +8 -0
  836. package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/runner.py +9 -0
  837. package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/workflow.md +28 -0
  838. package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/drawio_renderer.py +498 -0
  839. package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/layout_engine.py +17 -0
  840. package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/source_reader.py +212 -0
  841. package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/spec_builder.py +282 -0
  842. package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/validators.py +203 -0
  843. package/runtime/agents/drawio-diagram-builder/knowledge/context.md +32 -0
  844. package/runtime/agents/drawio-diagram-builder/knowledge/diagram-taxonomy.yaml +57 -0
  845. package/runtime/agents/drawio-diagram-builder/knowledge/policies.yaml +68 -0
  846. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/analyze-diagram-context.md +32 -0
  847. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/conduct-diagram-interview.md +23 -0
  848. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/execute-diagram-delivery.md +27 -0
  849. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-architecture-diagram.md +23 -0
  850. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-drawio-diagram.md +23 -0
  851. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-erd-diagram.md +22 -0
  852. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-flow-diagram.md +23 -0
  853. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/ingest-diagram-sources.md +24 -0
  854. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/plan-diagram.md +22 -0
  855. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/read-azure-card-context.md +21 -0
  856. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/refine-drawio-diagram.md +25 -0
  857. package/runtime/agents/drawio-diagram-builder/knowledge/prompts/review-drawio-diagram.md +30 -0
  858. package/runtime/agents/drawio-diagram-builder/knowledge/system.md +52 -0
  859. package/runtime/agents/drawio-diagram-builder/knowledge/visual-rules.md +12 -0
  860. package/runtime/agents/drawio-diagram-builder/templates/diagram-spec.schema.json +42 -0
  861. package/runtime/agents/drawio-diagram-builder/templates/shape-library.yaml +10 -0
  862. package/runtime/agents/drawio-diagram-builder/templates/style-presets.yaml +28 -0
  863. package/runtime/agents/drawio-diagram-builder/tests/__init__.py +0 -0
  864. package/runtime/agents/drawio-diagram-builder/tests/test_refine.py +144 -0
  865. package/runtime/agents/drawio-diagram-builder/tests/test_renderer.py +208 -0
  866. package/runtime/agents/drawio-diagram-builder/tests/test_source_reader.py +62 -0
  867. package/runtime/agents/drawio-diagram-builder/tests/test_specs.py +189 -0
  868. package/runtime/agents/drawio-diagram-builder/tests/test_validators.py +198 -0
  869. package/runtime/agents/elasticsearch-log-analyzer/AGENTS.md +28 -0
  870. package/runtime/agents/elasticsearch-log-analyzer/README.md +53 -0
  871. package/runtime/agents/elasticsearch-log-analyzer/agent.yaml +54 -0
  872. package/runtime/agents/elasticsearch-log-analyzer/capabilities/_shared/runner_support.py +123 -0
  873. package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/capability.yaml +25 -0
  874. package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/decision-rules.md +6 -0
  875. package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/runner.py +118 -0
  876. package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/workflow.md +6 -0
  877. package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/capability.yaml +22 -0
  878. package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/decision-rules.md +6 -0
  879. package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/runner.py +82 -0
  880. package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/workflow.md +5 -0
  881. package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/capability.yaml +24 -0
  882. package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/decision-rules.md +6 -0
  883. package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/runner.py +93 -0
  884. package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/workflow.md +6 -0
  885. package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/capability.yaml +23 -0
  886. package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/decision-rules.md +7 -0
  887. package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/runner.py +66 -0
  888. package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/workflow.md +5 -0
  889. package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/capability.yaml +26 -0
  890. package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/decision-rules.md +6 -0
  891. package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/runner.py +129 -0
  892. package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/workflow.md +6 -0
  893. package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/capability.yaml +22 -0
  894. package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/decision-rules.md +6 -0
  895. package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/runner.py +50 -0
  896. package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/workflow.md +6 -0
  897. package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/capability.yaml +35 -0
  898. package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/decision-rules.md +6 -0
  899. package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/runner.py +78 -0
  900. package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/workflow.md +7 -0
  901. package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/capability.yaml +23 -0
  902. package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/decision-rules.md +7 -0
  903. package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/runner.py +70 -0
  904. package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/workflow.md +6 -0
  905. package/runtime/agents/elasticsearch-log-analyzer/infra/README.md +7 -0
  906. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/README.md +37 -0
  907. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/cli.py +96 -0
  908. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/elasticsearch_repository.py +458 -0
  909. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/env.example +5 -0
  910. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/integration.yaml +30 -0
  911. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/mcp/README.md +3 -0
  912. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/aggregate-terms.yaml +8 -0
  913. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/aggregate-timeline.yaml +8 -0
  914. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/count-events.yaml +8 -0
  915. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/describe-source.yaml +7 -0
  916. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/get-event.yaml +7 -0
  917. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/list-sources.yaml +7 -0
  918. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/render-query.yaml +8 -0
  919. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/search-events.yaml +8 -0
  920. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/models/README.md +3 -0
  921. package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/tests/test_repository.py +159 -0
  922. package/runtime/agents/elasticsearch-log-analyzer/knowledge/README.md +4 -0
  923. package/runtime/agents/elasticsearch-log-analyzer/knowledge/context.md +10 -0
  924. package/runtime/agents/elasticsearch-log-analyzer/knowledge/policies.yaml +33 -0
  925. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/README.md +3 -0
  926. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/analyze-service-errors.md +27 -0
  927. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/correlate-azure-card-logs.md +30 -0
  928. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/detect-error-patterns.md +26 -0
  929. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/extract-log-samples.md +27 -0
  930. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/generate-log-report.md +29 -0
  931. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/list-log-sources.md +27 -0
  932. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/search-log-events.md +28 -0
  933. package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/trace-request.md +27 -0
  934. package/runtime/agents/elasticsearch-log-analyzer/knowledge/system.md +42 -0
  935. package/runtime/agents/elasticsearch-log-analyzer/templates/README.md +3 -0
  936. package/runtime/agents/elasticsearch-log-analyzer/templates/analyze-service-errors-output.md +21 -0
  937. package/runtime/agents/elasticsearch-log-analyzer/templates/correlate-azure-card-logs-output.md +24 -0
  938. package/runtime/agents/elasticsearch-log-analyzer/templates/detect-error-patterns-output.md +17 -0
  939. package/runtime/agents/elasticsearch-log-analyzer/templates/extract-log-samples-output.md +10 -0
  940. package/runtime/agents/elasticsearch-log-analyzer/templates/generate-log-report-output.md +35 -0
  941. package/runtime/agents/elasticsearch-log-analyzer/templates/list-log-sources-output.md +21 -0
  942. package/runtime/agents/elasticsearch-log-analyzer/templates/search-log-events-output.md +20 -0
  943. package/runtime/agents/elasticsearch-log-analyzer/templates/trace-request-output.md +18 -0
  944. package/runtime/agents/elasticsearch-log-analyzer/tests/test_agentic_contracts.py +45 -0
  945. package/runtime/agents/elasticsearch-log-analyzer/tests/test_guardrails.py +217 -0
  946. package/runtime/agents/elasticsearch-log-analyzer/tests/test_runners.py +127 -0
  947. package/runtime/agents/excel-workbook-builder/AGENTS.md +21 -0
  948. package/runtime/agents/excel-workbook-builder/README.md +51 -0
  949. package/runtime/agents/excel-workbook-builder/agent.yaml +68 -0
  950. package/runtime/agents/excel-workbook-builder/capabilities/_shared/advanced_ops.py +351 -0
  951. package/runtime/agents/excel-workbook-builder/capabilities/_shared/template_binding.py +40 -0
  952. package/runtime/agents/excel-workbook-builder/capabilities/_shared/template_ops.py +251 -0
  953. package/runtime/agents/excel-workbook-builder/capabilities/_shared/workbook_support.py +963 -0
  954. package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/capability.yaml +15 -0
  955. package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/decision-rules.md +8 -0
  956. package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/runner.py +9 -0
  957. package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/workflow.md +26 -0
  958. package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/capability.yaml +14 -0
  959. package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/decision-rules.md +8 -0
  960. package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/runner.py +9 -0
  961. package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/workflow.md +23 -0
  962. package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/capability.yaml +14 -0
  963. package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/decision-rules.md +8 -0
  964. package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/runner.py +9 -0
  965. package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/workflow.md +24 -0
  966. package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/capability.yaml +15 -0
  967. package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/decision-rules.md +8 -0
  968. package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/runner.py +9 -0
  969. package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/workflow.md +23 -0
  970. package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/capability.yaml +14 -0
  971. package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/decision-rules.md +8 -0
  972. package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/runner.py +9 -0
  973. package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/workflow.md +25 -0
  974. package/runtime/agents/excel-workbook-builder/capabilities/create-template/capability.yaml +15 -0
  975. package/runtime/agents/excel-workbook-builder/capabilities/create-template/decision-rules.md +8 -0
  976. package/runtime/agents/excel-workbook-builder/capabilities/create-template/runner.py +9 -0
  977. package/runtime/agents/excel-workbook-builder/capabilities/create-template/workflow.md +26 -0
  978. package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/capability.yaml +15 -0
  979. package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/decision-rules.md +8 -0
  980. package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/runner.py +9 -0
  981. package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/workflow.md +27 -0
  982. package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/capability.yaml +14 -0
  983. package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/decision-rules.md +8 -0
  984. package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/runner.py +9 -0
  985. package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/workflow.md +21 -0
  986. package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/capability.yaml +14 -0
  987. package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/decision-rules.md +8 -0
  988. package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/runner.py +9 -0
  989. package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/workflow.md +23 -0
  990. package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/capability.yaml +15 -0
  991. package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/decision-rules.md +8 -0
  992. package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/runner.py +9 -0
  993. package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/workflow.md +26 -0
  994. package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/capability.yaml +14 -0
  995. package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/decision-rules.md +8 -0
  996. package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/runner.py +9 -0
  997. package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/workflow.md +23 -0
  998. package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/capability.yaml +15 -0
  999. package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/decision-rules.md +8 -0
  1000. package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/runner.py +60 -0
  1001. package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/workflow.md +22 -0
  1002. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/capability.yaml +15 -0
  1003. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/decision-rules.md +8 -0
  1004. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/runner.py +46 -0
  1005. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/workflow.md +27 -0
  1006. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/capability.yaml +14 -0
  1007. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/decision-rules.md +8 -0
  1008. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/runner.py +62 -0
  1009. package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/workflow.md +25 -0
  1010. package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/capability.yaml +15 -0
  1011. package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/decision-rules.md +8 -0
  1012. package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/runner.py +47 -0
  1013. package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/workflow.md +25 -0
  1014. package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/capability.yaml +15 -0
  1015. package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/decision-rules.md +8 -0
  1016. package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/runner.py +47 -0
  1017. package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/workflow.md +22 -0
  1018. package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/capability.yaml +15 -0
  1019. package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/decision-rules.md +8 -0
  1020. package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/runner.py +70 -0
  1021. package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/workflow.md +22 -0
  1022. package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/capability.yaml +15 -0
  1023. package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/decision-rules.md +8 -0
  1024. package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/runner.py +57 -0
  1025. package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/workflow.md +19 -0
  1026. package/runtime/agents/excel-workbook-builder/capabilities/list-templates/capability.yaml +14 -0
  1027. package/runtime/agents/excel-workbook-builder/capabilities/list-templates/decision-rules.md +8 -0
  1028. package/runtime/agents/excel-workbook-builder/capabilities/list-templates/runner.py +44 -0
  1029. package/runtime/agents/excel-workbook-builder/capabilities/list-templates/workflow.md +21 -0
  1030. package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/capability.yaml +14 -0
  1031. package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/decision-rules.md +8 -0
  1032. package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/runner.py +56 -0
  1033. package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/workflow.md +27 -0
  1034. package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/capability.yaml +14 -0
  1035. package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/decision-rules.md +8 -0
  1036. package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/runner.py +47 -0
  1037. package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/workflow.md +25 -0
  1038. package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/capability.yaml +15 -0
  1039. package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/decision-rules.md +8 -0
  1040. package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/runner.py +9 -0
  1041. package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/workflow.md +26 -0
  1042. package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/capability.yaml +14 -0
  1043. package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/decision-rules.md +8 -0
  1044. package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/runner.py +9 -0
  1045. package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/workflow.md +23 -0
  1046. package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/capability.yaml +15 -0
  1047. package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/decision-rules.md +8 -0
  1048. package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/runner.py +164 -0
  1049. package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/workflow.md +27 -0
  1050. package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/capability.yaml +14 -0
  1051. package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/decision-rules.md +8 -0
  1052. package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/runner.py +9 -0
  1053. package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/workflow.md +25 -0
  1054. package/runtime/agents/excel-workbook-builder/capabilities/refine-template/capability.yaml +15 -0
  1055. package/runtime/agents/excel-workbook-builder/capabilities/refine-template/decision-rules.md +8 -0
  1056. package/runtime/agents/excel-workbook-builder/capabilities/refine-template/runner.py +9 -0
  1057. package/runtime/agents/excel-workbook-builder/capabilities/refine-template/workflow.md +23 -0
  1058. package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/capability.yaml +15 -0
  1059. package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/decision-rules.md +8 -0
  1060. package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/runner.py +9 -0
  1061. package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/workflow.md +23 -0
  1062. package/runtime/agents/excel-workbook-builder/capabilities/register-template/capability.yaml +15 -0
  1063. package/runtime/agents/excel-workbook-builder/capabilities/register-template/decision-rules.md +8 -0
  1064. package/runtime/agents/excel-workbook-builder/capabilities/register-template/runner.py +80 -0
  1065. package/runtime/agents/excel-workbook-builder/capabilities/register-template/workflow.md +24 -0
  1066. package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/capability.yaml +15 -0
  1067. package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/decision-rules.md +8 -0
  1068. package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/runner.py +44 -0
  1069. package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/workflow.md +23 -0
  1070. package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/capability.yaml +15 -0
  1071. package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/decision-rules.md +8 -0
  1072. package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/runner.py +92 -0
  1073. package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/workflow.md +29 -0
  1074. package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/capability.yaml +14 -0
  1075. package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/decision-rules.md +8 -0
  1076. package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/runner.py +72 -0
  1077. package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/workflow.md +25 -0
  1078. package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/capability.yaml +14 -0
  1079. package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/decision-rules.md +8 -0
  1080. package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/runner.py +9 -0
  1081. package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/workflow.md +23 -0
  1082. package/runtime/agents/excel-workbook-builder/capabilities/scan-formula-errors/capability.yaml +15 -0
  1083. package/runtime/agents/excel-workbook-builder/capabilities/scan-formula-errors/decision-rules.md +8 -0
  1084. package/runtime/agents/excel-workbook-builder/capabilities/scan-formula-errors/workflow.md +23 -0
  1085. package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/capability.yaml +15 -0
  1086. package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/decision-rules.md +8 -0
  1087. package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/runner.py +9 -0
  1088. package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/workflow.md +23 -0
  1089. package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/capability.yaml +14 -0
  1090. package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/decision-rules.md +8 -0
  1091. package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/runner.py +9 -0
  1092. package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/workflow.md +25 -0
  1093. package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/capability.yaml +14 -0
  1094. package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/decision-rules.md +8 -0
  1095. package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/runner.py +98 -0
  1096. package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/workflow.md +24 -0
  1097. package/runtime/agents/excel-workbook-builder/infra/README.md +4 -0
  1098. package/runtime/agents/excel-workbook-builder/infra/integrations/database-delegator/README.md +5 -0
  1099. package/runtime/agents/excel-workbook-builder/infra/integrations/document-reader/README.md +5 -0
  1100. package/runtime/agents/excel-workbook-builder/infra/integrations/file-normalizer/README.md +5 -0
  1101. package/runtime/agents/excel-workbook-builder/infra/integrations/workbook-renderer/README.md +5 -0
  1102. package/runtime/agents/excel-workbook-builder/knowledge/context.md +27 -0
  1103. package/runtime/agents/excel-workbook-builder/knowledge/formula-rules.md +9 -0
  1104. package/runtime/agents/excel-workbook-builder/knowledge/policies.yaml +30 -0
  1105. package/runtime/agents/excel-workbook-builder/knowledge/reconciliation-rules.md +9 -0
  1106. package/runtime/agents/excel-workbook-builder/knowledge/runtime.md +67 -0
  1107. package/runtime/agents/excel-workbook-builder/knowledge/source-routing.md +9 -0
  1108. package/runtime/agents/excel-workbook-builder/knowledge/system.md +47 -0
  1109. package/runtime/agents/excel-workbook-builder/knowledge/template-catalog.yaml +3 -0
  1110. package/runtime/agents/excel-workbook-builder/templates/README.md +16 -0
  1111. package/runtime/agents/excel-workbook-builder/tests/fixtures/plan-workbook-brief.json +12 -0
  1112. package/runtime/agents/excel-workbook-builder/tests/test_template_lifecycle.py +258 -0
  1113. package/runtime/agents/figma-ui-ux-product-designer/AGENTS.md +23 -0
  1114. package/runtime/agents/figma-ui-ux-product-designer/README.md +80 -0
  1115. package/runtime/agents/figma-ui-ux-product-designer/agent.yaml +106 -0
  1116. package/runtime/agents/figma-ui-ux-product-designer/capabilities/_shared/design_support.py +913 -0
  1117. package/runtime/agents/figma-ui-ux-product-designer/capabilities/_shared/figma_setup.py +264 -0
  1118. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/capability.yaml +17 -0
  1119. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/decision-rules.md +8 -0
  1120. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/runner.py +8 -0
  1121. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/workflow.md +34 -0
  1122. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/capability.yaml +14 -0
  1123. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/decision-rules.md +8 -0
  1124. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/runner.py +8 -0
  1125. package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/workflow.md +31 -0
  1126. package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/capability.yaml +15 -0
  1127. package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/decision-rules.md +8 -0
  1128. package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/runner.py +8 -0
  1129. package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/workflow.md +33 -0
  1130. package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/capability.yaml +18 -0
  1131. package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/decision-rules.md +8 -0
  1132. package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/runner.py +8 -0
  1133. package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/workflow.md +33 -0
  1134. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/capability.yaml +14 -0
  1135. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/decision-rules.md +8 -0
  1136. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/runner.py +8 -0
  1137. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/workflow.md +38 -0
  1138. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/capability.yaml +14 -0
  1139. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/decision-rules.md +8 -0
  1140. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/runner.py +8 -0
  1141. package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/workflow.md +29 -0
  1142. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/capability.yaml +17 -0
  1143. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/decision-rules.md +8 -0
  1144. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/runner.py +8 -0
  1145. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/workflow.md +33 -0
  1146. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/capability.yaml +17 -0
  1147. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/decision-rules.md +8 -0
  1148. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/runner.py +8 -0
  1149. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/workflow.md +34 -0
  1150. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/capability.yaml +17 -0
  1151. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/decision-rules.md +8 -0
  1152. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/runner.py +8 -0
  1153. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/workflow.md +40 -0
  1154. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/capability.yaml +17 -0
  1155. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/decision-rules.md +8 -0
  1156. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/runner.py +8 -0
  1157. package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/workflow.md +38 -0
  1158. package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/capability.yaml +14 -0
  1159. package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/decision-rules.md +8 -0
  1160. package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/runner.py +8 -0
  1161. package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/workflow.md +32 -0
  1162. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/capability.yaml +14 -0
  1163. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/decision-rules.md +8 -0
  1164. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/runner.py +8 -0
  1165. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/workflow.md +27 -0
  1166. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/capability.yaml +17 -0
  1167. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/decision-rules.md +8 -0
  1168. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/runner.py +8 -0
  1169. package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/workflow.md +31 -0
  1170. package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/capability.yaml +15 -0
  1171. package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/decision-rules.md +8 -0
  1172. package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/runner.py +8 -0
  1173. package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/workflow.md +30 -0
  1174. package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/capability.yaml +18 -0
  1175. package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/decision-rules.md +8 -0
  1176. package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/runner.py +8 -0
  1177. package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/workflow.md +34 -0
  1178. package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/capability.yaml +14 -0
  1179. package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/decision-rules.md +8 -0
  1180. package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/runner.py +8 -0
  1181. package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/workflow.md +32 -0
  1182. package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/capability.yaml +14 -0
  1183. package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/decision-rules.md +8 -0
  1184. package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/runner.py +8 -0
  1185. package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/workflow.md +35 -0
  1186. package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/capability.yaml +25 -0
  1187. package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/decision-rules.md +8 -0
  1188. package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/runner.py +9 -0
  1189. package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/workflow.md +33 -0
  1190. package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/capability.yaml +15 -0
  1191. package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/decision-rules.md +8 -0
  1192. package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/runner.py +8 -0
  1193. package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/workflow.md +34 -0
  1194. package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/capability.yaml +18 -0
  1195. package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/decision-rules.md +8 -0
  1196. package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/runner.py +8 -0
  1197. package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/workflow.md +34 -0
  1198. package/runtime/agents/figma-ui-ux-product-designer/infra/README.md +11 -0
  1199. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/bin/figma-codex-bridge +3 -0
  1200. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/bin/figma-codex-bridge.cmd +3 -0
  1201. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/bin/figma-codex-bridge.py +262 -0
  1202. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_mcp_adapter.py +95 -0
  1203. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_mode.py +72 -0
  1204. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_models.py +71 -0
  1205. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_operation_log.py +43 -0
  1206. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_repository.py +29 -0
  1207. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/integration.yaml +39 -0
  1208. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/capture-url-to-figma.yaml +5 -0
  1209. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/create-new-file.yaml +5 -0
  1210. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/create-screen.yaml +5 -0
  1211. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/export-review-context.yaml +4 -0
  1212. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/generate-diagram.yaml +12 -0
  1213. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/inspect-file.yaml +4 -0
  1214. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/search-design-system.yaml +4 -0
  1215. package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/update-screen.yaml +5 -0
  1216. package/runtime/agents/figma-ui-ux-product-designer/knowledge/accessibility-rules.md +47 -0
  1217. package/runtime/agents/figma-ui-ux-product-designer/knowledge/context.md +27 -0
  1218. package/runtime/agents/figma-ui-ux-product-designer/knowledge/depth-scope-rules.md +49 -0
  1219. package/runtime/agents/figma-ui-ux-product-designer/knowledge/design-quality-checklist.md +13 -0
  1220. package/runtime/agents/figma-ui-ux-product-designer/knowledge/direct-mode-requirements.md +29 -0
  1221. package/runtime/agents/figma-ui-ux-product-designer/knowledge/feedback-rubric.md +57 -0
  1222. package/runtime/agents/figma-ui-ux-product-designer/knowledge/figma-mcp-setup.md +79 -0
  1223. package/runtime/agents/figma-ui-ux-product-designer/knowledge/figma-workflow.md +40 -0
  1224. package/runtime/agents/figma-ui-ux-product-designer/knowledge/policies.yaml +61 -0
  1225. package/runtime/agents/figma-ui-ux-product-designer/knowledge/system.md +48 -0
  1226. package/runtime/agents/figma-ui-ux-product-designer/knowledge/ux-patterns.md +62 -0
  1227. package/runtime/agents/figma-ui-ux-product-designer/templates/design-brief.md +33 -0
  1228. package/runtime/agents/figma-ui-ux-product-designer/templates/design-quality-report.md +25 -0
  1229. package/runtime/agents/figma-ui-ux-product-designer/templates/design-system-spec.md +51 -0
  1230. package/runtime/agents/figma-ui-ux-product-designer/templates/dev-handoff.md +38 -0
  1231. package/runtime/agents/figma-ui-ux-product-designer/templates/figma-action-plan.md +32 -0
  1232. package/runtime/agents/figma-ui-ux-product-designer/templates/screen-inventory.md +24 -0
  1233. package/runtime/agents/figma-ui-ux-product-designer/tests/test_figma_designer.py +324 -0
  1234. package/runtime/agents/knowledge-generator/AGENTS.md +34 -0
  1235. package/runtime/agents/knowledge-generator/README.md +35 -0
  1236. package/runtime/agents/knowledge-generator/agent.yaml +45 -0
  1237. package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/capability.yaml +32 -0
  1238. package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/decision-rules.md +8 -0
  1239. package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/runner.py +44 -0
  1240. package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/workflow.md +8 -0
  1241. package/runtime/agents/knowledge-generator/capabilities/inspect-source/capability.yaml +23 -0
  1242. package/runtime/agents/knowledge-generator/capabilities/inspect-source/decision-rules.md +8 -0
  1243. package/runtime/agents/knowledge-generator/capabilities/inspect-source/runner.py +38 -0
  1244. package/runtime/agents/knowledge-generator/capabilities/inspect-source/workflow.md +8 -0
  1245. package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/capability.yaml +23 -0
  1246. package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/decision-rules.md +8 -0
  1247. package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/runner.py +22 -0
  1248. package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/workflow.md +5 -0
  1249. package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/capability.yaml +23 -0
  1250. package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/decision-rules.md +8 -0
  1251. package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/runner.py +28 -0
  1252. package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/workflow.md +7 -0
  1253. package/runtime/agents/knowledge-generator/infra/integrations/local-source/knowledge_repository.py +1147 -0
  1254. package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/generate-knowledge.yaml +5 -0
  1255. package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/inspect-source.yaml +5 -0
  1256. package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/list-profiles.yaml +5 -0
  1257. package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/validate-knowledge.yaml +5 -0
  1258. package/runtime/agents/knowledge-generator/knowledge/context.md +27 -0
  1259. package/runtime/agents/knowledge-generator/knowledge/policies.yaml +65 -0
  1260. package/runtime/agents/knowledge-generator/knowledge/prompts/generate-knowledge.md +46 -0
  1261. package/runtime/agents/knowledge-generator/knowledge/prompts/inspect-source.md +40 -0
  1262. package/runtime/agents/knowledge-generator/knowledge/prompts/list-knowledge-profiles.md +28 -0
  1263. package/runtime/agents/knowledge-generator/knowledge/prompts/validate-knowledge.md +27 -0
  1264. package/runtime/agents/knowledge-generator/knowledge/system.md +44 -0
  1265. package/runtime/agents/knowledge-generator/templates/coverage-assessment.md.tmpl +14 -0
  1266. package/runtime/agents/knowledge-generator/templates/domain.schema.json +28 -0
  1267. package/runtime/agents/knowledge-generator/templates/integration.schema.json +33 -0
  1268. package/runtime/agents/knowledge-generator/templates/operations.schema.json +30 -0
  1269. package/runtime/agents/knowledge-generator/tests/test_runners.py +460 -0
  1270. package/runtime/agents/n1-support-agent/AGENTS.md +10 -0
  1271. package/runtime/agents/n1-support-agent/README.md +65 -0
  1272. package/runtime/agents/n1-support-agent/agent.yaml +71 -0
  1273. package/runtime/agents/n1-support-agent/capabilities/_shared/domain_knowledge.py +262 -0
  1274. package/runtime/agents/n1-support-agent/capabilities/_shared/runner_support.py +730 -0
  1275. package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/capability.yaml +23 -0
  1276. package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/decision-rules.md +12 -0
  1277. package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/runner.py +325 -0
  1278. package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/workflow.md +21 -0
  1279. package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/capability.yaml +15 -0
  1280. package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/decision-rules.md +11 -0
  1281. package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/runner.py +64 -0
  1282. package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/workflow.md +4 -0
  1283. package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/capability.yaml +15 -0
  1284. package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/decision-rules.md +12 -0
  1285. package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/runner.py +65 -0
  1286. package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/workflow.md +4 -0
  1287. package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/capability.yaml +15 -0
  1288. package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/decision-rules.md +12 -0
  1289. package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/runner.py +65 -0
  1290. package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/workflow.md +4 -0
  1291. package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/capability.yaml +19 -0
  1292. package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/decision-rules.md +12 -0
  1293. package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/runner.py +351 -0
  1294. package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/workflow.md +28 -0
  1295. package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/capability.yaml +19 -0
  1296. package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/decision-rules.md +12 -0
  1297. package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/runner.py +70 -0
  1298. package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/workflow.md +4 -0
  1299. package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/capability.yaml +15 -0
  1300. package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/decision-rules.md +12 -0
  1301. package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/runner.py +72 -0
  1302. package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/workflow.md +4 -0
  1303. package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/capability.yaml +25 -0
  1304. package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/decision-rules.md +7 -0
  1305. package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/runner.py +121 -0
  1306. package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/workflow.md +15 -0
  1307. package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/capability.yaml +15 -0
  1308. package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/decision-rules.md +12 -0
  1309. package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/runner.py +73 -0
  1310. package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/workflow.md +4 -0
  1311. package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/capability.yaml +15 -0
  1312. package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/decision-rules.md +12 -0
  1313. package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/runner.py +74 -0
  1314. package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/workflow.md +4 -0
  1315. package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/capability.yaml +19 -0
  1316. package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/decision-rules.md +12 -0
  1317. package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/runner.py +71 -0
  1318. package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/workflow.md +23 -0
  1319. package/runtime/agents/n1-support-agent/capabilities/update-azure-card/capability.yaml +20 -0
  1320. package/runtime/agents/n1-support-agent/capabilities/update-azure-card/decision-rules.md +12 -0
  1321. package/runtime/agents/n1-support-agent/capabilities/update-azure-card/runner.py +71 -0
  1322. package/runtime/agents/n1-support-agent/capabilities/update-azure-card/workflow.md +4 -0
  1323. package/runtime/agents/n1-support-agent/infra/README.md +7 -0
  1324. package/runtime/agents/n1-support-agent/knowledge/README.md +14 -0
  1325. package/runtime/agents/n1-support-agent/knowledge/context.md +19 -0
  1326. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/README.md +23 -0
  1327. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/contracts/n1-support-triage-contract.json +40 -0
  1328. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/index.json +42 -0
  1329. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/playbooks/global-support-diagnostics.json +28 -0
  1330. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/card-rules.json +43 -0
  1331. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/invoice-transaction-rules.json +43 -0
  1332. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/login-account-rules.json +37 -0
  1333. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/onboarding-rules.json +70 -0
  1334. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/public-agency-margin-rules.json +43 -0
  1335. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/restrictive-base-rules.json +43 -0
  1336. package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/symptom-routing.json +107 -0
  1337. package/runtime/agents/n1-support-agent/knowledge/policies.yaml +56 -0
  1338. package/runtime/agents/n1-support-agent/knowledge/prompts/README.md +4 -0
  1339. package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-bpo-proposal.md +29 -0
  1340. package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-cognito-user.md +41 -0
  1341. package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-onboarding-status.md +42 -0
  1342. package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-proposal-status.md +41 -0
  1343. package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-restrictive-base.md +15 -0
  1344. package/runtime/agents/n1-support-agent/knowledge/prompts/collect-customer-logs.md +43 -0
  1345. package/runtime/agents/n1-support-agent/knowledge/prompts/decide-n1-outcome.md +41 -0
  1346. package/runtime/agents/n1-support-agent/knowledge/prompts/execute-n1-card-runbook.md +6 -0
  1347. package/runtime/agents/n1-support-agent/knowledge/prompts/extract-card-entities.md +43 -0
  1348. package/runtime/agents/n1-support-agent/knowledge/prompts/generate-n1-artifacts.md +39 -0
  1349. package/runtime/agents/n1-support-agent/knowledge/prompts/route-customer-symptom.md +10 -0
  1350. package/runtime/agents/n1-support-agent/knowledge/prompts/update-azure-card.md +40 -0
  1351. package/runtime/agents/n1-support-agent/knowledge/runbooks/customer-onboarding-triage.md +38 -0
  1352. package/runtime/agents/n1-support-agent/knowledge/system.md +50 -0
  1353. package/runtime/agents/n1-support-agent/templates/README.md +3 -0
  1354. package/runtime/agents/n1-support-agent/templates/n1-card-runbook-output.md +13 -0
  1355. package/runtime/agents/n1-support-agent/tests/test_agentic_contracts.py +92 -0
  1356. package/runtime/agents/n1-support-agent/tests/test_runners.py +564 -0
  1357. package/runtime/agents/n2-support-agent/AGENTS.md +14 -0
  1358. package/runtime/agents/n2-support-agent/README.md +60 -0
  1359. package/runtime/agents/n2-support-agent/agent.yaml +75 -0
  1360. package/runtime/agents/n2-support-agent/capabilities/_shared/auxiliary_runner.py +116 -0
  1361. package/runtime/agents/n2-support-agent/capabilities/_shared/azure_workflow.py +132 -0
  1362. package/runtime/agents/n2-support-agent/capabilities/_shared/runner_support.py +1030 -0
  1363. package/runtime/agents/n2-support-agent/capabilities/_shared/specialist_orchestration.py +172 -0
  1364. package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/capability.yaml +15 -0
  1365. package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/decision-rules.md +12 -0
  1366. package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/runner.py +12 -0
  1367. package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/workflow.md +16 -0
  1368. package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/capability.yaml +15 -0
  1369. package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/decision-rules.md +12 -0
  1370. package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/runner.py +12 -0
  1371. package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/workflow.md +16 -0
  1372. package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/capability.yaml +15 -0
  1373. package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/decision-rules.md +12 -0
  1374. package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/runner.py +12 -0
  1375. package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/workflow.md +15 -0
  1376. package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/capability.yaml +15 -0
  1377. package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/decision-rules.md +12 -0
  1378. package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/runner.py +12 -0
  1379. package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/workflow.md +15 -0
  1380. package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/capability.yaml +17 -0
  1381. package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/decision-rules.md +12 -0
  1382. package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/runner.py +39 -0
  1383. package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/workflow.md +11 -0
  1384. package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/capability.yaml +15 -0
  1385. package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/decision-rules.md +12 -0
  1386. package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/runner.py +12 -0
  1387. package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/workflow.md +31 -0
  1388. package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/capability.yaml +15 -0
  1389. package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/decision-rules.md +12 -0
  1390. package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/runner.py +12 -0
  1391. package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/workflow.md +15 -0
  1392. package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/capability.yaml +17 -0
  1393. package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/decision-rules.md +12 -0
  1394. package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/runner.py +44 -0
  1395. package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/workflow.md +9 -0
  1396. package/runtime/agents/n2-support-agent/capabilities/load-support-context/capability.yaml +15 -0
  1397. package/runtime/agents/n2-support-agent/capabilities/load-support-context/decision-rules.md +12 -0
  1398. package/runtime/agents/n2-support-agent/capabilities/load-support-context/runner.py +12 -0
  1399. package/runtime/agents/n2-support-agent/capabilities/load-support-context/workflow.md +16 -0
  1400. package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/capability.yaml +15 -0
  1401. package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/decision-rules.md +12 -0
  1402. package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/runner.py +12 -0
  1403. package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/workflow.md +16 -0
  1404. package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/capability.yaml +15 -0
  1405. package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/decision-rules.md +12 -0
  1406. package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/runner.py +12 -0
  1407. package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/workflow.md +16 -0
  1408. package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/capability.yaml +15 -0
  1409. package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/decision-rules.md +12 -0
  1410. package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/runner.py +12 -0
  1411. package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/workflow.md +15 -0
  1412. package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/capability.yaml +15 -0
  1413. package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/decision-rules.md +12 -0
  1414. package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/runner.py +12 -0
  1415. package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/workflow.md +15 -0
  1416. package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/capability.yaml +15 -0
  1417. package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/decision-rules.md +12 -0
  1418. package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/runner.py +12 -0
  1419. package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/workflow.md +32 -0
  1420. package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/capability.yaml +15 -0
  1421. package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/decision-rules.md +12 -0
  1422. package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/runner.py +12 -0
  1423. package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/workflow.md +14 -0
  1424. package/runtime/agents/n2-support-agent/infra/README.md +7 -0
  1425. package/runtime/agents/n2-support-agent/knowledge/context.md +15 -0
  1426. package/runtime/agents/n2-support-agent/knowledge/policies.yaml +43 -0
  1427. package/runtime/agents/n2-support-agent/knowledge/prompts/README.md +3 -0
  1428. package/runtime/agents/n2-support-agent/knowledge/prompts/analyze-code-root-cause.md +38 -0
  1429. package/runtime/agents/n2-support-agent/knowledge/prompts/build-reproduction-strategy.md +36 -0
  1430. package/runtime/agents/n2-support-agent/knowledge/prompts/classify-root-cause.md +38 -0
  1431. package/runtime/agents/n2-support-agent/knowledge/prompts/correlate-runtime-evidence.md +35 -0
  1432. package/runtime/agents/n2-support-agent/knowledge/prompts/execute-n2-investigation.md +40 -0
  1433. package/runtime/agents/n2-support-agent/knowledge/prompts/execute-specialist-validation.md +41 -0
  1434. package/runtime/agents/n2-support-agent/knowledge/prompts/generate-card-comment.md +35 -0
  1435. package/runtime/agents/n2-support-agent/knowledge/prompts/generate-patch-plan.md +40 -0
  1436. package/runtime/agents/n2-support-agent/knowledge/prompts/load-support-context.md +38 -0
  1437. package/runtime/agents/n2-support-agent/knowledge/prompts/rank-code-findings.md +34 -0
  1438. package/runtime/agents/n2-support-agent/knowledge/prompts/review-patch-plan-readiness.md +36 -0
  1439. package/runtime/agents/n2-support-agent/knowledge/prompts/select-specialist-checks.md +36 -0
  1440. package/runtime/agents/n2-support-agent/knowledge/prompts/update-azure-workflow.md +37 -0
  1441. package/runtime/agents/n2-support-agent/knowledge/prompts/update-n2-card-workflow.md +37 -0
  1442. package/runtime/agents/n2-support-agent/knowledge/prompts/validate-n1-handoff.md +37 -0
  1443. package/runtime/agents/n2-support-agent/knowledge/runbooks/n2-root-cause-analysis.md +20 -0
  1444. package/runtime/agents/n2-support-agent/knowledge/runbooks/root-cause-taxonomy.md +32 -0
  1445. package/runtime/agents/n2-support-agent/knowledge/runbooks/specialist-validation-catalog.md +44 -0
  1446. package/runtime/agents/n2-support-agent/knowledge/system.md +46 -0
  1447. package/runtime/agents/n2-support-agent/templates/README.md +6 -0
  1448. package/runtime/agents/n2-support-agent/tests/test_agentic_contracts.py +68 -0
  1449. package/runtime/agents/n2-support-agent/tests/test_runners.py +569 -0
  1450. package/runtime/agents/postgres-data-analyzer/AGENTS.md +28 -0
  1451. package/runtime/agents/postgres-data-analyzer/README.md +58 -0
  1452. package/runtime/agents/postgres-data-analyzer/agent.yaml +92 -0
  1453. package/runtime/agents/postgres-data-analyzer/capabilities/_shared/runner_support.py +189 -0
  1454. package/runtime/agents/postgres-data-analyzer/capabilities/_shared/strong_runner.py +172 -0
  1455. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/capability.yaml +23 -0
  1456. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/decision-rules.md +10 -0
  1457. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/runner.py +41 -0
  1458. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/workflow.md +6 -0
  1459. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/capability.yaml +22 -0
  1460. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/decision-rules.md +10 -0
  1461. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/runner.py +15 -0
  1462. package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/workflow.md +6 -0
  1463. package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/capability.yaml +22 -0
  1464. package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/decision-rules.md +10 -0
  1465. package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/runner.py +15 -0
  1466. package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/workflow.md +6 -0
  1467. package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/capability.yaml +22 -0
  1468. package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/decision-rules.md +10 -0
  1469. package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/runner.py +15 -0
  1470. package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/workflow.md +6 -0
  1471. package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/capability.yaml +22 -0
  1472. package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/decision-rules.md +10 -0
  1473. package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/runner.py +56 -0
  1474. package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/workflow.md +5 -0
  1475. package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/capability.yaml +22 -0
  1476. package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/decision-rules.md +10 -0
  1477. package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/runner.py +15 -0
  1478. package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/workflow.md +6 -0
  1479. package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/capability.yaml +22 -0
  1480. package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/decision-rules.md +10 -0
  1481. package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/runner.py +34 -0
  1482. package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/workflow.md +5 -0
  1483. package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/capability.yaml +22 -0
  1484. package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/decision-rules.md +10 -0
  1485. package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/runner.py +15 -0
  1486. package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/workflow.md +6 -0
  1487. package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/capability.yaml +22 -0
  1488. package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/decision-rules.md +10 -0
  1489. package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/runner.py +15 -0
  1490. package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/workflow.md +6 -0
  1491. package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/capability.yaml +22 -0
  1492. package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/decision-rules.md +10 -0
  1493. package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/runner.py +15 -0
  1494. package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/workflow.md +6 -0
  1495. package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/capability.yaml +24 -0
  1496. package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/decision-rules.md +10 -0
  1497. package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/runner.py +86 -0
  1498. package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/workflow.md +5 -0
  1499. package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/capability.yaml +22 -0
  1500. package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/decision-rules.md +10 -0
  1501. package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/runner.py +15 -0
  1502. package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/workflow.md +6 -0
  1503. package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/capability.yaml +22 -0
  1504. package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/decision-rules.md +10 -0
  1505. package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/runner.py +15 -0
  1506. package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/workflow.md +6 -0
  1507. package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/capability.yaml +22 -0
  1508. package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/decision-rules.md +10 -0
  1509. package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/runner.py +15 -0
  1510. package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/workflow.md +6 -0
  1511. package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/capability.yaml +21 -0
  1512. package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/decision-rules.md +10 -0
  1513. package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/runner.py +36 -0
  1514. package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/workflow.md +4 -0
  1515. package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/capability.yaml +21 -0
  1516. package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/decision-rules.md +10 -0
  1517. package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/runner.py +35 -0
  1518. package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/workflow.md +4 -0
  1519. package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/capability.yaml +22 -0
  1520. package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/decision-rules.md +10 -0
  1521. package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/runner.py +41 -0
  1522. package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/workflow.md +5 -0
  1523. package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/capability.yaml +22 -0
  1524. package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/decision-rules.md +10 -0
  1525. package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/runner.py +40 -0
  1526. package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/workflow.md +6 -0
  1527. package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/capability.yaml +22 -0
  1528. package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/decision-rules.md +10 -0
  1529. package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/runner.py +15 -0
  1530. package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/workflow.md +6 -0
  1531. package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/capability.yaml +22 -0
  1532. package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/decision-rules.md +10 -0
  1533. package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/runner.py +15 -0
  1534. package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/workflow.md +6 -0
  1535. package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/capability.yaml +22 -0
  1536. package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/decision-rules.md +10 -0
  1537. package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/runner.py +15 -0
  1538. package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/workflow.md +6 -0
  1539. package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/capability.yaml +22 -0
  1540. package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/decision-rules.md +10 -0
  1541. package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/runner.py +15 -0
  1542. package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/workflow.md +6 -0
  1543. package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/capability.yaml +21 -0
  1544. package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/decision-rules.md +10 -0
  1545. package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/runner.py +34 -0
  1546. package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/workflow.md +5 -0
  1547. package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/capability.yaml +22 -0
  1548. package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/decision-rules.md +10 -0
  1549. package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/runner.py +15 -0
  1550. package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/workflow.md +6 -0
  1551. package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/capability.yaml +22 -0
  1552. package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/decision-rules.md +10 -0
  1553. package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/runner.py +15 -0
  1554. package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/workflow.md +6 -0
  1555. package/runtime/agents/postgres-data-analyzer/infra/README.md +3 -0
  1556. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/README.md +14 -0
  1557. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/cli.py +80 -0
  1558. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/env.example +2 -0
  1559. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/integration.yaml +29 -0
  1560. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/mcp/README.md +3 -0
  1561. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/analyze-cpf-column.yaml +16 -0
  1562. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/analyze-query-result.yaml +8 -0
  1563. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/build-analysis-query.yaml +8 -0
  1564. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/compare-tables.yaml +8 -0
  1565. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/describe-table.yaml +8 -0
  1566. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/detect-data-quality-issues.yaml +8 -0
  1567. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/detect-sensitive-columns.yaml +7 -0
  1568. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/estimate-table-size.yaml +8 -0
  1569. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/explain-query-plan.yaml +8 -0
  1570. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/explore-database-domain.yaml +8 -0
  1571. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/generate-data-report.yaml +19 -0
  1572. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/generate-erd-report.yaml +8 -0
  1573. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-databases.yaml +8 -0
  1574. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-relationships.yaml +8 -0
  1575. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-schemas.yaml +7 -0
  1576. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-tables.yaml +7 -0
  1577. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/profile-table.yaml +8 -0
  1578. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/run-readonly-query.yaml +8 -0
  1579. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/sample-table.yaml +8 -0
  1580. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/search-columns.yaml +8 -0
  1581. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/search-tables.yaml +8 -0
  1582. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/suggest-joins.yaml +8 -0
  1583. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/test-connection.yaml +7 -0
  1584. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/trace-record.yaml +8 -0
  1585. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/validate-readonly-query.yaml +8 -0
  1586. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/models/README.md +3 -0
  1587. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/postgres_repository.py +619 -0
  1588. package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/tests/test_repository.py +88 -0
  1589. package/runtime/agents/postgres-data-analyzer/knowledge/README.md +3 -0
  1590. package/runtime/agents/postgres-data-analyzer/knowledge/context.md +9 -0
  1591. package/runtime/agents/postgres-data-analyzer/knowledge/policies.yaml +82 -0
  1592. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/README.md +3 -0
  1593. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/analyze-cpf-column.md +45 -0
  1594. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/analyze-query-result.md +35 -0
  1595. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/build-analysis-query.md +39 -0
  1596. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/compare-tables.md +37 -0
  1597. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/describe-table.md +35 -0
  1598. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/detect-data-quality-issues.md +33 -0
  1599. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/detect-sensitive-columns.md +32 -0
  1600. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/estimate-table-size.md +33 -0
  1601. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/explain-query-plan.md +37 -0
  1602. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/explore-database-domain.md +35 -0
  1603. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/generate-data-report.md +54 -0
  1604. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/generate-erd-report.md +34 -0
  1605. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-databases.md +28 -0
  1606. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-relationships.md +31 -0
  1607. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-schemas.md +29 -0
  1608. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-tables.md +32 -0
  1609. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/profile-table.md +36 -0
  1610. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/run-readonly-query.md +44 -0
  1611. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/sample-table.md +44 -0
  1612. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/search-columns.md +32 -0
  1613. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/search-tables.md +29 -0
  1614. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/suggest-joins.md +32 -0
  1615. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/test-connection.md +34 -0
  1616. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/trace-record.md +43 -0
  1617. package/runtime/agents/postgres-data-analyzer/knowledge/prompts/validate-readonly-query.md +47 -0
  1618. package/runtime/agents/postgres-data-analyzer/knowledge/system.md +48 -0
  1619. package/runtime/agents/postgres-data-analyzer/templates/README.md +3 -0
  1620. package/runtime/agents/postgres-data-analyzer/templates/analyze-cpf-column-output.md +21 -0
  1621. package/runtime/agents/postgres-data-analyzer/templates/analyze-query-result-output.md +14 -0
  1622. package/runtime/agents/postgres-data-analyzer/templates/build-analysis-query-output.md +12 -0
  1623. package/runtime/agents/postgres-data-analyzer/templates/compare-tables-output.md +25 -0
  1624. package/runtime/agents/postgres-data-analyzer/templates/describe-table-output.md +25 -0
  1625. package/runtime/agents/postgres-data-analyzer/templates/detect-data-quality-issues-output.md +11 -0
  1626. package/runtime/agents/postgres-data-analyzer/templates/detect-sensitive-columns-output.md +13 -0
  1627. package/runtime/agents/postgres-data-analyzer/templates/estimate-table-size-output.md +12 -0
  1628. package/runtime/agents/postgres-data-analyzer/templates/explain-query-plan-output.md +15 -0
  1629. package/runtime/agents/postgres-data-analyzer/templates/explore-database-domain-output.md +19 -0
  1630. package/runtime/agents/postgres-data-analyzer/templates/generate-data-report-output.md +34 -0
  1631. package/runtime/agents/postgres-data-analyzer/templates/generate-erd-report-output.md +10 -0
  1632. package/runtime/agents/postgres-data-analyzer/templates/list-databases-output.md +10 -0
  1633. package/runtime/agents/postgres-data-analyzer/templates/list-relationships-output.md +10 -0
  1634. package/runtime/agents/postgres-data-analyzer/templates/list-schemas-output.md +10 -0
  1635. package/runtime/agents/postgres-data-analyzer/templates/list-tables-output.md +11 -0
  1636. package/runtime/agents/postgres-data-analyzer/templates/profile-table-output.md +18 -0
  1637. package/runtime/agents/postgres-data-analyzer/templates/run-readonly-query-output.md +11 -0
  1638. package/runtime/agents/postgres-data-analyzer/templates/sample-table-output.md +12 -0
  1639. package/runtime/agents/postgres-data-analyzer/templates/search-columns-output.md +11 -0
  1640. package/runtime/agents/postgres-data-analyzer/templates/search-tables-output.md +11 -0
  1641. package/runtime/agents/postgres-data-analyzer/templates/suggest-joins-output.md +11 -0
  1642. package/runtime/agents/postgres-data-analyzer/templates/test-connection-output.md +8 -0
  1643. package/runtime/agents/postgres-data-analyzer/templates/trace-record-output.md +17 -0
  1644. package/runtime/agents/postgres-data-analyzer/templates/validate-readonly-query-output.md +11 -0
  1645. package/runtime/agents/postgres-data-analyzer/tests/test_runners.py +435 -0
  1646. package/runtime/agents/presentation-deck-builder/AGENTS.md +31 -0
  1647. package/runtime/agents/presentation-deck-builder/README.md +42 -0
  1648. package/runtime/agents/presentation-deck-builder/agent.yaml +55 -0
  1649. package/runtime/agents/presentation-deck-builder/capabilities/_shared/template_support.py +372 -0
  1650. package/runtime/agents/presentation-deck-builder/capabilities/compare-template-versions/capability.yaml +18 -0
  1651. package/runtime/agents/presentation-deck-builder/capabilities/compare-template-versions/decision-rules.md +12 -0
  1652. package/runtime/agents/presentation-deck-builder/capabilities/compare-template-versions/workflow.md +5 -0
  1653. package/runtime/agents/presentation-deck-builder/capabilities/create-template/capability.yaml +18 -0
  1654. package/runtime/agents/presentation-deck-builder/capabilities/create-template/decision-rules.md +12 -0
  1655. package/runtime/agents/presentation-deck-builder/capabilities/create-template/workflow.md +6 -0
  1656. package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/capability.yaml +19 -0
  1657. package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/decision-rules.md +12 -0
  1658. package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/runner.py +101 -0
  1659. package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/workflow.md +5 -0
  1660. package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/capability.yaml +19 -0
  1661. package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/decision-rules.md +12 -0
  1662. package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/runner.py +102 -0
  1663. package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/workflow.md +5 -0
  1664. package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/capability.yaml +19 -0
  1665. package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/decision-rules.md +12 -0
  1666. package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/runner.py +483 -0
  1667. package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/workflow.md +6 -0
  1668. package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/capability.yaml +23 -0
  1669. package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/decision-rules.md +12 -0
  1670. package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/runner.py +57 -0
  1671. package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/workflow.md +5 -0
  1672. package/runtime/agents/presentation-deck-builder/capabilities/ingest-source-document/capability.yaml +21 -0
  1673. package/runtime/agents/presentation-deck-builder/capabilities/ingest-source-document/decision-rules.md +12 -0
  1674. package/runtime/agents/presentation-deck-builder/capabilities/ingest-source-document/workflow.md +5 -0
  1675. package/runtime/agents/presentation-deck-builder/capabilities/inspect-template/capability.yaml +18 -0
  1676. package/runtime/agents/presentation-deck-builder/capabilities/inspect-template/decision-rules.md +12 -0
  1677. package/runtime/agents/presentation-deck-builder/capabilities/inspect-template/workflow.md +5 -0
  1678. package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/capability.yaml +21 -0
  1679. package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/decision-rules.md +12 -0
  1680. package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/runner.py +42 -0
  1681. package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/workflow.md +5 -0
  1682. package/runtime/agents/presentation-deck-builder/capabilities/list-templates/capability.yaml +20 -0
  1683. package/runtime/agents/presentation-deck-builder/capabilities/list-templates/decision-rules.md +12 -0
  1684. package/runtime/agents/presentation-deck-builder/capabilities/list-templates/runner.py +37 -0
  1685. package/runtime/agents/presentation-deck-builder/capabilities/list-templates/workflow.md +5 -0
  1686. package/runtime/agents/presentation-deck-builder/capabilities/plan-deck/capability.yaml +18 -0
  1687. package/runtime/agents/presentation-deck-builder/capabilities/plan-deck/decision-rules.md +12 -0
  1688. package/runtime/agents/presentation-deck-builder/capabilities/plan-deck/workflow.md +5 -0
  1689. package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/capability.yaml +19 -0
  1690. package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/decision-rules.md +12 -0
  1691. package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/runner.py +89 -0
  1692. package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/workflow.md +5 -0
  1693. package/runtime/agents/presentation-deck-builder/capabilities/refine-generated-deck/capability.yaml +21 -0
  1694. package/runtime/agents/presentation-deck-builder/capabilities/refine-generated-deck/decision-rules.md +12 -0
  1695. package/runtime/agents/presentation-deck-builder/capabilities/refine-generated-deck/workflow.md +5 -0
  1696. package/runtime/agents/presentation-deck-builder/capabilities/refine-template/capability.yaml +19 -0
  1697. package/runtime/agents/presentation-deck-builder/capabilities/refine-template/decision-rules.md +12 -0
  1698. package/runtime/agents/presentation-deck-builder/capabilities/refine-template/runner.py +136 -0
  1699. package/runtime/agents/presentation-deck-builder/capabilities/refine-template/workflow.md +5 -0
  1700. package/runtime/agents/presentation-deck-builder/capabilities/register-template/capability.yaml +28 -0
  1701. package/runtime/agents/presentation-deck-builder/capabilities/register-template/decision-rules.md +12 -0
  1702. package/runtime/agents/presentation-deck-builder/capabilities/register-template/runner.py +80 -0
  1703. package/runtime/agents/presentation-deck-builder/capabilities/register-template/workflow.md +8 -0
  1704. package/runtime/agents/presentation-deck-builder/capabilities/review-generated-deck/capability.yaml +18 -0
  1705. package/runtime/agents/presentation-deck-builder/capabilities/review-generated-deck/decision-rules.md +12 -0
  1706. package/runtime/agents/presentation-deck-builder/capabilities/review-generated-deck/workflow.md +5 -0
  1707. package/runtime/agents/presentation-deck-builder/infra/README.md +4 -0
  1708. package/runtime/agents/presentation-deck-builder/infra/integrations/document-reader/README.md +3 -0
  1709. package/runtime/agents/presentation-deck-builder/infra/integrations/presentation-renderer/README.md +3 -0
  1710. package/runtime/agents/presentation-deck-builder/knowledge/context.md +37 -0
  1711. package/runtime/agents/presentation-deck-builder/knowledge/output-templates/deck-plan.md +47 -0
  1712. package/runtime/agents/presentation-deck-builder/knowledge/output-templates/deck-review.md +40 -0
  1713. package/runtime/agents/presentation-deck-builder/knowledge/output-templates/extracted-content.md +38 -0
  1714. package/runtime/agents/presentation-deck-builder/knowledge/output-templates/template-inspection.md +33 -0
  1715. package/runtime/agents/presentation-deck-builder/knowledge/output-templates/template-version-comparison.md +38 -0
  1716. package/runtime/agents/presentation-deck-builder/knowledge/policies.yaml +47 -0
  1717. package/runtime/agents/presentation-deck-builder/knowledge/prompts/compare-template-versions.md +39 -0
  1718. package/runtime/agents/presentation-deck-builder/knowledge/prompts/create-template-version.md +37 -0
  1719. package/runtime/agents/presentation-deck-builder/knowledge/prompts/create-template.md +35 -0
  1720. package/runtime/agents/presentation-deck-builder/knowledge/prompts/deprecate-template-version.md +36 -0
  1721. package/runtime/agents/presentation-deck-builder/knowledge/prompts/generate-deck-from-template.md +48 -0
  1722. package/runtime/agents/presentation-deck-builder/knowledge/prompts/generate-template-input-file.md +30 -0
  1723. package/runtime/agents/presentation-deck-builder/knowledge/prompts/ingest-source-document.md +42 -0
  1724. package/runtime/agents/presentation-deck-builder/knowledge/prompts/inspect-template.md +34 -0
  1725. package/runtime/agents/presentation-deck-builder/knowledge/prompts/list-template-versions.md +33 -0
  1726. package/runtime/agents/presentation-deck-builder/knowledge/prompts/list-templates.md +29 -0
  1727. package/runtime/agents/presentation-deck-builder/knowledge/prompts/plan-deck.md +45 -0
  1728. package/runtime/agents/presentation-deck-builder/knowledge/prompts/promote-template-version.md +36 -0
  1729. package/runtime/agents/presentation-deck-builder/knowledge/prompts/refine-generated-deck.md +34 -0
  1730. package/runtime/agents/presentation-deck-builder/knowledge/prompts/refine-template.md +39 -0
  1731. package/runtime/agents/presentation-deck-builder/knowledge/prompts/register-template.md +43 -0
  1732. package/runtime/agents/presentation-deck-builder/knowledge/prompts/review-generated-deck.md +43 -0
  1733. package/runtime/agents/presentation-deck-builder/knowledge/runtime.md +39 -0
  1734. package/runtime/agents/presentation-deck-builder/knowledge/system.md +47 -0
  1735. package/runtime/agents/presentation-deck-builder/knowledge/template-catalog.yaml +3 -0
  1736. package/runtime/agents/presentation-deck-builder/knowledge/template-routing.md +6 -0
  1737. package/runtime/agents/presentation-deck-builder/templates/README.md +6 -0
  1738. package/runtime/agents/presentation-deck-builder/tests/test_runners.py +258 -0
  1739. package/runtime/agents/software-specification-analyst/AGENTS.md +49 -0
  1740. package/runtime/agents/software-specification-analyst/README.md +92 -0
  1741. package/runtime/agents/software-specification-analyst/agent.yaml +55 -0
  1742. package/runtime/agents/software-specification-analyst/capabilities/analyze-multiple-projects/capability.yaml +21 -0
  1743. package/runtime/agents/software-specification-analyst/capabilities/analyze-multiple-projects/decision-rules.md +12 -0
  1744. package/runtime/agents/software-specification-analyst/capabilities/analyze-multiple-projects/workflow.md +7 -0
  1745. package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/capability.yaml +32 -0
  1746. package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/decision-rules.md +12 -0
  1747. package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/runner.py +659 -0
  1748. package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/workflow.md +11 -0
  1749. package/runtime/agents/software-specification-analyst/capabilities/build-requirements-traceability/capability.yaml +21 -0
  1750. package/runtime/agents/software-specification-analyst/capabilities/build-requirements-traceability/decision-rules.md +12 -0
  1751. package/runtime/agents/software-specification-analyst/capabilities/build-requirements-traceability/workflow.md +7 -0
  1752. package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/capability.yaml +26 -0
  1753. package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/decision-rules.md +12 -0
  1754. package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/runner.py +253 -0
  1755. package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/workflow.md +8 -0
  1756. package/runtime/agents/software-specification-analyst/capabilities/create-analysis-dossier/capability.yaml +21 -0
  1757. package/runtime/agents/software-specification-analyst/capabilities/create-analysis-dossier/decision-rules.md +12 -0
  1758. package/runtime/agents/software-specification-analyst/capabilities/create-analysis-dossier/workflow.md +6 -0
  1759. package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/capability.yaml +42 -0
  1760. package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/decision-rules.md +12 -0
  1761. package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/runner.py +559 -0
  1762. package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/workflow.md +13 -0
  1763. package/runtime/agents/software-specification-analyst/capabilities/create-discovery-notes/capability.yaml +21 -0
  1764. package/runtime/agents/software-specification-analyst/capabilities/create-discovery-notes/decision-rules.md +12 -0
  1765. package/runtime/agents/software-specification-analyst/capabilities/create-discovery-notes/workflow.md +6 -0
  1766. package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/capability.yaml +28 -0
  1767. package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/decision-rules.md +12 -0
  1768. package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/runner.py +370 -0
  1769. package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/workflow.md +6 -0
  1770. package/runtime/agents/software-specification-analyst/capabilities/create-functional-spec/capability.yaml +21 -0
  1771. package/runtime/agents/software-specification-analyst/capabilities/create-functional-spec/decision-rules.md +12 -0
  1772. package/runtime/agents/software-specification-analyst/capabilities/create-functional-spec/workflow.md +8 -0
  1773. package/runtime/agents/software-specification-analyst/capabilities/create-technical-spec/capability.yaml +21 -0
  1774. package/runtime/agents/software-specification-analyst/capabilities/create-technical-spec/decision-rules.md +12 -0
  1775. package/runtime/agents/software-specification-analyst/capabilities/create-technical-spec/workflow.md +8 -0
  1776. package/runtime/agents/software-specification-analyst/capabilities/identify-business-questions/capability.yaml +21 -0
  1777. package/runtime/agents/software-specification-analyst/capabilities/identify-business-questions/decision-rules.md +12 -0
  1778. package/runtime/agents/software-specification-analyst/capabilities/identify-business-questions/workflow.md +6 -0
  1779. package/runtime/agents/software-specification-analyst/capabilities/identify-critical-points/capability.yaml +22 -0
  1780. package/runtime/agents/software-specification-analyst/capabilities/identify-critical-points/decision-rules.md +12 -0
  1781. package/runtime/agents/software-specification-analyst/capabilities/identify-critical-points/workflow.md +6 -0
  1782. package/runtime/agents/software-specification-analyst/capabilities/map-user-journeys/capability.yaml +21 -0
  1783. package/runtime/agents/software-specification-analyst/capabilities/map-user-journeys/decision-rules.md +12 -0
  1784. package/runtime/agents/software-specification-analyst/capabilities/map-user-journeys/workflow.md +7 -0
  1785. package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/capability.yaml +26 -0
  1786. package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/decision-rules.md +12 -0
  1787. package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/runner.py +216 -0
  1788. package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/workflow.md +6 -0
  1789. package/runtime/agents/software-specification-analyst/capabilities/review-spec-completeness/capability.yaml +21 -0
  1790. package/runtime/agents/software-specification-analyst/capabilities/review-spec-completeness/decision-rules.md +12 -0
  1791. package/runtime/agents/software-specification-analyst/capabilities/review-spec-completeness/workflow.md +7 -0
  1792. package/runtime/agents/software-specification-analyst/capabilities/write-user-stories/capability.yaml +21 -0
  1793. package/runtime/agents/software-specification-analyst/capabilities/write-user-stories/decision-rules.md +12 -0
  1794. package/runtime/agents/software-specification-analyst/capabilities/write-user-stories/workflow.md +7 -0
  1795. package/runtime/agents/software-specification-analyst/infra/README.md +7 -0
  1796. package/runtime/agents/software-specification-analyst/knowledge/context.md +122 -0
  1797. package/runtime/agents/software-specification-analyst/knowledge/policies.yaml +136 -0
  1798. package/runtime/agents/software-specification-analyst/knowledge/prompts/analyze-multiple-projects.md +40 -0
  1799. package/runtime/agents/software-specification-analyst/knowledge/prompts/analyze-project-context.md +69 -0
  1800. package/runtime/agents/software-specification-analyst/knowledge/prompts/build-requirements-traceability.md +33 -0
  1801. package/runtime/agents/software-specification-analyst/knowledge/prompts/conduct-requirements-interview.md +76 -0
  1802. package/runtime/agents/software-specification-analyst/knowledge/prompts/create-analysis-dossier.md +38 -0
  1803. package/runtime/agents/software-specification-analyst/knowledge/prompts/create-complete-spec.md +46 -0
  1804. package/runtime/agents/software-specification-analyst/knowledge/prompts/create-discovery-notes.md +34 -0
  1805. package/runtime/agents/software-specification-analyst/knowledge/prompts/create-final-spec-from-analysis.md +51 -0
  1806. package/runtime/agents/software-specification-analyst/knowledge/prompts/create-functional-spec.md +35 -0
  1807. package/runtime/agents/software-specification-analyst/knowledge/prompts/create-technical-spec.md +39 -0
  1808. package/runtime/agents/software-specification-analyst/knowledge/prompts/identify-business-questions.md +36 -0
  1809. package/runtime/agents/software-specification-analyst/knowledge/prompts/identify-critical-points.md +37 -0
  1810. package/runtime/agents/software-specification-analyst/knowledge/prompts/map-user-journeys.md +34 -0
  1811. package/runtime/agents/software-specification-analyst/knowledge/prompts/refine-analysis-with-feedback.md +41 -0
  1812. package/runtime/agents/software-specification-analyst/knowledge/prompts/review-spec-completeness.md +44 -0
  1813. package/runtime/agents/software-specification-analyst/knowledge/prompts/write-user-stories.md +39 -0
  1814. package/runtime/agents/software-specification-analyst/knowledge/system.md +65 -0
  1815. package/runtime/agents/software-specification-analyst/templates/analysis-context-output.md +11 -0
  1816. package/runtime/agents/software-specification-analyst/templates/analysis-dossier-output.md +13 -0
  1817. package/runtime/agents/software-specification-analyst/templates/business-questions-output.md +11 -0
  1818. package/runtime/agents/software-specification-analyst/templates/complete-spec-output.md +56 -0
  1819. package/runtime/agents/software-specification-analyst/templates/critical-points-output.md +4 -0
  1820. package/runtime/agents/software-specification-analyst/templates/discovery-notes-output.md +11 -0
  1821. package/runtime/agents/software-specification-analyst/templates/functional-spec-output.md +23 -0
  1822. package/runtime/agents/software-specification-analyst/templates/interview-guide-output.md +15 -0
  1823. package/runtime/agents/software-specification-analyst/templates/journey-flow-output.md +16 -0
  1824. package/runtime/agents/software-specification-analyst/templates/multi-project-analysis-output.md +11 -0
  1825. package/runtime/agents/software-specification-analyst/templates/refined-analysis-output.md +11 -0
  1826. package/runtime/agents/software-specification-analyst/templates/spec-review-output.md +17 -0
  1827. package/runtime/agents/software-specification-analyst/templates/technical-spec-output.md +25 -0
  1828. package/runtime/agents/software-specification-analyst/templates/traceability-matrix-output.md +5 -0
  1829. package/runtime/agents/software-specification-analyst/templates/user-stories-output.md +21 -0
  1830. package/runtime/agents/software-specification-analyst/tests/__init__.py +0 -0
  1831. package/runtime/agents/software-specification-analyst/tests/test_analyze_project_context.py +132 -0
  1832. package/runtime/agents/software-specification-analyst/tests/test_create_complete_spec.py +199 -0
  1833. package/runtime/agents/software-specification-analyst/tests/test_create_final_spec.py +108 -0
  1834. package/runtime/agents/sqlserver-change-operator/AGENTS.md +33 -0
  1835. package/runtime/agents/sqlserver-change-operator/README.md +40 -0
  1836. package/runtime/agents/sqlserver-change-operator/agent.yaml +66 -0
  1837. package/runtime/agents/sqlserver-change-operator/capabilities/_shared/runner_support.py +253 -0
  1838. package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/capability.yaml +23 -0
  1839. package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/decision-rules.md +12 -0
  1840. package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/runner.py +15 -0
  1841. package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/workflow.md +7 -0
  1842. package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/capability.yaml +23 -0
  1843. package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/decision-rules.md +12 -0
  1844. package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/runner.py +15 -0
  1845. package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/workflow.md +7 -0
  1846. package/runtime/agents/sqlserver-change-operator/capabilities/change-report/capability.yaml +23 -0
  1847. package/runtime/agents/sqlserver-change-operator/capabilities/change-report/decision-rules.md +12 -0
  1848. package/runtime/agents/sqlserver-change-operator/capabilities/change-report/runner.py +15 -0
  1849. package/runtime/agents/sqlserver-change-operator/capabilities/change-report/workflow.md +7 -0
  1850. package/runtime/agents/sqlserver-change-operator/capabilities/create-object/capability.yaml +23 -0
  1851. package/runtime/agents/sqlserver-change-operator/capabilities/create-object/decision-rules.md +12 -0
  1852. package/runtime/agents/sqlserver-change-operator/capabilities/create-object/runner.py +15 -0
  1853. package/runtime/agents/sqlserver-change-operator/capabilities/create-object/workflow.md +7 -0
  1854. package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/capability.yaml +23 -0
  1855. package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/decision-rules.md +12 -0
  1856. package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/runner.py +15 -0
  1857. package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/workflow.md +7 -0
  1858. package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/capability.yaml +23 -0
  1859. package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/decision-rules.md +12 -0
  1860. package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/runner.py +15 -0
  1861. package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/workflow.md +7 -0
  1862. package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/capability.yaml +23 -0
  1863. package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/decision-rules.md +12 -0
  1864. package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/runner.py +15 -0
  1865. package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/workflow.md +7 -0
  1866. package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/capability.yaml +23 -0
  1867. package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/decision-rules.md +12 -0
  1868. package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/runner.py +15 -0
  1869. package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/workflow.md +7 -0
  1870. package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/capability.yaml +23 -0
  1871. package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/decision-rules.md +12 -0
  1872. package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/runner.py +15 -0
  1873. package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/workflow.md +7 -0
  1874. package/runtime/agents/sqlserver-change-operator/capabilities/update-records/capability.yaml +23 -0
  1875. package/runtime/agents/sqlserver-change-operator/capabilities/update-records/decision-rules.md +12 -0
  1876. package/runtime/agents/sqlserver-change-operator/capabilities/update-records/runner.py +15 -0
  1877. package/runtime/agents/sqlserver-change-operator/capabilities/update-records/workflow.md +7 -0
  1878. package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/capability.yaml +23 -0
  1879. package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/decision-rules.md +12 -0
  1880. package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/runner.py +15 -0
  1881. package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/workflow.md +7 -0
  1882. package/runtime/agents/sqlserver-change-operator/infra/README.md +3 -0
  1883. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/README.md +3 -0
  1884. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/mcp/README.md +3 -0
  1885. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/apply-migration.yaml +8 -0
  1886. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/backup-records.yaml +8 -0
  1887. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/change-report.yaml +8 -0
  1888. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/create-object.yaml +8 -0
  1889. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/delete-records.yaml +8 -0
  1890. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/plan-migration.yaml +8 -0
  1891. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/rollback-migration.yaml +8 -0
  1892. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/run-write-script.yaml +8 -0
  1893. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/test-write-permissions.yaml +8 -0
  1894. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/update-records.yaml +8 -0
  1895. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/upsert-records.yaml +8 -0
  1896. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/models/README.md +3 -0
  1897. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/sqlserver_change_repository.py +598 -0
  1898. package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/tests/test_repository.py +152 -0
  1899. package/runtime/agents/sqlserver-change-operator/knowledge/README.md +3 -0
  1900. package/runtime/agents/sqlserver-change-operator/knowledge/context.md +9 -0
  1901. package/runtime/agents/sqlserver-change-operator/knowledge/policies.yaml +33 -0
  1902. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/README.md +3 -0
  1903. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/apply-migration.md +24 -0
  1904. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/backup-records.md +16 -0
  1905. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/change-report.md +14 -0
  1906. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/create-object.md +15 -0
  1907. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/delete-records.md +17 -0
  1908. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/plan-migration.md +23 -0
  1909. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/rollback-migration.md +15 -0
  1910. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/run-write-script.md +16 -0
  1911. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/test-write-permissions.md +15 -0
  1912. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/update-records.md +21 -0
  1913. package/runtime/agents/sqlserver-change-operator/knowledge/prompts/upsert-records.md +17 -0
  1914. package/runtime/agents/sqlserver-change-operator/knowledge/system.md +58 -0
  1915. package/runtime/agents/sqlserver-change-operator/templates/README.md +3 -0
  1916. package/runtime/agents/sqlserver-change-operator/templates/apply-migration-output.md +20 -0
  1917. package/runtime/agents/sqlserver-change-operator/templates/backup-records-output.md +8 -0
  1918. package/runtime/agents/sqlserver-change-operator/templates/change-report-output.md +9 -0
  1919. package/runtime/agents/sqlserver-change-operator/templates/create-object-output.md +20 -0
  1920. package/runtime/agents/sqlserver-change-operator/templates/delete-records-output.md +23 -0
  1921. package/runtime/agents/sqlserver-change-operator/templates/plan-migration-output.md +20 -0
  1922. package/runtime/agents/sqlserver-change-operator/templates/rollback-migration-output.md +20 -0
  1923. package/runtime/agents/sqlserver-change-operator/templates/run-write-script-output.md +20 -0
  1924. package/runtime/agents/sqlserver-change-operator/templates/test-write-permissions-output.md +8 -0
  1925. package/runtime/agents/sqlserver-change-operator/templates/update-records-output.md +23 -0
  1926. package/runtime/agents/sqlserver-change-operator/templates/upsert-records-output.md +20 -0
  1927. package/runtime/agents/sqlserver-data-analyzer/AGENTS.md +32 -0
  1928. package/runtime/agents/sqlserver-data-analyzer/README.md +48 -0
  1929. package/runtime/agents/sqlserver-data-analyzer/agent.yaml +89 -0
  1930. package/runtime/agents/sqlserver-data-analyzer/capabilities/_shared/runner_support.py +444 -0
  1931. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/capability.yaml +22 -0
  1932. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/decision-rules.md +26 -0
  1933. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/runner.py +15 -0
  1934. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/workflow.md +6 -0
  1935. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/capability.yaml +22 -0
  1936. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/decision-rules.md +12 -0
  1937. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/runner.py +15 -0
  1938. package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/workflow.md +6 -0
  1939. package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/capability.yaml +22 -0
  1940. package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/decision-rules.md +12 -0
  1941. package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/runner.py +15 -0
  1942. package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/workflow.md +6 -0
  1943. package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/capability.yaml +22 -0
  1944. package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/decision-rules.md +12 -0
  1945. package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/runner.py +15 -0
  1946. package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/workflow.md +6 -0
  1947. package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/capability.yaml +22 -0
  1948. package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/decision-rules.md +12 -0
  1949. package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/runner.py +15 -0
  1950. package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/workflow.md +6 -0
  1951. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/capability.yaml +22 -0
  1952. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/decision-rules.md +23 -0
  1953. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/runner.py +15 -0
  1954. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/workflow.md +6 -0
  1955. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/capability.yaml +22 -0
  1956. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/decision-rules.md +12 -0
  1957. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/runner.py +15 -0
  1958. package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/workflow.md +6 -0
  1959. package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/capability.yaml +22 -0
  1960. package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/decision-rules.md +12 -0
  1961. package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/runner.py +15 -0
  1962. package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/workflow.md +6 -0
  1963. package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/capability.yaml +22 -0
  1964. package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/decision-rules.md +12 -0
  1965. package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/runner.py +15 -0
  1966. package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/workflow.md +6 -0
  1967. package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/capability.yaml +22 -0
  1968. package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/decision-rules.md +12 -0
  1969. package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/runner.py +15 -0
  1970. package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/workflow.md +6 -0
  1971. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/capability.yaml +22 -0
  1972. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/decision-rules.md +12 -0
  1973. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/runner.py +15 -0
  1974. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/workflow.md +6 -0
  1975. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/capability.yaml +22 -0
  1976. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/decision-rules.md +12 -0
  1977. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/runner.py +15 -0
  1978. package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/workflow.md +6 -0
  1979. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/capability.yaml +22 -0
  1980. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/decision-rules.md +12 -0
  1981. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/runner.py +15 -0
  1982. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/workflow.md +6 -0
  1983. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/capability.yaml +22 -0
  1984. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/decision-rules.md +12 -0
  1985. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/runner.py +15 -0
  1986. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/workflow.md +6 -0
  1987. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/capability.yaml +22 -0
  1988. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/decision-rules.md +12 -0
  1989. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/runner.py +15 -0
  1990. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/workflow.md +6 -0
  1991. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/capability.yaml +22 -0
  1992. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/decision-rules.md +12 -0
  1993. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/runner.py +15 -0
  1994. package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/workflow.md +6 -0
  1995. package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/capability.yaml +22 -0
  1996. package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/decision-rules.md +24 -0
  1997. package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/runner.py +15 -0
  1998. package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/workflow.md +6 -0
  1999. package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/capability.yaml +22 -0
  2000. package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/decision-rules.md +29 -0
  2001. package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/runner.py +15 -0
  2002. package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/workflow.md +6 -0
  2003. package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/capability.yaml +22 -0
  2004. package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/decision-rules.md +12 -0
  2005. package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/runner.py +15 -0
  2006. package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/workflow.md +6 -0
  2007. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/capability.yaml +22 -0
  2008. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/decision-rules.md +12 -0
  2009. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/runner.py +15 -0
  2010. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/workflow.md +6 -0
  2011. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/capability.yaml +22 -0
  2012. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/decision-rules.md +12 -0
  2013. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/runner.py +15 -0
  2014. package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/workflow.md +6 -0
  2015. package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/capability.yaml +22 -0
  2016. package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/decision-rules.md +24 -0
  2017. package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/runner.py +15 -0
  2018. package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/workflow.md +6 -0
  2019. package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/capability.yaml +22 -0
  2020. package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/decision-rules.md +12 -0
  2021. package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/runner.py +15 -0
  2022. package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/workflow.md +6 -0
  2023. package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/capability.yaml +22 -0
  2024. package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/decision-rules.md +12 -0
  2025. package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/runner.py +15 -0
  2026. package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/workflow.md +6 -0
  2027. package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/capability.yaml +22 -0
  2028. package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/decision-rules.md +12 -0
  2029. package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/runner.py +15 -0
  2030. package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/workflow.md +6 -0
  2031. package/runtime/agents/sqlserver-data-analyzer/infra/README.md +3 -0
  2032. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/README.md +3 -0
  2033. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/mcp/README.md +3 -0
  2034. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/analyze-cpf-column.yaml +8 -0
  2035. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/analyze-query-result.yaml +8 -0
  2036. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/build-analysis-query.yaml +8 -0
  2037. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/compare-tables.yaml +8 -0
  2038. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/describe-table.yaml +8 -0
  2039. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/detect-data-quality-issues.yaml +8 -0
  2040. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/detect-sensitive-columns.yaml +8 -0
  2041. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/estimate-table-size.yaml +8 -0
  2042. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/explain-query-plan.yaml +8 -0
  2043. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/explore-database-domain.yaml +8 -0
  2044. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/generate-data-report.yaml +8 -0
  2045. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/generate-erd-report.yaml +8 -0
  2046. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-databases.yaml +8 -0
  2047. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-relationships.yaml +8 -0
  2048. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-schemas.yaml +8 -0
  2049. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-tables.yaml +8 -0
  2050. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/profile-table.yaml +8 -0
  2051. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/run-readonly-query.yaml +8 -0
  2052. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/sample-table.yaml +8 -0
  2053. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/search-columns.yaml +8 -0
  2054. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/search-tables.yaml +8 -0
  2055. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/suggest-joins.yaml +8 -0
  2056. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/test-connection.yaml +8 -0
  2057. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/trace-record.yaml +8 -0
  2058. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/validate-readonly-query.yaml +8 -0
  2059. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/models/README.md +3 -0
  2060. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/sqlserver_repository.py +576 -0
  2061. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/tests/test_privacy.py +236 -0
  2062. package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/tests/test_repository.py +50 -0
  2063. package/runtime/agents/sqlserver-data-analyzer/knowledge/README.md +3 -0
  2064. package/runtime/agents/sqlserver-data-analyzer/knowledge/context.md +11 -0
  2065. package/runtime/agents/sqlserver-data-analyzer/knowledge/policies.yaml +66 -0
  2066. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/README.md +3 -0
  2067. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/analyze-cpf-column.md +37 -0
  2068. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/analyze-query-result.md +32 -0
  2069. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/build-analysis-query.md +40 -0
  2070. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/compare-tables.md +36 -0
  2071. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/describe-table.md +35 -0
  2072. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/detect-data-quality-issues.md +31 -0
  2073. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/detect-sensitive-columns.md +29 -0
  2074. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/estimate-table-size.md +28 -0
  2075. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/explain-query-plan.md +33 -0
  2076. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/explore-database-domain.md +30 -0
  2077. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/generate-data-report.md +37 -0
  2078. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/generate-erd-report.md +28 -0
  2079. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-databases.md +26 -0
  2080. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-relationships.md +33 -0
  2081. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-schemas.md +26 -0
  2082. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-tables.md +27 -0
  2083. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/profile-table.md +29 -0
  2084. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/run-readonly-query.md +33 -0
  2085. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/sample-table.md +31 -0
  2086. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/search-columns.md +29 -0
  2087. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/search-tables.md +26 -0
  2088. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/suggest-joins.md +34 -0
  2089. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/test-connection.md +28 -0
  2090. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/trace-record.md +33 -0
  2091. package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/validate-readonly-query.md +29 -0
  2092. package/runtime/agents/sqlserver-data-analyzer/knowledge/system.md +65 -0
  2093. package/runtime/agents/sqlserver-data-analyzer/templates/README.md +3 -0
  2094. package/runtime/agents/sqlserver-data-analyzer/templates/analyze-cpf-column-output.md +36 -0
  2095. package/runtime/agents/sqlserver-data-analyzer/templates/analyze-query-result-output.md +1 -0
  2096. package/runtime/agents/sqlserver-data-analyzer/templates/build-analysis-query-output.md +1 -0
  2097. package/runtime/agents/sqlserver-data-analyzer/templates/compare-tables-output.md +1 -0
  2098. package/runtime/agents/sqlserver-data-analyzer/templates/describe-table-output.md +1 -0
  2099. package/runtime/agents/sqlserver-data-analyzer/templates/detect-data-quality-issues-output.md +1 -0
  2100. package/runtime/agents/sqlserver-data-analyzer/templates/detect-sensitive-columns-output.md +1 -0
  2101. package/runtime/agents/sqlserver-data-analyzer/templates/estimate-table-size-output.md +1 -0
  2102. package/runtime/agents/sqlserver-data-analyzer/templates/explain-query-plan-output.md +1 -0
  2103. package/runtime/agents/sqlserver-data-analyzer/templates/explore-database-domain-output.md +1 -0
  2104. package/runtime/agents/sqlserver-data-analyzer/templates/generate-data-report-output.md +36 -0
  2105. package/runtime/agents/sqlserver-data-analyzer/templates/generate-erd-report-output.md +32 -0
  2106. package/runtime/agents/sqlserver-data-analyzer/templates/list-databases-output.md +1 -0
  2107. package/runtime/agents/sqlserver-data-analyzer/templates/list-relationships-output.md +1 -0
  2108. package/runtime/agents/sqlserver-data-analyzer/templates/list-schemas-output.md +1 -0
  2109. package/runtime/agents/sqlserver-data-analyzer/templates/list-tables-output.md +1 -0
  2110. package/runtime/agents/sqlserver-data-analyzer/templates/profile-table-output.md +33 -0
  2111. package/runtime/agents/sqlserver-data-analyzer/templates/run-readonly-query-output.md +27 -0
  2112. package/runtime/agents/sqlserver-data-analyzer/templates/sample-table-output.md +1 -0
  2113. package/runtime/agents/sqlserver-data-analyzer/templates/search-columns-output.md +1 -0
  2114. package/runtime/agents/sqlserver-data-analyzer/templates/search-tables-output.md +1 -0
  2115. package/runtime/agents/sqlserver-data-analyzer/templates/suggest-joins-output.md +1 -0
  2116. package/runtime/agents/sqlserver-data-analyzer/templates/test-connection-output.md +1 -0
  2117. package/runtime/agents/sqlserver-data-analyzer/templates/trace-record-output.md +1 -0
  2118. package/runtime/agents/sqlserver-data-analyzer/templates/validate-readonly-query-output.md +1 -0
  2119. package/runtime/agents/technical-integration-analyst/AGENTS.md +35 -0
  2120. package/runtime/agents/technical-integration-analyst/README.md +41 -0
  2121. package/runtime/agents/technical-integration-analyst/agent.yaml +59 -0
  2122. package/runtime/agents/technical-integration-analyst/capabilities/_shared/runner_support.py +241 -0
  2123. package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/capability.yaml +23 -0
  2124. package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/decision-rules.md +13 -0
  2125. package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/runner.py +15 -0
  2126. package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/workflow.md +6 -0
  2127. package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/capability.yaml +23 -0
  2128. package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/decision-rules.md +13 -0
  2129. package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/runner.py +15 -0
  2130. package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/workflow.md +7 -0
  2131. package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/capability.yaml +23 -0
  2132. package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/decision-rules.md +13 -0
  2133. package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/runner.py +15 -0
  2134. package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/workflow.md +6 -0
  2135. package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/capability.yaml +23 -0
  2136. package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/decision-rules.md +13 -0
  2137. package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/runner.py +15 -0
  2138. package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/workflow.md +6 -0
  2139. package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/capability.yaml +23 -0
  2140. package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/decision-rules.md +13 -0
  2141. package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/runner.py +15 -0
  2142. package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/workflow.md +6 -0
  2143. package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/capability.yaml +23 -0
  2144. package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/decision-rules.md +13 -0
  2145. package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/runner.py +15 -0
  2146. package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/workflow.md +6 -0
  2147. package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/capability.yaml +23 -0
  2148. package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/decision-rules.md +13 -0
  2149. package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/runner.py +15 -0
  2150. package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/workflow.md +6 -0
  2151. package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/capability.yaml +23 -0
  2152. package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/decision-rules.md +13 -0
  2153. package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/runner.py +15 -0
  2154. package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/workflow.md +6 -0
  2155. package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/capability.yaml +23 -0
  2156. package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/decision-rules.md +14 -0
  2157. package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/runner.py +15 -0
  2158. package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/workflow.md +8 -0
  2159. package/runtime/agents/technical-integration-analyst/infra/README.md +7 -0
  2160. package/runtime/agents/technical-integration-analyst/infra/integrations/document-source/document_source_repository.py +214 -0
  2161. package/runtime/agents/technical-integration-analyst/infra/integrations/document-source/methods/load-sources.yaml +8 -0
  2162. package/runtime/agents/technical-integration-analyst/infra/integrations/http-api/http_api_repository.py +164 -0
  2163. package/runtime/agents/technical-integration-analyst/infra/integrations/http-api/methods/run-integration-tests.yaml +8 -0
  2164. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/analyze-flow.yaml +11 -0
  2165. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/extract-contract.yaml +8 -0
  2166. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-http-artifacts.yaml +12 -0
  2167. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-protocol-artifacts.yaml +11 -0
  2168. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-technical-docs.yaml +13 -0
  2169. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-test-data.yaml +12 -0
  2170. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/identify-missing-information.yaml +8 -0
  2171. package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/technical_integration_repository.py +621 -0
  2172. package/runtime/agents/technical-integration-analyst/knowledge/context.md +14 -0
  2173. package/runtime/agents/technical-integration-analyst/knowledge/policies.yaml +46 -0
  2174. package/runtime/agents/technical-integration-analyst/knowledge/prompts/README.md +5 -0
  2175. package/runtime/agents/technical-integration-analyst/knowledge/prompts/analyze-integration-flow.md +30 -0
  2176. package/runtime/agents/technical-integration-analyst/knowledge/prompts/extract-integration-contract.md +33 -0
  2177. package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-http-artifacts.md +31 -0
  2178. package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-protocol-artifacts.md +29 -0
  2179. package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-technical-docs.md +32 -0
  2180. package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-test-data.md +31 -0
  2181. package/runtime/agents/technical-integration-analyst/knowledge/prompts/identify-missing-information.md +27 -0
  2182. package/runtime/agents/technical-integration-analyst/knowledge/prompts/ingest-technical-docs.md +30 -0
  2183. package/runtime/agents/technical-integration-analyst/knowledge/prompts/run-integration-tests.md +33 -0
  2184. package/runtime/agents/technical-integration-analyst/knowledge/system.md +47 -0
  2185. package/runtime/agents/technical-integration-analyst/templates/README.md +3 -0
  2186. package/runtime/agents/technical-integration-analyst/templates/analyze-integration-flow-output.md +13 -0
  2187. package/runtime/agents/technical-integration-analyst/templates/extract-integration-contract-output.md +27 -0
  2188. package/runtime/agents/technical-integration-analyst/templates/generate-http-artifacts-output.md +31 -0
  2189. package/runtime/agents/technical-integration-analyst/templates/generate-protocol-artifacts-output.md +31 -0
  2190. package/runtime/agents/technical-integration-analyst/templates/generate-technical-docs-output.md +46 -0
  2191. package/runtime/agents/technical-integration-analyst/templates/generate-test-data-output.md +31 -0
  2192. package/runtime/agents/technical-integration-analyst/templates/identify-missing-information-output.md +21 -0
  2193. package/runtime/agents/technical-integration-analyst/templates/ingest-technical-docs-output.md +24 -0
  2194. package/runtime/agents/technical-integration-analyst/templates/run-integration-tests-output.md +14 -0
  2195. package/runtime/agents/technical-integration-analyst/tests/fixtures/dry_run_result.json +8 -0
  2196. package/runtime/agents/technical-integration-analyst/tests/fixtures/openapi_simple.json +23 -0
  2197. package/runtime/agents/technical-integration-analyst/tests/fixtures/postman_simple.json +20 -0
  2198. package/runtime/agents/technical-integration-analyst/tests/fixtures/wsdl_simple.xml +9 -0
  2199. package/runtime/agents/technical-integration-analyst/tests/test_technical_integration.py +524 -0
  2200. package/runtime/agents/topdesk-orchestrator/AGENTS.md +29 -0
  2201. package/runtime/agents/topdesk-orchestrator/README.md +45 -0
  2202. package/runtime/agents/topdesk-orchestrator/agent.yaml +54 -0
  2203. package/runtime/agents/topdesk-orchestrator/capabilities/_shared/runner_support.py +186 -0
  2204. package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/capability.yaml +21 -0
  2205. package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/decision-rules.md +16 -0
  2206. package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/runner.py +56 -0
  2207. package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/workflow.md +15 -0
  2208. package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/capability.yaml +22 -0
  2209. package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/decision-rules.md +16 -0
  2210. package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/runner.py +75 -0
  2211. package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/workflow.md +20 -0
  2212. package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/capability.yaml +21 -0
  2213. package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/decision-rules.md +16 -0
  2214. package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/runner.py +44 -0
  2215. package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/workflow.md +15 -0
  2216. package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/capability.yaml +21 -0
  2217. package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/decision-rules.md +16 -0
  2218. package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/runner.py +74 -0
  2219. package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/workflow.md +15 -0
  2220. package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/capability.yaml +22 -0
  2221. package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/decision-rules.md +16 -0
  2222. package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/runner.py +57 -0
  2223. package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/workflow.md +15 -0
  2224. package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/capability.yaml +22 -0
  2225. package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/decision-rules.md +16 -0
  2226. package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/runner.py +72 -0
  2227. package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/workflow.md +16 -0
  2228. package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/capability.yaml +25 -0
  2229. package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/decision-rules.md +16 -0
  2230. package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/runner.py +198 -0
  2231. package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/workflow.md +18 -0
  2232. package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/capability.yaml +22 -0
  2233. package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/decision-rules.md +16 -0
  2234. package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/runner.py +51 -0
  2235. package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/workflow.md +15 -0
  2236. package/runtime/agents/topdesk-orchestrator/infra/README.md +3 -0
  2237. package/runtime/agents/topdesk-orchestrator/infra/integrations/README.md +5 -0
  2238. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/README.md +18 -0
  2239. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/cli.py +88 -0
  2240. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/env.example +3 -0
  2241. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/integration.yaml +27 -0
  2242. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/mcp/README.md +3 -0
  2243. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/create-incident.yaml +15 -0
  2244. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/get-catalog.yaml +13 -0
  2245. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/get-incident.yaml +14 -0
  2246. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/get-progress-trail.yaml +14 -0
  2247. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/list-incidents.yaml +16 -0
  2248. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/search-persons.yaml +14 -0
  2249. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/update-incident.yaml +17 -0
  2250. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/models/README.md +3 -0
  2251. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/models/incident.schema.json +21 -0
  2252. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/tests/test_repository.py +124 -0
  2253. package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/topdesk_repository.py +278 -0
  2254. package/runtime/agents/topdesk-orchestrator/knowledge/README.md +3 -0
  2255. package/runtime/agents/topdesk-orchestrator/knowledge/context.md +24 -0
  2256. package/runtime/agents/topdesk-orchestrator/knowledge/policies.yaml +35 -0
  2257. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/README.md +3 -0
  2258. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/analyze-incident-insufficiency.md +34 -0
  2259. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/create-incident.md +34 -0
  2260. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/incident-report.md +33 -0
  2261. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/list-incidents.md +34 -0
  2262. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/read-incident.md +35 -0
  2263. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/request-more-info.md +34 -0
  2264. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/triage-incident.md +35 -0
  2265. package/runtime/agents/topdesk-orchestrator/knowledge/prompts/update-incident.md +34 -0
  2266. package/runtime/agents/topdesk-orchestrator/knowledge/system.md +40 -0
  2267. package/runtime/agents/topdesk-orchestrator/knowledge/triage-rules.md +43 -0
  2268. package/runtime/agents/topdesk-orchestrator/templates/README.md +3 -0
  2269. package/runtime/agents/topdesk-orchestrator/templates/analyze-incident-insufficiency-output.md +18 -0
  2270. package/runtime/agents/topdesk-orchestrator/templates/create-incident-output.md +17 -0
  2271. package/runtime/agents/topdesk-orchestrator/templates/incident-report-output.md +18 -0
  2272. package/runtime/agents/topdesk-orchestrator/templates/list-incidents-output.md +17 -0
  2273. package/runtime/agents/topdesk-orchestrator/templates/read-incident-output.md +17 -0
  2274. package/runtime/agents/topdesk-orchestrator/templates/request-more-info-output.md +17 -0
  2275. package/runtime/agents/topdesk-orchestrator/templates/triage-incident-output.md +19 -0
  2276. package/runtime/agents/topdesk-orchestrator/templates/update-incident-output.md +17 -0
  2277. package/runtime/agents/topdesk-orchestrator/tests/test_agentic_contracts.py +65 -0
  2278. package/runtime/agents/topdesk-orchestrator/tests/test_contract_cleanup.py +21 -0
  2279. package/runtime/agents/topdesk-orchestrator/tests/test_runners.py +251 -0
  2280. package/runtime/ai-devkit +10 -0
  2281. package/runtime/aikit +10 -0
  2282. package/runtime/cli/README.md +642 -0
  2283. package/runtime/cli/__init__.py +1 -0
  2284. package/runtime/cli/aikit/__init__.py +3 -0
  2285. package/runtime/cli/aikit/credentials.py +337 -0
  2286. package/runtime/cli/aikit/diagnostics.py +270 -0
  2287. package/runtime/cli/aikit/fallback.py +156 -0
  2288. package/runtime/cli/aikit/guardrails.py +76 -0
  2289. package/runtime/cli/aikit/install.py +269 -0
  2290. package/runtime/cli/aikit/llm.py +591 -0
  2291. package/runtime/cli/aikit/lock.py +238 -0
  2292. package/runtime/cli/aikit/main.py +1390 -0
  2293. package/runtime/cli/aikit/memory.py +135 -0
  2294. package/runtime/cli/aikit/output.py +70 -0
  2295. package/runtime/cli/aikit/providers.py +513 -0
  2296. package/runtime/cli/aikit/router.py +27 -0
  2297. package/runtime/cli/aikit/sources.py +334 -0
  2298. package/runtime/plugins/claude-code-ai-devkit/README.md +25 -0
  2299. package/runtime/plugins/claude-code-ai-devkit/agents/README.md +5 -0
  2300. package/runtime/plugins/claude-code-ai-devkit/commands/devkit-doctor.md +10 -0
  2301. package/runtime/plugins/claude-code-ai-devkit/commands/devkit-provider.md +12 -0
  2302. package/runtime/plugins/claude-code-ai-devkit/commands/devkit-run.md +10 -0
  2303. package/runtime/plugins/claude-code-ai-devkit/commands/devkit-setup.md +10 -0
  2304. package/runtime/plugins/claude-code-ai-devkit/plugin.json +40 -0
  2305. package/runtime/plugins/claude-code-ai-devkit/scripts/bootstrap.py +33 -0
  2306. package/runtime/plugins/claude-code-ai-devkit/scripts/doctor.py +16 -0
  2307. package/runtime/plugins/claude-code-ai-devkit/scripts/run-capability.py +21 -0
  2308. package/runtime/plugins/claude-code-ai-devkit/scripts/runtime.py +63 -0
  2309. package/runtime/plugins/claude-code-ai-devkit/skills/ai-devkit-router/SKILL.md +20 -0
  2310. package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/SKILL.md +28 -0
  2311. package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/desenvolvimento.md +11 -0
  2312. package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/infra.md +12 -0
  2313. package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/providers.md +22 -0
  2314. package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/routing.md +30 -0
  2315. package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/sustentacao.md +12 -0
  2316. package/runtime/plugins/claude-skill-ai-devkit/plugin.json +18 -0
  2317. package/runtime/plugins/codex-ai-devkit/.codex-plugin/plugin.json +24 -0
  2318. package/runtime/plugins/codex-ai-devkit/README.md +26 -0
  2319. package/runtime/plugins/codex-ai-devkit/scripts/bootstrap.py +33 -0
  2320. package/runtime/plugins/codex-ai-devkit/scripts/doctor.py +16 -0
  2321. package/runtime/plugins/codex-ai-devkit/scripts/install-runtime.py +17 -0
  2322. package/runtime/plugins/codex-ai-devkit/scripts/resolve-capability.py +16 -0
  2323. package/runtime/plugins/codex-ai-devkit/scripts/run-capability.py +21 -0
  2324. package/runtime/plugins/codex-ai-devkit/scripts/runtime.py +63 -0
  2325. package/runtime/plugins/codex-ai-devkit/skills/ai-devkit-router/SKILL.md +45 -0
  2326. package/runtime/providers/agent-bridge.yaml +24 -0
  2327. package/runtime/providers/aws.yaml +57 -0
  2328. package/runtime/providers/azure-devops.yaml +43 -0
  2329. package/runtime/providers/bpo.yaml +82 -0
  2330. package/runtime/providers/document-source.yaml +23 -0
  2331. package/runtime/providers/drawio.yaml +22 -0
  2332. package/runtime/providers/elasticsearch.yaml +52 -0
  2333. package/runtime/providers/figma.yaml +48 -0
  2334. package/runtime/providers/file-dataset.yaml +22 -0
  2335. package/runtime/providers/local-files.yaml +26 -0
  2336. package/runtime/providers/postgres.yaml +39 -0
  2337. package/runtime/providers/presentation-renderer.yaml +22 -0
  2338. package/runtime/providers/restrictive-db.yaml +27 -0
  2339. package/runtime/providers/sqlserver.yaml +43 -0
  2340. package/runtime/providers/technical-http.yaml +45 -0
  2341. package/runtime/providers/topdesk.yaml +44 -0
  2342. package/runtime/providers/workbook-renderer.yaml +22 -0
  2343. package/runtime/scripts/README.md +48 -0
  2344. package/runtime/scripts/mvp-readiness.py +360 -0
  2345. package/runtime/scripts/release-gate.py +219 -0
  2346. package/runtime/scripts/validate-repo.py +655 -0
  2347. package/runtime/scripts/verify-release-alignment.mjs +100 -0
  2348. package/runtime/vendor/README.md +26 -0
  2349. package/runtime/vendor/plugins/CATALOG.md +53 -0
  2350. package/runtime/vendor/plugins/open-design/AGENTS.md +35 -0
  2351. package/runtime/vendor/plugins/open-design/README.md +22 -0
  2352. package/runtime/vendor/plugins/open-design/README.zh-CN.md +22 -0
  2353. package/runtime/vendor/plugins/open-design/_official/atoms/build-test/SKILL.md +76 -0
  2354. package/runtime/vendor/plugins/open-design/_official/atoms/build-test/open-design.json +38 -0
  2355. package/runtime/vendor/plugins/open-design/_official/atoms/code-import/SKILL.md +60 -0
  2356. package/runtime/vendor/plugins/open-design/_official/atoms/code-import/open-design.json +36 -0
  2357. package/runtime/vendor/plugins/open-design/_official/atoms/critique-theater/SKILL.md +51 -0
  2358. package/runtime/vendor/plugins/open-design/_official/atoms/critique-theater/open-design.json +34 -0
  2359. package/runtime/vendor/plugins/open-design/_official/atoms/design-extract/SKILL.md +64 -0
  2360. package/runtime/vendor/plugins/open-design/_official/atoms/design-extract/open-design.json +37 -0
  2361. package/runtime/vendor/plugins/open-design/_official/atoms/diff-review/SKILL.md +54 -0
  2362. package/runtime/vendor/plugins/open-design/_official/atoms/diff-review/open-design.json +38 -0
  2363. package/runtime/vendor/plugins/open-design/_official/atoms/direction-picker/SKILL.md +28 -0
  2364. package/runtime/vendor/plugins/open-design/_official/atoms/direction-picker/open-design.json +34 -0
  2365. package/runtime/vendor/plugins/open-design/_official/atoms/discovery-question-form/SKILL.md +66 -0
  2366. package/runtime/vendor/plugins/open-design/_official/atoms/discovery-question-form/open-design.json +34 -0
  2367. package/runtime/vendor/plugins/open-design/_official/atoms/figma-extract/SKILL.md +64 -0
  2368. package/runtime/vendor/plugins/open-design/_official/atoms/figma-extract/open-design.json +36 -0
  2369. package/runtime/vendor/plugins/open-design/_official/atoms/handoff/SKILL.md +59 -0
  2370. package/runtime/vendor/plugins/open-design/_official/atoms/handoff/open-design.json +36 -0
  2371. package/runtime/vendor/plugins/open-design/_official/atoms/patch-edit/SKILL.md +60 -0
  2372. package/runtime/vendor/plugins/open-design/_official/atoms/patch-edit/open-design.json +38 -0
  2373. package/runtime/vendor/plugins/open-design/_official/atoms/rewrite-plan/SKILL.md +57 -0
  2374. package/runtime/vendor/plugins/open-design/_official/atoms/rewrite-plan/open-design.json +36 -0
  2375. package/runtime/vendor/plugins/open-design/_official/atoms/todo-write/SKILL.md +24 -0
  2376. package/runtime/vendor/plugins/open-design/_official/atoms/todo-write/open-design.json +34 -0
  2377. package/runtime/vendor/plugins/open-design/_official/atoms/token-map/SKILL.md +147 -0
  2378. package/runtime/vendor/plugins/open-design/_official/atoms/token-map/examples/semantic-inference-before-after.json +164 -0
  2379. package/runtime/vendor/plugins/open-design/_official/atoms/token-map/open-design.json +36 -0
  2380. package/runtime/vendor/plugins/open-design/_official/design-systems/agentic/DESIGN.md +71 -0
  2381. package/runtime/vendor/plugins/open-design/_official/design-systems/agentic/open-design.json +112 -0
  2382. package/runtime/vendor/plugins/open-design/_official/design-systems/airbnb/DESIGN.md +393 -0
  2383. package/runtime/vendor/plugins/open-design/_official/design-systems/airbnb/open-design.json +112 -0
  2384. package/runtime/vendor/plugins/open-design/_official/design-systems/airtable/DESIGN.md +92 -0
  2385. package/runtime/vendor/plugins/open-design/_official/design-systems/airtable/open-design.json +112 -0
  2386. package/runtime/vendor/plugins/open-design/_official/design-systems/ant/DESIGN.md +71 -0
  2387. package/runtime/vendor/plugins/open-design/_official/design-systems/ant/open-design.json +112 -0
  2388. package/runtime/vendor/plugins/open-design/_official/design-systems/apple/DESIGN.md +250 -0
  2389. package/runtime/vendor/plugins/open-design/_official/design-systems/apple/open-design.json +112 -0
  2390. package/runtime/vendor/plugins/open-design/_official/design-systems/application/DESIGN.md +71 -0
  2391. package/runtime/vendor/plugins/open-design/_official/design-systems/application/open-design.json +112 -0
  2392. package/runtime/vendor/plugins/open-design/_official/design-systems/arc/DESIGN.md +152 -0
  2393. package/runtime/vendor/plugins/open-design/_official/design-systems/arc/open-design.json +112 -0
  2394. package/runtime/vendor/plugins/open-design/_official/design-systems/artistic/DESIGN.md +71 -0
  2395. package/runtime/vendor/plugins/open-design/_official/design-systems/artistic/open-design.json +112 -0
  2396. package/runtime/vendor/plugins/open-design/_official/design-systems/atelier-zero/DESIGN.md +316 -0
  2397. package/runtime/vendor/plugins/open-design/_official/design-systems/atelier-zero/open-design.json +112 -0
  2398. package/runtime/vendor/plugins/open-design/_official/design-systems/bento/DESIGN.md +71 -0
  2399. package/runtime/vendor/plugins/open-design/_official/design-systems/bento/open-design.json +112 -0
  2400. package/runtime/vendor/plugins/open-design/_official/design-systems/binance/DESIGN.md +348 -0
  2401. package/runtime/vendor/plugins/open-design/_official/design-systems/binance/open-design.json +112 -0
  2402. package/runtime/vendor/plugins/open-design/_official/design-systems/bmw/DESIGN.md +183 -0
  2403. package/runtime/vendor/plugins/open-design/_official/design-systems/bmw/open-design.json +112 -0
  2404. package/runtime/vendor/plugins/open-design/_official/design-systems/bmw-m/DESIGN.md +246 -0
  2405. package/runtime/vendor/plugins/open-design/_official/design-systems/bmw-m/open-design.json +112 -0
  2406. package/runtime/vendor/plugins/open-design/_official/design-systems/bold/DESIGN.md +71 -0
  2407. package/runtime/vendor/plugins/open-design/_official/design-systems/bold/open-design.json +112 -0
  2408. package/runtime/vendor/plugins/open-design/_official/design-systems/brutalism/DESIGN.md +71 -0
  2409. package/runtime/vendor/plugins/open-design/_official/design-systems/brutalism/open-design.json +112 -0
  2410. package/runtime/vendor/plugins/open-design/_official/design-systems/bugatti/DESIGN.md +271 -0
  2411. package/runtime/vendor/plugins/open-design/_official/design-systems/bugatti/open-design.json +112 -0
  2412. package/runtime/vendor/plugins/open-design/_official/design-systems/cafe/DESIGN.md +71 -0
  2413. package/runtime/vendor/plugins/open-design/_official/design-systems/cafe/open-design.json +112 -0
  2414. package/runtime/vendor/plugins/open-design/_official/design-systems/cal/DESIGN.md +262 -0
  2415. package/runtime/vendor/plugins/open-design/_official/design-systems/cal/open-design.json +112 -0
  2416. package/runtime/vendor/plugins/open-design/_official/design-systems/canva/DESIGN.md +157 -0
  2417. package/runtime/vendor/plugins/open-design/_official/design-systems/canva/open-design.json +112 -0
  2418. package/runtime/vendor/plugins/open-design/_official/design-systems/claude/DESIGN.md +315 -0
  2419. package/runtime/vendor/plugins/open-design/_official/design-systems/claude/open-design.json +112 -0
  2420. package/runtime/vendor/plugins/open-design/_official/design-systems/clay/DESIGN.md +307 -0
  2421. package/runtime/vendor/plugins/open-design/_official/design-systems/clay/open-design.json +112 -0
  2422. package/runtime/vendor/plugins/open-design/_official/design-systems/claymorphism/DESIGN.md +71 -0
  2423. package/runtime/vendor/plugins/open-design/_official/design-systems/claymorphism/open-design.json +112 -0
  2424. package/runtime/vendor/plugins/open-design/_official/design-systems/clean/DESIGN.md +71 -0
  2425. package/runtime/vendor/plugins/open-design/_official/design-systems/clean/open-design.json +112 -0
  2426. package/runtime/vendor/plugins/open-design/_official/design-systems/clickhouse/DESIGN.md +284 -0
  2427. package/runtime/vendor/plugins/open-design/_official/design-systems/clickhouse/open-design.json +112 -0
  2428. package/runtime/vendor/plugins/open-design/_official/design-systems/cohere/DESIGN.md +269 -0
  2429. package/runtime/vendor/plugins/open-design/_official/design-systems/cohere/open-design.json +112 -0
  2430. package/runtime/vendor/plugins/open-design/_official/design-systems/coinbase/DESIGN.md +132 -0
  2431. package/runtime/vendor/plugins/open-design/_official/design-systems/coinbase/open-design.json +112 -0
  2432. package/runtime/vendor/plugins/open-design/_official/design-systems/colorful/DESIGN.md +71 -0
  2433. package/runtime/vendor/plugins/open-design/_official/design-systems/colorful/open-design.json +112 -0
  2434. package/runtime/vendor/plugins/open-design/_official/design-systems/composio/DESIGN.md +310 -0
  2435. package/runtime/vendor/plugins/open-design/_official/design-systems/composio/open-design.json +112 -0
  2436. package/runtime/vendor/plugins/open-design/_official/design-systems/contemporary/DESIGN.md +71 -0
  2437. package/runtime/vendor/plugins/open-design/_official/design-systems/contemporary/open-design.json +112 -0
  2438. package/runtime/vendor/plugins/open-design/_official/design-systems/corporate/DESIGN.md +71 -0
  2439. package/runtime/vendor/plugins/open-design/_official/design-systems/corporate/open-design.json +112 -0
  2440. package/runtime/vendor/plugins/open-design/_official/design-systems/cosmic/DESIGN.md +71 -0
  2441. package/runtime/vendor/plugins/open-design/_official/design-systems/cosmic/open-design.json +112 -0
  2442. package/runtime/vendor/plugins/open-design/_official/design-systems/creative/DESIGN.md +71 -0
  2443. package/runtime/vendor/plugins/open-design/_official/design-systems/creative/open-design.json +112 -0
  2444. package/runtime/vendor/plugins/open-design/_official/design-systems/cursor/DESIGN.md +312 -0
  2445. package/runtime/vendor/plugins/open-design/_official/design-systems/cursor/open-design.json +112 -0
  2446. package/runtime/vendor/plugins/open-design/_official/design-systems/dashboard/DESIGN.md +71 -0
  2447. package/runtime/vendor/plugins/open-design/_official/design-systems/dashboard/open-design.json +112 -0
  2448. package/runtime/vendor/plugins/open-design/_official/design-systems/default/DESIGN.md +62 -0
  2449. package/runtime/vendor/plugins/open-design/_official/design-systems/default/open-design.json +112 -0
  2450. package/runtime/vendor/plugins/open-design/_official/design-systems/discord/DESIGN.md +162 -0
  2451. package/runtime/vendor/plugins/open-design/_official/design-systems/discord/open-design.json +112 -0
  2452. package/runtime/vendor/plugins/open-design/_official/design-systems/dithered/DESIGN.md +71 -0
  2453. package/runtime/vendor/plugins/open-design/_official/design-systems/dithered/open-design.json +112 -0
  2454. package/runtime/vendor/plugins/open-design/_official/design-systems/doodle/DESIGN.md +71 -0
  2455. package/runtime/vendor/plugins/open-design/_official/design-systems/doodle/open-design.json +112 -0
  2456. package/runtime/vendor/plugins/open-design/_official/design-systems/dramatic/DESIGN.md +71 -0
  2457. package/runtime/vendor/plugins/open-design/_official/design-systems/dramatic/open-design.json +112 -0
  2458. package/runtime/vendor/plugins/open-design/_official/design-systems/duolingo/DESIGN.md +154 -0
  2459. package/runtime/vendor/plugins/open-design/_official/design-systems/duolingo/open-design.json +112 -0
  2460. package/runtime/vendor/plugins/open-design/_official/design-systems/editorial/DESIGN.md +71 -0
  2461. package/runtime/vendor/plugins/open-design/_official/design-systems/editorial/open-design.json +112 -0
  2462. package/runtime/vendor/plugins/open-design/_official/design-systems/elegant/DESIGN.md +71 -0
  2463. package/runtime/vendor/plugins/open-design/_official/design-systems/elegant/open-design.json +112 -0
  2464. package/runtime/vendor/plugins/open-design/_official/design-systems/elevenlabs/DESIGN.md +268 -0
  2465. package/runtime/vendor/plugins/open-design/_official/design-systems/elevenlabs/open-design.json +112 -0
  2466. package/runtime/vendor/plugins/open-design/_official/design-systems/energetic/DESIGN.md +72 -0
  2467. package/runtime/vendor/plugins/open-design/_official/design-systems/energetic/open-design.json +112 -0
  2468. package/runtime/vendor/plugins/open-design/_official/design-systems/enterprise/DESIGN.md +71 -0
  2469. package/runtime/vendor/plugins/open-design/_official/design-systems/enterprise/open-design.json +112 -0
  2470. package/runtime/vendor/plugins/open-design/_official/design-systems/expo/DESIGN.md +284 -0
  2471. package/runtime/vendor/plugins/open-design/_official/design-systems/expo/open-design.json +112 -0
  2472. package/runtime/vendor/plugins/open-design/_official/design-systems/expressive/DESIGN.md +71 -0
  2473. package/runtime/vendor/plugins/open-design/_official/design-systems/expressive/open-design.json +112 -0
  2474. package/runtime/vendor/plugins/open-design/_official/design-systems/fantasy/DESIGN.md +71 -0
  2475. package/runtime/vendor/plugins/open-design/_official/design-systems/fantasy/open-design.json +112 -0
  2476. package/runtime/vendor/plugins/open-design/_official/design-systems/ferrari/DESIGN.md +317 -0
  2477. package/runtime/vendor/plugins/open-design/_official/design-systems/ferrari/open-design.json +112 -0
  2478. package/runtime/vendor/plugins/open-design/_official/design-systems/figma/DESIGN.md +223 -0
  2479. package/runtime/vendor/plugins/open-design/_official/design-systems/figma/open-design.json +112 -0
  2480. package/runtime/vendor/plugins/open-design/_official/design-systems/flat/DESIGN.md +71 -0
  2481. package/runtime/vendor/plugins/open-design/_official/design-systems/flat/open-design.json +112 -0
  2482. package/runtime/vendor/plugins/open-design/_official/design-systems/framer/DESIGN.md +249 -0
  2483. package/runtime/vendor/plugins/open-design/_official/design-systems/framer/open-design.json +112 -0
  2484. package/runtime/vendor/plugins/open-design/_official/design-systems/friendly/DESIGN.md +71 -0
  2485. package/runtime/vendor/plugins/open-design/_official/design-systems/friendly/open-design.json +112 -0
  2486. package/runtime/vendor/plugins/open-design/_official/design-systems/futuristic/DESIGN.md +71 -0
  2487. package/runtime/vendor/plugins/open-design/_official/design-systems/futuristic/open-design.json +112 -0
  2488. package/runtime/vendor/plugins/open-design/_official/design-systems/github/DESIGN.md +155 -0
  2489. package/runtime/vendor/plugins/open-design/_official/design-systems/github/open-design.json +112 -0
  2490. package/runtime/vendor/plugins/open-design/_official/design-systems/glassmorphism/DESIGN.md +71 -0
  2491. package/runtime/vendor/plugins/open-design/_official/design-systems/glassmorphism/open-design.json +112 -0
  2492. package/runtime/vendor/plugins/open-design/_official/design-systems/gradient/DESIGN.md +71 -0
  2493. package/runtime/vendor/plugins/open-design/_official/design-systems/gradient/open-design.json +112 -0
  2494. package/runtime/vendor/plugins/open-design/_official/design-systems/hashicorp/DESIGN.md +281 -0
  2495. package/runtime/vendor/plugins/open-design/_official/design-systems/hashicorp/open-design.json +112 -0
  2496. package/runtime/vendor/plugins/open-design/_official/design-systems/huggingface/DESIGN.md +149 -0
  2497. package/runtime/vendor/plugins/open-design/_official/design-systems/huggingface/open-design.json +112 -0
  2498. package/runtime/vendor/plugins/open-design/_official/design-systems/ibm/DESIGN.md +335 -0
  2499. package/runtime/vendor/plugins/open-design/_official/design-systems/ibm/open-design.json +112 -0
  2500. package/runtime/vendor/plugins/open-design/_official/design-systems/intercom/DESIGN.md +149 -0
  2501. package/runtime/vendor/plugins/open-design/_official/design-systems/intercom/open-design.json +112 -0
  2502. package/runtime/vendor/plugins/open-design/_official/design-systems/kami/DESIGN.md +410 -0
  2503. package/runtime/vendor/plugins/open-design/_official/design-systems/kami/open-design.json +112 -0
  2504. package/runtime/vendor/plugins/open-design/_official/design-systems/kraken/DESIGN.md +128 -0
  2505. package/runtime/vendor/plugins/open-design/_official/design-systems/kraken/open-design.json +112 -0
  2506. package/runtime/vendor/plugins/open-design/_official/design-systems/lamborghini/DESIGN.md +291 -0
  2507. package/runtime/vendor/plugins/open-design/_official/design-systems/lamborghini/open-design.json +112 -0
  2508. package/runtime/vendor/plugins/open-design/_official/design-systems/levels/DESIGN.md +71 -0
  2509. package/runtime/vendor/plugins/open-design/_official/design-systems/levels/open-design.json +112 -0
  2510. package/runtime/vendor/plugins/open-design/_official/design-systems/linear-app/DESIGN.md +370 -0
  2511. package/runtime/vendor/plugins/open-design/_official/design-systems/linear-app/open-design.json +112 -0
  2512. package/runtime/vendor/plugins/open-design/_official/design-systems/lingo/DESIGN.md +71 -0
  2513. package/runtime/vendor/plugins/open-design/_official/design-systems/lingo/open-design.json +112 -0
  2514. package/runtime/vendor/plugins/open-design/_official/design-systems/lovable/DESIGN.md +301 -0
  2515. package/runtime/vendor/plugins/open-design/_official/design-systems/lovable/open-design.json +112 -0
  2516. package/runtime/vendor/plugins/open-design/_official/design-systems/luxury/DESIGN.md +71 -0
  2517. package/runtime/vendor/plugins/open-design/_official/design-systems/luxury/open-design.json +112 -0
  2518. package/runtime/vendor/plugins/open-design/_official/design-systems/mastercard/DESIGN.md +368 -0
  2519. package/runtime/vendor/plugins/open-design/_official/design-systems/mastercard/open-design.json +112 -0
  2520. package/runtime/vendor/plugins/open-design/_official/design-systems/material/DESIGN.md +71 -0
  2521. package/runtime/vendor/plugins/open-design/_official/design-systems/material/open-design.json +112 -0
  2522. package/runtime/vendor/plugins/open-design/_official/design-systems/meta/DESIGN.md +369 -0
  2523. package/runtime/vendor/plugins/open-design/_official/design-systems/meta/open-design.json +112 -0
  2524. package/runtime/vendor/plugins/open-design/_official/design-systems/minimal/DESIGN.md +71 -0
  2525. package/runtime/vendor/plugins/open-design/_official/design-systems/minimal/open-design.json +112 -0
  2526. package/runtime/vendor/plugins/open-design/_official/design-systems/minimax/DESIGN.md +260 -0
  2527. package/runtime/vendor/plugins/open-design/_official/design-systems/minimax/open-design.json +112 -0
  2528. package/runtime/vendor/plugins/open-design/_official/design-systems/mintlify/DESIGN.md +329 -0
  2529. package/runtime/vendor/plugins/open-design/_official/design-systems/mintlify/open-design.json +112 -0
  2530. package/runtime/vendor/plugins/open-design/_official/design-systems/miro/DESIGN.md +111 -0
  2531. package/runtime/vendor/plugins/open-design/_official/design-systems/miro/open-design.json +112 -0
  2532. package/runtime/vendor/plugins/open-design/_official/design-systems/mission-control/DESIGN.md +476 -0
  2533. package/runtime/vendor/plugins/open-design/_official/design-systems/mission-control/open-design.json +112 -0
  2534. package/runtime/vendor/plugins/open-design/_official/design-systems/mistral-ai/DESIGN.md +264 -0
  2535. package/runtime/vendor/plugins/open-design/_official/design-systems/mistral-ai/open-design.json +112 -0
  2536. package/runtime/vendor/plugins/open-design/_official/design-systems/modern/DESIGN.md +71 -0
  2537. package/runtime/vendor/plugins/open-design/_official/design-systems/modern/open-design.json +112 -0
  2538. package/runtime/vendor/plugins/open-design/_official/design-systems/mongodb/DESIGN.md +269 -0
  2539. package/runtime/vendor/plugins/open-design/_official/design-systems/mongodb/open-design.json +112 -0
  2540. package/runtime/vendor/plugins/open-design/_official/design-systems/mono/DESIGN.md +71 -0
  2541. package/runtime/vendor/plugins/open-design/_official/design-systems/mono/open-design.json +112 -0
  2542. package/runtime/vendor/plugins/open-design/_official/design-systems/neobrutalism/DESIGN.md +71 -0
  2543. package/runtime/vendor/plugins/open-design/_official/design-systems/neobrutalism/open-design.json +112 -0
  2544. package/runtime/vendor/plugins/open-design/_official/design-systems/neon/DESIGN.md +71 -0
  2545. package/runtime/vendor/plugins/open-design/_official/design-systems/neon/open-design.json +112 -0
  2546. package/runtime/vendor/plugins/open-design/_official/design-systems/neumorphism/DESIGN.md +71 -0
  2547. package/runtime/vendor/plugins/open-design/_official/design-systems/neumorphism/open-design.json +112 -0
  2548. package/runtime/vendor/plugins/open-design/_official/design-systems/nike/DESIGN.md +366 -0
  2549. package/runtime/vendor/plugins/open-design/_official/design-systems/nike/open-design.json +112 -0
  2550. package/runtime/vendor/plugins/open-design/_official/design-systems/notion/DESIGN.md +312 -0
  2551. package/runtime/vendor/plugins/open-design/_official/design-systems/notion/open-design.json +112 -0
  2552. package/runtime/vendor/plugins/open-design/_official/design-systems/nvidia/DESIGN.md +296 -0
  2553. package/runtime/vendor/plugins/open-design/_official/design-systems/nvidia/open-design.json +112 -0
  2554. package/runtime/vendor/plugins/open-design/_official/design-systems/ollama/DESIGN.md +270 -0
  2555. package/runtime/vendor/plugins/open-design/_official/design-systems/ollama/open-design.json +112 -0
  2556. package/runtime/vendor/plugins/open-design/_official/design-systems/openai/DESIGN.md +140 -0
  2557. package/runtime/vendor/plugins/open-design/_official/design-systems/openai/open-design.json +112 -0
  2558. package/runtime/vendor/plugins/open-design/_official/design-systems/opencode-ai/DESIGN.md +284 -0
  2559. package/runtime/vendor/plugins/open-design/_official/design-systems/opencode-ai/open-design.json +112 -0
  2560. package/runtime/vendor/plugins/open-design/_official/design-systems/pacman/DESIGN.md +71 -0
  2561. package/runtime/vendor/plugins/open-design/_official/design-systems/pacman/open-design.json +112 -0
  2562. package/runtime/vendor/plugins/open-design/_official/design-systems/paper/DESIGN.md +71 -0
  2563. package/runtime/vendor/plugins/open-design/_official/design-systems/paper/open-design.json +112 -0
  2564. package/runtime/vendor/plugins/open-design/_official/design-systems/perspective/DESIGN.md +71 -0
  2565. package/runtime/vendor/plugins/open-design/_official/design-systems/perspective/open-design.json +112 -0
  2566. package/runtime/vendor/plugins/open-design/_official/design-systems/pinterest/DESIGN.md +233 -0
  2567. package/runtime/vendor/plugins/open-design/_official/design-systems/pinterest/open-design.json +112 -0
  2568. package/runtime/vendor/plugins/open-design/_official/design-systems/playstation/DESIGN.md +367 -0
  2569. package/runtime/vendor/plugins/open-design/_official/design-systems/playstation/open-design.json +112 -0
  2570. package/runtime/vendor/plugins/open-design/_official/design-systems/posthog/DESIGN.md +259 -0
  2571. package/runtime/vendor/plugins/open-design/_official/design-systems/posthog/open-design.json +112 -0
  2572. package/runtime/vendor/plugins/open-design/_official/design-systems/premium/DESIGN.md +71 -0
  2573. package/runtime/vendor/plugins/open-design/_official/design-systems/premium/open-design.json +112 -0
  2574. package/runtime/vendor/plugins/open-design/_official/design-systems/professional/DESIGN.md +71 -0
  2575. package/runtime/vendor/plugins/open-design/_official/design-systems/professional/open-design.json +112 -0
  2576. package/runtime/vendor/plugins/open-design/_official/design-systems/publication/DESIGN.md +71 -0
  2577. package/runtime/vendor/plugins/open-design/_official/design-systems/publication/open-design.json +112 -0
  2578. package/runtime/vendor/plugins/open-design/_official/design-systems/raycast/DESIGN.md +271 -0
  2579. package/runtime/vendor/plugins/open-design/_official/design-systems/raycast/open-design.json +112 -0
  2580. package/runtime/vendor/plugins/open-design/_official/design-systems/refined/DESIGN.md +71 -0
  2581. package/runtime/vendor/plugins/open-design/_official/design-systems/refined/open-design.json +112 -0
  2582. package/runtime/vendor/plugins/open-design/_official/design-systems/renault/DESIGN.md +314 -0
  2583. package/runtime/vendor/plugins/open-design/_official/design-systems/renault/open-design.json +112 -0
  2584. package/runtime/vendor/plugins/open-design/_official/design-systems/replicate/DESIGN.md +264 -0
  2585. package/runtime/vendor/plugins/open-design/_official/design-systems/replicate/open-design.json +112 -0
  2586. package/runtime/vendor/plugins/open-design/_official/design-systems/resend/DESIGN.md +306 -0
  2587. package/runtime/vendor/plugins/open-design/_official/design-systems/resend/open-design.json +112 -0
  2588. package/runtime/vendor/plugins/open-design/_official/design-systems/retro/DESIGN.md +71 -0
  2589. package/runtime/vendor/plugins/open-design/_official/design-systems/retro/open-design.json +112 -0
  2590. package/runtime/vendor/plugins/open-design/_official/design-systems/revolut/DESIGN.md +188 -0
  2591. package/runtime/vendor/plugins/open-design/_official/design-systems/revolut/open-design.json +112 -0
  2592. package/runtime/vendor/plugins/open-design/_official/design-systems/runwayml/DESIGN.md +247 -0
  2593. package/runtime/vendor/plugins/open-design/_official/design-systems/runwayml/open-design.json +112 -0
  2594. package/runtime/vendor/plugins/open-design/_official/design-systems/sanity/DESIGN.md +360 -0
  2595. package/runtime/vendor/plugins/open-design/_official/design-systems/sanity/open-design.json +112 -0
  2596. package/runtime/vendor/plugins/open-design/_official/design-systems/sentry/DESIGN.md +265 -0
  2597. package/runtime/vendor/plugins/open-design/_official/design-systems/sentry/open-design.json +112 -0
  2598. package/runtime/vendor/plugins/open-design/_official/design-systems/shadcn/DESIGN.md +71 -0
  2599. package/runtime/vendor/plugins/open-design/_official/design-systems/shadcn/open-design.json +112 -0
  2600. package/runtime/vendor/plugins/open-design/_official/design-systems/shopify/DESIGN.md +353 -0
  2601. package/runtime/vendor/plugins/open-design/_official/design-systems/shopify/open-design.json +112 -0
  2602. package/runtime/vendor/plugins/open-design/_official/design-systems/simple/DESIGN.md +71 -0
  2603. package/runtime/vendor/plugins/open-design/_official/design-systems/simple/open-design.json +112 -0
  2604. package/runtime/vendor/plugins/open-design/_official/design-systems/skeumorphism/DESIGN.md +71 -0
  2605. package/runtime/vendor/plugins/open-design/_official/design-systems/skeumorphism/open-design.json +112 -0
  2606. package/runtime/vendor/plugins/open-design/_official/design-systems/sleek/DESIGN.md +71 -0
  2607. package/runtime/vendor/plugins/open-design/_official/design-systems/sleek/open-design.json +112 -0
  2608. package/runtime/vendor/plugins/open-design/_official/design-systems/spacex/DESIGN.md +197 -0
  2609. package/runtime/vendor/plugins/open-design/_official/design-systems/spacex/open-design.json +112 -0
  2610. package/runtime/vendor/plugins/open-design/_official/design-systems/spacious/DESIGN.md +71 -0
  2611. package/runtime/vendor/plugins/open-design/_official/design-systems/spacious/open-design.json +112 -0
  2612. package/runtime/vendor/plugins/open-design/_official/design-systems/spotify/DESIGN.md +249 -0
  2613. package/runtime/vendor/plugins/open-design/_official/design-systems/spotify/open-design.json +112 -0
  2614. package/runtime/vendor/plugins/open-design/_official/design-systems/starbucks/DESIGN.md +583 -0
  2615. package/runtime/vendor/plugins/open-design/_official/design-systems/starbucks/open-design.json +112 -0
  2616. package/runtime/vendor/plugins/open-design/_official/design-systems/storytelling/DESIGN.md +71 -0
  2617. package/runtime/vendor/plugins/open-design/_official/design-systems/storytelling/open-design.json +112 -0
  2618. package/runtime/vendor/plugins/open-design/_official/design-systems/stripe/DESIGN.md +325 -0
  2619. package/runtime/vendor/plugins/open-design/_official/design-systems/stripe/open-design.json +112 -0
  2620. package/runtime/vendor/plugins/open-design/_official/design-systems/supabase/DESIGN.md +258 -0
  2621. package/runtime/vendor/plugins/open-design/_official/design-systems/supabase/open-design.json +112 -0
  2622. package/runtime/vendor/plugins/open-design/_official/design-systems/superhuman/DESIGN.md +255 -0
  2623. package/runtime/vendor/plugins/open-design/_official/design-systems/superhuman/open-design.json +112 -0
  2624. package/runtime/vendor/plugins/open-design/_official/design-systems/tesla/DESIGN.md +289 -0
  2625. package/runtime/vendor/plugins/open-design/_official/design-systems/tesla/open-design.json +112 -0
  2626. package/runtime/vendor/plugins/open-design/_official/design-systems/tetris/DESIGN.md +71 -0
  2627. package/runtime/vendor/plugins/open-design/_official/design-systems/tetris/open-design.json +112 -0
  2628. package/runtime/vendor/plugins/open-design/_official/design-systems/theverge/DESIGN.md +342 -0
  2629. package/runtime/vendor/plugins/open-design/_official/design-systems/theverge/open-design.json +112 -0
  2630. package/runtime/vendor/plugins/open-design/_official/design-systems/together-ai/DESIGN.md +266 -0
  2631. package/runtime/vendor/plugins/open-design/_official/design-systems/together-ai/open-design.json +112 -0
  2632. package/runtime/vendor/plugins/open-design/_official/design-systems/totality-festival/DESIGN.md +206 -0
  2633. package/runtime/vendor/plugins/open-design/_official/design-systems/totality-festival/open-design.json +112 -0
  2634. package/runtime/vendor/plugins/open-design/_official/design-systems/uber/DESIGN.md +298 -0
  2635. package/runtime/vendor/plugins/open-design/_official/design-systems/uber/open-design.json +112 -0
  2636. package/runtime/vendor/plugins/open-design/_official/design-systems/urdu/DESIGN.md +1002 -0
  2637. package/runtime/vendor/plugins/open-design/_official/design-systems/urdu/open-design.json +112 -0
  2638. package/runtime/vendor/plugins/open-design/_official/design-systems/vercel/DESIGN.md +313 -0
  2639. package/runtime/vendor/plugins/open-design/_official/design-systems/vercel/open-design.json +112 -0
  2640. package/runtime/vendor/plugins/open-design/_official/design-systems/vibrant/DESIGN.md +71 -0
  2641. package/runtime/vendor/plugins/open-design/_official/design-systems/vibrant/open-design.json +112 -0
  2642. package/runtime/vendor/plugins/open-design/_official/design-systems/vintage/DESIGN.md +71 -0
  2643. package/runtime/vendor/plugins/open-design/_official/design-systems/vintage/open-design.json +112 -0
  2644. package/runtime/vendor/plugins/open-design/_official/design-systems/vodafone/DESIGN.md +426 -0
  2645. package/runtime/vendor/plugins/open-design/_official/design-systems/vodafone/open-design.json +112 -0
  2646. package/runtime/vendor/plugins/open-design/_official/design-systems/voltagent/DESIGN.md +326 -0
  2647. package/runtime/vendor/plugins/open-design/_official/design-systems/voltagent/open-design.json +112 -0
  2648. package/runtime/vendor/plugins/open-design/_official/design-systems/warm-editorial/DESIGN.md +65 -0
  2649. package/runtime/vendor/plugins/open-design/_official/design-systems/warm-editorial/open-design.json +112 -0
  2650. package/runtime/vendor/plugins/open-design/_official/design-systems/warp/DESIGN.md +256 -0
  2651. package/runtime/vendor/plugins/open-design/_official/design-systems/warp/open-design.json +112 -0
  2652. package/runtime/vendor/plugins/open-design/_official/design-systems/webflow/DESIGN.md +95 -0
  2653. package/runtime/vendor/plugins/open-design/_official/design-systems/webflow/open-design.json +112 -0
  2654. package/runtime/vendor/plugins/open-design/_official/design-systems/wired/DESIGN.md +281 -0
  2655. package/runtime/vendor/plugins/open-design/_official/design-systems/wired/open-design.json +112 -0
  2656. package/runtime/vendor/plugins/open-design/_official/design-systems/wise/DESIGN.md +176 -0
  2657. package/runtime/vendor/plugins/open-design/_official/design-systems/wise/open-design.json +112 -0
  2658. package/runtime/vendor/plugins/open-design/_official/design-systems/x-ai/DESIGN.md +260 -0
  2659. package/runtime/vendor/plugins/open-design/_official/design-systems/x-ai/open-design.json +112 -0
  2660. package/runtime/vendor/plugins/open-design/_official/design-systems/xiaohongshu/DESIGN.md +402 -0
  2661. package/runtime/vendor/plugins/open-design/_official/design-systems/xiaohongshu/open-design.json +112 -0
  2662. package/runtime/vendor/plugins/open-design/_official/design-systems/zapier/DESIGN.md +331 -0
  2663. package/runtime/vendor/plugins/open-design/_official/design-systems/zapier/open-design.json +112 -0
  2664. package/runtime/vendor/plugins/open-design/_official/examples/3d-creator-portfolio/SKILL.md +120 -0
  2665. package/runtime/vendor/plugins/open-design/_official/examples/3d-creator-portfolio/example.html +436 -0
  2666. package/runtime/vendor/plugins/open-design/_official/examples/3d-creator-portfolio/open-design.json +125 -0
  2667. package/runtime/vendor/plugins/open-design/_official/examples/acreage-farming/SKILL.md +93 -0
  2668. package/runtime/vendor/plugins/open-design/_official/examples/acreage-farming/example.html +428 -0
  2669. package/runtime/vendor/plugins/open-design/_official/examples/acreage-farming/open-design.json +122 -0
  2670. package/runtime/vendor/plugins/open-design/_official/examples/aerocore/SKILL.md +127 -0
  2671. package/runtime/vendor/plugins/open-design/_official/examples/aerocore/example.html +2136 -0
  2672. package/runtime/vendor/plugins/open-design/_official/examples/aerocore/open-design.json +122 -0
  2673. package/runtime/vendor/plugins/open-design/_official/examples/ai-designer-portfolio/SKILL.md +163 -0
  2674. package/runtime/vendor/plugins/open-design/_official/examples/ai-designer-portfolio/example.html +484 -0
  2675. package/runtime/vendor/plugins/open-design/_official/examples/ai-designer-portfolio/open-design.json +122 -0
  2676. package/runtime/vendor/plugins/open-design/_official/examples/article-magazine/SKILL.md +46 -0
  2677. package/runtime/vendor/plugins/open-design/_official/examples/article-magazine/example.html +81 -0
  2678. package/runtime/vendor/plugins/open-design/_official/examples/article-magazine/open-design.json +126 -0
  2679. package/runtime/vendor/plugins/open-design/_official/examples/audio-jingle/SKILL.md +132 -0
  2680. package/runtime/vendor/plugins/open-design/_official/examples/audio-jingle/example.html +128 -0
  2681. package/runtime/vendor/plugins/open-design/_official/examples/audio-jingle/open-design.json +122 -0
  2682. package/runtime/vendor/plugins/open-design/_official/examples/blog-post/SKILL.md +81 -0
  2683. package/runtime/vendor/plugins/open-design/_official/examples/blog-post/example.html +80 -0
  2684. package/runtime/vendor/plugins/open-design/_official/examples/blog-post/open-design.json +134 -0
  2685. package/runtime/vendor/plugins/open-design/_official/examples/card-twitter/SKILL.md +42 -0
  2686. package/runtime/vendor/plugins/open-design/_official/examples/card-twitter/example.html +58 -0
  2687. package/runtime/vendor/plugins/open-design/_official/examples/card-twitter/open-design.json +126 -0
  2688. package/runtime/vendor/plugins/open-design/_official/examples/card-xiaohongshu/SKILL.md +43 -0
  2689. package/runtime/vendor/plugins/open-design/_official/examples/card-xiaohongshu/example.html +98 -0
  2690. package/runtime/vendor/plugins/open-design/_official/examples/card-xiaohongshu/open-design.json +125 -0
  2691. package/runtime/vendor/plugins/open-design/_official/examples/cinematic-landing-page/SKILL.md +128 -0
  2692. package/runtime/vendor/plugins/open-design/_official/examples/cinematic-landing-page/example.html +723 -0
  2693. package/runtime/vendor/plugins/open-design/_official/examples/cinematic-landing-page/open-design.json +122 -0
  2694. package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/SKILL.md +209 -0
  2695. package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/example.html +698 -0
  2696. package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/open-design.json +131 -0
  2697. package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/references/case-formats.md +94 -0
  2698. package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/references/checklist.md +41 -0
  2699. package/runtime/vendor/plugins/open-design/_official/examples/codenest-coding-platform/SKILL.md +84 -0
  2700. package/runtime/vendor/plugins/open-design/_official/examples/codenest-coding-platform/example.html +233 -0
  2701. package/runtime/vendor/plugins/open-design/_official/examples/codenest-coding-platform/open-design.json +122 -0
  2702. package/runtime/vendor/plugins/open-design/_official/examples/codex-interactive-capability-map/SKILL.md +80 -0
  2703. package/runtime/vendor/plugins/open-design/_official/examples/codex-interactive-capability-map/example.html +672 -0
  2704. package/runtime/vendor/plugins/open-design/_official/examples/codex-interactive-capability-map/open-design.json +125 -0
  2705. package/runtime/vendor/plugins/open-design/_official/examples/critique/SKILL.md +258 -0
  2706. package/runtime/vendor/plugins/open-design/_official/examples/critique/example.html +671 -0
  2707. package/runtime/vendor/plugins/open-design/_official/examples/critique/open-design.json +127 -0
  2708. package/runtime/vendor/plugins/open-design/_official/examples/dashboard/SKILL.md +76 -0
  2709. package/runtime/vendor/plugins/open-design/_official/examples/dashboard/example.html +118 -0
  2710. package/runtime/vendor/plugins/open-design/_official/examples/dashboard/open-design.json +131 -0
  2711. package/runtime/vendor/plugins/open-design/_official/examples/dashboard-ui-glass/SKILL.md +175 -0
  2712. package/runtime/vendor/plugins/open-design/_official/examples/dashboard-ui-glass/example.html +509 -0
  2713. package/runtime/vendor/plugins/open-design/_official/examples/dashboard-ui-glass/open-design.json +122 -0
  2714. package/runtime/vendor/plugins/open-design/_official/examples/data-report/SKILL.md +45 -0
  2715. package/runtime/vendor/plugins/open-design/_official/examples/data-report/example.html +175 -0
  2716. package/runtime/vendor/plugins/open-design/_official/examples/data-report/open-design.json +126 -0
  2717. package/runtime/vendor/plugins/open-design/_official/examples/dating-web/SKILL.md +93 -0
  2718. package/runtime/vendor/plugins/open-design/_official/examples/dating-web/example.html +265 -0
  2719. package/runtime/vendor/plugins/open-design/_official/examples/dating-web/open-design.json +128 -0
  2720. package/runtime/vendor/plugins/open-design/_official/examples/dcf-valuation/SKILL.md +140 -0
  2721. package/runtime/vendor/plugins/open-design/_official/examples/dcf-valuation/open-design.json +121 -0
  2722. package/runtime/vendor/plugins/open-design/_official/examples/dcf-valuation/references/sector-wacc.md +42 -0
  2723. package/runtime/vendor/plugins/open-design/_official/examples/deck-guizang-editorial/SKILL.md +66 -0
  2724. package/runtime/vendor/plugins/open-design/_official/examples/deck-guizang-editorial/example.html +631 -0
  2725. package/runtime/vendor/plugins/open-design/_official/examples/deck-guizang-editorial/open-design.json +126 -0
  2726. package/runtime/vendor/plugins/open-design/_official/examples/deck-open-slide-canvas/SKILL.md +70 -0
  2727. package/runtime/vendor/plugins/open-design/_official/examples/deck-open-slide-canvas/example.html +602 -0
  2728. package/runtime/vendor/plugins/open-design/_official/examples/deck-open-slide-canvas/open-design.json +126 -0
  2729. package/runtime/vendor/plugins/open-design/_official/examples/deck-swiss-international/SKILL.md +80 -0
  2730. package/runtime/vendor/plugins/open-design/_official/examples/deck-swiss-international/example.html +746 -0
  2731. package/runtime/vendor/plugins/open-design/_official/examples/deck-swiss-international/open-design.json +127 -0
  2732. package/runtime/vendor/plugins/open-design/_official/examples/design-brief/SKILL.md +252 -0
  2733. package/runtime/vendor/plugins/open-design/_official/examples/design-brief/open-design.json +122 -0
  2734. package/runtime/vendor/plugins/open-design/_official/examples/digital-eguide/SKILL.md +93 -0
  2735. package/runtime/vendor/plugins/open-design/_official/examples/digital-eguide/example.html +204 -0
  2736. package/runtime/vendor/plugins/open-design/_official/examples/digital-eguide/open-design.json +136 -0
  2737. package/runtime/vendor/plugins/open-design/_official/examples/doc-kami-parchment/SKILL.md +70 -0
  2738. package/runtime/vendor/plugins/open-design/_official/examples/doc-kami-parchment/example.html +84 -0
  2739. package/runtime/vendor/plugins/open-design/_official/examples/doc-kami-parchment/open-design.json +130 -0
  2740. package/runtime/vendor/plugins/open-design/_official/examples/docs-page/SKILL.md +80 -0
  2741. package/runtime/vendor/plugins/open-design/_official/examples/docs-page/example.html +122 -0
  2742. package/runtime/vendor/plugins/open-design/_official/examples/docs-page/open-design.json +133 -0
  2743. package/runtime/vendor/plugins/open-design/_official/examples/dreamcore-landing/SKILL.md +134 -0
  2744. package/runtime/vendor/plugins/open-design/_official/examples/dreamcore-landing/example.html +615 -0
  2745. package/runtime/vendor/plugins/open-design/_official/examples/dreamcore-landing/open-design.json +122 -0
  2746. package/runtime/vendor/plugins/open-design/_official/examples/email-marketing/SKILL.md +85 -0
  2747. package/runtime/vendor/plugins/open-design/_official/examples/email-marketing/example.html +159 -0
  2748. package/runtime/vendor/plugins/open-design/_official/examples/email-marketing/open-design.json +128 -0
  2749. package/runtime/vendor/plugins/open-design/_official/examples/eng-runbook/SKILL.md +51 -0
  2750. package/runtime/vendor/plugins/open-design/_official/examples/eng-runbook/example.html +250 -0
  2751. package/runtime/vendor/plugins/open-design/_official/examples/eng-runbook/open-design.json +127 -0
  2752. package/runtime/vendor/plugins/open-design/_official/examples/evergreen-finance/SKILL.md +157 -0
  2753. package/runtime/vendor/plugins/open-design/_official/examples/evergreen-finance/example.html +627 -0
  2754. package/runtime/vendor/plugins/open-design/_official/examples/evergreen-finance/open-design.json +122 -0
  2755. package/runtime/vendor/plugins/open-design/_official/examples/finance-report/SKILL.md +62 -0
  2756. package/runtime/vendor/plugins/open-design/_official/examples/finance-report/example.html +242 -0
  2757. package/runtime/vendor/plugins/open-design/_official/examples/finance-report/open-design.json +130 -0
  2758. package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/SKILL.md +87 -0
  2759. package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/assets/template.html +387 -0
  2760. package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/example.html +13 -0
  2761. package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/open-design.json +133 -0
  2762. package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/references/checklist.md +35 -0
  2763. package/runtime/vendor/plugins/open-design/_official/examples/frame-data-chart-nyt/SKILL.md +59 -0
  2764. package/runtime/vendor/plugins/open-design/_official/examples/frame-data-chart-nyt/example.html +101 -0
  2765. package/runtime/vendor/plugins/open-design/_official/examples/frame-data-chart-nyt/open-design.json +123 -0
  2766. package/runtime/vendor/plugins/open-design/_official/examples/frame-flowchart-sticky/SKILL.md +64 -0
  2767. package/runtime/vendor/plugins/open-design/_official/examples/frame-flowchart-sticky/example.html +137 -0
  2768. package/runtime/vendor/plugins/open-design/_official/examples/frame-flowchart-sticky/open-design.json +124 -0
  2769. package/runtime/vendor/plugins/open-design/_official/examples/frame-glitch-title/SKILL.md +67 -0
  2770. package/runtime/vendor/plugins/open-design/_official/examples/frame-glitch-title/example.html +99 -0
  2771. package/runtime/vendor/plugins/open-design/_official/examples/frame-glitch-title/open-design.json +125 -0
  2772. package/runtime/vendor/plugins/open-design/_official/examples/frame-light-leak-cinema/SKILL.md +66 -0
  2773. package/runtime/vendor/plugins/open-design/_official/examples/frame-light-leak-cinema/example.html +81 -0
  2774. package/runtime/vendor/plugins/open-design/_official/examples/frame-light-leak-cinema/open-design.json +124 -0
  2775. package/runtime/vendor/plugins/open-design/_official/examples/frame-liquid-bg-hero/SKILL.md +71 -0
  2776. package/runtime/vendor/plugins/open-design/_official/examples/frame-liquid-bg-hero/example.html +64 -0
  2777. package/runtime/vendor/plugins/open-design/_official/examples/frame-liquid-bg-hero/open-design.json +124 -0
  2778. package/runtime/vendor/plugins/open-design/_official/examples/frame-logo-outro/SKILL.md +64 -0
  2779. package/runtime/vendor/plugins/open-design/_official/examples/frame-logo-outro/example.html +80 -0
  2780. package/runtime/vendor/plugins/open-design/_official/examples/frame-logo-outro/open-design.json +124 -0
  2781. package/runtime/vendor/plugins/open-design/_official/examples/frame-macos-notification/SKILL.md +70 -0
  2782. package/runtime/vendor/plugins/open-design/_official/examples/frame-macos-notification/example.html +60 -0
  2783. package/runtime/vendor/plugins/open-design/_official/examples/frame-macos-notification/open-design.json +123 -0
  2784. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/LICENSE +21 -0
  2785. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/SKILL.md +94 -0
  2786. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/example.html +763 -0
  2787. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/open-design.json +180 -0
  2788. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/STYLE_PRESETS.md +346 -0
  2789. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/animation-patterns.md +110 -0
  2790. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/html-template.md +350 -0
  2791. package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/viewport-base.css +133 -0
  2792. package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/LICENSE +21 -0
  2793. package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/SKILL.md +132 -0
  2794. package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/example.html +1059 -0
  2795. package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/open-design.json +157 -0
  2796. package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/LICENSE +21 -0
  2797. package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/SKILL.md +90 -0
  2798. package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/example.html +2621 -0
  2799. package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/open-design.json +139 -0
  2800. package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/LICENSE +21 -0
  2801. package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/SKILL.md +135 -0
  2802. package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/example.html +842 -0
  2803. package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/open-design.json +158 -0
  2804. package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/LICENSE +21 -0
  2805. package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/SKILL.md +95 -0
  2806. package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/example.html +2842 -0
  2807. package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/open-design.json +146 -0
  2808. package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/LICENSE +21 -0
  2809. package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/SKILL.md +102 -0
  2810. package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/example.html +967 -0
  2811. package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/open-design.json +158 -0
  2812. package/runtime/vendor/plugins/open-design/_official/examples/gamified-app/SKILL.md +109 -0
  2813. package/runtime/vendor/plugins/open-design/_official/examples/gamified-app/example.html +292 -0
  2814. package/runtime/vendor/plugins/open-design/_official/examples/gamified-app/open-design.json +134 -0
  2815. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/SKILL.md +130 -0
  2816. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/example.html +473 -0
  2817. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/open-design.json +134 -0
  2818. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/README.md +10 -0
  2819. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/artifact-example.json +15 -0
  2820. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/example-data.json +138 -0
  2821. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/provenance-example.json +92 -0
  2822. package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/template.html +473 -0
  2823. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/SKILL.md +314 -0
  2824. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/assets/example-slides.html +318 -0
  2825. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/assets/template.html +647 -0
  2826. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/open-design.json +125 -0
  2827. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/checklist.md +265 -0
  2828. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/components.md +363 -0
  2829. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/layouts.md +630 -0
  2830. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/styles.md +195 -0
  2831. package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/themes.md +122 -0
  2832. package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/SKILL.md +355 -0
  2833. package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/open-design.json +117 -0
  2834. package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/references/animation-rows.md +29 -0
  2835. package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/references/codex-pet-contract.md +35 -0
  2836. package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/references/qa-rubric.md +60 -0
  2837. package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/LICENSE +21 -0
  2838. package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/SKILL.md +167 -0
  2839. package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/example.html +455 -0
  2840. package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/open-design.json +143 -0
  2841. package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/LICENSE +21 -0
  2842. package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/SKILL.md +172 -0
  2843. package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/example.html +418 -0
  2844. package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/open-design.json +142 -0
  2845. package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/LICENSE +21 -0
  2846. package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/SKILL.md +162 -0
  2847. package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/example.html +415 -0
  2848. package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/open-design.json +145 -0
  2849. package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/LICENSE +21 -0
  2850. package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/SKILL.md +180 -0
  2851. package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/example.html +429 -0
  2852. package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/open-design.json +145 -0
  2853. package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/LICENSE +21 -0
  2854. package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/SKILL.md +175 -0
  2855. package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/example.html +450 -0
  2856. package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/open-design.json +143 -0
  2857. package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/LICENSE +21 -0
  2858. package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/SKILL.md +162 -0
  2859. package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/example.html +437 -0
  2860. package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/open-design.json +145 -0
  2861. package/runtime/vendor/plugins/open-design/_official/examples/hr-onboarding/SKILL.md +52 -0
  2862. package/runtime/vendor/plugins/open-design/_official/examples/hr-onboarding/example.html +219 -0
  2863. package/runtime/vendor/plugins/open-design/_official/examples/hr-onboarding/open-design.json +128 -0
  2864. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/SKILL.md +251 -0
  2865. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/assets/base.css +150 -0
  2866. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/assets/fonts.css +9 -0
  2867. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/assets/runtime.js +960 -0
  2868. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/open-design.json +129 -0
  2869. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/animations.md +147 -0
  2870. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/authoring-guide.md +141 -0
  2871. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/full-decks.md +98 -0
  2872. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/layouts.md +103 -0
  2873. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/presenter-mode.md +240 -0
  2874. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/themes.md +107 -0
  2875. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-course-module/SKILL.md +79 -0
  2876. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-course-module/example.html +308 -0
  2877. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-course-module/open-design.json +122 -0
  2878. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-graphify-dark-graph/SKILL.md +78 -0
  2879. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-graphify-dark-graph/example.html +361 -0
  2880. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-graphify-dark-graph/open-design.json +122 -0
  2881. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-hermes-cyber-terminal/SKILL.md +78 -0
  2882. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-hermes-cyber-terminal/example.html +414 -0
  2883. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-hermes-cyber-terminal/open-design.json +122 -0
  2884. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-knowledge-arch-blueprint/SKILL.md +78 -0
  2885. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-knowledge-arch-blueprint/example.html +409 -0
  2886. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-knowledge-arch-blueprint/open-design.json +122 -0
  2887. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-obsidian-claude-gradient/SKILL.md +78 -0
  2888. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-obsidian-claude-gradient/example.html +379 -0
  2889. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-obsidian-claude-gradient/open-design.json +122 -0
  2890. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-pitch-deck/SKILL.md +79 -0
  2891. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-pitch-deck/example.html +296 -0
  2892. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-pitch-deck/open-design.json +146 -0
  2893. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-presenter-mode-reveal/SKILL.md +79 -0
  2894. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-presenter-mode-reveal/example.html +756 -0
  2895. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-presenter-mode-reveal/open-design.json +120 -0
  2896. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-product-launch/SKILL.md +78 -0
  2897. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-product-launch/example.html +263 -0
  2898. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-product-launch/open-design.json +122 -0
  2899. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-brutalist/SKILL.md +70 -0
  2900. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-brutalist/example.html +774 -0
  2901. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-brutalist/open-design.json +119 -0
  2902. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-editorial/SKILL.md +60 -0
  2903. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-editorial/example.html +490 -0
  2904. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-editorial/open-design.json +119 -0
  2905. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-tech-sharing/SKILL.md +78 -0
  2906. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-tech-sharing/example.html +298 -0
  2907. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-tech-sharing/open-design.json +122 -0
  2908. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-testing-safety-alert/SKILL.md +79 -0
  2909. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-testing-safety-alert/example.html +408 -0
  2910. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-testing-safety-alert/open-design.json +122 -0
  2911. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-weekly-report/SKILL.md +78 -0
  2912. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-weekly-report/example.html +272 -0
  2913. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-weekly-report/open-design.json +122 -0
  2914. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-pastel-card/SKILL.md +79 -0
  2915. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-pastel-card/example.html +409 -0
  2916. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-pastel-card/open-design.json +121 -0
  2917. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-white-editorial/SKILL.md +78 -0
  2918. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-white-editorial/example.html +427 -0
  2919. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-white-editorial/open-design.json +120 -0
  2920. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-8-bit-orbit/SKILL.md +93 -0
  2921. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-8-bit-orbit/example.html +1657 -0
  2922. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-8-bit-orbit/open-design.json +127 -0
  2923. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-biennale-yellow/SKILL.md +93 -0
  2924. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-biennale-yellow/example.html +855 -0
  2925. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-biennale-yellow/open-design.json +127 -0
  2926. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-block-frame/SKILL.md +93 -0
  2927. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-block-frame/example.html +1460 -0
  2928. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-block-frame/open-design.json +128 -0
  2929. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-blue-professional/SKILL.md +93 -0
  2930. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-blue-professional/example.html +1410 -0
  2931. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-blue-professional/open-design.json +127 -0
  2932. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-bold-poster/SKILL.md +93 -0
  2933. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-bold-poster/example.html +884 -0
  2934. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-bold-poster/open-design.json +127 -0
  2935. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-broadside/SKILL.md +92 -0
  2936. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-broadside/example.html +2189 -0
  2937. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-broadside/open-design.json +127 -0
  2938. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-capsule/SKILL.md +92 -0
  2939. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-capsule/example.html +1417 -0
  2940. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-capsule/open-design.json +127 -0
  2941. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cartesian/SKILL.md +92 -0
  2942. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cartesian/example.html +1157 -0
  2943. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cartesian/open-design.json +127 -0
  2944. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cobalt-grid/SKILL.md +93 -0
  2945. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cobalt-grid/example.html +1207 -0
  2946. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cobalt-grid/open-design.json +127 -0
  2947. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-coral/SKILL.md +92 -0
  2948. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-coral/example.html +1628 -0
  2949. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-coral/open-design.json +127 -0
  2950. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/SKILL.md +99 -0
  2951. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/assets/deck-stage.js +619 -0
  2952. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/example.html +640 -0
  2953. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/open-design.json +128 -0
  2954. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-daisy-days/SKILL.md +93 -0
  2955. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-daisy-days/example.html +497 -0
  2956. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-daisy-days/open-design.json +127 -0
  2957. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/SKILL.md +98 -0
  2958. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/assets/deck-stage.js +619 -0
  2959. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/example.html +753 -0
  2960. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/open-design.json +127 -0
  2961. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-grove/SKILL.md +92 -0
  2962. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-grove/example.html +1738 -0
  2963. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-grove/open-design.json +127 -0
  2964. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-long-table/SKILL.md +92 -0
  2965. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-long-table/example.html +1207 -0
  2966. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-long-table/open-design.json +126 -0
  2967. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-mat/SKILL.md +92 -0
  2968. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-mat/example.html +1404 -0
  2969. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-mat/open-design.json +127 -0
  2970. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-monochrome/SKILL.md +91 -0
  2971. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-monochrome/example.html +2429 -0
  2972. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-monochrome/open-design.json +126 -0
  2973. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/SKILL.md +99 -0
  2974. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/assets/deck-stage.js +619 -0
  2975. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/example.html +827 -0
  2976. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/open-design.json +128 -0
  2977. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/SKILL.md +99 -0
  2978. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/assets/deck-stage.js +619 -0
  2979. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/example.html +827 -0
  2980. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/open-design.json +129 -0
  2981. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/SKILL.md +100 -0
  2982. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/assets/deck-stage.js +619 -0
  2983. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/assets/styles.css +668 -0
  2984. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/example.html +443 -0
  2985. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/open-design.json +130 -0
  2986. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/SKILL.md +99 -0
  2987. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/assets/deck-stage.js +619 -0
  2988. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/example.html +607 -0
  2989. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/open-design.json +129 -0
  2990. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-playful/SKILL.md +92 -0
  2991. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-playful/example.html +1442 -0
  2992. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-playful/open-design.json +127 -0
  2993. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-raw-grid/SKILL.md +93 -0
  2994. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-raw-grid/example.html +1174 -0
  2995. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-raw-grid/open-design.json +127 -0
  2996. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-windows/SKILL.md +92 -0
  2997. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-windows/example.html +1342 -0
  2998. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-windows/open-design.json +126 -0
  2999. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-zine/SKILL.md +93 -0
  3000. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-zine/example.html +1101 -0
  3001. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-zine/open-design.json +127 -0
  3002. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-sakura-chroma/SKILL.md +92 -0
  3003. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-sakura-chroma/example.html +1378 -0
  3004. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-sakura-chroma/open-design.json +126 -0
  3005. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-scatterbrain/SKILL.md +92 -0
  3006. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-scatterbrain/example.html +1339 -0
  3007. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-scatterbrain/open-design.json +127 -0
  3008. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-signal/SKILL.md +92 -0
  3009. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-signal/example.html +2635 -0
  3010. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-signal/open-design.json +127 -0
  3011. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/SKILL.md +98 -0
  3012. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/assets/deck-stage.js +619 -0
  3013. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/example.html +1155 -0
  3014. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/open-design.json +127 -0
  3015. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/SKILL.md +99 -0
  3016. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/assets/deck-stage.js +619 -0
  3017. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/example.html +901 -0
  3018. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/open-design.json +128 -0
  3019. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-studio/SKILL.md +92 -0
  3020. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-studio/example.html +1687 -0
  3021. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-studio/open-design.json +127 -0
  3022. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-vellum/SKILL.md +91 -0
  3023. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-vellum/example.html +1167 -0
  3024. package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-vellum/open-design.json +126 -0
  3025. package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/LICENSE +21 -0
  3026. package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/SKILL.md +165 -0
  3027. package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/example.html +533 -0
  3028. package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/open-design.json +146 -0
  3029. package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/LICENSE +21 -0
  3030. package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/SKILL.md +187 -0
  3031. package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/example.html +856 -0
  3032. package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/open-design.json +148 -0
  3033. package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/LICENSE +21 -0
  3034. package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/SKILL.md +185 -0
  3035. package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/example.html +983 -0
  3036. package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/open-design.json +147 -0
  3037. package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/LICENSE +21 -0
  3038. package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/SKILL.md +180 -0
  3039. package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/example.html +498 -0
  3040. package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/open-design.json +158 -0
  3041. package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/LICENSE +21 -0
  3042. package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/SKILL.md +179 -0
  3043. package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/example.html +848 -0
  3044. package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/open-design.json +146 -0
  3045. package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/LICENSE +21 -0
  3046. package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/SKILL.md +171 -0
  3047. package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/example.html +871 -0
  3048. package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/open-design.json +146 -0
  3049. package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/LICENSE +21 -0
  3050. package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/SKILL.md +170 -0
  3051. package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/example.html +451 -0
  3052. package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/open-design.json +156 -0
  3053. package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/LICENSE +21 -0
  3054. package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/SKILL.md +179 -0
  3055. package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/example.html +668 -0
  3056. package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/open-design.json +147 -0
  3057. package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/LICENSE +21 -0
  3058. package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/SKILL.md +190 -0
  3059. package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/example.html +1001 -0
  3060. package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/open-design.json +147 -0
  3061. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/SKILL.md +500 -0
  3062. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/open-design.json +183 -0
  3063. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/audio-reactive.md +76 -0
  3064. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/captions.md +132 -0
  3065. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/css-patterns.md +373 -0
  3066. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/dynamic-techniques.md +90 -0
  3067. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/html-in-canvas.md +146 -0
  3068. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/motion-principles.md +69 -0
  3069. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/transcript-guide.md +151 -0
  3070. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/transitions.md +112 -0
  3071. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/tts.md +75 -0
  3072. package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/typography.md +175 -0
  3073. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/SKILL.md +161 -0
  3074. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/assets/template.html +436 -0
  3075. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/example.html +1184 -0
  3076. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/open-design.json +134 -0
  3077. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/attribution.md +35 -0
  3078. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/checklist.md +39 -0
  3079. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/compliance.md +60 -0
  3080. package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/conventions.md +36 -0
  3081. package/runtime/vendor/plugins/open-design/_official/examples/image-poster/SKILL.md +104 -0
  3082. package/runtime/vendor/plugins/open-design/_official/examples/image-poster/example.html +113 -0
  3083. package/runtime/vendor/plugins/open-design/_official/examples/image-poster/open-design.json +120 -0
  3084. package/runtime/vendor/plugins/open-design/_official/examples/innovation/SKILL.md +159 -0
  3085. package/runtime/vendor/plugins/open-design/_official/examples/innovation/example.html +415 -0
  3086. package/runtime/vendor/plugins/open-design/_official/examples/innovation/open-design.json +122 -0
  3087. package/runtime/vendor/plugins/open-design/_official/examples/invoice/SKILL.md +48 -0
  3088. package/runtime/vendor/plugins/open-design/_official/examples/invoice/example.html +214 -0
  3089. package/runtime/vendor/plugins/open-design/_official/examples/invoice/open-design.json +125 -0
  3090. package/runtime/vendor/plugins/open-design/_official/examples/kami-deck/SKILL.md +196 -0
  3091. package/runtime/vendor/plugins/open-design/_official/examples/kami-deck/example.html +1140 -0
  3092. package/runtime/vendor/plugins/open-design/_official/examples/kami-deck/open-design.json +126 -0
  3093. package/runtime/vendor/plugins/open-design/_official/examples/kami-landing/SKILL.md +234 -0
  3094. package/runtime/vendor/plugins/open-design/_official/examples/kami-landing/example.html +673 -0
  3095. package/runtime/vendor/plugins/open-design/_official/examples/kami-landing/open-design.json +130 -0
  3096. package/runtime/vendor/plugins/open-design/_official/examples/kanban-board/SKILL.md +50 -0
  3097. package/runtime/vendor/plugins/open-design/_official/examples/kanban-board/example.html +270 -0
  3098. package/runtime/vendor/plugins/open-design/_official/examples/kanban-board/open-design.json +131 -0
  3099. package/runtime/vendor/plugins/open-design/_official/examples/last30days/SKILL.md +142 -0
  3100. package/runtime/vendor/plugins/open-design/_official/examples/last30days/open-design.json +122 -0
  3101. package/runtime/vendor/plugins/open-design/_official/examples/last30days/references/save-html-brief.md +50 -0
  3102. package/runtime/vendor/plugins/open-design/_official/examples/layered-depth/SKILL.md +121 -0
  3103. package/runtime/vendor/plugins/open-design/_official/examples/layered-depth/example.html +511 -0
  3104. package/runtime/vendor/plugins/open-design/_official/examples/layered-depth/open-design.json +122 -0
  3105. package/runtime/vendor/plugins/open-design/_official/examples/liquid-glass-agency/SKILL.md +165 -0
  3106. package/runtime/vendor/plugins/open-design/_official/examples/liquid-glass-agency/example.html +548 -0
  3107. package/runtime/vendor/plugins/open-design/_official/examples/liquid-glass-agency/open-design.json +122 -0
  3108. package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/SKILL.md +136 -0
  3109. package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/open-design.json +122 -0
  3110. package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/references/artifact-schema.md +99 -0
  3111. package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/references/connector-policy.md +119 -0
  3112. package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/references/refresh-contract.md +78 -0
  3113. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/SKILL.md +203 -0
  3114. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/assets/template.html +643 -0
  3115. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/example.html +946 -0
  3116. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/open-design.json +199 -0
  3117. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/checklist.md +83 -0
  3118. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/components.md +212 -0
  3119. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/connectors.md +173 -0
  3120. package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/layouts.md +92 -0
  3121. package/runtime/vendor/plugins/open-design/_official/examples/luxury-botanical/SKILL.md +123 -0
  3122. package/runtime/vendor/plugins/open-design/_official/examples/luxury-botanical/example.html +695 -0
  3123. package/runtime/vendor/plugins/open-design/_official/examples/luxury-botanical/open-design.json +122 -0
  3124. package/runtime/vendor/plugins/open-design/_official/examples/magazine-poster/SKILL.md +88 -0
  3125. package/runtime/vendor/plugins/open-design/_official/examples/magazine-poster/example.html +207 -0
  3126. package/runtime/vendor/plugins/open-design/_official/examples/magazine-poster/open-design.json +130 -0
  3127. package/runtime/vendor/plugins/open-design/_official/examples/meeting-notes/SKILL.md +47 -0
  3128. package/runtime/vendor/plugins/open-design/_official/examples/meeting-notes/example.html +234 -0
  3129. package/runtime/vendor/plugins/open-design/_official/examples/meeting-notes/open-design.json +126 -0
  3130. package/runtime/vendor/plugins/open-design/_official/examples/mindloop-landing/SKILL.md +161 -0
  3131. package/runtime/vendor/plugins/open-design/_official/examples/mindloop-landing/example.html +396 -0
  3132. package/runtime/vendor/plugins/open-design/_official/examples/mindloop-landing/open-design.json +122 -0
  3133. package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/SKILL.md +102 -0
  3134. package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/assets/template.html +442 -0
  3135. package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/example.html +92 -0
  3136. package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/open-design.json +136 -0
  3137. package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/references/checklist.md +46 -0
  3138. package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/references/layouts.md +312 -0
  3139. package/runtime/vendor/plugins/open-design/_official/examples/mobile-onboarding/SKILL.md +54 -0
  3140. package/runtime/vendor/plugins/open-design/_official/examples/mobile-onboarding/example.html +206 -0
  3141. package/runtime/vendor/plugins/open-design/_official/examples/mobile-onboarding/open-design.json +134 -0
  3142. package/runtime/vendor/plugins/open-design/_official/examples/mockup-device-3d/SKILL.md +63 -0
  3143. package/runtime/vendor/plugins/open-design/_official/examples/mockup-device-3d/example.html +193 -0
  3144. package/runtime/vendor/plugins/open-design/_official/examples/mockup-device-3d/open-design.json +127 -0
  3145. package/runtime/vendor/plugins/open-design/_official/examples/motion-frames/SKILL.md +90 -0
  3146. package/runtime/vendor/plugins/open-design/_official/examples/motion-frames/example.html +221 -0
  3147. package/runtime/vendor/plugins/open-design/_official/examples/motion-frames/open-design.json +130 -0
  3148. package/runtime/vendor/plugins/open-design/_official/examples/mythic-naturecore/SKILL.md +117 -0
  3149. package/runtime/vendor/plugins/open-design/_official/examples/mythic-naturecore/example.html +387 -0
  3150. package/runtime/vendor/plugins/open-design/_official/examples/mythic-naturecore/open-design.json +122 -0
  3151. package/runtime/vendor/plugins/open-design/_official/examples/nimbus-grid/SKILL.md +147 -0
  3152. package/runtime/vendor/plugins/open-design/_official/examples/nimbus-grid/example.html +1096 -0
  3153. package/runtime/vendor/plugins/open-design/_official/examples/nimbus-grid/open-design.json +122 -0
  3154. package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-contribute-open-design/SKILL.md +27 -0
  3155. package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-contribute-open-design/open-design.json +129 -0
  3156. package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-publish-github/SKILL.md +27 -0
  3157. package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-publish-github/open-design.json +129 -0
  3158. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/SKILL.md +321 -0
  3159. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/about.png +0 -0
  3160. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/capabilities.png +0 -0
  3161. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/cta.png +0 -0
  3162. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/hero.png +0 -0
  3163. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/image-manifest.json +168 -0
  3164. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/imagegen-prompts.md +246 -0
  3165. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-1.png +0 -0
  3166. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-2.png +0 -0
  3167. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-3.png +0 -0
  3168. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-4.png +0 -0
  3169. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-5.png +0 -0
  3170. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-1.png +0 -0
  3171. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-2.png +0 -0
  3172. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-3.png +0 -0
  3173. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-4.png +0 -0
  3174. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/testimonial.png +0 -0
  3175. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/work-1.png +0 -0
  3176. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/work-2.png +0 -0
  3177. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/example.html +2645 -0
  3178. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/open-design.json +148 -0
  3179. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing-deck/SKILL.md +222 -0
  3180. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing-deck/example.html +1171 -0
  3181. package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing-deck/open-design.json +131 -0
  3182. package/runtime/vendor/plugins/open-design/_official/examples/orbis-nft/SKILL.md +140 -0
  3183. package/runtime/vendor/plugins/open-design/_official/examples/orbis-nft/example.html +473 -0
  3184. package/runtime/vendor/plugins/open-design/_official/examples/orbis-nft/open-design.json +122 -0
  3185. package/runtime/vendor/plugins/open-design/_official/examples/orbit-general/SKILL.md +196 -0
  3186. package/runtime/vendor/plugins/open-design/_official/examples/orbit-general/example.html +1302 -0
  3187. package/runtime/vendor/plugins/open-design/_official/examples/orbit-general/open-design.json +121 -0
  3188. package/runtime/vendor/plugins/open-design/_official/examples/orbit-github/SKILL.md +160 -0
  3189. package/runtime/vendor/plugins/open-design/_official/examples/orbit-github/example.html +770 -0
  3190. package/runtime/vendor/plugins/open-design/_official/examples/orbit-github/open-design.json +123 -0
  3191. package/runtime/vendor/plugins/open-design/_official/examples/orbit-gmail/SKILL.md +163 -0
  3192. package/runtime/vendor/plugins/open-design/_official/examples/orbit-gmail/example.html +643 -0
  3193. package/runtime/vendor/plugins/open-design/_official/examples/orbit-gmail/open-design.json +123 -0
  3194. package/runtime/vendor/plugins/open-design/_official/examples/orbit-linear/SKILL.md +170 -0
  3195. package/runtime/vendor/plugins/open-design/_official/examples/orbit-linear/example.html +571 -0
  3196. package/runtime/vendor/plugins/open-design/_official/examples/orbit-linear/open-design.json +123 -0
  3197. package/runtime/vendor/plugins/open-design/_official/examples/orbit-notion/SKILL.md +179 -0
  3198. package/runtime/vendor/plugins/open-design/_official/examples/orbit-notion/example.html +529 -0
  3199. package/runtime/vendor/plugins/open-design/_official/examples/orbit-notion/open-design.json +123 -0
  3200. package/runtime/vendor/plugins/open-design/_official/examples/pm-spec/SKILL.md +52 -0
  3201. package/runtime/vendor/plugins/open-design/_official/examples/pm-spec/example.html +248 -0
  3202. package/runtime/vendor/plugins/open-design/_official/examples/pm-spec/open-design.json +127 -0
  3203. package/runtime/vendor/plugins/open-design/_official/examples/portfolio-cosmic/SKILL.md +124 -0
  3204. package/runtime/vendor/plugins/open-design/_official/examples/portfolio-cosmic/example.html +587 -0
  3205. package/runtime/vendor/plugins/open-design/_official/examples/portfolio-cosmic/open-design.json +122 -0
  3206. package/runtime/vendor/plugins/open-design/_official/examples/poster-hero/SKILL.md +42 -0
  3207. package/runtime/vendor/plugins/open-design/_official/examples/poster-hero/example.html +88 -0
  3208. package/runtime/vendor/plugins/open-design/_official/examples/poster-hero/open-design.json +124 -0
  3209. package/runtime/vendor/plugins/open-design/_official/examples/ppt-keynote/SKILL.md +43 -0
  3210. package/runtime/vendor/plugins/open-design/_official/examples/ppt-keynote/example.html +198 -0
  3211. package/runtime/vendor/plugins/open-design/_official/examples/ppt-keynote/open-design.json +123 -0
  3212. package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/SKILL.md +254 -0
  3213. package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/open-design.json +122 -0
  3214. package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/references/audit-table-template.md +58 -0
  3215. package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/references/font-discipline.md +363 -0
  3216. package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/references/layout-discipline.md +371 -0
  3217. package/runtime/vendor/plugins/open-design/_official/examples/pricing-page/SKILL.md +79 -0
  3218. package/runtime/vendor/plugins/open-design/_official/examples/pricing-page/example.html +127 -0
  3219. package/runtime/vendor/plugins/open-design/_official/examples/pricing-page/open-design.json +130 -0
  3220. package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/SKILL.md +233 -0
  3221. package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/assets/template.html +488 -0
  3222. package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/open-design.json +148 -0
  3223. package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/checklist.md +112 -0
  3224. package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/components.md +143 -0
  3225. package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/layouts.md +457 -0
  3226. package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/themes.md +326 -0
  3227. package/runtime/vendor/plugins/open-design/_official/examples/resume-modern/SKILL.md +43 -0
  3228. package/runtime/vendor/plugins/open-design/_official/examples/resume-modern/example.html +122 -0
  3229. package/runtime/vendor/plugins/open-design/_official/examples/resume-modern/open-design.json +125 -0
  3230. package/runtime/vendor/plugins/open-design/_official/examples/saas-landing/SKILL.md +124 -0
  3231. package/runtime/vendor/plugins/open-design/_official/examples/saas-landing/example.html +153 -0
  3232. package/runtime/vendor/plugins/open-design/_official/examples/saas-landing/open-design.json +154 -0
  3233. package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/SKILL.md +120 -0
  3234. package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/assets/template.html +393 -0
  3235. package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/example.html +269 -0
  3236. package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/open-design.json +195 -0
  3237. package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/references/checklist.md +55 -0
  3238. package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/references/layouts.md +201 -0
  3239. package/runtime/vendor/plugins/open-design/_official/examples/skyelite-private-jets/SKILL.md +95 -0
  3240. package/runtime/vendor/plugins/open-design/_official/examples/skyelite-private-jets/example.html +284 -0
  3241. package/runtime/vendor/plugins/open-design/_official/examples/skyelite-private-jets/open-design.json +122 -0
  3242. package/runtime/vendor/plugins/open-design/_official/examples/social-carousel/SKILL.md +92 -0
  3243. package/runtime/vendor/plugins/open-design/_official/examples/social-carousel/example.html +219 -0
  3244. package/runtime/vendor/plugins/open-design/_official/examples/social-carousel/open-design.json +128 -0
  3245. package/runtime/vendor/plugins/open-design/_official/examples/social-media-dashboard/SKILL.md +118 -0
  3246. package/runtime/vendor/plugins/open-design/_official/examples/social-media-dashboard/example.html +1534 -0
  3247. package/runtime/vendor/plugins/open-design/_official/examples/social-media-dashboard/open-design.json +127 -0
  3248. package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/SKILL.md +107 -0
  3249. package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/assets/template.html +1258 -0
  3250. package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/example.html +1258 -0
  3251. package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/open-design.json +134 -0
  3252. package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/references/checklist.md +25 -0
  3253. package/runtime/vendor/plugins/open-design/_official/examples/social-reddit-card/SKILL.md +68 -0
  3254. package/runtime/vendor/plugins/open-design/_official/examples/social-reddit-card/example.html +56 -0
  3255. package/runtime/vendor/plugins/open-design/_official/examples/social-reddit-card/open-design.json +127 -0
  3256. package/runtime/vendor/plugins/open-design/_official/examples/social-spotify-card/SKILL.md +67 -0
  3257. package/runtime/vendor/plugins/open-design/_official/examples/social-spotify-card/example.html +70 -0
  3258. package/runtime/vendor/plugins/open-design/_official/examples/social-spotify-card/open-design.json +127 -0
  3259. package/runtime/vendor/plugins/open-design/_official/examples/social-x-post-card/SKILL.md +65 -0
  3260. package/runtime/vendor/plugins/open-design/_official/examples/social-x-post-card/example.html +53 -0
  3261. package/runtime/vendor/plugins/open-design/_official/examples/social-x-post-card/open-design.json +127 -0
  3262. package/runtime/vendor/plugins/open-design/_official/examples/sprite-animation/SKILL.md +95 -0
  3263. package/runtime/vendor/plugins/open-design/_official/examples/sprite-animation/example.html +271 -0
  3264. package/runtime/vendor/plugins/open-design/_official/examples/sprite-animation/open-design.json +129 -0
  3265. package/runtime/vendor/plugins/open-design/_official/examples/stellar-launch/SKILL.md +129 -0
  3266. package/runtime/vendor/plugins/open-design/_official/examples/stellar-launch/example.html +498 -0
  3267. package/runtime/vendor/plugins/open-design/_official/examples/stellar-launch/open-design.json +122 -0
  3268. package/runtime/vendor/plugins/open-design/_official/examples/team-okrs/SKILL.md +47 -0
  3269. package/runtime/vendor/plugins/open-design/_official/examples/team-okrs/example.html +207 -0
  3270. package/runtime/vendor/plugins/open-design/_official/examples/team-okrs/open-design.json +126 -0
  3271. package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/SKILL.md +78 -0
  3272. package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/assets/template.html +284 -0
  3273. package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/example.html +22 -0
  3274. package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/open-design.json +129 -0
  3275. package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/references/checklist.md +32 -0
  3276. package/runtime/vendor/plugins/open-design/_official/examples/tweaks/SKILL.md +240 -0
  3277. package/runtime/vendor/plugins/open-design/_official/examples/tweaks/assets/wrap.html +437 -0
  3278. package/runtime/vendor/plugins/open-design/_official/examples/tweaks/example.html +750 -0
  3279. package/runtime/vendor/plugins/open-design/_official/examples/tweaks/open-design.json +127 -0
  3280. package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/LICENSE +21 -0
  3281. package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/SKILL.md +199 -0
  3282. package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/example.html +1150 -0
  3283. package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/open-design.json +148 -0
  3284. package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/LICENSE +21 -0
  3285. package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/SKILL.md +172 -0
  3286. package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/example.html +948 -0
  3287. package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/open-design.json +144 -0
  3288. package/runtime/vendor/plugins/open-design/_official/examples/velar-luxury-real-estate/SKILL.md +99 -0
  3289. package/runtime/vendor/plugins/open-design/_official/examples/velar-luxury-real-estate/example.html +377 -0
  3290. package/runtime/vendor/plugins/open-design/_official/examples/velar-luxury-real-estate/open-design.json +124 -0
  3291. package/runtime/vendor/plugins/open-design/_official/examples/vfx-text-cursor/SKILL.md +64 -0
  3292. package/runtime/vendor/plugins/open-design/_official/examples/vfx-text-cursor/example.html +65 -0
  3293. package/runtime/vendor/plugins/open-design/_official/examples/vfx-text-cursor/open-design.json +125 -0
  3294. package/runtime/vendor/plugins/open-design/_official/examples/video-hyperframes/SKILL.md +46 -0
  3295. package/runtime/vendor/plugins/open-design/_official/examples/video-hyperframes/example.html +140 -0
  3296. package/runtime/vendor/plugins/open-design/_official/examples/video-hyperframes/open-design.json +122 -0
  3297. package/runtime/vendor/plugins/open-design/_official/examples/video-shortform/SKILL.md +128 -0
  3298. package/runtime/vendor/plugins/open-design/_official/examples/video-shortform/example.html +90 -0
  3299. package/runtime/vendor/plugins/open-design/_official/examples/video-shortform/open-design.json +119 -0
  3300. package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/SKILL.md +229 -0
  3301. package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/assets/template.html +457 -0
  3302. package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/example.html +400 -0
  3303. package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/open-design.json +248 -0
  3304. package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/references/checklist.md +42 -0
  3305. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/SKILL.md +103 -0
  3306. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/assets/template.html +338 -0
  3307. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/example.html +81 -0
  3308. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/open-design.json +172 -0
  3309. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/references/checklist.md +44 -0
  3310. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/references/layouts.md +247 -0
  3311. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-brutalist/SKILL.md +61 -0
  3312. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-brutalist/example.html +449 -0
  3313. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-brutalist/open-design.json +120 -0
  3314. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-editorial/SKILL.md +60 -0
  3315. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-editorial/example.html +392 -0
  3316. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-editorial/open-design.json +119 -0
  3317. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-soft/SKILL.md +63 -0
  3318. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-soft/example.html +542 -0
  3319. package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-soft/open-design.json +119 -0
  3320. package/runtime/vendor/plugins/open-design/_official/examples/weekly-update/SKILL.md +50 -0
  3321. package/runtime/vendor/plugins/open-design/_official/examples/weekly-update/example.html +337 -0
  3322. package/runtime/vendor/plugins/open-design/_official/examples/weekly-update/open-design.json +124 -0
  3323. package/runtime/vendor/plugins/open-design/_official/examples/wireframe-sketch/SKILL.md +97 -0
  3324. package/runtime/vendor/plugins/open-design/_official/examples/wireframe-sketch/example.html +256 -0
  3325. package/runtime/vendor/plugins/open-design/_official/examples/wireframe-sketch/open-design.json +125 -0
  3326. package/runtime/vendor/plugins/open-design/_official/examples/x-research/SKILL.md +116 -0
  3327. package/runtime/vendor/plugins/open-design/_official/examples/x-research/open-design.json +121 -0
  3328. package/runtime/vendor/plugins/open-design/_official/image-templates/3d-stone-staircase-evolution-infographic/open-design.json +121 -0
  3329. package/runtime/vendor/plugins/open-design/_official/image-templates/3d-stone-staircase-evolution-infographic/template.json +20 -0
  3330. package/runtime/vendor/plugins/open-design/_official/image-templates/anime-martial-arts-battle-illustration/open-design.json +122 -0
  3331. package/runtime/vendor/plugins/open-design/_official/image-templates/anime-martial-arts-battle-illustration/template.json +21 -0
  3332. package/runtime/vendor/plugins/open-design/_official/image-templates/e-commerce-live-stream-ui-mockup/open-design.json +123 -0
  3333. package/runtime/vendor/plugins/open-design/_official/image-templates/e-commerce-live-stream-ui-mockup/template.json +22 -0
  3334. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-anime-fighting-game-captain-ryuuga-vs-kaze-renshin/open-design.json +128 -0
  3335. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-anime-fighting-game-captain-ryuuga-vs-kaze-renshin/template.json +28 -0
  3336. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-guanyu-slaying-yanliang/open-design.json +128 -0
  3337. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-guanyu-slaying-yanliang/template.json +28 -0
  3338. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-lyubu-yuanmen-archery/open-design.json +127 -0
  3339. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-lyubu-yuanmen-archery/template.json +27 -0
  3340. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-zhaoyun-cradle-escape/open-design.json +129 -0
  3341. package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-zhaoyun-cradle-escape/template.json +29 -0
  3342. package/runtime/vendor/plugins/open-design/_official/image-templates/game-ui-ancient-china-open-world-mmo-hud/open-design.json +126 -0
  3343. package/runtime/vendor/plugins/open-design/_official/image-templates/game-ui-ancient-china-open-world-mmo-hud/template.json +26 -0
  3344. package/runtime/vendor/plugins/open-design/_official/image-templates/illustrated-city-food-map/open-design.json +122 -0
  3345. package/runtime/vendor/plugins/open-design/_official/image-templates/illustrated-city-food-map/template.json +21 -0
  3346. package/runtime/vendor/plugins/open-design/_official/image-templates/illustration-crayon-kid-drawing-rework/open-design.json +127 -0
  3347. package/runtime/vendor/plugins/open-design/_official/image-templates/illustration-crayon-kid-drawing-rework/template.json +27 -0
  3348. package/runtime/vendor/plugins/open-design/_official/image-templates/infographic-otaku-dance-choreography-breakdown-gokurakujodo-16-panels/open-design.json +129 -0
  3349. package/runtime/vendor/plugins/open-design/_official/image-templates/infographic-otaku-dance-choreography-breakdown-gokurakujodo-16-panels/template.json +29 -0
  3350. package/runtime/vendor/plugins/open-design/_official/image-templates/momotaro-explainer-slide-in-hybrid-style/open-design.json +120 -0
  3351. package/runtime/vendor/plugins/open-design/_official/image-templates/momotaro-explainer-slide-in-hybrid-style/template.json +18 -0
  3352. package/runtime/vendor/plugins/open-design/_official/image-templates/notion-team-dashboard-live-artifact/open-design.json +122 -0
  3353. package/runtime/vendor/plugins/open-design/_official/image-templates/notion-team-dashboard-live-artifact/template.json +22 -0
  3354. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-anime-girl-to-cinematic-photo/open-design.json +123 -0
  3355. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-anime-girl-to-cinematic-photo/template.json +22 -0
  3356. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-casual-fashion-grid-photoshoot/open-design.json +123 -0
  3357. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-casual-fashion-grid-photoshoot/template.json +22 -0
  3358. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cinematic-south-asian-male-portrait-with-vultures/open-design.json +123 -0
  3359. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cinematic-south-asian-male-portrait-with-vultures/template.json +22 -0
  3360. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cyberpunk-anime-portrait-with-neon-face-text/open-design.json +124 -0
  3361. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cyberpunk-anime-portrait-with-neon-face-text/template.json +23 -0
  3362. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-elegant-fantasy-girl-in-violet-garden/open-design.json +124 -0
  3363. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-elegant-fantasy-girl-in-violet-garden/template.json +23 -0
  3364. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-ethereal-blue-haired-fantasy-portrait/open-design.json +124 -0
  3365. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-ethereal-blue-haired-fantasy-portrait/template.json +23 -0
  3366. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-glamorous-woman-in-black-portrait/open-design.json +122 -0
  3367. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-glamorous-woman-in-black-portrait/template.json +21 -0
  3368. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-hyper-realistic-selfie-texture-prompts/open-design.json +122 -0
  3369. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-hyper-realistic-selfie-texture-prompts/template.json +21 -0
  3370. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-lavender-fantasy-mage-portrait/open-design.json +124 -0
  3371. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-lavender-fantasy-mage-portrait/template.json +23 -0
  3372. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-monochrome-studio-portrait/open-design.json +122 -0
  3373. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-monochrome-studio-portrait/template.json +21 -0
  3374. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-old-photo-restoration-to-dslr-portrait/open-design.json +122 -0
  3375. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-old-photo-restoration-to-dslr-portrait/template.json +21 -0
  3376. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-poetic-woman-in-garden-portrait/open-design.json +122 -0
  3377. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-poetic-woman-in-garden-portrait/template.json +21 -0
  3378. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-professional-identity-portrait-wallpaper/open-design.json +124 -0
  3379. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-professional-identity-portrait-wallpaper/template.json +23 -0
  3380. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-realistically-imperfect-ai-selfie/open-design.json +122 -0
  3381. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-realistically-imperfect-ai-selfie/template.json +21 -0
  3382. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-signed-marker-portrait-on-shikishi/open-design.json +123 -0
  3383. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-signed-marker-portrait-on-shikishi/template.json +22 -0
  3384. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-empress-portrait/open-design.json +124 -0
  3385. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-empress-portrait/template.json +23 -0
  3386. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-mask-hanfu-portrait/open-design.json +124 -0
  3387. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-mask-hanfu-portrait/template.json +23 -0
  3388. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-hanfu-portrait/open-design.json +123 -0
  3389. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-hanfu-portrait/template.json +22 -0
  3390. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-spirit-portrait/open-design.json +123 -0
  3391. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-spirit-portrait/template.json +22 -0
  3392. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-song-dynasty-hanfu-portrait/open-design.json +121 -0
  3393. package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-song-dynasty-hanfu-portrait/template.json +20 -0
  3394. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-anime-pokemon-shop-outfit-teaser-poster/open-design.json +124 -0
  3395. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-anime-pokemon-shop-outfit-teaser-poster/template.json +23 -0
  3396. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-cinematic-elevator-scene/open-design.json +121 -0
  3397. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-cinematic-elevator-scene/template.json +20 -0
  3398. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-confused-elf-girl-at-pastel-desk/open-design.json +122 -0
  3399. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-confused-elf-girl-at-pastel-desk/template.json +21 -0
  3400. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-editorial-fashion-photography/open-design.json +120 -0
  3401. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-editorial-fashion-photography/template.json +18 -0
  3402. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-fashion-editorial-collage/open-design.json +123 -0
  3403. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-fashion-editorial-collage/template.json +22 -0
  3404. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-psg-transfer-announcement-poster/open-design.json +122 -0
  3405. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-psg-transfer-announcement-poster/template.json +21 -0
  3406. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-sensational-girl-dance-storyboard-8-shots/open-design.json +126 -0
  3407. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-sensational-girl-dance-storyboard-8-shots/template.json +25 -0
  3408. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-showa-day-retro-culture-magazine-cover/open-design.json +123 -0
  3409. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-showa-day-retro-culture-magazine-cover/template.json +22 -0
  3410. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-social-media-fashion-outfit-generation/open-design.json +121 -0
  3411. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-social-media-fashion-outfit-generation/template.json +20 -0
  3412. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-travel-snapshot-collage-prompt/open-design.json +122 -0
  3413. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-travel-snapshot-collage-prompt/template.json +21 -0
  3414. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-vintage-sign-painter-sketch/open-design.json +121 -0
  3415. package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-vintage-sign-painter-sketch/template.json +20 -0
  3416. package/runtime/vendor/plugins/open-design/_official/image-templates/vr-headset-exploded-view-poster/open-design.json +123 -0
  3417. package/runtime/vendor/plugins/open-design/_official/image-templates/vr-headset-exploded-view-poster/template.json +22 -0
  3418. package/runtime/vendor/plugins/open-design/_official/scenarios/od-code-migration/SKILL.md +47 -0
  3419. package/runtime/vendor/plugins/open-design/_official/scenarios/od-code-migration/examples/jquery-to-react.html +152 -0
  3420. package/runtime/vendor/plugins/open-design/_official/scenarios/od-code-migration/open-design.json +165 -0
  3421. package/runtime/vendor/plugins/open-design/_official/scenarios/od-default/SKILL.md +75 -0
  3422. package/runtime/vendor/plugins/open-design/_official/scenarios/od-default/open-design.json +184 -0
  3423. package/runtime/vendor/plugins/open-design/_official/scenarios/od-design-refine/SKILL.md +18 -0
  3424. package/runtime/vendor/plugins/open-design/_official/scenarios/od-design-refine/open-design.json +141 -0
  3425. package/runtime/vendor/plugins/open-design/_official/scenarios/od-figma-migration/SKILL.md +47 -0
  3426. package/runtime/vendor/plugins/open-design/_official/scenarios/od-figma-migration/examples/dashboard-card.html +153 -0
  3427. package/runtime/vendor/plugins/open-design/_official/scenarios/od-figma-migration/open-design.json +155 -0
  3428. package/runtime/vendor/plugins/open-design/_official/scenarios/od-media-generation/SKILL.md +75 -0
  3429. package/runtime/vendor/plugins/open-design/_official/scenarios/od-media-generation/open-design.json +166 -0
  3430. package/runtime/vendor/plugins/open-design/_official/scenarios/od-new-generation/SKILL.md +41 -0
  3431. package/runtime/vendor/plugins/open-design/_official/scenarios/od-new-generation/examples/saas-landing.html +130 -0
  3432. package/runtime/vendor/plugins/open-design/_official/scenarios/od-new-generation/open-design.json +156 -0
  3433. package/runtime/vendor/plugins/open-design/_official/scenarios/od-nextjs-export/SKILL.md +17 -0
  3434. package/runtime/vendor/plugins/open-design/_official/scenarios/od-nextjs-export/open-design.json +120 -0
  3435. package/runtime/vendor/plugins/open-design/_official/scenarios/od-plugin-authoring/SKILL.md +45 -0
  3436. package/runtime/vendor/plugins/open-design/_official/scenarios/od-plugin-authoring/open-design.json +137 -0
  3437. package/runtime/vendor/plugins/open-design/_official/scenarios/od-react-export/SKILL.md +17 -0
  3438. package/runtime/vendor/plugins/open-design/_official/scenarios/od-react-export/open-design.json +119 -0
  3439. package/runtime/vendor/plugins/open-design/_official/scenarios/od-share-to-community/SKILL.md +79 -0
  3440. package/runtime/vendor/plugins/open-design/_official/scenarios/od-share-to-community/open-design.json +85 -0
  3441. package/runtime/vendor/plugins/open-design/_official/scenarios/od-tune-collab/SKILL.md +38 -0
  3442. package/runtime/vendor/plugins/open-design/_official/scenarios/od-tune-collab/examples/hero-tune.html +155 -0
  3443. package/runtime/vendor/plugins/open-design/_official/scenarios/od-tune-collab/open-design.json +135 -0
  3444. package/runtime/vendor/plugins/open-design/_official/scenarios/od-vue-export/SKILL.md +17 -0
  3445. package/runtime/vendor/plugins/open-design/_official/scenarios/od-vue-export/open-design.json +119 -0
  3446. package/runtime/vendor/plugins/open-design/_official/video-templates/3d-animated-boy-building-lego/open-design.json +120 -0
  3447. package/runtime/vendor/plugins/open-design/_official/video-templates/3d-animated-boy-building-lego/template.json +19 -0
  3448. package/runtime/vendor/plugins/open-design/_official/video-templates/HYPERFRAMES-ATTRIBUTIONS.md +58 -0
  3449. package/runtime/vendor/plugins/open-design/_official/video-templates/a-decade-of-refinement-glow-up/open-design.json +123 -0
  3450. package/runtime/vendor/plugins/open-design/_official/video-templates/a-decade-of-refinement-glow-up/template.json +23 -0
  3451. package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-guardian-dragon-rescue/open-design.json +122 -0
  3452. package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-guardian-dragon-rescue/template.json +22 -0
  3453. package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-indian-kingdom-fpv-video/open-design.json +122 -0
  3454. package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-indian-kingdom-fpv-video/template.json +22 -0
  3455. package/runtime/vendor/plugins/open-design/_official/video-templates/animation-transfer-and-camera-tracking-prompt/open-design.json +120 -0
  3456. package/runtime/vendor/plugins/open-design/_official/video-templates/animation-transfer-and-camera-tracking-prompt/template.json +19 -0
  3457. package/runtime/vendor/plugins/open-design/_official/video-templates/beat-synced-outfit-transformation-dance/open-design.json +120 -0
  3458. package/runtime/vendor/plugins/open-design/_official/video-templates/beat-synced-outfit-transformation-dance/template.json +20 -0
  3459. package/runtime/vendor/plugins/open-design/_official/video-templates/character-intro-motion-graphics-sequence/open-design.json +123 -0
  3460. package/runtime/vendor/plugins/open-design/_official/video-templates/character-intro-motion-graphics-sequence/template.json +23 -0
  3461. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-birthday-celebration-sequence/open-design.json +122 -0
  3462. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-birthday-celebration-sequence/template.json +23 -0
  3463. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-dragon-interaction-flight/open-design.json +122 -0
  3464. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-dragon-interaction-flight/template.json +23 -0
  3465. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-east-asian-woman-hand-dance/open-design.json +121 -0
  3466. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-east-asian-woman-hand-dance/template.json +22 -0
  3467. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-emotional-face-close-up/open-design.json +122 -0
  3468. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-emotional-face-close-up/template.json +23 -0
  3469. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-marine-biologist-exploration/open-design.json +120 -0
  3470. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-marine-biologist-exploration/template.json +21 -0
  3471. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-music-podcast-and-guitar-technique/open-design.json +122 -0
  3472. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-music-podcast-and-guitar-technique/template.json +23 -0
  3473. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-route-navigation-guide/open-design.json +122 -0
  3474. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-route-navigation-guide/template.json +23 -0
  3475. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-street-racing-sequence-for-seedance-2/open-design.json +122 -0
  3476. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-street-racing-sequence-for-seedance-2/template.json +23 -0
  3477. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-vampire-alley-fight-sequence/open-design.json +121 -0
  3478. package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-vampire-alley-fight-sequence/template.json +22 -0
  3479. package/runtime/vendor/plugins/open-design/_official/video-templates/crimson-horizon-sci-fi-cinematic-sequence/open-design.json +120 -0
  3480. package/runtime/vendor/plugins/open-design/_official/video-templates/crimson-horizon-sci-fi-cinematic-sequence/template.json +21 -0
  3481. package/runtime/vendor/plugins/open-design/_official/video-templates/cyberpunk-game-trailer-script/open-design.json +123 -0
  3482. package/runtime/vendor/plugins/open-design/_official/video-templates/cyberpunk-game-trailer-script/template.json +23 -0
  3483. package/runtime/vendor/plugins/open-design/_official/video-templates/forbidden-city-cat-satire/open-design.json +121 -0
  3484. package/runtime/vendor/plugins/open-design/_official/video-templates/forbidden-city-cat-satire/template.json +21 -0
  3485. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/SKILL.md +33 -0
  3486. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/open-design.json +141 -0
  3487. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/preview.mp4 +0 -0
  3488. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/preview.png +0 -0
  3489. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f31712e776f666632.woff2 +0 -0
  3490. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f41652e776f666632.woff2 +0 -0
  3491. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f45772e776f666632.woff2 +0 -0
  3492. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f49632e776f666632.woff2 +0 -0
  3493. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f54672e776f666632.woff2 +0 -0
  3494. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f71552e776f666632.woff2 +0 -0
  3495. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f74512e776f666632.woff2 +0 -0
  3496. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts.css +146 -0
  3497. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/index.html +127 -0
  3498. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/template.json +55 -0
  3499. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/SKILL.md +33 -0
  3500. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/open-design.json +139 -0
  3501. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/preview.mp4 +0 -0
  3502. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/preview.png +0 -0
  3503. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f33452e776f666632.woff2 +0 -0
  3504. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f45772e776f666632.woff2 +0 -0
  3505. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f71552e776f666632.woff2 +0 -0
  3506. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f76512e776f666632.woff2 +0 -0
  3507. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts.css +101 -0
  3508. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/index.html +85 -0
  3509. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/template.json +53 -0
  3510. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/SKILL.md +33 -0
  3511. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/open-design.json +139 -0
  3512. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/preview.mp4 +0 -0
  3513. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/preview.png +0 -0
  3514. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/fonts/f6e772e776f666632.woff2 +0 -0
  3515. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/fonts/f77552e776f666632.woff2 +0 -0
  3516. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/fonts.css +254 -0
  3517. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/index.html +113 -0
  3518. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/template.json +53 -0
  3519. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/SKILL.md +33 -0
  3520. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/open-design.json +138 -0
  3521. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/preview.mp4 +0 -0
  3522. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/preview.png +0 -0
  3523. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f33512e776f666632.woff2 +0 -0
  3524. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f34742e776f666632.woff2 +0 -0
  3525. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f45592e776f666632.woff2 +0 -0
  3526. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f4d672e776f666632.woff2 +0 -0
  3527. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f59672e776f666632.woff2 +0 -0
  3528. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f62672e776f666632.woff2 +0 -0
  3529. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f73772e776f666632.woff2 +0 -0
  3530. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f77512e776f666632.woff2 +0 -0
  3531. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts.css +146 -0
  3532. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/index.html +94 -0
  3533. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/template.json +52 -0
  3534. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/SKILL.md +33 -0
  3535. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/open-design.json +123 -0
  3536. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/preview.mp4 +0 -0
  3537. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/preview.png +0 -0
  3538. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f2d6f2e776f666632.woff2 +0 -0
  3539. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f46512e776f666632.woff2 +0 -0
  3540. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f4e552e776f666632.woff2 +0 -0
  3541. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f4e6b2e776f666632.woff2 +0 -0
  3542. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f59302e776f666632.woff2 +0 -0
  3543. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f5a682e776f666632.woff2 +0 -0
  3544. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f62512e776f666632.woff2 +0 -0
  3545. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f66672e776f666632.woff2 +0 -0
  3546. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f66772e776f666632.woff2 +0 -0
  3547. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f724d2e776f666632.woff2 +0 -0
  3548. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f75322e776f666632.woff2 +0 -0
  3549. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f7a672e776f666632.woff2 +0 -0
  3550. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts.css +433 -0
  3551. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/index.html +102 -0
  3552. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/tailwind.css +1 -0
  3553. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/template.json +37 -0
  3554. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/SKILL.md +33 -0
  3555. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/open-design.json +141 -0
  3556. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/preview.png +0 -0
  3557. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/source/DataRollup.tsx +208 -0
  3558. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/source/Root.tsx +40 -0
  3559. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/source/entry.ts +7 -0
  3560. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/template.json +55 -0
  3561. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/SKILL.md +33 -0
  3562. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/open-design.json +128 -0
  3563. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/preview.mp4 +0 -0
  3564. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/preview.png +0 -0
  3565. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/compositions/decision_tree.html +434 -0
  3566. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/fonts/f6e772e776f666632.woff2 +0 -0
  3567. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/fonts/f77552e776f666632.woff2 +0 -0
  3568. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/fonts.css +191 -0
  3569. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/index.html +67 -0
  3570. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/template.json +37 -0
  3571. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/SKILL.md +33 -0
  3572. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/open-design.json +138 -0
  3573. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/preview.mp4 +0 -0
  3574. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/preview.png +0 -0
  3575. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/fonts/f4e342e776f666632.woff2 +0 -0
  3576. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/fonts/f5a772e776f666632.woff2 +0 -0
  3577. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/fonts.css +218 -0
  3578. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/index.html +86 -0
  3579. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/template.json +52 -0
  3580. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/SKILL.md +33 -0
  3581. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/open-design.json +123 -0
  3582. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/preview.mp4 +0 -0
  3583. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/preview.png +0 -0
  3584. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f2d342e776f666632.woff2 +0 -0
  3585. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f45772e776f666632.woff2 +0 -0
  3586. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f46672e776f666632.woff2 +0 -0
  3587. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f71552e776f666632.woff2 +0 -0
  3588. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts.css +164 -0
  3589. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/index.html +100 -0
  3590. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/tailwind.css +1 -0
  3591. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/template.json +37 -0
  3592. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/SKILL.md +33 -0
  3593. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/open-design.json +129 -0
  3594. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/preview.mp4 +0 -0
  3595. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/preview.png +0 -0
  3596. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/compositions/main-graphics.html +589 -0
  3597. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f32552e776f666632.woff2 +0 -0
  3598. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f474d2e776f666632.woff2 +0 -0
  3599. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f49632e776f666632.woff2 +0 -0
  3600. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f54672e776f666632.woff2 +0 -0
  3601. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f59592e776f666632.woff2 +0 -0
  3602. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f6e772e776f666632.woff2 +0 -0
  3603. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f726f2e776f666632.woff2 +0 -0
  3604. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f77552e776f666632.woff2 +0 -0
  3605. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts.css +308 -0
  3606. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/index.html +72 -0
  3607. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/template.json +37 -0
  3608. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/SKILL.md +33 -0
  3609. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/open-design.json +123 -0
  3610. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/preview.mp4 +0 -0
  3611. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/preview.png +0 -0
  3612. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f2d6f2e776f666632.woff2 +0 -0
  3613. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f46512e776f666632.woff2 +0 -0
  3614. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f49672e776f666632.woff2 +0 -0
  3615. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f4e6b2e776f666632.woff2 +0 -0
  3616. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f50492e776f666632.woff2 +0 -0
  3617. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f57672e776f666632.woff2 +0 -0
  3618. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f576b2e776f666632.woff2 +0 -0
  3619. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f59302e776f666632.woff2 +0 -0
  3620. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f66672e776f666632.woff2 +0 -0
  3621. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f66772e776f666632.woff2 +0 -0
  3622. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f75322e776f666632.woff2 +0 -0
  3623. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f7a672e776f666632.woff2 +0 -0
  3624. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts.css +451 -0
  3625. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/index.html +82 -0
  3626. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/tailwind.css +1 -0
  3627. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/template.json +37 -0
  3628. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/SKILL.md +33 -0
  3629. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/open-design.json +123 -0
  3630. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/preview.mp4 +0 -0
  3631. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/preview.png +0 -0
  3632. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f48712e776f666632.woff2 +0 -0
  3633. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f62412e776f666632.woff2 +0 -0
  3634. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f65382e776f666632.woff2 +0 -0
  3635. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f66672e776f666632.woff2 +0 -0
  3636. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f6d672e776f666632.woff2 +0 -0
  3637. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f75322e776f666632.woff2 +0 -0
  3638. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts.css +361 -0
  3639. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/index.html +65 -0
  3640. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/tailwind.css +1 -0
  3641. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/template.json +37 -0
  3642. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/SKILL.md +33 -0
  3643. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/open-design.json +123 -0
  3644. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/preview.mp4 +0 -0
  3645. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/preview.png +0 -0
  3646. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f65382e776f666632.woff2 +0 -0
  3647. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f6d672e776f666632.woff2 +0 -0
  3648. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f6e772e776f666632.woff2 +0 -0
  3649. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f77552e776f666632.woff2 +0 -0
  3650. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts.css +442 -0
  3651. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/index.html +81 -0
  3652. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/tailwind.css +1 -0
  3653. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/template.json +37 -0
  3654. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/SKILL.md +33 -0
  3655. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/open-design.json +129 -0
  3656. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/preview.mp4 +0 -0
  3657. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/preview.png +0 -0
  3658. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/compositions/nyt-chart.html +448 -0
  3659. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f32552e776f666632.woff2 +0 -0
  3660. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f4e6f2e776f666632.woff2 +0 -0
  3661. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f624a2e776f666632.woff2 +0 -0
  3662. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f726f2e776f666632.woff2 +0 -0
  3663. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts.css +173 -0
  3664. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/index.html +65 -0
  3665. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/template.json +37 -0
  3666. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/SKILL.md +33 -0
  3667. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/open-design.json +139 -0
  3668. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/preview.mp4 +0 -0
  3669. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/preview.png +0 -0
  3670. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/fonts/f50552e776f666632.woff2 +0 -0
  3671. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/fonts/f526e2e776f666632.woff2 +0 -0
  3672. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/fonts.css +92 -0
  3673. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/index.html +136 -0
  3674. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/template.json +53 -0
  3675. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/SKILL.md +33 -0
  3676. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/open-design.json +129 -0
  3677. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/preview.mp4 +0 -0
  3678. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/preview.png +0 -0
  3679. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/compositions/captions.html +164 -0
  3680. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/compositions/intro.html +108 -0
  3681. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/compositions/stats.html +388 -0
  3682. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/fonts/f54352e776f666632.woff2 +0 -0
  3683. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/fonts/f65672e776f666632.woff2 +0 -0
  3684. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/fonts.css +47 -0
  3685. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/index.html +240 -0
  3686. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/template.json +37 -0
  3687. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/SKILL.md +33 -0
  3688. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/open-design.json +129 -0
  3689. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/preview.mp4 +0 -0
  3690. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/preview.png +0 -0
  3691. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/assets/figma-cursors.svg +30 -0
  3692. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/assets/figma-logo-pieces.svg +15 -0
  3693. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/assets/figma-logo-pills.svg +6 -0
  3694. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/compositions/scene1-logo-intro.html +190 -0
  3695. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/compositions/scene2-4-canvas.html +574 -0
  3696. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/compositions/scene5-logo-outro.html +227 -0
  3697. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/fonts/f6e772e776f666632.woff2 +0 -0
  3698. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/fonts/f77552e776f666632.woff2 +0 -0
  3699. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/fonts.css +254 -0
  3700. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/index.html +169 -0
  3701. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/template.json +37 -0
  3702. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/SKILL.md +33 -0
  3703. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/open-design.json +131 -0
  3704. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/preview.mp4 +0 -0
  3705. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/preview.png +0 -0
  3706. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/brand-logo.svg +4 -0
  3707. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/brand-symbol.svg +5 -0
  3708. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/screenshot-1.png +0 -0
  3709. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/screenshot-2.png +0 -0
  3710. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/screenshot-3.png +0 -0
  3711. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/sfx-twinkle.mp3 +0 -0
  3712. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/sfx-whoosh-1.mp3 +0 -0
  3713. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/sfx-whoosh-2.mp3 +0 -0
  3714. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/warm-pad.mp3 +0 -0
  3715. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/01-problem-type.html +185 -0
  3716. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/02-card-to-logo.html +164 -0
  3717. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/03-brand-reveal.html +128 -0
  3718. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/04-benefits-flowchart.html +165 -0
  3719. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/05-product-surfaces.html +168 -0
  3720. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/06-wheel-pillars.html +182 -0
  3721. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/07-foundation.html +205 -0
  3722. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/08-cta-outro.html +174 -0
  3723. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f2d342e776f666632.woff2 +0 -0
  3724. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f30552e776f666632.woff2 +0 -0
  3725. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f35672e776f666632.woff2 +0 -0
  3726. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f35772e776f666632.woff2 +0 -0
  3727. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f36312e776f666632.woff2 +0 -0
  3728. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f36442e776f666632.woff2 +0 -0
  3729. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f45772e776f666632.woff2 +0 -0
  3730. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f46672e776f666632.woff2 +0 -0
  3731. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f4e732e776f666632.woff2 +0 -0
  3732. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f524b2e776f666632.woff2 +0 -0
  3733. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f54642e776f666632.woff2 +0 -0
  3734. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f59342e776f666632.woff2 +0 -0
  3735. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f6a592e776f666632.woff2 +0 -0
  3736. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f6e772e776f666632.woff2 +0 -0
  3737. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f71552e776f666632.woff2 +0 -0
  3738. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f77552e776f666632.woff2 +0 -0
  3739. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts.css +1094 -0
  3740. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/index.html +147 -0
  3741. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/template.json +39 -0
  3742. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/SKILL.md +33 -0
  3743. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/open-design.json +129 -0
  3744. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/preview.mp4 +0 -0
  3745. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/preview.png +0 -0
  3746. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/assets/swiss-grid.svg +116 -0
  3747. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/compositions/captions.html +151 -0
  3748. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/compositions/graphics.html +207 -0
  3749. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/compositions/intro.html +132 -0
  3750. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/index.html +233 -0
  3751. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/template.json +37 -0
  3752. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/SKILL.md +33 -0
  3753. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/open-design.json +139 -0
  3754. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/preview.mp4 +0 -0
  3755. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/preview.png +0 -0
  3756. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/fonts/f4e342e776f666632.woff2 +0 -0
  3757. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/fonts/f5a772e776f666632.woff2 +0 -0
  3758. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/fonts.css +272 -0
  3759. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/index.html +97 -0
  3760. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/template.json +53 -0
  3761. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/SKILL.md +33 -0
  3762. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/open-design.json +129 -0
  3763. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/preview.mp4 +0 -0
  3764. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/preview.png +0 -0
  3765. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/source/compositions/captions.html +187 -0
  3766. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/source/compositions/overlays.html +324 -0
  3767. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/source/index.html +203 -0
  3768. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/template.json +37 -0
  3769. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/SKILL.md +33 -0
  3770. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/open-design.json +129 -0
  3771. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/preview.mp4 +0 -0
  3772. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/preview.png +0 -0
  3773. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/compositions/captions.html +154 -0
  3774. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/compositions/graphics.html +165 -0
  3775. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/compositions/intro.html +87 -0
  3776. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/fonts/f424a2e776f666632.woff2 +0 -0
  3777. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/fonts/f6e772e776f666632.woff2 +0 -0
  3778. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/fonts.css +38 -0
  3779. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/index.html +285 -0
  3780. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/textures/natural-paper.png +0 -0
  3781. package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/template.json +37 -0
  3782. package/runtime/vendor/plugins/open-design/_official/video-templates/hollywood-haute-couture-fantasy-video-prompt/open-design.json +123 -0
  3783. package/runtime/vendor/plugins/open-design/_official/video-templates/hollywood-haute-couture-fantasy-video-prompt/template.json +23 -0
  3784. package/runtime/vendor/plugins/open-design/_official/video-templates/hunched-character-animation/open-design.json +120 -0
  3785. package/runtime/vendor/plugins/open-design/_official/video-templates/hunched-character-animation/template.json +19 -0
  3786. package/runtime/vendor/plugins/open-design/_official/video-templates/live-action-anime-adaptation-water-vs-thunder-breathing-duel/open-design.json +122 -0
  3787. package/runtime/vendor/plugins/open-design/_official/video-templates/live-action-anime-adaptation-water-vs-thunder-breathing-duel/template.json +23 -0
  3788. package/runtime/vendor/plugins/open-design/_official/video-templates/luxury-supercar-cinematic-narrative/open-design.json +122 -0
  3789. package/runtime/vendor/plugins/open-design/_official/video-templates/luxury-supercar-cinematic-narrative/template.json +23 -0
  3790. package/runtime/vendor/plugins/open-design/_official/video-templates/magical-academy-storyboard-sequence/open-design.json +121 -0
  3791. package/runtime/vendor/plugins/open-design/_official/video-templates/magical-academy-storyboard-sequence/template.json +21 -0
  3792. package/runtime/vendor/plugins/open-design/_official/video-templates/modern-rural-aesthetics-healing-short-film-video-prompt/open-design.json +122 -0
  3793. package/runtime/vendor/plugins/open-design/_official/video-templates/modern-rural-aesthetics-healing-short-film-video-prompt/template.json +23 -0
  3794. package/runtime/vendor/plugins/open-design/_official/video-templates/nightclub-flyer-atmospheric-animation/open-design.json +122 -0
  3795. package/runtime/vendor/plugins/open-design/_official/video-templates/nightclub-flyer-atmospheric-animation/template.json +22 -0
  3796. package/runtime/vendor/plugins/open-design/_official/video-templates/retro-hk-wuxia-film-aesthetic/open-design.json +121 -0
  3797. package/runtime/vendor/plugins/open-design/_official/video-templates/retro-hk-wuxia-film-aesthetic/template.json +22 -0
  3798. package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-15-second-cinematic-japanese-romance-short-film/open-design.json +121 -0
  3799. package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-15-second-cinematic-japanese-romance-short-film/template.json +22 -0
  3800. package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-80-year-old-rapper-mv/open-design.json +122 -0
  3801. package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-80-year-old-rapper-mv/template.json +22 -0
  3802. package/runtime/vendor/plugins/open-design/_official/video-templates/sequence-and-movement-instruction-for-martial-arts-video/open-design.json +121 -0
  3803. package/runtime/vendor/plugins/open-design/_official/video-templates/sequence-and-movement-instruction-for-martial-arts-video/template.json +21 -0
  3804. package/runtime/vendor/plugins/open-design/_official/video-templates/soul-switching-mirror-magic-sequence/open-design.json +121 -0
  3805. package/runtime/vendor/plugins/open-design/_official/video-templates/soul-switching-mirror-magic-sequence/template.json +21 -0
  3806. package/runtime/vendor/plugins/open-design/_official/video-templates/toaster-rocket-jumpscare/open-design.json +121 -0
  3807. package/runtime/vendor/plugins/open-design/_official/video-templates/toaster-rocket-jumpscare/template.json +21 -0
  3808. package/runtime/vendor/plugins/open-design/_official/video-templates/traditional-dance-performance/open-design.json +122 -0
  3809. package/runtime/vendor/plugins/open-design/_official/video-templates/traditional-dance-performance/template.json +22 -0
  3810. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/SKILL.md +33 -0
  3811. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/open-design.json +123 -0
  3812. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/preview.mp4 +0 -0
  3813. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/preview.png +0 -0
  3814. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f56382e776f666632.woff2 +0 -0
  3815. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f65382e776f666632.woff2 +0 -0
  3816. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f6d672e776f666632.woff2 +0 -0
  3817. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f76412e776f666632.woff2 +0 -0
  3818. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts.css +307 -0
  3819. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/index.html +66 -0
  3820. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/tailwind.css +1 -0
  3821. package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/template.json +37 -0
  3822. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-desk-hologram-ar-realdesk/open-design.json +87 -0
  3823. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-desk-hologram-ar-realdesk/template.json +30 -0
  3824. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-guanyu-slaying-yanliang/open-design.json +130 -0
  3825. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-guanyu-slaying-yanliang/template.json +30 -0
  3826. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-lyubu-yuanmen-archery/open-design.json +130 -0
  3827. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-lyubu-yuanmen-archery/template.json +30 -0
  3828. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-zhaoyun-cradle-escape/open-design.json +131 -0
  3829. package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-zhaoyun-cradle-escape/template.json +31 -0
  3830. package/runtime/vendor/plugins/open-design/_official/video-templates/vintage-disney-style-pirate-crocodile-animation/open-design.json +120 -0
  3831. package/runtime/vendor/plugins/open-design/_official/video-templates/vintage-disney-style-pirate-crocodile-animation/template.json +19 -0
  3832. package/runtime/vendor/plugins/open-design/_official/video-templates/viral-k-pop-dance-choreography/open-design.json +121 -0
  3833. package/runtime/vendor/plugins/open-design/_official/video-templates/viral-k-pop-dance-choreography/template.json +21 -0
  3834. package/runtime/vendor/plugins/open-design/_official/video-templates/wasteland-factory-chase/open-design.json +121 -0
  3835. package/runtime/vendor/plugins/open-design/_official/video-templates/wasteland-factory-chase/template.json +21 -0
  3836. package/runtime/vendor/plugins/open-design/community/deep-think-maximum-cognitive-effort-protocol-mq8kvw92/SKILL.md +149 -0
  3837. package/runtime/vendor/plugins/open-design/community/deep-think-maximum-cognitive-effort-protocol-mq8kvw92/open-design.json +29 -0
  3838. package/runtime/vendor/plugins/open-design/community/deep-think-maximum-cognitive-effort-protocol-mq8kvw92/references/source-1-mpj79mp4-deep-think.md +4 -0
  3839. package/runtime/vendor/plugins/open-design/community/hallmark/LICENSE +21 -0
  3840. package/runtime/vendor/plugins/open-design/community/hallmark/SKILL.md +552 -0
  3841. package/runtime/vendor/plugins/open-design/community/hallmark/open-design.json +58 -0
  3842. package/runtime/vendor/plugins/open-design/community/hallmark/references/anti-patterns.md +412 -0
  3843. package/runtime/vendor/plugins/open-design/community/hallmark/references/assets.md +406 -0
  3844. package/runtime/vendor/plugins/open-design/community/hallmark/references/color.md +95 -0
  3845. package/runtime/vendor/plugins/open-design/community/hallmark/references/component-cookbook.md +254 -0
  3846. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c1-outlined-chip.md +12 -0
  3847. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c2-inline-form-as-cta.md +16 -0
  3848. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c3-typographic-link.md +8 -0
  3849. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c4-sticky-bottom-bar.md +16 -0
  3850. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f1-bento-grid.md +20 -0
  3851. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f2-sticky-scroll-stack.md +20 -0
  3852. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f3-tabular-spec-sheet.md +11 -0
  3853. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f4-step-sequence.md +11 -0
  3854. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f5-annotated-screenshot.md +11 -0
  3855. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f6-product-card-grid.md +41 -0
  3856. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft1-mast-headed.md +13 -0
  3857. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft2-inline-rule-single-line.md +10 -0
  3858. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft3-index-style-category-list.md +12 -0
  3859. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft4-dense-typographic.md +10 -0
  3860. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft5-statement.md +21 -0
  3861. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft6-letter-close.md +19 -0
  3862. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft7-newsletter-first.md +27 -0
  3863. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft8-marquee-scroll.md +25 -0
  3864. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h1-marquee.md +15 -0
  3865. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h2-split-diptych.md +15 -0
  3866. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h3-quote-led.md +11 -0
  3867. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h4-stat-led.md +14 -0
  3868. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h5-letter-hero.md +11 -0
  3869. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h6-photographic-fold.md +16 -0
  3870. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h7-demo-video-clipped-by-viewport-edge.md +27 -0
  3871. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h8-mockup-split-browser-framed.md +23 -0
  3872. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h9-custom-illustration-centerpiece.md +27 -0
  3873. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n1-wordmark-2-links.md +12 -0
  3874. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n10-floating-on-scroll-morph.md +19 -0
  3875. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n2-floating-chip.md +14 -0
  3876. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n3-side-rail.md +14 -0
  3877. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n4-hidden-behind-k.md +9 -0
  3878. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n5-floating-pill.md +28 -0
  3879. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n6-newspaper-masthead.md +24 -0
  3880. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n7-brutal-slab.md +22 -0
  3881. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n8-terminal-command.md +21 -0
  3882. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n9-edge-aligned-minimal.md +17 -0
  3883. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s1-left-margin-numbered.md +15 -0
  3884. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s2-hanging.md +13 -0
  3885. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s3-sticky-pinned.md +19 -0
  3886. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s4-inline-no-break.md +11 -0
  3887. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s5-bottom-anchored.md +13 -0
  3888. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t1-pull-quote-with-marginalia.md +12 -0
  3889. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t2-logo-wall-hairline.md +19 -0
  3890. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t3-single-huge-quote.md +11 -0
  3891. package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t4-numbered-stat-strip.md +14 -0
  3892. package/runtime/vendor/plugins/open-design/community/hallmark/references/contract.md +24 -0
  3893. package/runtime/vendor/plugins/open-design/community/hallmark/references/copy.md +182 -0
  3894. package/runtime/vendor/plugins/open-design/community/hallmark/references/custom-craft.md +626 -0
  3895. package/runtime/vendor/plugins/open-design/community/hallmark/references/custom-theme.md +329 -0
  3896. package/runtime/vendor/plugins/open-design/community/hallmark/references/design-md.md +116 -0
  3897. package/runtime/vendor/plugins/open-design/community/hallmark/references/export-formats.md +328 -0
  3898. package/runtime/vendor/plugins/open-design/community/hallmark/references/floating-nav.md +89 -0
  3899. package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/atmospheric.md +65 -0
  3900. package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/editorial.md +70 -0
  3901. package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/modern-minimal.md +67 -0
  3902. package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/playful.md +65 -0
  3903. package/runtime/vendor/plugins/open-design/community/hallmark/references/hero-enrichment.md +474 -0
  3904. package/runtime/vendor/plugins/open-design/community/hallmark/references/imagery-kit.md +170 -0
  3905. package/runtime/vendor/plugins/open-design/community/hallmark/references/interaction-and-states.md +207 -0
  3906. package/runtime/vendor/plugins/open-design/community/hallmark/references/layout-and-space.md +111 -0
  3907. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/01-bento-grid.md +35 -0
  3908. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/02-long-document.md +34 -0
  3909. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/03-marquee-hero.md +31 -0
  3910. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/04-stat-led.md +32 -0
  3911. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/05-workbench.md +32 -0
  3912. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/06-conversational-faq.md +33 -0
  3913. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/07-manifesto.md +32 -0
  3914. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/08-photographic.md +34 -0
  3915. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/09-quote-led.md +32 -0
  3916. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/10-specimen.md +32 -0
  3917. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/11-catalogue.md +23 -0
  3918. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/12-letter.md +23 -0
  3919. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/13-index-first.md +23 -0
  3920. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/14-narrative-workflow.md +23 -0
  3921. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/15-split-studio.md +23 -0
  3922. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/16-feature-stack.md +23 -0
  3923. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/17-type-specimen.md +23 -0
  3924. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/18-portfolio-grid.md +23 -0
  3925. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/19-map-diagram.md +23 -0
  3926. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/20-ecosystem-index.md +23 -0
  3927. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/21-component-playground.md +23 -0
  3928. package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures.md +89 -0
  3929. package/runtime/vendor/plugins/open-design/community/hallmark/references/microinteractions.md +260 -0
  3930. package/runtime/vendor/plugins/open-design/community/hallmark/references/motion.md +109 -0
  3931. package/runtime/vendor/plugins/open-design/community/hallmark/references/preview-examples.md +49 -0
  3932. package/runtime/vendor/plugins/open-design/community/hallmark/references/responsive.md +138 -0
  3933. package/runtime/vendor/plugins/open-design/community/hallmark/references/slop-test.md +205 -0
  3934. package/runtime/vendor/plugins/open-design/community/hallmark/references/structure.md +164 -0
  3935. package/runtime/vendor/plugins/open-design/community/hallmark/references/study.md +511 -0
  3936. package/runtime/vendor/plugins/open-design/community/hallmark/references/typography.md +243 -0
  3937. package/runtime/vendor/plugins/open-design/community/hallmark/references/verbs/audit.md +25 -0
  3938. package/runtime/vendor/plugins/open-design/community/hallmark/references/verbs/redesign.md +269 -0
  3939. package/runtime/vendor/plugins/open-design/community/import-smoke-test/.claude-plugin/plugin.json +5 -0
  3940. package/runtime/vendor/plugins/open-design/community/import-smoke-test/README.md +19 -0
  3941. package/runtime/vendor/plugins/open-design/community/import-smoke-test/SKILL.md +21 -0
  3942. package/runtime/vendor/plugins/open-design/community/import-smoke-test/assets/import-checklist.md +7 -0
  3943. package/runtime/vendor/plugins/open-design/community/import-smoke-test/open-design.json +124 -0
  3944. package/runtime/vendor/plugins/open-design/community/import-smoke-test/preview/index.html +128 -0
  3945. package/runtime/vendor/plugins/open-design/community/registry-starter/SKILL.md +10 -0
  3946. package/runtime/vendor/plugins/open-design/community/registry-starter/open-design.json +37 -0
  3947. package/runtime/vendor/plugins/open-design/marketplace.json +16 -0
  3948. package/runtime/vendor/plugins/open-design/open-design/.claude-plugin/plugin.json +7 -0
  3949. package/runtime/vendor/plugins/open-design/open-design/.mcp.json +9 -0
  3950. package/runtime/vendor/plugins/open-design/registry/community/open-design-marketplace.json +86 -0
  3951. package/runtime/vendor/plugins/open-design/registry/official/open-design-marketplace.json +11999 -0
  3952. package/runtime/vendor/plugins/open-design/spec/AGENT-DEVELOPMENT.md +83 -0
  3953. package/runtime/vendor/plugins/open-design/spec/AGENT-DEVELOPMENT.zh-CN.md +83 -0
  3954. package/runtime/vendor/plugins/open-design/spec/CONTRIBUTING.md +59 -0
  3955. package/runtime/vendor/plugins/open-design/spec/CONTRIBUTING.zh-CN.md +59 -0
  3956. package/runtime/vendor/plugins/open-design/spec/PUBLISHING-REGISTRIES.md +138 -0
  3957. package/runtime/vendor/plugins/open-design/spec/PUBLISHING-REGISTRIES.zh-CN.md +138 -0
  3958. package/runtime/vendor/plugins/open-design/spec/README.md +68 -0
  3959. package/runtime/vendor/plugins/open-design/spec/README.zh-CN.md +68 -0
  3960. package/runtime/vendor/plugins/open-design/spec/SPEC.md +218 -0
  3961. package/runtime/vendor/plugins/open-design/spec/SPEC.zh-CN.md +218 -0
  3962. package/runtime/vendor/plugins/open-design/spec/examples/README.md +23 -0
  3963. package/runtime/vendor/plugins/open-design/spec/examples/README.zh-CN.md +23 -0
  3964. package/runtime/vendor/plugins/open-design/spec/examples/create-hyperframes-launch/SKILL.md +26 -0
  3965. package/runtime/vendor/plugins/open-design/spec/examples/create-hyperframes-launch/open-design.json +48 -0
  3966. package/runtime/vendor/plugins/open-design/spec/examples/create-image-campaign/SKILL.md +26 -0
  3967. package/runtime/vendor/plugins/open-design/spec/examples/create-image-campaign/open-design.json +47 -0
  3968. package/runtime/vendor/plugins/open-design/spec/examples/create-live-artifact-ops/SKILL.md +27 -0
  3969. package/runtime/vendor/plugins/open-design/spec/examples/create-live-artifact-ops/example.html +173 -0
  3970. package/runtime/vendor/plugins/open-design/spec/examples/create-live-artifact-ops/open-design.json +60 -0
  3971. package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/README.md +10 -0
  3972. package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/SKILL.md +27 -0
  3973. package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/assets/seed-brief.md +10 -0
  3974. package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/evals/evals.json +18 -0
  3975. package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/example.html +262 -0
  3976. package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/open-design.json +61 -0
  3977. package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/preview/index.html +89 -0
  3978. package/runtime/vendor/plugins/open-design/spec/examples/create-slides-pitch/SKILL.md +27 -0
  3979. package/runtime/vendor/plugins/open-design/spec/examples/create-slides-pitch/example.html +178 -0
  3980. package/runtime/vendor/plugins/open-design/spec/examples/create-slides-pitch/open-design.json +60 -0
  3981. package/runtime/vendor/plugins/open-design/spec/examples/create-video-storyboard/SKILL.md +26 -0
  3982. package/runtime/vendor/plugins/open-design/spec/examples/create-video-storyboard/open-design.json +47 -0
  3983. package/runtime/vendor/plugins/open-design/spec/examples/deploy-vercel-static/SKILL.md +23 -0
  3984. package/runtime/vendor/plugins/open-design/spec/examples/deploy-vercel-static/open-design.json +55 -0
  3985. package/runtime/vendor/plugins/open-design/spec/examples/export-nextjs-handoff/SKILL.md +23 -0
  3986. package/runtime/vendor/plugins/open-design/spec/examples/export-nextjs-handoff/open-design.json +39 -0
  3987. package/runtime/vendor/plugins/open-design/spec/examples/extend-plugin-author/SKILL.md +23 -0
  3988. package/runtime/vendor/plugins/open-design/spec/examples/extend-plugin-author/open-design.json +46 -0
  3989. package/runtime/vendor/plugins/open-design/spec/examples/import-screenshot-to-prototype/SKILL.md +24 -0
  3990. package/runtime/vendor/plugins/open-design/spec/examples/import-screenshot-to-prototype/open-design.json +44 -0
  3991. package/runtime/vendor/plugins/open-design/spec/examples/open-design-marketplace.json +88 -0
  3992. package/runtime/vendor/plugins/open-design/spec/examples/refine-critique-loop/SKILL.md +23 -0
  3993. package/runtime/vendor/plugins/open-design/spec/examples/refine-critique-loop/open-design.json +43 -0
  3994. package/runtime/vendor/plugins/open-design/spec/examples/share-github-pr/SKILL.md +23 -0
  3995. package/runtime/vendor/plugins/open-design/spec/examples/share-github-pr/open-design.json +54 -0
  3996. package/runtime/vendor/plugins/open-design/spec/templates/README.template.md +30 -0
  3997. package/runtime/vendor/plugins/open-design/spec/templates/README.template.zh-CN.md +30 -0
  3998. package/runtime/vendor/plugins/open-design/spec/templates/SKILL.template.md +40 -0
  3999. package/runtime/vendor/plugins/open-design/spec/templates/evals.template.json +26 -0
  4000. package/runtime/vendor/plugins/open-design/spec/templates/open-design.template.json +45 -0
  4001. package/runtime/vendor/plugins/ruflo/README.md +155 -0
  4002. package/runtime/vendor/plugins/ruflo/ruflo-adr/.claude-plugin/plugin.json +22 -0
  4003. package/runtime/vendor/plugins/ruflo/ruflo-adr/README.md +86 -0
  4004. package/runtime/vendor/plugins/ruflo/ruflo-adr/REFERENCE.md +112 -0
  4005. package/runtime/vendor/plugins/ruflo/ruflo-adr/agents/adr-architect.md +45 -0
  4006. package/runtime/vendor/plugins/ruflo/ruflo-adr/commands/adr.md +46 -0
  4007. package/runtime/vendor/plugins/ruflo/ruflo-adr/scripts/import.mjs +283 -0
  4008. package/runtime/vendor/plugins/ruflo/ruflo-adr/scripts/smoke.sh +130 -0
  4009. package/runtime/vendor/plugins/ruflo/ruflo-adr/scripts/verify.mjs +121 -0
  4010. package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-create/SKILL.md +61 -0
  4011. package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-index/SKILL.md +73 -0
  4012. package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-review/SKILL.md +55 -0
  4013. package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-verify/SKILL.md +42 -0
  4014. package/runtime/vendor/plugins/ruflo/ruflo-agent/.claude-plugin/plugin.json +25 -0
  4015. package/runtime/vendor/plugins/ruflo/ruflo-agent/README.md +99 -0
  4016. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-coordinator.md +71 -0
  4017. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-leaf.md +56 -0
  4018. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen-leaf.md +116 -0
  4019. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen-researcher.md +165 -0
  4020. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen-reviewer.md +155 -0
  4021. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen.md +180 -0
  4022. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-researcher.md +62 -0
  4023. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-reviewer.md +75 -0
  4024. package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/wasm-specialist.md +38 -0
  4025. package/runtime/vendor/plugins/ruflo/ruflo-agent/commands/managed-agent.md +13 -0
  4026. package/runtime/vendor/plugins/ruflo/ruflo-agent/commands/wasm.md +10 -0
  4027. package/runtime/vendor/plugins/ruflo/ruflo-agent/scripts/smoke.sh +104 -0
  4028. package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/managed-agent/SKILL.md +56 -0
  4029. package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/nested-subagents/SKILL.md +69 -0
  4030. package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/wasm-agent/SKILL.md +31 -0
  4031. package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/wasm-gallery/SKILL.md +22 -0
  4032. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/.claude-plugin/plugin.json +24 -0
  4033. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/README.md +221 -0
  4034. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/agents/agentdb-specialist.md +84 -0
  4035. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/commands/agentdb.md +12 -0
  4036. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/commands/embeddings.md +17 -0
  4037. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/scripts/smoke.sh +204 -0
  4038. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/skills/agentdb-query/SKILL.md +54 -0
  4039. package/runtime/vendor/plugins/ruflo/ruflo-agentdb/skills/vector-search/SKILL.md +94 -0
  4040. package/runtime/vendor/plugins/ruflo/ruflo-aidefence/.claude-plugin/plugin.json +22 -0
  4041. package/runtime/vendor/plugins/ruflo/ruflo-aidefence/README.md +79 -0
  4042. package/runtime/vendor/plugins/ruflo/ruflo-aidefence/agents/safety-specialist.md +43 -0
  4043. package/runtime/vendor/plugins/ruflo/ruflo-aidefence/commands/aidefence.md +10 -0
  4044. package/runtime/vendor/plugins/ruflo/ruflo-aidefence/scripts/smoke.sh +84 -0
  4045. package/runtime/vendor/plugins/ruflo/ruflo-aidefence/skills/pii-detect/SKILL.md +30 -0
  4046. package/runtime/vendor/plugins/ruflo/ruflo-aidefence/skills/safety-scan/SKILL.md +30 -0
  4047. package/runtime/vendor/plugins/ruflo/ruflo-arena/.claude-plugin/plugin.json +24 -0
  4048. package/runtime/vendor/plugins/ruflo/ruflo-arena/README.md +78 -0
  4049. package/runtime/vendor/plugins/ruflo/ruflo-arena/commands/arena.md +59 -0
  4050. package/runtime/vendor/plugins/ruflo/ruflo-arena/eslint.config.js +19 -0
  4051. package/runtime/vendor/plugins/ruflo/ruflo-arena/package.json +47 -0
  4052. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/cli.ts +116 -0
  4053. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/domain/games.ts +61 -0
  4054. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/domain/strategies.ts +191 -0
  4055. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/domain/types.ts +146 -0
  4056. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/arena.ts +54 -0
  4057. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/evolution.ts +91 -0
  4058. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/index.ts +11 -0
  4059. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/rng.ts +27 -0
  4060. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/tournament.ts +46 -0
  4061. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/index.ts +55 -0
  4062. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/mcp-tools/index.ts +269 -0
  4063. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/persistence/run-store.ts +127 -0
  4064. package/runtime/vendor/plugins/ruflo/ruflo-arena/src/report/render.ts +80 -0
  4065. package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/evolution.test.ts +31 -0
  4066. package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/games-arena.test.ts +54 -0
  4067. package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/mcp-tools.test.ts +92 -0
  4068. package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/tournament.test.ts +37 -0
  4069. package/runtime/vendor/plugins/ruflo/ruflo-arena/tsconfig.json +21 -0
  4070. package/runtime/vendor/plugins/ruflo/ruflo-arena/vitest.config.ts +9 -0
  4071. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/.claude-plugin/plugin.json +22 -0
  4072. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/README.md +76 -0
  4073. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/agents/autopilot-coordinator.md +42 -0
  4074. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/commands/autopilot-status.md +15 -0
  4075. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/commands/autopilot.md +18 -0
  4076. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/scripts/smoke.sh +76 -0
  4077. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/skills/autopilot-loop/SKILL.md +27 -0
  4078. package/runtime/vendor/plugins/ruflo/ruflo-autopilot/skills/autopilot-predict/SKILL.md +26 -0
  4079. package/runtime/vendor/plugins/ruflo/ruflo-browser/.claude-plugin/plugin.json +24 -0
  4080. package/runtime/vendor/plugins/ruflo/ruflo-browser/README.md +131 -0
  4081. package/runtime/vendor/plugins/ruflo/ruflo-browser/agents/browser-agent.md +107 -0
  4082. package/runtime/vendor/plugins/ruflo/ruflo-browser/commands/ruflo-browser.md +63 -0
  4083. package/runtime/vendor/plugins/ruflo/ruflo-browser/scripts/SITES.txt +18 -0
  4084. package/runtime/vendor/plugins/ruflo/ruflo-browser/scripts/replay-spike.sh +157 -0
  4085. package/runtime/vendor/plugins/ruflo/ruflo-browser/scripts/smoke.sh +143 -0
  4086. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-auth-flow/SKILL.md +38 -0
  4087. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-extract/SKILL.md +55 -0
  4088. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-form-fill/SKILL.md +40 -0
  4089. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-login/SKILL.md +46 -0
  4090. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-record/SKILL.md +49 -0
  4091. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-replay/SKILL.md +47 -0
  4092. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-scrape/SKILL.md +36 -0
  4093. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-screenshot-diff/SKILL.md +37 -0
  4094. package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-test/SKILL.md +48 -0
  4095. package/runtime/vendor/plugins/ruflo/ruflo-core/.claude-plugin/plugin.json +21 -0
  4096. package/runtime/vendor/plugins/ruflo/ruflo-core/.mcp.json +11 -0
  4097. package/runtime/vendor/plugins/ruflo/ruflo-core/README.md +72 -0
  4098. package/runtime/vendor/plugins/ruflo/ruflo-core/agents/coder.md +31 -0
  4099. package/runtime/vendor/plugins/ruflo/ruflo-core/agents/researcher.md +80 -0
  4100. package/runtime/vendor/plugins/ruflo/ruflo-core/agents/reviewer.md +19 -0
  4101. package/runtime/vendor/plugins/ruflo/ruflo-core/agents/witness-curator.md +79 -0
  4102. package/runtime/vendor/plugins/ruflo/ruflo-core/commands/ruflo-status.md +11 -0
  4103. package/runtime/vendor/plugins/ruflo/ruflo-core/commands/witness.md +30 -0
  4104. package/runtime/vendor/plugins/ruflo/ruflo-core/hooks/hooks.json +77 -0
  4105. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/ruflo-hook.cjs +166 -0
  4106. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/ruflo-hook.sh +33 -0
  4107. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/smoke.sh +95 -0
  4108. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-cli-no-crash.mjs +103 -0
  4109. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-consensus-transport.mjs +108 -0
  4110. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-hooks.mjs +129 -0
  4111. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-mcp-protocol.mjs +66 -0
  4112. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-mcp-roundtrips.mjs +141 -0
  4113. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-memory-import.mjs +174 -0
  4114. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/history.mjs +105 -0
  4115. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/init.mjs +83 -0
  4116. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/lib.mjs +300 -0
  4117. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/perf.mjs +204 -0
  4118. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/regen.mjs +94 -0
  4119. package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/verify.mjs +213 -0
  4120. package/runtime/vendor/plugins/ruflo/ruflo-core/skills/discover-plugins/SKILL.md +119 -0
  4121. package/runtime/vendor/plugins/ruflo/ruflo-core/skills/init-project/SKILL.md +9 -0
  4122. package/runtime/vendor/plugins/ruflo/ruflo-core/skills/ruflo-doctor/SKILL.md +14 -0
  4123. package/runtime/vendor/plugins/ruflo/ruflo-core/skills/witness/SKILL.md +102 -0
  4124. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/.claude-plugin/plugin.json +54 -0
  4125. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/README.md +180 -0
  4126. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/REFERENCE.md +92 -0
  4127. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/agents/cost-analyst.md +98 -0
  4128. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/bench/booster-corpus.json +244 -0
  4129. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/commands/ruflo-cost.md +162 -0
  4130. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/hooks/hooks.json +17 -0
  4131. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/_prices.mjs +58 -0
  4132. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/_sessions.mjs +74 -0
  4133. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/anomaly.mjs +224 -0
  4134. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/bench.mjs +422 -0
  4135. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/budget.mjs +218 -0
  4136. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/burn.mjs +200 -0
  4137. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/compact.mjs +153 -0
  4138. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/conversation.mjs +76 -0
  4139. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/counterfactual.mjs +188 -0
  4140. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/diff.mjs +280 -0
  4141. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/export.mjs +154 -0
  4142. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/federation.mjs +134 -0
  4143. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/health.mjs +229 -0
  4144. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/outcome.mjs +43 -0
  4145. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/projection.mjs +205 -0
  4146. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/ruflo-hook.cjs +56 -0
  4147. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/session.mjs +225 -0
  4148. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/smoke.sh +650 -0
  4149. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/summary.mjs +221 -0
  4150. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/test-health-integration.mjs +176 -0
  4151. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/track.mjs +175 -0
  4152. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/trend.mjs +141 -0
  4153. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-anomaly/SKILL.md +92 -0
  4154. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-benchmark/SKILL.md +59 -0
  4155. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-booster-edit/SKILL.md +85 -0
  4156. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-booster-route/SKILL.md +42 -0
  4157. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-budget-check/SKILL.md +65 -0
  4158. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-burn/SKILL.md +76 -0
  4159. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-compact-context/SKILL.md +37 -0
  4160. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-conversation/SKILL.md +38 -0
  4161. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-counterfactual/SKILL.md +54 -0
  4162. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-diff/SKILL.md +131 -0
  4163. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-export/SKILL.md +59 -0
  4164. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-federation/SKILL.md +55 -0
  4165. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-health/SKILL.md +92 -0
  4166. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-optimize/SKILL.md +47 -0
  4167. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-projection/SKILL.md +61 -0
  4168. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-report/SKILL.md +36 -0
  4169. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-session/SKILL.md +87 -0
  4170. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-summary/SKILL.md +74 -0
  4171. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-track/SKILL.md +79 -0
  4172. package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-trend/SKILL.md +44 -0
  4173. package/runtime/vendor/plugins/ruflo/ruflo-daa/.claude-plugin/plugin.json +21 -0
  4174. package/runtime/vendor/plugins/ruflo/ruflo-daa/README.md +69 -0
  4175. package/runtime/vendor/plugins/ruflo/ruflo-daa/agents/daa-specialist.md +42 -0
  4176. package/runtime/vendor/plugins/ruflo/ruflo-daa/commands/daa.md +10 -0
  4177. package/runtime/vendor/plugins/ruflo/ruflo-daa/scripts/smoke.sh +77 -0
  4178. package/runtime/vendor/plugins/ruflo/ruflo-daa/skills/cognitive-pattern/SKILL.md +29 -0
  4179. package/runtime/vendor/plugins/ruflo/ruflo-daa/skills/daa-agent/SKILL.md +31 -0
  4180. package/runtime/vendor/plugins/ruflo/ruflo-ddd/.claude-plugin/plugin.json +23 -0
  4181. package/runtime/vendor/plugins/ruflo/ruflo-ddd/README.md +95 -0
  4182. package/runtime/vendor/plugins/ruflo/ruflo-ddd/REFERENCE.md +73 -0
  4183. package/runtime/vendor/plugins/ruflo/ruflo-ddd/agents/domain-modeler.md +54 -0
  4184. package/runtime/vendor/plugins/ruflo/ruflo-ddd/commands/ddd.md +43 -0
  4185. package/runtime/vendor/plugins/ruflo/ruflo-ddd/scripts/smoke.sh +72 -0
  4186. package/runtime/vendor/plugins/ruflo/ruflo-ddd/skills/ddd-aggregate/SKILL.md +51 -0
  4187. package/runtime/vendor/plugins/ruflo/ruflo-ddd/skills/ddd-context/SKILL.md +45 -0
  4188. package/runtime/vendor/plugins/ruflo/ruflo-ddd/skills/ddd-validate/SKILL.md +50 -0
  4189. package/runtime/vendor/plugins/ruflo/ruflo-docs/.claude-plugin/plugin.json +20 -0
  4190. package/runtime/vendor/plugins/ruflo/ruflo-docs/README.md +72 -0
  4191. package/runtime/vendor/plugins/ruflo/ruflo-docs/agents/docs-writer.md +49 -0
  4192. package/runtime/vendor/plugins/ruflo/ruflo-docs/commands/ruflo-docs.md +21 -0
  4193. package/runtime/vendor/plugins/ruflo/ruflo-docs/scripts/smoke.sh +71 -0
  4194. package/runtime/vendor/plugins/ruflo/ruflo-docs/skills/api-docs/SKILL.md +21 -0
  4195. package/runtime/vendor/plugins/ruflo/ruflo-docs/skills/doc-gen/SKILL.md +19 -0
  4196. package/runtime/vendor/plugins/ruflo/ruflo-federation/.claude-plugin/plugin.json +26 -0
  4197. package/runtime/vendor/plugins/ruflo/ruflo-federation/README.md +99 -0
  4198. package/runtime/vendor/plugins/ruflo/ruflo-federation/agents/federation-coordinator.md +56 -0
  4199. package/runtime/vendor/plugins/ruflo/ruflo-federation/commands/federation.md +40 -0
  4200. package/runtime/vendor/plugins/ruflo/ruflo-federation/scripts/smoke.sh +86 -0
  4201. package/runtime/vendor/plugins/ruflo/ruflo-federation/skills/federation-audit/SKILL.md +19 -0
  4202. package/runtime/vendor/plugins/ruflo/ruflo-federation/skills/federation-init/SKILL.md +15 -0
  4203. package/runtime/vendor/plugins/ruflo/ruflo-federation/skills/federation-status/SKILL.md +15 -0
  4204. package/runtime/vendor/plugins/ruflo/ruflo-goals/.claude-plugin/plugin.json +26 -0
  4205. package/runtime/vendor/plugins/ruflo/ruflo-goals/README.md +89 -0
  4206. package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/deep-researcher.md +61 -0
  4207. package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/dossier-investigator.md +68 -0
  4208. package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/goal-planner.md +89 -0
  4209. package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/horizon-tracker.md +67 -0
  4210. package/runtime/vendor/plugins/ruflo/ruflo-goals/commands/goals.md +12 -0
  4211. package/runtime/vendor/plugins/ruflo/ruflo-goals/scripts/smoke.sh +87 -0
  4212. package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/deep-research/SKILL.md +43 -0
  4213. package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/dossier-collect/SKILL.md +70 -0
  4214. package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/goal-plan/SKILL.md +59 -0
  4215. package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/horizon-track/SKILL.md +61 -0
  4216. package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/research-synthesize/SKILL.md +62 -0
  4217. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/.claude-plugin/plugin.json +27 -0
  4218. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/package-lock.json +15432 -0
  4219. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/package.json +55 -0
  4220. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/aidefence-suspicion-adapter.ts +102 -0
  4221. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/browser-causal-adapter.ts +193 -0
  4222. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/cost-attribution-adapter.ts +123 -0
  4223. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/federation-trust-adapter.ts +116 -0
  4224. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/index.ts +87 -0
  4225. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/jujutsu-blast-radius-adapter.ts +107 -0
  4226. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/knowledge-graph-adapter.ts +183 -0
  4227. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/observability-span-adapter.ts +123 -0
  4228. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/portfolio-cg-adapter.ts +140 -0
  4229. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/rag-memory-adapter.ts +117 -0
  4230. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/application/federation-client.ts +147 -0
  4231. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/application/federation-server.ts +158 -0
  4232. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/application/streaming-bridge.ts +137 -0
  4233. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/adapter.ts +92 -0
  4234. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/federation-protocol.ts +95 -0
  4235. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/signed-artifact.ts +80 -0
  4236. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/types.ts +215 -0
  4237. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/index.ts +105 -0
  4238. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/infrastructure/jl-embed.ts +98 -0
  4239. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/infrastructure/solver-bridge.ts +389 -0
  4240. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/infrastructure/witness-signer.ts +209 -0
  4241. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/mcp-tools/index.ts +316 -0
  4242. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/adapter-registry.test.ts +69 -0
  4243. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/browser-causal-adapter.test.ts +174 -0
  4244. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/mcp-tools.test.ts +169 -0
  4245. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase3-adapters.test.ts +206 -0
  4246. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase4-adapters.test.ts +158 -0
  4247. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase5-portfolio.test.ts +122 -0
  4248. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase6-adapters.test.ts +224 -0
  4249. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase6_5-streaming.test.ts +135 -0
  4250. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase7-signed-artifact.test.ts +238 -0
  4251. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase8-federation.test.ts +194 -0
  4252. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/solver-bridge.test.ts +255 -0
  4253. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tsconfig.json +21 -0
  4254. package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/vitest.config.ts +9 -0
  4255. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/.claude-plugin/plugin.json +26 -0
  4256. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/README.md +143 -0
  4257. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/agents/intelligence-specialist.md +106 -0
  4258. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/commands/intelligence.md +25 -0
  4259. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/commands/neural.md +15 -0
  4260. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/scripts/smoke.sh +152 -0
  4261. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/skills/intelligence-route/SKILL.md +56 -0
  4262. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/skills/intelligence-transfer/SKILL.md +80 -0
  4263. package/runtime/vendor/plugins/ruflo/ruflo-intelligence/skills/neural-train/SKILL.md +94 -0
  4264. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/.claude-plugin/plugin.json +26 -0
  4265. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/README.md +181 -0
  4266. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/REFERENCE.md +63 -0
  4267. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/device-coordinator.md +30 -0
  4268. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/fleet-manager.md +67 -0
  4269. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/telemetry-analyzer.md +53 -0
  4270. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/witness-auditor.md +38 -0
  4271. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/commands/iot.md +59 -0
  4272. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/scripts/smoke.sh +95 -0
  4273. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-anomalies/SKILL.md +14 -0
  4274. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-firmware/SKILL.md +15 -0
  4275. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-fleet/SKILL.md +13 -0
  4276. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-register/SKILL.md +18 -0
  4277. package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-witness-verify/SKILL.md +14 -0
  4278. package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/.claude-plugin/plugin.json +22 -0
  4279. package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/README.md +75 -0
  4280. package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/agents/git-specialist.md +38 -0
  4281. package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/commands/jujutsu.md +12 -0
  4282. package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/scripts/smoke.sh +75 -0
  4283. package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/skills/diff-analyze/SKILL.md +31 -0
  4284. package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/skills/git-workflow/SKILL.md +45 -0
  4285. package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/.claude-plugin/plugin.json +21 -0
  4286. package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/README.md +99 -0
  4287. package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/agents/graph-navigator.md +80 -0
  4288. package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/commands/kg.md +38 -0
  4289. package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/scripts/smoke.sh +87 -0
  4290. package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/skills/kg-extract/SKILL.md +44 -0
  4291. package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/skills/kg-traverse/SKILL.md +30 -0
  4292. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/.claude-plugin/plugin.json +22 -0
  4293. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/README.md +95 -0
  4294. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/agents/loop-worker-coordinator.md +53 -0
  4295. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/commands/ruflo-loop.md +17 -0
  4296. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/commands/ruflo-schedule.md +18 -0
  4297. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/scripts/smoke.sh +95 -0
  4298. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/skills/cron-schedule/SKILL.md +25 -0
  4299. package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/skills/loop-worker/SKILL.md +27 -0
  4300. package/runtime/vendor/plugins/ruflo/ruflo-market-data/.claude-plugin/plugin.json +21 -0
  4301. package/runtime/vendor/plugins/ruflo/ruflo-market-data/README.md +98 -0
  4302. package/runtime/vendor/plugins/ruflo/ruflo-market-data/agents/data-engineer.md +85 -0
  4303. package/runtime/vendor/plugins/ruflo/ruflo-market-data/commands/market.md +39 -0
  4304. package/runtime/vendor/plugins/ruflo/ruflo-market-data/scripts/smoke.sh +88 -0
  4305. package/runtime/vendor/plugins/ruflo/ruflo-market-data/skills/market-ingest/SKILL.md +34 -0
  4306. package/runtime/vendor/plugins/ruflo/ruflo-market-data/skills/market-pattern/SKILL.md +36 -0
  4307. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/.claude-plugin/plugin.json +32 -0
  4308. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/README.md +64 -0
  4309. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/agents/metaharness-architect.md +58 -0
  4310. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/commands/ruflo-metaharness.md +46 -0
  4311. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/_harness.mjs +261 -0
  4312. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/_similarity.mjs +161 -0
  4313. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/_spike-similarity.mjs +223 -0
  4314. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/audit-list.mjs +158 -0
  4315. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/audit-trend.mjs +272 -0
  4316. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/bench-parse-mcp-scan.mjs +146 -0
  4317. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/bench-recordpair-overhead.mjs +186 -0
  4318. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/bench-similarity.mjs +177 -0
  4319. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/drift-from-history.mjs +363 -0
  4320. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/genome.mjs +80 -0
  4321. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/mcp-scan.mjs +111 -0
  4322. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/mint.mjs +119 -0
  4323. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/oia-audit.mjs +228 -0
  4324. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/router-parallel-analyze.mjs +250 -0
  4325. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/score.mjs +92 -0
  4326. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/similarity.mjs +158 -0
  4327. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/smoke.sh +2268 -0
  4328. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-graceful-degradation.mjs +141 -0
  4329. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-mcp-tools.mjs +437 -0
  4330. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-parallel-pipeline.mjs +204 -0
  4331. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-pipeline-roundtrip.mjs +586 -0
  4332. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-similarity.mjs +334 -0
  4333. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-with-openrouter.mjs +229 -0
  4334. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/threat-model.mjs +59 -0
  4335. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-drift-from-history/SKILL.md +65 -0
  4336. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-genome/SKILL.md +54 -0
  4337. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-mcp-scan/SKILL.md +47 -0
  4338. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-mint/SKILL.md +72 -0
  4339. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-oia-audit/SKILL.md +79 -0
  4340. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-score/SKILL.md +66 -0
  4341. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-similarity/SKILL.md +67 -0
  4342. package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-threat-model/SKILL.md +39 -0
  4343. package/runtime/vendor/plugins/ruflo/ruflo-migrations/.claude-plugin/plugin.json +21 -0
  4344. package/runtime/vendor/plugins/ruflo/ruflo-migrations/README.md +95 -0
  4345. package/runtime/vendor/plugins/ruflo/ruflo-migrations/agents/migration-engineer.md +98 -0
  4346. package/runtime/vendor/plugins/ruflo/ruflo-migrations/commands/migrate.md +47 -0
  4347. package/runtime/vendor/plugins/ruflo/ruflo-migrations/scripts/smoke.sh +86 -0
  4348. package/runtime/vendor/plugins/ruflo/ruflo-migrations/skills/migrate-create/SKILL.md +35 -0
  4349. package/runtime/vendor/plugins/ruflo/ruflo-migrations/skills/migrate-validate/SKILL.md +35 -0
  4350. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/.claude-plugin/plugin.json +26 -0
  4351. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/README.md +326 -0
  4352. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/backtest-engineer.md +74 -0
  4353. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/market-analyst.md +92 -0
  4354. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/risk-analyst.md +127 -0
  4355. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/trading-strategist.md +170 -0
  4356. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/backtest-throughput.bench.mjs +247 -0
  4357. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/memory-recall.bench.mjs +198 -0
  4358. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/portfolio-cg.bench.mjs +256 -0
  4359. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/backtest-throughput-baseline-20260520T203616Z.md +48 -0
  4360. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/cg-baseline-20260520T022220Z.md +25 -0
  4361. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/cg-native-baseline-20260520T202735Z.md +104 -0
  4362. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/memory-recall-baseline-20260520T203616Z.md +45 -0
  4363. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/signal-generation-baseline-20260520T203616Z.md +43 -0
  4364. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/signal-generation.bench.mjs +233 -0
  4365. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/commands/trader.md +67 -0
  4366. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/scripts/runtime-smoke.sh +118 -0
  4367. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/scripts/smoke.sh +86 -0
  4368. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-backtest/SKILL.md +47 -0
  4369. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-cloud-backtest/SKILL.md +85 -0
  4370. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-explain/SKILL.md +137 -0
  4371. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-portfolio/SKILL.md +38 -0
  4372. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-portfolio-cg/SKILL.md +117 -0
  4373. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-regime/SKILL.md +30 -0
  4374. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-risk/SKILL.md +33 -0
  4375. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-signal/SKILL.md +35 -0
  4376. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-train/SKILL.md +30 -0
  4377. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/pipeline-messages.ts +147 -0
  4378. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-artifact.mjs +98 -0
  4379. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-artifact.ts +186 -0
  4380. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-attribution.mjs +227 -0
  4381. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-attribution.ts +416 -0
  4382. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/sublinear-adapter.mjs +245 -0
  4383. package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/sublinear-adapter.ts +383 -0
  4384. package/runtime/vendor/plugins/ruflo/ruflo-observability/.claude-plugin/plugin.json +22 -0
  4385. package/runtime/vendor/plugins/ruflo/ruflo-observability/README.md +98 -0
  4386. package/runtime/vendor/plugins/ruflo/ruflo-observability/agents/observability-engineer.md +117 -0
  4387. package/runtime/vendor/plugins/ruflo/ruflo-observability/commands/observe.md +39 -0
  4388. package/runtime/vendor/plugins/ruflo/ruflo-observability/scripts/smoke.sh +86 -0
  4389. package/runtime/vendor/plugins/ruflo/ruflo-observability/skills/observe-metrics/SKILL.md +34 -0
  4390. package/runtime/vendor/plugins/ruflo/ruflo-observability/skills/observe-trace/SKILL.md +29 -0
  4391. package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/.claude-plugin/plugin.json +21 -0
  4392. package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/README.md +75 -0
  4393. package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/agents/plugin-developer.md +40 -0
  4394. package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/commands/create-plugin.md +11 -0
  4395. package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/scripts/smoke.sh +83 -0
  4396. package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/skills/create-plugin/SKILL.md +105 -0
  4397. package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/skills/validate-plugin/SKILL.md +34 -0
  4398. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/.claude-plugin/plugin.json +22 -0
  4399. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/README.md +202 -0
  4400. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/agents/memory-specialist.md +120 -0
  4401. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/commands/recall.md +23 -0
  4402. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/commands/ruflo-memory.md +38 -0
  4403. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/scripts/smoke.sh +84 -0
  4404. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/skills/memory-bridge/SKILL.md +59 -0
  4405. package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/skills/memory-search/SKILL.md +67 -0
  4406. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/.claude-plugin/plugin.json +23 -0
  4407. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/README.md +262 -0
  4408. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/agents/vector-engineer.md +194 -0
  4409. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/commands/vector.md +155 -0
  4410. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/scripts/smoke.sh +76 -0
  4411. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-cluster/SKILL.md +41 -0
  4412. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-embed/SKILL.md +47 -0
  4413. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-hyperbolic/SKILL.md +55 -0
  4414. package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-setup/SKILL.md +82 -0
  4415. package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/.claude-plugin/plugin.json +22 -0
  4416. package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/README.md +68 -0
  4417. package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/agents/llm-specialist.md +37 -0
  4418. package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/commands/ruvllm.md +9 -0
  4419. package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/scripts/smoke.sh +77 -0
  4420. package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/skills/chat-format/SKILL.md +30 -0
  4421. package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/skills/llm-config/SKILL.md +32 -0
  4422. package/runtime/vendor/plugins/ruflo/ruflo-rvf/.claude-plugin/plugin.json +22 -0
  4423. package/runtime/vendor/plugins/ruflo/ruflo-rvf/README.md +78 -0
  4424. package/runtime/vendor/plugins/ruflo/ruflo-rvf/agents/session-specialist.md +30 -0
  4425. package/runtime/vendor/plugins/ruflo/ruflo-rvf/commands/rvf.md +10 -0
  4426. package/runtime/vendor/plugins/ruflo/ruflo-rvf/scripts/smoke.sh +79 -0
  4427. package/runtime/vendor/plugins/ruflo/ruflo-rvf/skills/rvf-manage/SKILL.md +37 -0
  4428. package/runtime/vendor/plugins/ruflo/ruflo-rvf/skills/session-persist/SKILL.md +35 -0
  4429. package/runtime/vendor/plugins/ruflo/ruflo-security-audit/.claude-plugin/plugin.json +22 -0
  4430. package/runtime/vendor/plugins/ruflo/ruflo-security-audit/README.md +69 -0
  4431. package/runtime/vendor/plugins/ruflo/ruflo-security-audit/agents/security-auditor.md +50 -0
  4432. package/runtime/vendor/plugins/ruflo/ruflo-security-audit/commands/audit.md +18 -0
  4433. package/runtime/vendor/plugins/ruflo/ruflo-security-audit/scripts/smoke.sh +79 -0
  4434. package/runtime/vendor/plugins/ruflo/ruflo-security-audit/skills/dependency-check/SKILL.md +25 -0
  4435. package/runtime/vendor/plugins/ruflo/ruflo-security-audit/skills/security-scan/SKILL.md +24 -0
  4436. package/runtime/vendor/plugins/ruflo/ruflo-sparc/.claude-plugin/plugin.json +22 -0
  4437. package/runtime/vendor/plugins/ruflo/ruflo-sparc/README.md +111 -0
  4438. package/runtime/vendor/plugins/ruflo/ruflo-sparc/agents/sparc-orchestrator.md +145 -0
  4439. package/runtime/vendor/plugins/ruflo/ruflo-sparc/commands/ruflo-sparc.md +95 -0
  4440. package/runtime/vendor/plugins/ruflo/ruflo-sparc/scripts/smoke.sh +91 -0
  4441. package/runtime/vendor/plugins/ruflo/ruflo-sparc/skills/sparc-implement/SKILL.md +122 -0
  4442. package/runtime/vendor/plugins/ruflo/ruflo-sparc/skills/sparc-refine/SKILL.md +130 -0
  4443. package/runtime/vendor/plugins/ruflo/ruflo-sparc/skills/sparc-spec/SKILL.md +95 -0
  4444. package/runtime/vendor/plugins/ruflo/ruflo-swarm/.claude-plugin/plugin.json +22 -0
  4445. package/runtime/vendor/plugins/ruflo/ruflo-swarm/README.md +86 -0
  4446. package/runtime/vendor/plugins/ruflo/ruflo-swarm/agents/architect.md +39 -0
  4447. package/runtime/vendor/plugins/ruflo/ruflo-swarm/agents/coordinator.md +31 -0
  4448. package/runtime/vendor/plugins/ruflo/ruflo-swarm/commands/swarm.md +16 -0
  4449. package/runtime/vendor/plugins/ruflo/ruflo-swarm/commands/watch.md +13 -0
  4450. package/runtime/vendor/plugins/ruflo/ruflo-swarm/scripts/smoke.sh +93 -0
  4451. package/runtime/vendor/plugins/ruflo/ruflo-swarm/skills/monitor-stream/SKILL.md +15 -0
  4452. package/runtime/vendor/plugins/ruflo/ruflo-swarm/skills/swarm-init/SKILL.md +21 -0
  4453. package/runtime/vendor/plugins/ruflo/ruflo-testgen/.claude-plugin/plugin.json +21 -0
  4454. package/runtime/vendor/plugins/ruflo/ruflo-testgen/README.md +74 -0
  4455. package/runtime/vendor/plugins/ruflo/ruflo-testgen/agents/tester.md +39 -0
  4456. package/runtime/vendor/plugins/ruflo/ruflo-testgen/commands/testgen.md +19 -0
  4457. package/runtime/vendor/plugins/ruflo/ruflo-testgen/scripts/smoke.sh +79 -0
  4458. package/runtime/vendor/plugins/ruflo/ruflo-testgen/skills/tdd-workflow/SKILL.md +22 -0
  4459. package/runtime/vendor/plugins/ruflo/ruflo-testgen/skills/test-gaps/SKILL.md +17 -0
  4460. package/runtime/vendor/plugins/ruflo/ruflo-workflows/.claude-plugin/plugin.json +70 -0
  4461. package/runtime/vendor/plugins/ruflo/ruflo-workflows/README.md +148 -0
  4462. package/runtime/vendor/plugins/ruflo/ruflo-workflows/agents/gaia-benchmark-runner.md +78 -0
  4463. package/runtime/vendor/plugins/ruflo/ruflo-workflows/agents/gaia-submission-coordinator.md +95 -0
  4464. package/runtime/vendor/plugins/ruflo/ruflo-workflows/agents/workflow-specialist.md +55 -0
  4465. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-cost.md +78 -0
  4466. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-history.md +73 -0
  4467. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-leaderboard.md +62 -0
  4468. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-run.md +98 -0
  4469. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-submit.md +86 -0
  4470. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-validate.md +94 -0
  4471. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia.md +48 -0
  4472. package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/workflow.md +20 -0
  4473. package/runtime/vendor/plugins/ruflo/ruflo-workflows/scripts/smoke-gaia.sh +140 -0
  4474. package/runtime/vendor/plugins/ruflo/ruflo-workflows/scripts/smoke.sh +115 -0
  4475. package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/gaia-architecture-comparison/SKILL.md +127 -0
  4476. package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/gaia-debugging/SKILL.md +116 -0
  4477. package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/gaia-submission/SKILL.md +123 -0
  4478. package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/workflow-create/SKILL.md +60 -0
  4479. package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/workflow-run/SKILL.md +40 -0
  4480. package/runtime/vendor/skills/CATALOG.md +78 -0
  4481. package/runtime/vendor/skills/andrej-karpathy-skills/karpathy-guidelines/SKILL.md +67 -0
  4482. package/runtime/vendor/skills/app/SKILL.md +1456 -0
  4483. package/runtime/vendor/skills/app/agents/openai.yaml +4 -0
  4484. package/runtime/vendor/skills/app/skill.json +36 -0
  4485. package/runtime/vendor/skills/app/spec.md +1454 -0
  4486. package/runtime/vendor/skills/book-to-skill/BACKERS.md +27 -0
  4487. package/runtime/vendor/skills/book-to-skill/CHANGELOG.md +154 -0
  4488. package/runtime/vendor/skills/book-to-skill/CONTRIBUTING.md +55 -0
  4489. package/runtime/vendor/skills/book-to-skill/LICENSE.md +21 -0
  4490. package/runtime/vendor/skills/book-to-skill/README.md +438 -0
  4491. package/runtime/vendor/skills/book-to-skill/SECURITY.md +33 -0
  4492. package/runtime/vendor/skills/book-to-skill/SKILL.md +634 -0
  4493. package/runtime/vendor/skills/book-to-skill/book_to_skill/__init__.py +4 -0
  4494. package/runtime/vendor/skills/book-to-skill/book_to_skill/__main__.py +4 -0
  4495. package/runtime/vendor/skills/book-to-skill/book_to_skill/cli.py +16 -0
  4496. package/runtime/vendor/skills/book-to-skill/book_to_skill/config.py +38 -0
  4497. package/runtime/vendor/skills/book-to-skill/book_to_skill/dependencies.py +289 -0
  4498. package/runtime/vendor/skills/book-to-skill/book_to_skill/exceptions.py +2 -0
  4499. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/__init__.py +1 -0
  4500. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/calibre.py +26 -0
  4501. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/docx.py +89 -0
  4502. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/epub.py +101 -0
  4503. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/html.py +54 -0
  4504. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/pdf.py +100 -0
  4505. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/rtf.py +47 -0
  4506. package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/text.py +15 -0
  4507. package/runtime/vendor/skills/book-to-skill/book_to_skill/utils.py +678 -0
  4508. package/runtime/vendor/skills/book-to-skill/mkdocs.yml +69 -0
  4509. package/runtime/vendor/skills/book-to-skill/pyproject.toml +42 -0
  4510. package/runtime/vendor/skills/book-to-skill/scripts/banner.txt +26 -0
  4511. package/runtime/vendor/skills/book-to-skill/scripts/extract.py +26 -0
  4512. package/runtime/vendor/skills/book-to-skill/tests/test_book_to_skill.py +1035 -0
  4513. package/runtime/vendor/skills/book-to-skill/tests/test_discovery_tax.py +122 -0
  4514. package/runtime/vendor/skills/book-to-skill/tools/discovery_tax.py +192 -0
  4515. package/runtime/vendor/skills/book-to-skill/tools/validate_skill.py +220 -0
  4516. package/runtime/vendor/skills/drawio-diagramming/SKILL.md +35 -0
  4517. package/runtime/vendor/skills/drawio-diagramming/agents/openai.yaml +4 -0
  4518. package/runtime/vendor/skills/drawio-diagramming/references/diagram-types.md +20 -0
  4519. package/runtime/vendor/skills/drawio-diagramming/references/layout-patterns.md +21 -0
  4520. package/runtime/vendor/skills/drawio-diagramming/references/mxfile-format.md +28 -0
  4521. package/runtime/vendor/skills/drawio-diagramming/references/visual-quality-gates.md +15 -0
  4522. package/runtime/vendor/skills/drawio-diagramming/scripts/inspect_drawio.py +36 -0
  4523. package/runtime/vendor/skills/drawio-diagramming/scripts/validate_drawio.py +86 -0
  4524. package/runtime/vendor/skills/ecc/agent-introspection-debugging/SKILL.md +152 -0
  4525. package/runtime/vendor/skills/ecc/agent-introspection-debugging/agents/openai.yaml +7 -0
  4526. package/runtime/vendor/skills/ecc/agent-sort/SKILL.md +214 -0
  4527. package/runtime/vendor/skills/ecc/agent-sort/agents/openai.yaml +7 -0
  4528. package/runtime/vendor/skills/ecc/api-design/SKILL.md +522 -0
  4529. package/runtime/vendor/skills/ecc/api-design/agents/openai.yaml +7 -0
  4530. package/runtime/vendor/skills/ecc/article-writing/SKILL.md +78 -0
  4531. package/runtime/vendor/skills/ecc/article-writing/agents/openai.yaml +7 -0
  4532. package/runtime/vendor/skills/ecc/backend-patterns/SKILL.md +597 -0
  4533. package/runtime/vendor/skills/ecc/backend-patterns/agents/openai.yaml +7 -0
  4534. package/runtime/vendor/skills/ecc/benchmark-methodology/SKILL.md +190 -0
  4535. package/runtime/vendor/skills/ecc/benchmark-methodology/agents/openai.yaml +7 -0
  4536. package/runtime/vendor/skills/ecc/brand-discovery/SKILL.md +145 -0
  4537. package/runtime/vendor/skills/ecc/brand-discovery/agents/openai.yaml +7 -0
  4538. package/runtime/vendor/skills/ecc/brand-discovery/references/10_purpose-why.md +40 -0
  4539. package/runtime/vendor/skills/ecc/brand-discovery/references/20_positioning.md +44 -0
  4540. package/runtime/vendor/skills/ecc/brand-discovery/references/30_audience-niche.md +52 -0
  4541. package/runtime/vendor/skills/ecc/brand-discovery/references/40_personality-archetype.md +57 -0
  4542. package/runtime/vendor/skills/ecc/brand-discovery/references/50_voice-tone.md +59 -0
  4543. package/runtime/vendor/skills/ecc/brand-discovery/references/60_narrative-story.md +50 -0
  4544. package/runtime/vendor/skills/ecc/brand-discovery/references/70_founder-tension.md +49 -0
  4545. package/runtime/vendor/skills/ecc/brand-discovery/references/90_SYNTHESIS.md +133 -0
  4546. package/runtime/vendor/skills/ecc/brand-voice/SKILL.md +96 -0
  4547. package/runtime/vendor/skills/ecc/brand-voice/agents/openai.yaml +7 -0
  4548. package/runtime/vendor/skills/ecc/brand-voice/references/voice-profile-schema.md +55 -0
  4549. package/runtime/vendor/skills/ecc/bun-runtime/SKILL.md +83 -0
  4550. package/runtime/vendor/skills/ecc/bun-runtime/agents/openai.yaml +7 -0
  4551. package/runtime/vendor/skills/ecc/coding-standards/SKILL.md +549 -0
  4552. package/runtime/vendor/skills/ecc/coding-standards/agents/openai.yaml +7 -0
  4553. package/runtime/vendor/skills/ecc/competitive-platform-analysis/SKILL.md +214 -0
  4554. package/runtime/vendor/skills/ecc/competitive-platform-analysis/agents/openai.yaml +7 -0
  4555. package/runtime/vendor/skills/ecc/competitive-report-structure/SKILL.md +162 -0
  4556. package/runtime/vendor/skills/ecc/competitive-report-structure/agents/openai.yaml +7 -0
  4557. package/runtime/vendor/skills/ecc/content-engine/SKILL.md +130 -0
  4558. package/runtime/vendor/skills/ecc/content-engine/agents/openai.yaml +7 -0
  4559. package/runtime/vendor/skills/ecc/crosspost/SKILL.md +110 -0
  4560. package/runtime/vendor/skills/ecc/crosspost/agents/openai.yaml +7 -0
  4561. package/runtime/vendor/skills/ecc/deep-research/SKILL.md +154 -0
  4562. package/runtime/vendor/skills/ecc/deep-research/agents/openai.yaml +7 -0
  4563. package/runtime/vendor/skills/ecc/dmux-workflows/SKILL.md +143 -0
  4564. package/runtime/vendor/skills/ecc/dmux-workflows/agents/openai.yaml +7 -0
  4565. package/runtime/vendor/skills/ecc/documentation-lookup/SKILL.md +89 -0
  4566. package/runtime/vendor/skills/ecc/documentation-lookup/agents/openai.yaml +7 -0
  4567. package/runtime/vendor/skills/ecc/e2e-testing/SKILL.md +325 -0
  4568. package/runtime/vendor/skills/ecc/e2e-testing/agents/openai.yaml +7 -0
  4569. package/runtime/vendor/skills/ecc/eval-harness/SKILL.md +235 -0
  4570. package/runtime/vendor/skills/ecc/eval-harness/agents/openai.yaml +7 -0
  4571. package/runtime/vendor/skills/ecc/everything-claude-code/SKILL.md +442 -0
  4572. package/runtime/vendor/skills/ecc/everything-claude-code/agents/openai.yaml +7 -0
  4573. package/runtime/vendor/skills/ecc/exa-search/SKILL.md +169 -0
  4574. package/runtime/vendor/skills/ecc/exa-search/agents/openai.yaml +7 -0
  4575. package/runtime/vendor/skills/ecc/fal-ai-media/SKILL.md +276 -0
  4576. package/runtime/vendor/skills/ecc/fal-ai-media/agents/openai.yaml +7 -0
  4577. package/runtime/vendor/skills/ecc/frontend-patterns/SKILL.md +661 -0
  4578. package/runtime/vendor/skills/ecc/frontend-patterns/agents/openai.yaml +7 -0
  4579. package/runtime/vendor/skills/ecc/frontend-slides/SKILL.md +183 -0
  4580. package/runtime/vendor/skills/ecc/frontend-slides/STYLE_PRESETS.md +330 -0
  4581. package/runtime/vendor/skills/ecc/frontend-slides/agents/openai.yaml +7 -0
  4582. package/runtime/vendor/skills/ecc/investor-materials/SKILL.md +95 -0
  4583. package/runtime/vendor/skills/ecc/investor-materials/agents/openai.yaml +7 -0
  4584. package/runtime/vendor/skills/ecc/investor-outreach/SKILL.md +90 -0
  4585. package/runtime/vendor/skills/ecc/investor-outreach/agents/openai.yaml +7 -0
  4586. package/runtime/vendor/skills/ecc/market-research/SKILL.md +74 -0
  4587. package/runtime/vendor/skills/ecc/market-research/agents/openai.yaml +7 -0
  4588. package/runtime/vendor/skills/ecc/mcp-server-patterns/SKILL.md +66 -0
  4589. package/runtime/vendor/skills/ecc/mcp-server-patterns/agents/openai.yaml +7 -0
  4590. package/runtime/vendor/skills/ecc/mle-workflow/SKILL.md +346 -0
  4591. package/runtime/vendor/skills/ecc/mle-workflow/agents/openai.yaml +7 -0
  4592. package/runtime/vendor/skills/ecc/nextjs-turbopack/SKILL.md +43 -0
  4593. package/runtime/vendor/skills/ecc/nextjs-turbopack/agents/openai.yaml +7 -0
  4594. package/runtime/vendor/skills/ecc/product-capability/SKILL.md +140 -0
  4595. package/runtime/vendor/skills/ecc/product-capability/agents/openai.yaml +7 -0
  4596. package/runtime/vendor/skills/ecc/security-review/SKILL.md +494 -0
  4597. package/runtime/vendor/skills/ecc/security-review/agents/openai.yaml +7 -0
  4598. package/runtime/vendor/skills/ecc/strategic-compact/SKILL.md +103 -0
  4599. package/runtime/vendor/skills/ecc/strategic-compact/agents/openai.yaml +7 -0
  4600. package/runtime/vendor/skills/ecc/tdd-workflow/SKILL.md +409 -0
  4601. package/runtime/vendor/skills/ecc/tdd-workflow/agents/openai.yaml +7 -0
  4602. package/runtime/vendor/skills/ecc/verification-loop/SKILL.md +125 -0
  4603. package/runtime/vendor/skills/ecc/verification-loop/agents/openai.yaml +7 -0
  4604. package/runtime/vendor/skills/ecc/video-editing/SKILL.md +307 -0
  4605. package/runtime/vendor/skills/ecc/video-editing/agents/openai.yaml +7 -0
  4606. package/runtime/vendor/skills/ecc/x-api/SKILL.md +229 -0
  4607. package/runtime/vendor/skills/ecc/x-api/agents/openai.yaml +7 -0
  4608. package/runtime/vendor/skills/napkin/README.md +40 -0
  4609. package/runtime/vendor/skills/napkin/SKILL.md +109 -0
  4610. package/runtime/vendor/skills/napkin/napkin.md +37 -0
@@ -0,0 +1,2842 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Open Design — Emerald Editorial Deck</title>
6
+ <link rel="preconnect" href="https://fonts.googleapis.com">
7
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8
+ <link href="https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet">
9
+ <style>
10
+ deck-stage:not(:defined) { visibility: hidden; }
11
+
12
+ :root {
13
+ --bg: #3CD896;
14
+ --bg-2: #2DC684;
15
+ --bg-3: #25B377;
16
+ --ink: #0F1A5C;
17
+ --ink-2: #1B2774;
18
+ --ink-3: #3A4593;
19
+ --paper: #F1E9D6;
20
+ --rule: rgba(15, 26, 92, 0.22);
21
+ --rule-strong: rgba(15, 26, 92, 0.85);
22
+ --display-font: 'Bodoni Moda', serif;
23
+ }
24
+
25
+ html, body { margin: 0; padding: 0; background: #0a0a0a; }
26
+ deck-stage { background: #0a0a0a; }
27
+
28
+ section.slide {
29
+ width: 1920px;
30
+ height: 1080px;
31
+ background: var(--bg);
32
+ color: var(--ink);
33
+ font-family: 'Manrope', sans-serif;
34
+ overflow: hidden;
35
+ position: relative;
36
+ box-sizing: border-box;
37
+ }
38
+
39
+ /* Bold display serif — Bodoni Moda heavy */
40
+ .display {
41
+ font-family: var(--display-font);
42
+ font-weight: 900;
43
+ font-style: normal;
44
+ letter-spacing: -0.005em;
45
+ line-height: 0.95;
46
+ }
47
+ .display-md {
48
+ font-family: var(--display-font);
49
+ font-weight: 800;
50
+ font-style: normal;
51
+ }
52
+
53
+ .sans {
54
+ font-family: 'Manrope', sans-serif;
55
+ font-weight: 600;
56
+ }
57
+ .sans-b {
58
+ font-family: 'Manrope', sans-serif;
59
+ font-weight: 800;
60
+ letter-spacing: 0.04em;
61
+ }
62
+
63
+ /* Double-rule decorative ornament — the signature treatment */
64
+ .ornament {
65
+ display: inline-flex;
66
+ align-items: center;
67
+ gap: 26px;
68
+ justify-content: center;
69
+ width: 100%;
70
+ }
71
+ .ornament .word {
72
+ font-family: var(--display-font);
73
+ font-weight: 800;
74
+ font-size: 0.42em;
75
+ letter-spacing: 0.02em;
76
+ padding: 0 4px;
77
+ }
78
+ .ornament .lines {
79
+ flex: 1;
80
+ height: 18px;
81
+ position: relative;
82
+ }
83
+ .ornament .lines::before,
84
+ .ornament .lines::after {
85
+ content: "";
86
+ position: absolute;
87
+ left: 0;
88
+ right: 0;
89
+ height: 4px;
90
+ background: var(--ink);
91
+ }
92
+ .ornament .lines::before { top: 3px; }
93
+ .ornament .lines::after { bottom: 3px; }
94
+
95
+ /* Side double-rule for small inline words */
96
+ .of-mark {
97
+ display: inline-flex;
98
+ align-items: center;
99
+ gap: 22px;
100
+ font-family: var(--display-font);
101
+ font-weight: 700;
102
+ }
103
+ .of-mark::before, .of-mark::after {
104
+ content: "";
105
+ width: 64px;
106
+ height: 18px;
107
+ background:
108
+ linear-gradient(var(--ink), var(--ink)) 0 4px / 100% 4px no-repeat,
109
+ linear-gradient(var(--ink), var(--ink)) 0 12px / 100% 4px no-repeat;
110
+ }
111
+
112
+ /* Shared masthead / footline */
113
+ .masthead {
114
+ position: absolute;
115
+ top: 56px;
116
+ left: 80px;
117
+ right: 80px;
118
+ display: flex;
119
+ justify-content: space-between;
120
+ align-items: center;
121
+ font-size: 26px;
122
+ font-weight: 700;
123
+ letter-spacing: 0.05em;
124
+ color: var(--ink);
125
+ white-space: nowrap;
126
+ }
127
+ .footline {
128
+ position: absolute;
129
+ bottom: 56px;
130
+ left: 80px;
131
+ right: 80px;
132
+ display: flex;
133
+ justify-content: space-between;
134
+ align-items: center;
135
+ font-size: 26px;
136
+ font-weight: 700;
137
+ letter-spacing: 0.05em;
138
+ color: var(--ink);
139
+ }
140
+ .rule-h { height: 4px; background: var(--ink); }
141
+
142
+ /* ============== SLIDE 1 — COVER ============== */
143
+ .s1 {
144
+ padding: 56px 110px;
145
+ display: flex;
146
+ flex-direction: column;
147
+ text-align: center;
148
+ }
149
+ .s1-top {
150
+ display: flex; justify-content: space-between; align-items: center;
151
+ font-weight: 700; letter-spacing: 0.05em; font-size: 26px;
152
+ flex-shrink: 0;
153
+ }
154
+ .s1-stage {
155
+ flex: 1;
156
+ display: flex;
157
+ flex-direction: column;
158
+ justify-content: center;
159
+ align-items: center;
160
+ gap: 4px;
161
+ padding: 10px 0;
162
+ min-height: 0;
163
+ }
164
+ .s1-line { color: var(--ink); }
165
+ .s1-the { font-family: var(--display-font); font-weight: 800; font-size: 76px; line-height: 1; margin-bottom: -2px; }
166
+ .s1-big {
167
+ font-family: var(--display-font);
168
+ font-weight: 900;
169
+ font-size: 184px;
170
+ line-height: 0.92;
171
+ letter-spacing: -0.01em;
172
+ }
173
+ .s1-mid {
174
+ display: flex; align-items: center; justify-content: center;
175
+ gap: 32px;
176
+ width: 100%;
177
+ max-width: 1400px;
178
+ }
179
+ .s1-mid .rule {
180
+ flex: 1; height: 22px; position: relative;
181
+ }
182
+ .s1-mid .rule::before, .s1-mid .rule::after {
183
+ content: ""; position: absolute; left: 0; right: 0; height: 5px; background: var(--ink);
184
+ }
185
+ .s1-mid .rule::before { top: 2px; }
186
+ .s1-mid .rule::after { bottom: 2px; }
187
+ .s1-mid .of {
188
+ font-family: var(--display-font); font-weight: 800;
189
+ font-size: 68px; line-height: 1; padding: 0 6px;
190
+ }
191
+
192
+ /* Ornament rule variants — controlled by :root[data-ornament] */
193
+ :root[data-ornament="single"] .s1-mid .rule::before,
194
+ :root[data-ornament="single"] .s4-state .ornament-row .rule::before,
195
+ :root[data-ornament="single"] .s8-mid .rule::before {
196
+ top: 50%; bottom: auto; transform: translateY(-50%); height: 7px;
197
+ }
198
+ :root[data-ornament="single"] .s1-mid .rule::after,
199
+ :root[data-ornament="single"] .s4-state .ornament-row .rule::after,
200
+ :root[data-ornament="single"] .s8-mid .rule::after { display: none; }
201
+
202
+ :root[data-ornament="none"] .s1-mid .rule,
203
+ :root[data-ornament="none"] .s4-state .ornament-row .rule,
204
+ :root[data-ornament="none"] .s8-mid .rule { display: none; }
205
+
206
+ .s1-credit {
207
+ margin-top: 30px;
208
+ font-family: 'Manrope', sans-serif;
209
+ font-weight: 700;
210
+ font-size: 28px;
211
+ letter-spacing: 0.18em;
212
+ }
213
+
214
+ /* ============== SLIDE 2 — AGENDA ============== */
215
+ .s2 {
216
+ padding: 110px 110px 70px;
217
+ display: flex; flex-direction: column;
218
+ }
219
+ .s2-eyebrow { font-size: 28px; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 30px; }
220
+ .s2-title {
221
+ font-family: var(--display-font);
222
+ font-weight: 900;
223
+ font-size: 200px;
224
+ line-height: 0.9;
225
+ letter-spacing: -0.015em;
226
+ margin: 0 0 70px;
227
+ }
228
+ .s2-list { display: flex; flex-direction: column; gap: 0; }
229
+ .s2-row {
230
+ display: grid;
231
+ grid-template-columns: 130px 1fr 320px;
232
+ align-items: center;
233
+ padding: 26px 0;
234
+ border-top: 4px solid var(--ink);
235
+ column-gap: 40px;
236
+ }
237
+ .s2-row:last-child { border-bottom: 4px solid var(--ink); }
238
+ .s2-row .num {
239
+ font-family: var(--display-font);
240
+ font-weight: 800;
241
+ font-size: 64px;
242
+ line-height: 1;
243
+ }
244
+ .s2-row .name {
245
+ font-family: var(--display-font);
246
+ font-weight: 800;
247
+ font-size: 64px;
248
+ line-height: 1;
249
+ letter-spacing: -0.005em;
250
+ }
251
+ .s2-row .kind {
252
+ font-family: 'Manrope', sans-serif;
253
+ font-weight: 700;
254
+ font-size: 26px;
255
+ letter-spacing: 0.1em;
256
+ text-align: right;
257
+ white-space: nowrap;
258
+ }
259
+
260
+ /* ============== SLIDE 3 — SECTION OPENER ============== */
261
+ .s3 {
262
+ padding: 0;
263
+ display: grid;
264
+ grid-template-columns: 1fr 1fr;
265
+ }
266
+ .s3-left {
267
+ background: var(--ink);
268
+ color: var(--bg);
269
+ padding: 70px 90px;
270
+ position: relative;
271
+ display: flex;
272
+ align-items: center;
273
+ justify-content: center;
274
+ overflow: hidden;
275
+ }
276
+ .s3-left .top {
277
+ position: absolute; top: 70px; left: 90px; right: 90px;
278
+ display: flex; justify-content: space-between;
279
+ font-size: 26px; font-weight: 700; letter-spacing: 0.08em;
280
+ }
281
+ .s3-numeral {
282
+ font-family: var(--display-font);
283
+ font-weight: 900;
284
+ font-size: 460px;
285
+ line-height: 0.9;
286
+ letter-spacing: -0.03em;
287
+ text-align: center;
288
+ }
289
+ .s3-left .bot {
290
+ position: absolute; bottom: 70px; left: 90px; right: 90px;
291
+ display: flex; justify-content: space-between;
292
+ font-size: 26px; font-weight: 700; letter-spacing: 0.08em;
293
+ }
294
+ .s3-right {
295
+ padding: 70px 90px;
296
+ display: flex;
297
+ flex-direction: column;
298
+ justify-content: center;
299
+ gap: 30px;
300
+ overflow: hidden;
301
+ }
302
+ .s3-right .kicker {
303
+ font-family: 'Manrope', sans-serif;
304
+ font-weight: 800;
305
+ letter-spacing: 0.16em;
306
+ font-size: 28px;
307
+ }
308
+ .s3-right h2 {
309
+ font-family: var(--display-font);
310
+ font-weight: 900;
311
+ font-size: 128px;
312
+ line-height: 0.95;
313
+ letter-spacing: -0.015em;
314
+ margin: 0;
315
+ }
316
+ .s3-right .lede {
317
+ font-family: 'Manrope', sans-serif;
318
+ font-size: 28px;
319
+ line-height: 1.5;
320
+ font-weight: 500;
321
+ max-width: 720px;
322
+ }
323
+ .s3-right .marks {
324
+ display: flex; gap: 14px; flex-wrap: wrap; padding-top: 20px;
325
+ border-top: 4px solid var(--ink);
326
+ }
327
+ .s3-right .mark {
328
+ background: var(--ink);
329
+ color: var(--bg);
330
+ padding: 10px 22px;
331
+ font-weight: 700;
332
+ letter-spacing: 0.1em;
333
+ font-size: 24px;
334
+ }
335
+
336
+ /* ============== SLIDE 4 — STATEMENT + SUPPORTING ============== */
337
+ .s4 {
338
+ padding: 110px 110px 70px;
339
+ display: grid;
340
+ grid-template-rows: auto 1fr;
341
+ gap: 60px;
342
+ }
343
+ .s4-state {
344
+ font-family: var(--display-font);
345
+ font-weight: 900;
346
+ font-size: 130px;
347
+ line-height: 0.95;
348
+ letter-spacing: -0.015em;
349
+ text-align: center;
350
+ margin: 0;
351
+ }
352
+ .s4-state .ornament-row {
353
+ display: flex; align-items: center; justify-content: center;
354
+ gap: 32px;
355
+ margin: 14px 0;
356
+ }
357
+ .s4-state .ornament-row .of-word {
358
+ font-family: var(--display-font);
359
+ font-weight: 800;
360
+ font-size: 84px;
361
+ line-height: 1;
362
+ }
363
+ .s4-state .ornament-row .rule {
364
+ width: 220px; height: 18px; position: relative;
365
+ }
366
+ .s4-state .ornament-row .rule::before,
367
+ .s4-state .ornament-row .rule::after {
368
+ content: ""; position: absolute; left: 0; right: 0; height: 4px; background: var(--ink);
369
+ }
370
+ .s4-state .ornament-row .rule::before { top: 1px; }
371
+ .s4-state .ornament-row .rule::after { bottom: 1px; }
372
+ .s4-grid {
373
+ display: grid;
374
+ grid-template-columns: repeat(3, 1fr);
375
+ gap: 50px;
376
+ border-top: 4px solid var(--ink);
377
+ padding-top: 36px;
378
+ }
379
+ .s4-cell .n {
380
+ font-family: var(--display-font);
381
+ font-weight: 800;
382
+ font-size: 64px;
383
+ line-height: 1;
384
+ margin-bottom: 18px;
385
+ }
386
+ .s4-cell h4 {
387
+ font-family: var(--display-font);
388
+ font-weight: 800;
389
+ font-size: 44px;
390
+ line-height: 1.05;
391
+ margin: 0 0 16px;
392
+ letter-spacing: -0.005em;
393
+ }
394
+ .s4-cell p {
395
+ font-size: 26px; line-height: 1.5; font-weight: 500;
396
+ margin: 0;
397
+ }
398
+
399
+ /* ============== SLIDE 5 — CHART ============== */
400
+ .s5 {
401
+ padding: 110px 110px 70px;
402
+ display: grid;
403
+ grid-template-rows: auto 1fr;
404
+ gap: 40px;
405
+ }
406
+ .s5-head {
407
+ display: grid;
408
+ grid-template-columns: 1.1fr 1fr;
409
+ gap: 80px;
410
+ align-items: end;
411
+ }
412
+ .s5-h {
413
+ font-family: var(--display-font);
414
+ font-weight: 900;
415
+ font-size: 104px;
416
+ line-height: 0.95;
417
+ letter-spacing: -0.015em;
418
+ margin: 0;
419
+ }
420
+ .s5-sub {
421
+ font-size: 26px; line-height: 1.45; font-weight: 500;
422
+ margin: 0;
423
+ }
424
+ .s5-body {
425
+ display: grid;
426
+ grid-template-columns: 1.4fr 1fr;
427
+ gap: 60px;
428
+ align-items: stretch;
429
+ min-height: 0;
430
+ }
431
+ .chart-card {
432
+ background: var(--ink);
433
+ color: var(--bg);
434
+ padding: 36px 50px 30px;
435
+ position: relative;
436
+ display: flex;
437
+ flex-direction: column;
438
+ overflow: hidden;
439
+ }
440
+ .chart-card .lbl {
441
+ font-weight: 800; letter-spacing: 0.14em; font-size: 24px;
442
+ margin-bottom: 24px;
443
+ }
444
+ .chart-area {
445
+ flex: 1;
446
+ position: relative;
447
+ min-height: 0;
448
+ }
449
+ .chart-yaxis {
450
+ position: absolute; left: 0; top: 0; bottom: 60px; width: 80px;
451
+ }
452
+ .chart-yaxis span {
453
+ position: absolute; right: 14px; font-size: 26px;
454
+ font-family: var(--display-font); font-weight: 700;
455
+ transform: translateY(-50%);
456
+ }
457
+ .chart-grid {
458
+ position: absolute; left: 90px; right: 0; top: 0; bottom: 60px;
459
+ }
460
+ .chart-grid .gl {
461
+ position: absolute; left: 0; right: 0; height: 2px; background: rgba(60, 216, 150, 0.22);
462
+ }
463
+ .chart-bars {
464
+ position: absolute; left: 90px; right: 0; top: 0; bottom: 60px;
465
+ display: flex; gap: 24px; align-items: flex-end;
466
+ }
467
+ .grp { flex: 1; display: flex; gap: 10px; align-items: flex-end; height: 100%; }
468
+ .bar {
469
+ flex: 1;
470
+ background: var(--bg);
471
+ position: relative;
472
+ }
473
+ .bar.b2 { background: var(--paper); }
474
+ .bar .v {
475
+ position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
476
+ font-family: var(--display-font); font-weight: 800;
477
+ font-size: 30px; color: var(--bg);
478
+ }
479
+ .bar.b2 .v { color: var(--paper); }
480
+ .chart-x {
481
+ position: absolute; left: 90px; right: 0; bottom: 20px;
482
+ display: flex; gap: 24px;
483
+ }
484
+ .chart-x span {
485
+ flex: 1; text-align: center; font-weight: 700;
486
+ letter-spacing: 0.06em; font-size: 24px;
487
+ }
488
+ .chart-legend {
489
+ display: flex; gap: 36px; margin-top: 20px;
490
+ font-size: 24px; font-weight: 700; letter-spacing: 0.05em;
491
+ flex-shrink: 0;
492
+ }
493
+ .chart-legend .it { display: flex; align-items: center; gap: 14px; }
494
+ .chart-legend .sw { width: 22px; height: 22px; background: var(--bg); }
495
+ .chart-legend .sw.b2 { background: var(--paper); }
496
+
497
+ .s5-side {
498
+ display: flex; flex-direction: column;
499
+ gap: 22px;
500
+ border-top: 4px solid var(--ink);
501
+ padding-top: 26px;
502
+ overflow: hidden;
503
+ }
504
+ .s5-side .tag {
505
+ display: inline-block;
506
+ background: var(--ink); color: var(--bg);
507
+ padding: 8px 20px; font-weight: 700;
508
+ letter-spacing: 0.12em; font-size: 24px;
509
+ align-self: flex-start;
510
+ white-space: nowrap;
511
+ }
512
+ .s5-side .take {
513
+ font-family: var(--display-font);
514
+ font-weight: 800;
515
+ font-size: 48px;
516
+ line-height: 1.0;
517
+ letter-spacing: -0.005em;
518
+ margin: 0;
519
+ }
520
+ .s5-side .note {
521
+ font-size: 24px; line-height: 1.45; font-weight: 500; margin: 0;
522
+ }
523
+ .s5-side .stats {
524
+ margin-top: auto;
525
+ display: grid;
526
+ grid-template-columns: 1fr 1fr;
527
+ border-top: 4px solid var(--ink);
528
+ gap: 24px;
529
+ padding-top: 28px;
530
+ }
531
+ .s5-side .stats .stat .num {
532
+ font-family: var(--display-font);
533
+ font-weight: 900;
534
+ font-size: 92px;
535
+ line-height: 1;
536
+ letter-spacing: -0.02em;
537
+ }
538
+ .s5-side .stats .stat .num .u {
539
+ font-size: 48px;
540
+ margin-left: 2px;
541
+ }
542
+ .s5-side .stats .stat .lbl {
543
+ font-weight: 700;
544
+ letter-spacing: 0.1em;
545
+ font-size: 24px;
546
+ margin-top: 12px;
547
+ line-height: 1.35;
548
+ }
549
+
550
+ /* ============== SLIDE 6 — PROCESS ============== */
551
+ .s6 {
552
+ padding: 110px 110px 70px;
553
+ display: grid;
554
+ grid-template-rows: auto 1fr;
555
+ gap: 50px;
556
+ }
557
+ .s6-head {
558
+ display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: end;
559
+ }
560
+ .s6-eyebrow { font-size: 28px; font-weight: 800; letter-spacing: 0.16em; }
561
+ .s6-h {
562
+ font-family: var(--display-font); font-weight: 900;
563
+ font-size: 120px; line-height: 0.95; letter-spacing: -0.015em;
564
+ margin: 18px 0 0;
565
+ }
566
+ .s6-sub {
567
+ font-size: 28px; line-height: 1.5; font-weight: 500; margin: 0;
568
+ }
569
+ .s6-flow {
570
+ display: grid;
571
+ grid-template-columns: repeat(4, 1fr);
572
+ gap: 30px;
573
+ align-items: stretch;
574
+ }
575
+ .step {
576
+ background: var(--ink);
577
+ color: var(--bg);
578
+ padding: 32px 32px 26px;
579
+ display: flex; flex-direction: column;
580
+ position: relative;
581
+ }
582
+ .step.alt { background: var(--paper); color: var(--ink); }
583
+ .step .n {
584
+ font-family: var(--display-font); font-weight: 900;
585
+ font-size: 80px; line-height: 1;
586
+ margin-bottom: 14px;
587
+ }
588
+ .step h4 {
589
+ font-family: var(--display-font); font-weight: 800;
590
+ font-size: 40px; line-height: 1.0;
591
+ margin: 0 0 16px;
592
+ letter-spacing: -0.005em;
593
+ border-top: 4px solid currentColor;
594
+ padding-top: 16px;
595
+ }
596
+ .step p {
597
+ font-size: 24px; line-height: 1.4; font-weight: 500;
598
+ margin: 0 0 16px;
599
+ }
600
+ .step .meta {
601
+ margin-top: auto;
602
+ display: flex; justify-content: space-between;
603
+ font-weight: 700; letter-spacing: 0.08em; font-size: 24px;
604
+ }
605
+
606
+ /* ============== SLIDE 7 — KPI GRID ============== */
607
+ .s7 {
608
+ padding: 110px 110px 70px;
609
+ display: grid;
610
+ grid-template-rows: auto 1fr;
611
+ gap: 40px;
612
+ }
613
+ .s7-head {
614
+ display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end;
615
+ padding-right: 20px;
616
+ }
617
+ .s7-eyebrow { font-size: 28px; font-weight: 800; letter-spacing: 0.16em; margin-bottom: 14px; }
618
+ .s7-h {
619
+ font-family: var(--display-font); font-weight: 900;
620
+ font-size: 128px; line-height: 0.92; letter-spacing: -0.015em;
621
+ margin: 0;
622
+ }
623
+ .s7-sub {
624
+ font-size: 26px; line-height: 1.45; font-weight: 500; margin: 0;
625
+ }
626
+ .s7-grid {
627
+ display: grid;
628
+ grid-template-columns: repeat(4, minmax(0, 1fr));
629
+ gap: 28px;
630
+ }
631
+ .kpi {
632
+ background: var(--ink);
633
+ color: var(--bg);
634
+ padding: 36px 32px;
635
+ display: flex;
636
+ flex-direction: column;
637
+ justify-content: space-between;
638
+ gap: 20px;
639
+ overflow: hidden;
640
+ min-width: 0;
641
+ }
642
+ .kpi.alt {
643
+ background: var(--paper);
644
+ color: var(--ink);
645
+ }
646
+ .kpi .lbl {
647
+ font-weight: 800;
648
+ letter-spacing: 0.14em;
649
+ font-size: 24px;
650
+ }
651
+ .kpi .val {
652
+ font-family: var(--display-font);
653
+ font-weight: 900;
654
+ font-size: 144px;
655
+ line-height: 0.9;
656
+ letter-spacing: -0.03em;
657
+ white-space: nowrap;
658
+ }
659
+ .kpi .val .u {
660
+ font-size: 60px;
661
+ margin-left: 4px;
662
+ font-weight: 800;
663
+ }
664
+ .kpi .desc {
665
+ font-size: 24px;
666
+ line-height: 1.45;
667
+ font-weight: 500;
668
+ }
669
+ .kpi .delta {
670
+ display: inline-block;
671
+ font-weight: 800;
672
+ letter-spacing: 0.08em;
673
+ font-size: 24px;
674
+ padding: 6px 16px;
675
+ background: var(--bg);
676
+ color: var(--ink);
677
+ align-self: flex-start;
678
+ white-space: nowrap;
679
+ }
680
+ .kpi.alt .delta {
681
+ background: var(--ink);
682
+ color: var(--bg);
683
+ }
684
+
685
+ /* ============== SLIDE 8 — CLOSING ============== */
686
+ .s8 {
687
+ padding: 80px 110px;
688
+ display: flex; flex-direction: column;
689
+ text-align: center;
690
+ }
691
+ .s8-top {
692
+ display: flex; justify-content: space-between;
693
+ font-weight: 700; letter-spacing: 0.06em; font-size: 26px;
694
+ }
695
+ .s8-stage {
696
+ flex: 1;
697
+ display: flex; flex-direction: column;
698
+ justify-content: center;
699
+ align-items: center;
700
+ gap: 0;
701
+ }
702
+ .s8-kicker {
703
+ font-family: 'Manrope', sans-serif;
704
+ font-weight: 800;
705
+ letter-spacing: 0.18em;
706
+ font-size: 30px;
707
+ margin-bottom: 30px;
708
+ }
709
+ .s8-h {
710
+ font-family: var(--display-font);
711
+ font-weight: 900;
712
+ font-size: 180px;
713
+ line-height: 0.92;
714
+ letter-spacing: -0.015em;
715
+ margin: 0;
716
+ }
717
+ .s8-mid {
718
+ display: flex; align-items: center; justify-content: center; gap: 32px;
719
+ width: 100%; max-width: 1500px; margin: 4px 0;
720
+ }
721
+ .s8-mid .rule {
722
+ flex: 1; height: 22px; position: relative;
723
+ }
724
+ .s8-mid .rule::before, .s8-mid .rule::after {
725
+ content: ""; position: absolute; left: 0; right: 0; height: 5px; background: var(--ink);
726
+ }
727
+ .s8-mid .rule::before { top: 2px; }
728
+ .s8-mid .rule::after { bottom: 2px; }
729
+ .s8-mid .of {
730
+ font-family: var(--display-font); font-weight: 800;
731
+ font-size: 76px; line-height: 1;
732
+ }
733
+ .s8-foot {
734
+ margin-top: 70px;
735
+ display: grid;
736
+ grid-template-columns: repeat(3, 1fr);
737
+ gap: 40px;
738
+ border-top: 4px solid var(--ink);
739
+ padding-top: 32px;
740
+ width: 100%;
741
+ max-width: 1500px;
742
+ text-align: left;
743
+ }
744
+ .s8-foot .col .lbl { font-weight: 800; letter-spacing: 0.14em; font-size: 24px; margin-bottom: 10px; }
745
+ .s8-foot .col .val {
746
+ font-family: var(--display-font); font-weight: 800;
747
+ font-size: 38px; line-height: 1.1;
748
+ }
749
+
750
+ /* Motion discipline: the deck is static printed ink; any slide-level
751
+ animation or transition must collapse for reduced-motion users. */
752
+ @media (prefers-reduced-motion: reduce) {
753
+ section.slide *,
754
+ section.slide *::before,
755
+ section.slide *::after {
756
+ animation-duration: 0.01ms !important;
757
+ animation-iteration-count: 1 !important;
758
+ transition-duration: 0.01ms !important;
759
+ }
760
+ }
761
+
762
+ </style>
763
+ </head>
764
+ <body>
765
+ <deck-stage width="1920" height="1080" no-rail>
766
+
767
+ <!-- ============== SLIDE 1 — COVER ============== -->
768
+ <section class="slide s1" data-screen-label="01 Cover">
769
+ <div class="s1-stage">
770
+ <div class="s1-the">This is</div>
771
+ <div class="s1-big">OPEN DESIGN</div>
772
+
773
+ <div class="s1-mid">
774
+ <span class="rule"></span>
775
+ <span class="of">on</span>
776
+ <span class="rule"></span>
777
+ </div>
778
+
779
+ <div class="s1-big">YOUR DESK</div>
780
+
781
+ <div class="s1-credit">THE OPEN-SOURCE, LOCAL, AGENT-DRIVEN DESIGN PLATFORM</div>
782
+ </div>
783
+
784
+ <div class="s1-top">
785
+ <span>APACHE-2.0 · RUNS LOCALLY · BYOK · NO SIGN-UP</span>
786
+ <span>GITHUB.COM/NEXU-IO/OPEN-DESIGN</span>
787
+ </div>
788
+ </section>
789
+
790
+ <!-- ============== SLIDE 2 — AGENDA ============== -->
791
+ <section class="slide s2" data-screen-label="02 Agenda">
792
+ <div class="masthead">
793
+ <span>AGENDA</span>
794
+ <span>OPEN DESIGN</span>
795
+ </div>
796
+
797
+ <div class="s2-eyebrow">WHAT WE WILL COVER TODAY</div>
798
+ <h2 class="s2-title">The Programme</h2>
799
+
800
+ <div class="s2-list">
801
+ <div class="s2-row">
802
+ <span class="num">01</span>
803
+ <span class="name">Why Open Design</span>
804
+ <span class="kind">OVERVIEW</span>
805
+ </div>
806
+ <div class="s2-row">
807
+ <span class="num">02</span>
808
+ <span class="name">Three Pillars</span>
809
+ <span class="kind">PRINCIPLES</span>
810
+ </div>
811
+ <div class="s2-row">
812
+ <span class="num">03</span>
813
+ <span class="name">How The Community Grew</span>
814
+ <span class="kind">DATA STUDY</span>
815
+ </div>
816
+ <div class="s2-row">
817
+ <span class="num">04</span>
818
+ <span class="name">From Idea To Delivery</span>
819
+ <span class="kind">WORKFLOW</span>
820
+ </div>
821
+ <div class="s2-row">
822
+ <span class="num">05</span>
823
+ <span class="name">The Ecosystem, By The Numbers</span>
824
+ <span class="kind">METRICS · CLOSING</span>
825
+ </div>
826
+ </div>
827
+ </section>
828
+
829
+ <!-- ============== SLIDE 3 — SECTION OPENER (split) ============== -->
830
+ <section class="slide s3" data-screen-label="03 Section Opener">
831
+ <div class="s3-left">
832
+ <div class="top">
833
+ <span>SECTION OPENER</span>
834
+ <span>THE WHY</span>
835
+ </div>
836
+ <div class="s3-numeral">01</div>
837
+ <div class="bot">
838
+ <span>APRIL · MMXXVI</span>
839
+ <span>THE TURNING POINT</span>
840
+ </div>
841
+ </div>
842
+ <div class="s3-right">
843
+ <div class="kicker">WHY OPEN DESIGN EXISTS</div>
844
+ <h2>Design, Set Free.</h2>
845
+ <p class="lede">In April 2026, Claude Design proved for the first time that an LLM can truly design — not write about design, but produce real design artifacts. Yet it is closed-source, paid, and cloud-only: locked to one model, with no agent choice, no self-hosting, no BYOK. Open Design sets that capability free.</p>
846
+ <div class="marks">
847
+ <span class="mark">OPEN-SOURCE</span>
848
+ <span class="mark">LOCAL-FIRST</span>
849
+ <span class="mark">AGENT-DRIVEN</span>
850
+ </div>
851
+ </div>
852
+ </section>
853
+
854
+ <!-- ============== SLIDE 4 — STATEMENT + 3 SUPPORTING ============== -->
855
+ <section class="slide s4" data-screen-label="04 Statement And Three">
856
+ <div class="masthead">
857
+ <span>PRINCIPLES · WHAT OPEN DESIGN BELIEVES</span>
858
+ <span>THREE PILLARS</span>
859
+ </div>
860
+
861
+ <h2 class="s4-state">
862
+ Three Pillars<br>
863
+ <span class="ornament-row">
864
+ <span class="rule"></span><span class="of-word">of</span><span class="rule"></span>
865
+ </span>
866
+ The Platform.
867
+ </h2>
868
+
869
+ <div class="s4-grid">
870
+ <div class="s4-cell">
871
+ <div class="n">01</div>
872
+ <h4>Desktop-Native</h4>
873
+ <p>Design happens on the desktop. Local files, Figma exports, and code repos are directly readable; agents get full terminal power.</p>
874
+ </div>
875
+ <div class="s4-cell">
876
+ <div class="n">02</div>
877
+ <h4>Agents, Plugged In</h4>
878
+ <p>Claude Code, Codex, and Cursor on your machine are already powerful. Open Design wires them into a complete design workflow instead of rebuilding them.</p>
879
+ </div>
880
+ <div class="s4-cell">
881
+ <div class="n">03</div>
882
+ <h4>It Learns Your Taste</h4>
883
+ <p>Every choice becomes design systems, preferences, and memory, so the next generation lands closer to what you want.</p>
884
+ </div>
885
+ </div>
886
+ </section>
887
+
888
+ <!-- ============== SLIDE 5 — CHART ============== -->
889
+ <section class="slide s5" data-screen-label="05 Data Study">
890
+ <div class="masthead">
891
+ <span>DATA STUDY · COMMUNITY GROWTH</span>
892
+ <span>SIX MONTHS</span>
893
+ </div>
894
+
895
+ <div class="s5-head">
896
+ <h2 class="s5-h">How the<br>numbers grew.</h2>
897
+ <p class="s5-sub">Two indicators tracked side by side across six months (demo data). The emerald bars show GitHub stars in thousands; the bone bars show contributors in tens.</p>
898
+ </div>
899
+
900
+ <div class="s5-body">
901
+ <div class="chart-card">
902
+ <div class="lbl">GROWTH · CUMULATIVE BY MONTH</div>
903
+ <div class="chart-area">
904
+ <div class="chart-yaxis">
905
+ <span style="top: 0%;">80</span>
906
+ <span style="top: 25%;">60</span>
907
+ <span style="top: 50%;">40</span>
908
+ <span style="top: 75%;">20</span>
909
+ <span style="top: 100%;">0</span>
910
+ </div>
911
+ <div class="chart-grid">
912
+ <div class="gl" style="top: 0%;"></div>
913
+ <div class="gl" style="top: 25%;"></div>
914
+ <div class="gl" style="top: 50%;"></div>
915
+ <div class="gl" style="top: 75%;"></div>
916
+ <div class="gl" style="top: 100%;"></div>
917
+ </div>
918
+ <div class="chart-bars">
919
+ <div class="grp">
920
+ <div class="bar" style="height: 5%;"><span class="v">4</span></div>
921
+ <div class="bar b2" style="height: 3%;"><span class="v">2</span></div>
922
+ </div>
923
+ <div class="grp">
924
+ <div class="bar" style="height: 11%;"><span class="v">9</span></div>
925
+ <div class="bar b2" style="height: 6%;"><span class="v">5</span></div>
926
+ </div>
927
+ <div class="grp">
928
+ <div class="bar" style="height: 23%;"><span class="v">18</span></div>
929
+ <div class="bar b2" style="height: 13%;"><span class="v">10</span></div>
930
+ </div>
931
+ <div class="grp">
932
+ <div class="bar" style="height: 38%;"><span class="v">30</span></div>
933
+ <div class="bar b2" style="height: 20%;"><span class="v">16</span></div>
934
+ </div>
935
+ <div class="grp">
936
+ <div class="bar" style="height: 58%;"><span class="v">46</span></div>
937
+ <div class="bar b2" style="height: 30%;"><span class="v">24</span></div>
938
+ </div>
939
+ <div class="grp">
940
+ <div class="bar" style="height: 75%;"><span class="v">60</span></div>
941
+ <div class="bar b2" style="height: 38%;"><span class="v">30</span></div>
942
+ </div>
943
+ </div>
944
+ <div class="chart-x">
945
+ <span>MO·01</span>
946
+ <span>MO·02</span>
947
+ <span>MO·03</span>
948
+ <span>MO·04</span>
949
+ <span>MO·05</span>
950
+ <span>MO·06</span>
951
+ </div>
952
+ </div>
953
+ <div class="chart-legend">
954
+ <div class="it"><span class="sw"></span><span>STARS (K)</span></div>
955
+ <div class="it"><span class="sw b2"></span><span>CONTRIBUTORS (×10)</span></div>
956
+ </div>
957
+ </div>
958
+
959
+ <aside class="s5-side">
960
+ <span class="tag">THE TAKEAWAY</span>
961
+ <h3 class="take">An open project, compounding: 60K+ stars and 300+ contributors.</h3>
962
+ <p class="note">Apache-2.0 keeps the door open — anyone can fork, self-host, and ship. The community answers with plugins, design systems, and agents.</p>
963
+ <div class="stats">
964
+ <div class="stat">
965
+ <div class="num">60K<span class="u">+</span></div>
966
+ <div class="lbl">GITHUB STARS<br>APACHE-2.0</div>
967
+ </div>
968
+ <div class="stat">
969
+ <div class="num">300<span class="u">+</span></div>
970
+ <div class="lbl">CONTRIBUTORS<br>AND COUNTING</div>
971
+ </div>
972
+ </div>
973
+ </aside>
974
+ </div>
975
+ </section>
976
+
977
+ <!-- ============== SLIDE 6 — PROCESS ============== -->
978
+ <section class="slide s6" data-screen-label="06 Process Diagram">
979
+ <div class="masthead">
980
+ <span>WORKFLOW · FROM IDEA TO DELIVERY</span>
981
+ <span>FOUR STEPS</span>
982
+ </div>
983
+
984
+ <div class="s6-head">
985
+ <div>
986
+ <div class="s6-eyebrow">ONE LOOP, RUN ON YOUR MACHINE</div>
987
+ <h2 class="s6-h">From idea<br>to delivery.</h2>
988
+ </div>
989
+ <p class="s6-sub">One loop from a one-line brief to a shipped artifact. Each step feeds the next, and every choice is remembered — so the loop gets sharper the more you run it.</p>
990
+ </div>
991
+
992
+ <div class="s6-flow">
993
+ <div class="step">
994
+ <div class="n">01</div>
995
+ <h4>Pick A Starting Point</h4>
996
+ <p>Describe your goal in one sentence, or start from a template or plugin. The agent takes it from there.</p>
997
+ <div class="meta"><span>INPUT</span><span>ONE LINE</span></div>
998
+ </div>
999
+ <div class="step alt">
1000
+ <div class="n">02</div>
1001
+ <h4>Set The Direction</h4>
1002
+ <p>Choose a visual direction; palette, type, and spacing flow into the generation pipeline automatically.</p>
1003
+ <div class="meta"><span>STYLE</span><span>AUTOMATIC</span></div>
1004
+ </div>
1005
+ <div class="step">
1006
+ <div class="n">03</div>
1007
+ <h4>Generate The Artifact</h4>
1008
+ <p>The agent reads full context and produces real runnable files, previewed and edited live in a sandbox.</p>
1009
+ <div class="meta"><span>AGENT</span><span>SANDBOXED</span></div>
1010
+ </div>
1011
+ <div class="step alt">
1012
+ <div class="n">04</div>
1013
+ <h4>Ship It, Or Film It</h4>
1014
+ <p>Hand off to engineering, or turn it into a marketing video with HyperFrames. Every choice becomes memory for the next run.</p>
1015
+ <div class="meta"><span>OUTPUT</span><span>COMPOUNDS</span></div>
1016
+ </div>
1017
+ </div>
1018
+ </section>
1019
+
1020
+ <!-- ============== SLIDE 7 — KPI GRID ============== -->
1021
+ <section class="slide s7" data-screen-label="07 KPI Grid">
1022
+ <div class="masthead">
1023
+ <span>HEADLINE INDICATORS · ECOSYSTEM</span>
1024
+ <span>FOUR NUMBERS</span>
1025
+ </div>
1026
+
1027
+ <div class="s7-head">
1028
+ <div>
1029
+ <div class="s7-eyebrow">FOUR NUMBERS WORTH KEEPING IN VIEW</div>
1030
+ <h2 class="s7-h">By the<br>numbers.</h2>
1031
+ </div>
1032
+ <p class="s7-sub">The ecosystem at a glance. Every number below is community-driven: built in the open, under Apache-2.0, on your own machine.</p>
1033
+ </div>
1034
+
1035
+ <div class="s7-grid">
1036
+ <div class="kpi">
1037
+ <div class="lbl">GITHUB STARS</div>
1038
+ <div class="val">60K<span class="u">+</span></div>
1039
+ <div class="delta">APACHE-2.0</div>
1040
+ <div class="desc">Stars on the open-source repository — fork, self-host, and commercial use all allowed.</div>
1041
+ </div>
1042
+ <div class="kpi alt">
1043
+ <div class="lbl">PLUGINS</div>
1044
+ <div class="val">217<span class="u">+</span></div>
1045
+ <div class="delta">COMMUNITY-BUILT</div>
1046
+ <div class="desc">Prototypes, slides, posters, dashboards, and more — ready to run out of the box.</div>
1047
+ </div>
1048
+ <div class="kpi">
1049
+ <div class="lbl">DESIGN SYSTEMS</div>
1050
+ <div class="val">129</div>
1051
+ <div class="delta">IMPORTABLE</div>
1052
+ <div class="desc">Imported from GitHub, Figma, or local files, so brand consistency is enforceable.</div>
1053
+ </div>
1054
+ <div class="kpi alt">
1055
+ <div class="lbl">CODING AGENTS</div>
1056
+ <div class="val">21</div>
1057
+ <div class="delta">ZERO CONFIG</div>
1058
+ <div class="desc">Auto-detected from PATH; any compatible endpoint connects via BYOK.</div>
1059
+ </div>
1060
+ </div>
1061
+ </section>
1062
+
1063
+ <!-- ============== SLIDE 8 — CLOSING ============== -->
1064
+ <section class="slide s8" data-screen-label="08 Closing">
1065
+ <div class="s8-top">
1066
+ <span>CLOSING NOTES</span>
1067
+ <span>JOIN THE PROJECT</span>
1068
+ </div>
1069
+
1070
+ <div class="s8-stage">
1071
+ <div class="s8-kicker">FRONTIER AI DESIGN, BACK ON EVERY CREATOR'S DESK</div>
1072
+ <div class="s8-h">DOWNLOAD</div>
1073
+ <div class="s8-mid">
1074
+ <span class="rule"></span>
1075
+ <span class="of">and</span>
1076
+ <span class="rule"></span>
1077
+ </div>
1078
+ <div class="s8-h">STAR US</div>
1079
+
1080
+ <div class="s8-foot">
1081
+ <div class="col">
1082
+ <div class="lbl">DOWNLOAD</div>
1083
+ <div class="val">macOS &amp;<br>Windows</div>
1084
+ </div>
1085
+ <div class="col">
1086
+ <div class="lbl">GITHUB</div>
1087
+ <div class="val">github.com/nexu-io<br>/open-design</div>
1088
+ </div>
1089
+ <div class="col">
1090
+ <div class="lbl">COMMUNITY</div>
1091
+ <div class="val">discord.gg/9ptkbbqRu<br>x.com/nexudotio</div>
1092
+ </div>
1093
+ </div>
1094
+ </div>
1095
+
1096
+ <div class="s8-top" style="margin-top: 10px;">
1097
+ <span>OPEN · LOCAL · AGENT-NATIVE</span>
1098
+ <span>APACHE-2.0</span>
1099
+ </div>
1100
+ </section>
1101
+
1102
+ </deck-stage>
1103
+
1104
+ <script>
1105
+ /* === DECK-STAGE RUNTIME (inlined from beautiful-html-templates/runtime/deck-stage.js, MIT (c) 2026 Zara Zhang) === */
1106
+ /**
1107
+ * <deck-stage> — reusable web component for HTML decks.
1108
+ *
1109
+ * Handles:
1110
+ * (a) speaker notes — reads <script type="application/json" id="speaker-notes">
1111
+ * and posts {slideIndexChanged: N} to the parent window on nav.
1112
+ * (b) keyboard navigation — ←/→, PgUp/PgDn, Space, Home/End, number keys.
1113
+ * (c) press R to reset to slide 0 (with a tasteful keyboard hint).
1114
+ * (d) bottom-center overlay showing slide count + hints, fades out on idle.
1115
+ * (e) auto-scaling — inner canvas is a fixed design size (default 1920×1080)
1116
+ * scaled with `transform: scale()` to fit the viewport, letterboxed.
1117
+ * Set the `noscale` attribute to render at authored size (1:1) — the
1118
+ * PPTX exporter sets this so its DOM capture sees unscaled geometry.
1119
+ * (f) print — `@media print` lays every slide out as its own page at the
1120
+ * design size, so the browser's Print → Save as PDF produces a clean
1121
+ * one-page-per-slide PDF with no extra setup.
1122
+ * (g) thumbnail rail — resizable left-hand column of per-slide thumbnails
1123
+ * (static clones). Click to navigate; ↑/↓ with a thumbnail focused to
1124
+ * step between slides; drag to reorder; right-click for
1125
+ * Skip / Move up / Move down / Delete (opens a Cancel/Delete confirm
1126
+ * dialog). Drag the rail's right edge to resize; width persists to
1127
+ * localStorage. Skipped slides carry `data-deck-skip`, are dimmed in
1128
+ * the rail, omitted from prev/next navigation, and hidden at print.
1129
+ * The rail is suppressed in presenting mode, on `noscale`, and via
1130
+ * the `no-rail` attribute. Rail mutations dispatch a `deckchange`
1131
+ * CustomEvent on the element: detail = {action, from, to, slide}.
1132
+ *
1133
+ * Slides are HIDDEN, not unmounted. Non-active slides stay in the DOM with
1134
+ * `visibility: hidden` + `opacity: 0`, so their state (videos, iframes,
1135
+ * form inputs, React trees) is preserved across navigation.
1136
+ *
1137
+ * Lifecycle event — the component dispatches a `slidechange` CustomEvent on
1138
+ * itself whenever the active slide changes (including the initial mount).
1139
+ * The event bubbles and composes out of shadow DOM, so you can listen on
1140
+ * the <deck-stage> element or on document:
1141
+ *
1142
+ * document.querySelector('deck-stage').addEventListener('slidechange', (e) => {
1143
+ * e.detail.index // new 0-based index
1144
+ * e.detail.previousIndex // previous index, or -1 on init
1145
+ * e.detail.total // total slide count
1146
+ * e.detail.slide // the new active slide element
1147
+ * e.detail.previousSlide // the prior slide element, or null on init
1148
+ * e.detail.reason // 'init' | 'keyboard' | 'click' | 'tap' | 'api'
1149
+ * });
1150
+ *
1151
+ * Persistence: none at the deck level. The host app keeps the current slide
1152
+ * in its own URL (?slide=) and re-delivers it via location.hash on load, so a
1153
+ * bare load with no hash always starts at slide 1.
1154
+ *
1155
+ * Usage:
1156
+ * <style>deck-stage:not(:defined){visibility:hidden}</style>
1157
+ * <deck-stage width="1920" height="1080">
1158
+ * <section data-label="Title">...</section>
1159
+ * <section data-label="Agenda">...</section>
1160
+ * </deck-stage>
1161
+ * <script src="deck-stage.js"><\/script>
1162
+ *
1163
+ * The :not(:defined) rule prevents a flash of the first slide at its
1164
+ * authored styles before this script runs and attaches the shadow root.
1165
+ *
1166
+ * Slides are the direct element children of <deck-stage>. Each slide is
1167
+ * automatically tagged with:
1168
+ * - data-screen-label="NN Label" (1-indexed, for comment flow)
1169
+ * - data-om-validate="no_overflowing_text,no_overlapping_text,slide_sized_text"
1170
+ */
1171
+
1172
+ (() => {
1173
+ const DESIGN_W_DEFAULT = 1920;
1174
+ const DESIGN_H_DEFAULT = 1080;
1175
+ const OVERLAY_HIDE_MS = 1800;
1176
+ const VALIDATE_ATTR = 'no_overflowing_text,no_overlapping_text,slide_sized_text';
1177
+
1178
+ const pad2 = (n) => String(n).padStart(2, '0');
1179
+
1180
+ const stylesheet = `
1181
+ :host {
1182
+ position: fixed;
1183
+ inset: 0;
1184
+ display: block;
1185
+ background: #000;
1186
+ color: #fff;
1187
+ font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
1188
+ overflow: hidden;
1189
+ }
1190
+ /* connectedCallback holds this until document.fonts.ready (capped 2s) so
1191
+ * the first visible paint has the deck's real typography + final rail
1192
+ * layout. opacity (not visibility) so the active slide can't un-hide
1193
+ * itself via the ::slotted([data-deck-active]) visibility:visible rule.
1194
+ * Only the stage/rail hide — the black :host background stays, so the
1195
+ * iframe doesn't flash the page's default white. */
1196
+ :host([data-fonts-pending]) .stage,
1197
+ :host([data-fonts-pending]) .rail { opacity: 0; pointer-events: none; }
1198
+
1199
+ .stage {
1200
+ position: absolute;
1201
+ inset: 0;
1202
+ display: flex;
1203
+ align-items: center;
1204
+ justify-content: center;
1205
+ }
1206
+
1207
+ .canvas {
1208
+ position: relative;
1209
+ transform-origin: center center;
1210
+ flex-shrink: 0;
1211
+ background: #fff;
1212
+ will-change: transform;
1213
+ }
1214
+
1215
+ /* Slides live in light DOM (via <slot>) so authored CSS still applies.
1216
+ We absolutely position each slotted child to stack them. */
1217
+ ::slotted(*) {
1218
+ position: absolute !important;
1219
+ inset: 0 !important;
1220
+ width: 100% !important;
1221
+ height: 100% !important;
1222
+ box-sizing: border-box !important;
1223
+ overflow: hidden;
1224
+ opacity: 0;
1225
+ pointer-events: none;
1226
+ visibility: hidden;
1227
+ }
1228
+ ::slotted([data-deck-active]) {
1229
+ opacity: 1;
1230
+ pointer-events: auto;
1231
+ visibility: visible;
1232
+ }
1233
+
1234
+ /* Tap zones for mobile — back/forward thirds like Stories.
1235
+ Transparent, no visible UI, don't block the overlay. */
1236
+ .tapzones {
1237
+ position: fixed;
1238
+ inset: 0;
1239
+ display: flex;
1240
+ z-index: 2147482000;
1241
+ pointer-events: none;
1242
+ }
1243
+ .tapzone {
1244
+ flex: 1;
1245
+ pointer-events: auto;
1246
+ -webkit-tap-highlight-color: transparent;
1247
+ }
1248
+ /* Only activate tap zones on coarse pointers (touch devices). */
1249
+ @media (hover: hover) and (pointer: fine) {
1250
+ .tapzones { display: none; }
1251
+ }
1252
+
1253
+ .overlay {
1254
+ position: fixed;
1255
+ left: 50%;
1256
+ bottom: 22px;
1257
+ transform: translate(-50%, 6px) scale(0.92);
1258
+ filter: blur(6px);
1259
+ display: flex;
1260
+ align-items: center;
1261
+ gap: 4px;
1262
+ padding: 4px;
1263
+ background: #000;
1264
+ color: #fff;
1265
+ border-radius: 999px;
1266
+ font-size: 12px;
1267
+ font-feature-settings: "tnum" 1;
1268
+ letter-spacing: 0.01em;
1269
+ opacity: 0;
1270
+ pointer-events: none;
1271
+ transition: opacity 260ms ease, transform 260ms cubic-bezier(.2,.8,.2,1), filter 260ms ease;
1272
+ transform-origin: center bottom;
1273
+ z-index: 2147483000;
1274
+ user-select: none;
1275
+ }
1276
+ .overlay[data-visible] {
1277
+ opacity: 1;
1278
+ pointer-events: auto;
1279
+ transform: translate(-50%, 0) scale(1);
1280
+ filter: blur(0);
1281
+ }
1282
+
1283
+ .btn {
1284
+ appearance: none;
1285
+ -webkit-appearance: none;
1286
+ background: transparent;
1287
+ border: 0;
1288
+ margin: 0;
1289
+ padding: 0;
1290
+ color: inherit;
1291
+ font: inherit;
1292
+ cursor: default;
1293
+ display: inline-flex;
1294
+ align-items: center;
1295
+ justify-content: center;
1296
+ height: 28px;
1297
+ min-width: 28px;
1298
+ border-radius: 999px;
1299
+ color: rgba(255,255,255,0.72);
1300
+ transition: background 140ms ease, color 140ms ease;
1301
+ -webkit-tap-highlight-color: transparent;
1302
+ }
1303
+ .btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
1304
+ .btn:active { background: rgba(255,255,255,0.18); }
1305
+ .btn:focus { outline: none; }
1306
+ .btn:focus-visible { outline: none; }
1307
+ .btn::-moz-focus-inner { border: 0; }
1308
+ .btn svg { width: 14px; height: 14px; display: block; }
1309
+ .btn.reset {
1310
+ font-size: 11px;
1311
+ font-weight: 500;
1312
+ letter-spacing: 0.02em;
1313
+ padding: 0 10px 0 12px;
1314
+ gap: 6px;
1315
+ color: rgba(255,255,255,0.72);
1316
+ }
1317
+ .btn.reset .kbd {
1318
+ display: inline-flex;
1319
+ align-items: center;
1320
+ justify-content: center;
1321
+ min-width: 16px;
1322
+ height: 16px;
1323
+ padding: 0 4px;
1324
+ font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
1325
+ font-size: 10px;
1326
+ line-height: 1;
1327
+ color: rgba(255,255,255,0.88);
1328
+ background: rgba(255,255,255,0.12);
1329
+ border-radius: 4px;
1330
+ }
1331
+
1332
+ .count {
1333
+ font-variant-numeric: tabular-nums;
1334
+ color: #fff;
1335
+ font-weight: 500;
1336
+ padding: 0 8px;
1337
+ min-width: 42px;
1338
+ text-align: center;
1339
+ font-size: 12px;
1340
+ }
1341
+ .count .sep { color: rgba(255,255,255,0.45); margin: 0 3px; font-weight: 400; }
1342
+ .count .total { color: rgba(255,255,255,0.55); }
1343
+
1344
+ .divider {
1345
+ width: 1px;
1346
+ height: 14px;
1347
+ background: rgba(255,255,255,0.18);
1348
+ margin: 0 2px;
1349
+ }
1350
+
1351
+ /* ── Thumbnail rail ──────────────────────────────────────────────────
1352
+ Fixed column on the left; each thumbnail is a static deep-clone of
1353
+ the light-DOM slide scaled into a 16:9 (or design-aspect) frame. The
1354
+ stage re-fits around it (see _fit); hidden during present / noscale
1355
+ / print so capture geometry and fullscreen output are unchanged. */
1356
+ .rail {
1357
+ position: fixed;
1358
+ left: 0;
1359
+ top: 0;
1360
+ bottom: 0;
1361
+ width: var(--deck-rail-w, 188px);
1362
+ background: #141414;
1363
+ border-right: 1px solid rgba(255,255,255,0.08);
1364
+ overflow-y: auto;
1365
+ overflow-x: hidden;
1366
+ padding: 12px 10px;
1367
+ box-sizing: border-box;
1368
+ display: flex;
1369
+ flex-direction: column;
1370
+ gap: 12px;
1371
+ z-index: 2147482500;
1372
+ scrollbar-width: thin;
1373
+ scrollbar-color: rgba(255,255,255,0.18) transparent;
1374
+ }
1375
+ .rail::-webkit-scrollbar { width: 8px; }
1376
+ .rail::-webkit-scrollbar-track { background: transparent; margin: 2px; }
1377
+ .rail::-webkit-scrollbar-thumb {
1378
+ background: rgba(255,255,255,0.18);
1379
+ border-radius: 4px;
1380
+ border: 2px solid transparent;
1381
+ background-clip: content-box;
1382
+ }
1383
+ .rail::-webkit-scrollbar-thumb:hover {
1384
+ background: rgba(255,255,255,0.28);
1385
+ border: 2px solid transparent;
1386
+ background-clip: content-box;
1387
+ }
1388
+ :host([no-rail]) .rail,
1389
+ :host([noscale]) .rail { display: none; }
1390
+ .rail[data-presenting] { display: none; }
1391
+ /* User-driven show/hide (the TweaksPanel toggle) slides instead of
1392
+ popping. Transitions are gated on :host([data-rail-anim]) — set only
1393
+ for the 200ms around the toggle — so window-resize and rail-width
1394
+ drag (which also call _fit) don't lag behind the cursor. */
1395
+ .rail[data-user-hidden] { transform: translateX(-100%); }
1396
+ :host([data-rail-anim]) .rail { transition: transform 200ms cubic-bezier(.3,.7,.4,1); }
1397
+ :host([data-rail-anim]) .stage { transition: left 200ms cubic-bezier(.3,.7,.4,1); }
1398
+ :host([data-rail-anim]) .canvas { transition: transform 200ms cubic-bezier(.3,.7,.4,1); }
1399
+ /* transition shorthand replaces rather than merges — repeat the base
1400
+ .overlay opacity/transform/filter transitions so visibility changes
1401
+ during the 200ms toggle window still fade instead of popping. */
1402
+ :host([data-rail-anim]) .overlay {
1403
+ transition: margin-left 200ms cubic-bezier(.3,.7,.4,1),
1404
+ opacity 260ms ease,
1405
+ transform 260ms cubic-bezier(.2,.8,.2,1),
1406
+ filter 260ms ease;
1407
+ }
1408
+ :host([data-rail-anim]) .tapzones { transition: left 200ms cubic-bezier(.3,.7,.4,1); }
1409
+
1410
+ .thumb {
1411
+ position: relative;
1412
+ display: flex;
1413
+ align-items: flex-start;
1414
+ gap: 8px;
1415
+ cursor: pointer;
1416
+ user-select: none;
1417
+ }
1418
+ .thumb .num {
1419
+ width: 16px;
1420
+ flex-shrink: 0;
1421
+ font-size: 11px;
1422
+ font-weight: 500;
1423
+ text-align: right;
1424
+ color: rgba(255,255,255,0.55);
1425
+ padding-top: 2px;
1426
+ font-variant-numeric: tabular-nums;
1427
+ }
1428
+ .thumb .frame {
1429
+ position: relative;
1430
+ flex: 1;
1431
+ min-width: 0;
1432
+ aspect-ratio: var(--deck-aspect);
1433
+ background: #fff;
1434
+ border-radius: 4px;
1435
+ outline: 2px solid transparent;
1436
+ outline-offset: 0;
1437
+ overflow: hidden;
1438
+ transition: outline-color 120ms ease;
1439
+ }
1440
+ .thumb:hover .frame { outline-color: rgba(255,255,255,0.25); }
1441
+ .thumb { outline: none; }
1442
+ .thumb:focus-visible .frame { outline-color: rgba(255,255,255,0.5); }
1443
+ .thumb[data-current] .num { color: #fff; }
1444
+ .thumb[data-current] .frame { outline-color: #D97757; }
1445
+ .thumb[data-dragging] { opacity: 0.35; }
1446
+ .thumb::before {
1447
+ content: '';
1448
+ position: absolute;
1449
+ left: 24px;
1450
+ right: 0;
1451
+ height: 3px;
1452
+ border-radius: 2px;
1453
+ background: #D97757;
1454
+ opacity: 0;
1455
+ pointer-events: none;
1456
+ }
1457
+ .thumb[data-drop="before"]::before { top: -8px; opacity: 1; }
1458
+ .thumb[data-drop="after"]::before { bottom: -8px; opacity: 1; }
1459
+ .thumb[data-skip] .frame { opacity: 0.35; }
1460
+ .thumb[data-skip] .frame::after {
1461
+ content: 'Skipped';
1462
+ position: absolute;
1463
+ inset: 0;
1464
+ display: flex;
1465
+ align-items: center;
1466
+ justify-content: center;
1467
+ background: rgba(0,0,0,0.45);
1468
+ color: #fff;
1469
+ font-size: 10px;
1470
+ font-weight: 500;
1471
+ letter-spacing: 0.04em;
1472
+ }
1473
+
1474
+ .ctxmenu {
1475
+ position: fixed;
1476
+ min-width: 150px;
1477
+ padding: 4px;
1478
+ background: #242424;
1479
+ border: 1px solid rgba(255,255,255,0.12);
1480
+ border-radius: 7px;
1481
+ box-shadow: 0 8px 24px rgba(0,0,0,0.45);
1482
+ z-index: 2147483100;
1483
+ display: none;
1484
+ font-size: 12px;
1485
+ }
1486
+ .ctxmenu[data-open] { display: block; }
1487
+ .ctxmenu button {
1488
+ display: block;
1489
+ width: 100%;
1490
+ appearance: none;
1491
+ border: 0;
1492
+ background: transparent;
1493
+ color: #e8e8e8;
1494
+ font: inherit;
1495
+ text-align: left;
1496
+ padding: 6px 10px;
1497
+ border-radius: 4px;
1498
+ cursor: pointer;
1499
+ }
1500
+ .ctxmenu button:hover:not(:disabled) { background: rgba(255,255,255,0.08); }
1501
+ .ctxmenu button:disabled { opacity: 0.35; cursor: default; }
1502
+ .ctxmenu hr {
1503
+ border: 0;
1504
+ border-top: 1px solid rgba(255,255,255,0.1);
1505
+ margin: 4px 2px;
1506
+ }
1507
+
1508
+ .rail-resize {
1509
+ position: fixed;
1510
+ left: calc(var(--deck-rail-w, 188px) - 3px);
1511
+ top: 0;
1512
+ bottom: 0;
1513
+ width: 6px;
1514
+ cursor: col-resize;
1515
+ z-index: 2147482600;
1516
+ touch-action: none;
1517
+ }
1518
+ .rail-resize:hover,
1519
+ .rail-resize[data-dragging] { background: rgba(255,255,255,0.12); }
1520
+ :host([no-rail]) .rail-resize,
1521
+ :host([noscale]) .rail-resize,
1522
+ .rail[data-presenting] + .rail-resize,
1523
+ .rail[data-user-hidden] + .rail-resize { display: none; }
1524
+
1525
+ /* Delete-confirm popup — matches the SPA's ConfirmDialog layout
1526
+ (title + message body, depressed footer with Cancel / Delete). */
1527
+ .confirm-backdrop {
1528
+ position: fixed;
1529
+ inset: 0;
1530
+ background: rgba(0,0,0,0.45);
1531
+ z-index: 2147483200;
1532
+ display: none;
1533
+ align-items: center;
1534
+ justify-content: center;
1535
+ }
1536
+ .confirm-backdrop[data-open] { display: flex; }
1537
+ .confirm {
1538
+ width: 320px;
1539
+ max-width: calc(100vw - 32px);
1540
+ background: #2a2a2a;
1541
+ color: #e8e8e8;
1542
+ border: 1px solid rgba(255,255,255,0.12);
1543
+ border-radius: 12px;
1544
+ box-shadow: 0 12px 32px rgba(0,0,0,0.5);
1545
+ overflow: hidden;
1546
+ font-family: inherit;
1547
+ animation: deck-confirm-in 0.18s ease;
1548
+ }
1549
+ @keyframes deck-confirm-in {
1550
+ from { opacity: 0; transform: scale(0.96); }
1551
+ to { opacity: 1; transform: scale(1); }
1552
+ }
1553
+ .confirm .body { padding: 20px 20px 16px; }
1554
+ .confirm .title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
1555
+ .confirm .msg { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.65); }
1556
+ .confirm .footer {
1557
+ padding: 14px 20px;
1558
+ background: #1f1f1f;
1559
+ border-top: 1px solid rgba(255,255,255,0.08);
1560
+ display: flex;
1561
+ justify-content: flex-end;
1562
+ gap: 8px;
1563
+ }
1564
+ .confirm button {
1565
+ appearance: none;
1566
+ font: inherit;
1567
+ font-size: 13px;
1568
+ font-weight: 500;
1569
+ padding: 8px 16px;
1570
+ border-radius: 8px;
1571
+ cursor: pointer;
1572
+ }
1573
+ .confirm .cancel {
1574
+ background: transparent;
1575
+ border: 0;
1576
+ color: rgba(255,255,255,0.8);
1577
+ }
1578
+ .confirm .cancel:hover { background: rgba(255,255,255,0.08); }
1579
+ .confirm .danger {
1580
+ background: #c96442;
1581
+ border: 1px solid rgba(0,0,0,0.15);
1582
+ color: #fff;
1583
+ box-shadow: 0 1px 3px rgba(166,50,68,0.3), 0 2px 6px rgba(166,50,68,0.18);
1584
+ }
1585
+ .confirm .danger:hover { background: #b5563a; }
1586
+
1587
+ /* ── Print: one page per slide, no chrome ────────────────────────────
1588
+ The screen layout stacks every slide at inset:0 inside a scaled
1589
+ canvas; for print we want them in document flow at the authored
1590
+ design size so the browser paginates one slide per sheet. The
1591
+ @page size is set from the width/height attributes via the inline
1592
+ <style id="deck-stage-print-page"> that connectedCallback injects
1593
+ into <head> (the @page at-rule has no effect inside shadow DOM). */
1594
+ @media print {
1595
+ :host {
1596
+ position: static;
1597
+ inset: auto;
1598
+ background: none;
1599
+ overflow: visible;
1600
+ color: inherit;
1601
+ }
1602
+ .stage { position: static; display: block; }
1603
+ .canvas {
1604
+ transform: none !important;
1605
+ width: auto !important;
1606
+ height: auto !important;
1607
+ background: none;
1608
+ will-change: auto;
1609
+ }
1610
+ ::slotted(*) {
1611
+ position: relative !important;
1612
+ inset: auto !important;
1613
+ width: var(--deck-design-w) !important;
1614
+ height: var(--deck-design-h) !important;
1615
+ box-sizing: border-box !important;
1616
+ opacity: 1 !important;
1617
+ visibility: visible !important;
1618
+ pointer-events: auto;
1619
+ break-after: page;
1620
+ page-break-after: always;
1621
+ break-inside: avoid;
1622
+ overflow: hidden;
1623
+ }
1624
+ /* :last-child alone isn't enough once data-deck-skip hides the
1625
+ trailing slide(s) — the last *visible* slide still carries
1626
+ break-after:page and prints a blank sheet. _markLastVisible()
1627
+ maintains data-deck-last-visible on the last non-skipped slide. */
1628
+ ::slotted(*:last-child),
1629
+ ::slotted([data-deck-last-visible]) {
1630
+ break-after: auto;
1631
+ page-break-after: auto;
1632
+ }
1633
+ ::slotted([data-deck-skip]) { display: none !important; }
1634
+ .overlay, .tapzones, .rail, .rail-resize, .ctxmenu, .confirm-backdrop { display: none !important; }
1635
+ }
1636
+ `;
1637
+
1638
+ class DeckStage extends HTMLElement {
1639
+ static get observedAttributes() { return ['width', 'height', 'noscale', 'no-rail']; }
1640
+
1641
+ constructor() {
1642
+ super();
1643
+ this._root = this.attachShadow({ mode: 'open' });
1644
+ this._index = 0;
1645
+ this._slides = [];
1646
+ this._notes = [];
1647
+ this._hideTimer = null;
1648
+ this._mouseIdleTimer = null;
1649
+ this._menuIndex = -1;
1650
+
1651
+ this._onKey = this._onKey.bind(this);
1652
+ this._onResize = this._onResize.bind(this);
1653
+ this._onSlotChange = this._onSlotChange.bind(this);
1654
+ this._onMouseMove = this._onMouseMove.bind(this);
1655
+ this._onTapBack = this._onTapBack.bind(this);
1656
+ this._onTapForward = this._onTapForward.bind(this);
1657
+ this._onMessage = this._onMessage.bind(this);
1658
+ // Capture-phase close so a click anywhere dismisses the menu, but
1659
+ // ignore clicks that land inside the menu itself — otherwise the
1660
+ // capture handler runs before the menu's own (bubble) handler and
1661
+ // clears _menuIndex out from under it.
1662
+ this._onDocClick = (e) => {
1663
+ if (this._menu && e.composedPath && e.composedPath().includes(this._menu)) return;
1664
+ this._closeMenu();
1665
+ };
1666
+ }
1667
+
1668
+ get designWidth() {
1669
+ return parseInt(this.getAttribute('width'), 10) || DESIGN_W_DEFAULT;
1670
+ }
1671
+ get designHeight() {
1672
+ return parseInt(this.getAttribute('height'), 10) || DESIGN_H_DEFAULT;
1673
+ }
1674
+
1675
+ connectedCallback() {
1676
+ // Presenter-view popup loads deckUrl?_snthumb=...#N for its prev/cur/
1677
+ // next thumbnails — the rail has no business rendering inside those
1678
+ // (wrong scale, and it offsets the stage so the thumb shows a gutter).
1679
+ if (/[?&]_snthumb=/.test(location.search)) this.setAttribute('no-rail', '');
1680
+ this._render();
1681
+ this._loadNotes();
1682
+ this._syncPrintPageRule();
1683
+ window.addEventListener('keydown', this._onKey);
1684
+ window.addEventListener('resize', this._onResize);
1685
+ window.addEventListener('mousemove', this._onMouseMove, { passive: true });
1686
+ window.addEventListener('message', this._onMessage);
1687
+ window.addEventListener('click', this._onDocClick, true);
1688
+ // Initial collection + layout happens via slotchange, which fires on mount.
1689
+ this._enableRail();
1690
+ // Hold the stage hidden until webfonts are ready so the first visible
1691
+ // paint has the deck's real typography — the :not(:defined) guard in
1692
+ // the page HTML only covers custom-element upgrade, not font load.
1693
+ // Capped so a 404'd font URL can't blank the deck indefinitely.
1694
+ this.setAttribute('data-fonts-pending', '');
1695
+ const reveal = () => this.removeAttribute('data-fonts-pending');
1696
+ // rAF first: fonts.ready is a pre-resolved promise until layout has
1697
+ // resolved the slotted text's font-family and pushed a FontFace into
1698
+ // 'loading'. Reading it here in connectedCallback (parse-time) would
1699
+ // settle the race in a microtask before any font fetch starts.
1700
+ requestAnimationFrame(() => {
1701
+ Promise.race([
1702
+ document.fonts ? document.fonts.ready : Promise.resolve(),
1703
+ new Promise((r) => setTimeout(r, 2000)),
1704
+ ]).then(reveal, reveal);
1705
+ });
1706
+ }
1707
+
1708
+ _enableRail() {
1709
+ // Idempotent — older host builds still post __omelette_rail_enabled.
1710
+ // no-rail guard keeps the observers/stylesheet walk off the cheap path
1711
+ // for presenter-popup thumbnail iframes (up to 9 per view).
1712
+ if (this._railEnabled || this.hasAttribute('no-rail')) return;
1713
+ this._railEnabled = true;
1714
+ // Per-viewer preference — restored alongside rail width. Default on;
1715
+ // only a stored '0' (from the TweaksPanel toggle) hides it.
1716
+ this._railVisible = true;
1717
+ try {
1718
+ if (localStorage.getItem('deck-stage.railVisible') === '0') this._railVisible = false;
1719
+ } catch (e) {}
1720
+ // Live thumbnail updates: watch the light-DOM slides for content
1721
+ // edits and re-clone just the affected thumb(s), debounced. Ignore
1722
+ // the data-deck-* / data-screen-label / data-om-validate attributes
1723
+ // this component itself writes so nav and skip don't trigger
1724
+ // spurious refreshes.
1725
+ const OWN_ATTRS = /^data-(deck-|screen-label$|om-validate$)/;
1726
+ this._liveDirty = new Set();
1727
+ this._liveObserver = new MutationObserver((records) => {
1728
+ for (const r of records) {
1729
+ if (r.type === 'attributes' && OWN_ATTRS.test(r.attributeName || '')) continue;
1730
+ let n = r.target;
1731
+ while (n && n.parentElement !== this) n = n.parentElement;
1732
+ if (n && this._slideSet && this._slideSet.has(n)) this._liveDirty.add(n);
1733
+ }
1734
+ if (this._liveDirty.size && !this._liveTimer) {
1735
+ this._liveTimer = setTimeout(() => {
1736
+ this._liveTimer = null;
1737
+ this._liveDirty.forEach((s) => this._refreshThumb(s));
1738
+ this._liveDirty.clear();
1739
+ }, 200);
1740
+ }
1741
+ });
1742
+ this._liveObserver.observe(this, {
1743
+ subtree: true, childList: true, characterData: true, attributes: true,
1744
+ });
1745
+ // Lazy thumbnail materialization — clone the slide only when its
1746
+ // frame scrolls into (or near) the rail viewport. rootMargin gives
1747
+ // ~4 thumbs of pre-load so fast scrolling doesn't flash blanks.
1748
+ this._railObserver = new IntersectionObserver((entries) => {
1749
+ entries.forEach((e) => {
1750
+ if (e.isIntersecting && e.target.__deckThumb) {
1751
+ this._materialize(e.target.__deckThumb);
1752
+ }
1753
+ });
1754
+ }, { root: this._rail, rootMargin: '400px 0px' });
1755
+ // Tweaks typically change CSS vars / attrs OUTSIDE <deck-stage>
1756
+ // (on <html>, <body>, a wrapper div, or a <style> tag), which
1757
+ // _liveObserver can't see. Re-snapshot author CSS (constructable
1758
+ // sheet is shared by reference, so one replaceSync updates every
1759
+ // thumb shadow root) and re-sync each thumb host's attrs + custom
1760
+ // properties. In-slide DOM mutations are _liveObserver's job.
1761
+ // Debounced so slider drags don't thrash.
1762
+ this._onTweakChange = () => {
1763
+ clearTimeout(this._tweakTimer);
1764
+ this._tweakTimer = setTimeout(() => {
1765
+ this._snapshotAuthorCss();
1766
+ // One getComputedStyle for the whole batch — each
1767
+ // getPropertyValue read below reuses the same computed style
1768
+ // as long as nothing invalidates layout between thumbs.
1769
+ const cs = getComputedStyle(this);
1770
+ (this._thumbs || []).forEach((t) => {
1771
+ if (t.host) this._syncThumbHostAttrs(t.host, cs);
1772
+ });
1773
+ }, 120);
1774
+ };
1775
+ window.addEventListener('tweakchange', this._onTweakChange);
1776
+ this._snapshotAuthorCss();
1777
+ // Build the rail now that it's enabled — slotchange already fired,
1778
+ // so _renderRail's early-return skipped the initial build.
1779
+ this._syncRailHidden();
1780
+ this._renderRail();
1781
+ this._fit();
1782
+ }
1783
+
1784
+ /** Snapshot document stylesheets into a constructable sheet that each
1785
+ * thumbnail's nested shadow root adopts — so author CSS styles the
1786
+ * cloned slide content without touching this component's chrome.
1787
+ * Cross-origin sheets throw on .cssRules — skip them. Re-callable:
1788
+ * the existing constructable sheet is reused via replaceSync so every
1789
+ * already-adopted shadow root picks up the fresh CSS without re-adopt. */
1790
+ _snapshotAuthorCss() {
1791
+ // :root in an adopted sheet inside a shadow root matches nothing
1792
+ // (only the document root qualifies), so author rules like
1793
+ // `:root[data-voice="modern"] .serif` never reach the clones.
1794
+ // Rewrite :root → :host and mirror <html>'s data-*/class/lang onto
1795
+ // each thumb host (see _syncThumbHostAttrs) so the same selectors
1796
+ // match inside the thumbnail's shadow tree.
1797
+ const authorCss = Array.from(document.styleSheets).map((sh) => {
1798
+ try {
1799
+ return Array.from(sh.cssRules).map((r) => r.cssText).join('\n');
1800
+ } catch (e) { return ''; }
1801
+ }).join('\n')
1802
+ // The shadow host is featureless outside the functional :host(...)
1803
+ // form, so any compound on :root — [attr], .class, #id, :pseudo —
1804
+ // must become :host(<compound>) not :host<compound>. Same for the
1805
+ // html type selector (Tailwind class-strategy dark mode emits
1806
+ // html.dark; Pico uses html[data-theme]), which has nothing to
1807
+ // match inside the thumb's shadow tree.
1808
+ .replace(/:root((?:\[[^\]]*\]|[.#][-\w]+|:[-\w]+(?:\([^)]*\))?)+)/g, ':host($1)')
1809
+ .replace(/:root\b/g, ':host')
1810
+ .replace(/(^|[\s,>~+(}])html((?:\[[^\]]*\]|[.#][-\w]+|:[-\w]+(?:\([^)]*\))?)+)(?![-\w])/g, '$1:host($2)')
1811
+ .replace(/(^|[\s,>~+(}])html(?![-\w])/g, '$1:host');
1812
+ // Every custom property the author references. _syncThumbHostAttrs
1813
+ // mirrors each one's *computed* value at <deck-stage> onto the
1814
+ // thumb host so the live value wins over the :host default above
1815
+ // regardless of which ancestor the tweak wrote to (<html>, <body>,
1816
+ // a wrapper div, or the deck-stage element itself all inherit
1817
+ // down to getComputedStyle(this)).
1818
+ this._authorVars = new Set(authorCss.match(/--[\w-]+/g) || []);
1819
+ try {
1820
+ if (!this._adoptedSheet) this._adoptedSheet = new CSSStyleSheet();
1821
+ this._adoptedSheet.replaceSync(authorCss);
1822
+ } catch (e) {
1823
+ this._adoptedSheet = null;
1824
+ this._authorCss = authorCss;
1825
+ }
1826
+ }
1827
+
1828
+ _syncThumbHostAttrs(host, cs) {
1829
+ const de = document.documentElement;
1830
+ // setAttribute overwrites but can't delete — an attr removed from
1831
+ // <html> (toggleAttribute off, classList emptied) would linger on
1832
+ // the host and :host([data-*]) / :host(.foo) rules would keep
1833
+ // matching. Remove stale mirrored attrs first; iterate backward
1834
+ // because removeAttribute mutates the live NamedNodeMap.
1835
+ for (let i = host.attributes.length - 1; i >= 0; i--) {
1836
+ const n = host.attributes[i].name;
1837
+ if ((n.startsWith('data-') || n === 'class' || n === 'lang')
1838
+ && !de.hasAttribute(n)) {
1839
+ host.removeAttribute(n);
1840
+ }
1841
+ }
1842
+ for (const a of de.attributes) {
1843
+ if (a.name.startsWith('data-') || a.name === 'class' || a.name === 'lang') {
1844
+ host.setAttribute(a.name, a.value);
1845
+ }
1846
+ }
1847
+ // The :root→:host rewrite in _snapshotAuthorCss pins each custom
1848
+ // property to its stylesheet default on the thumb host, shadowing
1849
+ // the live value that would otherwise inherit. Tweaks can write the
1850
+ // live value on any ancestor — <html>, <body>, a wrapper div, the
1851
+ // deck-stage element — so read it as the *computed* value at
1852
+ // <deck-stage> (which sees the whole inheritance chain) rather than
1853
+ // trying to guess which element the author wrote to. Inline on the
1854
+ // host beats the :host{} rule. remove-stale covers vars dropped
1855
+ // from the stylesheet between snapshots.
1856
+ const vars = this._authorVars || new Set();
1857
+ for (let i = host.style.length - 1; i >= 0; i--) {
1858
+ const p = host.style[i];
1859
+ if (p.startsWith('--') && !vars.has(p)) host.style.removeProperty(p);
1860
+ }
1861
+ const live = cs || getComputedStyle(this);
1862
+ vars.forEach((p) => {
1863
+ const v = live.getPropertyValue(p);
1864
+ if (v) host.style.setProperty(p, v.trim());
1865
+ else host.style.removeProperty(p);
1866
+ });
1867
+ }
1868
+
1869
+ disconnectedCallback() {
1870
+ window.removeEventListener('keydown', this._onKey);
1871
+ window.removeEventListener('resize', this._onResize);
1872
+ window.removeEventListener('mousemove', this._onMouseMove);
1873
+ window.removeEventListener('message', this._onMessage);
1874
+ window.removeEventListener('click', this._onDocClick, true);
1875
+ if (this._hideTimer) clearTimeout(this._hideTimer);
1876
+ if (this._mouseIdleTimer) clearTimeout(this._mouseIdleTimer);
1877
+ if (this._liveTimer) clearTimeout(this._liveTimer);
1878
+ if (this._tweakTimer) clearTimeout(this._tweakTimer);
1879
+ if (this._railAnimTimer) clearTimeout(this._railAnimTimer);
1880
+ if (this._scaleRaf) cancelAnimationFrame(this._scaleRaf);
1881
+ if (this._liveObserver) this._liveObserver.disconnect();
1882
+ if (this._railObserver) this._railObserver.disconnect();
1883
+ if (this._onTweakChange) window.removeEventListener('tweakchange', this._onTweakChange);
1884
+ }
1885
+
1886
+ attributeChangedCallback() {
1887
+ if (this._canvas) {
1888
+ this._canvas.style.width = this.designWidth + 'px';
1889
+ this._canvas.style.height = this.designHeight + 'px';
1890
+ this._canvas.style.setProperty('--deck-design-w', this.designWidth + 'px');
1891
+ this._canvas.style.setProperty('--deck-design-h', this.designHeight + 'px');
1892
+ if (this._rail) {
1893
+ this._rail.style.setProperty('--deck-aspect', this.designWidth + '/' + this.designHeight);
1894
+ }
1895
+ this._fit();
1896
+ this._scaleThumbs();
1897
+ this._syncPrintPageRule();
1898
+ }
1899
+ }
1900
+
1901
+ _render() {
1902
+ const style = document.createElement('style');
1903
+ style.textContent = stylesheet;
1904
+
1905
+ const stage = document.createElement('div');
1906
+ stage.className = 'stage';
1907
+
1908
+ const canvas = document.createElement('div');
1909
+ canvas.className = 'canvas';
1910
+ canvas.style.width = this.designWidth + 'px';
1911
+ canvas.style.height = this.designHeight + 'px';
1912
+ canvas.style.setProperty('--deck-design-w', this.designWidth + 'px');
1913
+ canvas.style.setProperty('--deck-design-h', this.designHeight + 'px');
1914
+
1915
+ const slot = document.createElement('slot');
1916
+ slot.addEventListener('slotchange', this._onSlotChange);
1917
+ canvas.appendChild(slot);
1918
+ stage.appendChild(canvas);
1919
+
1920
+ // Tap zones (mobile): left third = back, right third = forward.
1921
+ const tapzones = document.createElement('div');
1922
+ tapzones.className = 'tapzones export-hidden';
1923
+ tapzones.setAttribute('aria-hidden', 'true');
1924
+ tapzones.setAttribute('data-noncommentable', '');
1925
+ const tzBack = document.createElement('div');
1926
+ tzBack.className = 'tapzone tapzone--back';
1927
+ const tzMid = document.createElement('div');
1928
+ tzMid.className = 'tapzone tapzone--mid';
1929
+ tzMid.style.pointerEvents = 'none';
1930
+ const tzFwd = document.createElement('div');
1931
+ tzFwd.className = 'tapzone tapzone--fwd';
1932
+ tzBack.addEventListener('click', this._onTapBack);
1933
+ tzFwd.addEventListener('click', this._onTapForward);
1934
+ tapzones.append(tzBack, tzMid, tzFwd);
1935
+
1936
+ // Overlay: compact, solid black, with clickable controls.
1937
+ const overlay = document.createElement('div');
1938
+ overlay.className = 'overlay export-hidden';
1939
+ overlay.setAttribute('role', 'toolbar');
1940
+ overlay.setAttribute('aria-label', 'Deck controls');
1941
+ overlay.setAttribute('data-noncommentable', '');
1942
+ overlay.innerHTML = `
1943
+ <button class="btn prev" type="button" aria-label="Previous slide" title="Previous (←)">
1944
+ <svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M10 3L5 8l5 5"/></svg>
1945
+ </button>
1946
+ <span class="count" style="display:none" aria-live="polite"><span class="current">1</span><span class="sep">/</span><span class="total">1</span></span>
1947
+ <button class="btn next" type="button" aria-label="Next slide" title="Next (→)">
1948
+ <svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M6 3l5 5-5 5"/></svg>
1949
+ </button>
1950
+ <span class="divider"></span>
1951
+ <button class="btn reset" type="button" aria-label="Reset to first slide" title="Reset (R)">Reset<span class="kbd">R</span></button>
1952
+ `;
1953
+
1954
+ overlay.querySelector('.prev').addEventListener('click', () => this._advance(-1, 'click'));
1955
+ overlay.querySelector('.next').addEventListener('click', () => this._advance(1, 'click'));
1956
+ overlay.querySelector('.reset').addEventListener('click', () => this._go(0, 'click'));
1957
+
1958
+ // Thumbnail rail + context menu. Thumbnails are populated in
1959
+ // _renderRail() after _collectSlides().
1960
+ const rail = document.createElement('div');
1961
+ rail.className = 'rail export-hidden';
1962
+ rail.setAttribute('data-noncommentable', '');
1963
+ rail.style.setProperty('--deck-aspect', this.designWidth + '/' + this.designHeight);
1964
+ // Edge auto-scroll while dragging a thumb near the rail's top/bottom
1965
+ // so off-screen drop targets are reachable. Native dragover fires
1966
+ // continuously while the pointer is stationary, so a per-event nudge
1967
+ // (ramped by edge proximity) is enough — no rAF loop needed.
1968
+ rail.addEventListener('dragover', (e) => {
1969
+ if (this._dragFrom == null) return;
1970
+ const r = rail.getBoundingClientRect();
1971
+ const EDGE = 40;
1972
+ const dt = e.clientY - r.top;
1973
+ const db = r.bottom - e.clientY;
1974
+ if (dt < EDGE) rail.scrollTop -= Math.ceil((EDGE - dt) / 3);
1975
+ else if (db < EDGE) rail.scrollTop += Math.ceil((EDGE - db) / 3);
1976
+ });
1977
+
1978
+ const menu = document.createElement('div');
1979
+ menu.className = 'ctxmenu export-hidden';
1980
+ menu.setAttribute('data-noncommentable', '');
1981
+ menu.innerHTML = `
1982
+ <button type="button" data-act="skip">Skip slide</button>
1983
+ <button type="button" data-act="up">Move up</button>
1984
+ <button type="button" data-act="down">Move down</button>
1985
+ <hr>
1986
+ <button type="button" data-act="delete">Delete slide</button>
1987
+ `;
1988
+ menu.addEventListener('click', (e) => {
1989
+ const act = e.target && e.target.getAttribute && e.target.getAttribute('data-act');
1990
+ if (!act) return;
1991
+ const i = this._menuIndex;
1992
+ this._closeMenu();
1993
+ if (act === 'skip') this._toggleSkip(i);
1994
+ else if (act === 'up') this._moveSlide(i, i - 1);
1995
+ else if (act === 'down') this._moveSlide(i, i + 1);
1996
+ else if (act === 'delete') this._openConfirm(i);
1997
+ });
1998
+ menu.addEventListener('contextmenu', (e) => e.preventDefault());
1999
+
2000
+ // Rail resize handle — drag to set --deck-rail-w, persisted to
2001
+ // localStorage so the width survives reloads.
2002
+ const resize = document.createElement('div');
2003
+ resize.className = 'rail-resize export-hidden';
2004
+ resize.setAttribute('data-noncommentable', '');
2005
+ resize.addEventListener('pointerdown', (e) => {
2006
+ e.preventDefault();
2007
+ resize.setPointerCapture(e.pointerId);
2008
+ resize.setAttribute('data-dragging', '');
2009
+ const move = (ev) => this._setRailWidth(ev.clientX);
2010
+ const up = () => {
2011
+ resize.removeEventListener('pointermove', move);
2012
+ resize.removeEventListener('pointerup', up);
2013
+ resize.removeEventListener('pointercancel', up);
2014
+ resize.removeAttribute('data-dragging');
2015
+ try { localStorage.setItem('deck-stage.railWidth', String(this._railPx)); } catch (err) {}
2016
+ };
2017
+ resize.addEventListener('pointermove', move);
2018
+ resize.addEventListener('pointerup', up);
2019
+ resize.addEventListener('pointercancel', up);
2020
+ });
2021
+
2022
+ // Delete-confirm dialog — mirrors the SPA's ConfirmDialog layout.
2023
+ const confirm = document.createElement('div');
2024
+ confirm.className = 'confirm-backdrop export-hidden';
2025
+ confirm.setAttribute('data-noncommentable', '');
2026
+ confirm.innerHTML = `
2027
+ <div class="confirm" role="dialog" aria-modal="true">
2028
+ <div class="body">
2029
+ <div class="title">Delete slide?</div>
2030
+ <div class="msg">This slide will be removed from the deck.</div>
2031
+ </div>
2032
+ <div class="footer">
2033
+ <button type="button" class="cancel">Cancel</button>
2034
+ <button type="button" class="danger">Delete</button>
2035
+ </div>
2036
+ </div>
2037
+ `;
2038
+ confirm.addEventListener('click', (e) => {
2039
+ if (e.target === confirm) this._closeConfirm();
2040
+ });
2041
+ confirm.querySelector('.cancel').addEventListener('click', () => this._closeConfirm());
2042
+ confirm.querySelector('.danger').addEventListener('click', () => {
2043
+ const i = this._confirmIndex;
2044
+ this._closeConfirm();
2045
+ this._deleteSlide(i);
2046
+ });
2047
+
2048
+ this._root.append(style, rail, resize, stage, tapzones, overlay, menu, confirm);
2049
+ this._canvas = canvas;
2050
+ this._slot = slot;
2051
+ this._overlay = overlay;
2052
+ this._tapzones = tapzones;
2053
+ this._rail = rail;
2054
+ this._resize = resize;
2055
+ this._menu = menu;
2056
+ this._confirm = confirm;
2057
+ this._countEl = overlay.querySelector('.current');
2058
+ this._totalEl = overlay.querySelector('.total');
2059
+
2060
+ // Restore persisted rail width.
2061
+ let rw = 188;
2062
+ try {
2063
+ const s = localStorage.getItem('deck-stage.railWidth');
2064
+ if (s) rw = parseInt(s, 10) || rw;
2065
+ } catch (err) {}
2066
+ this._setRailWidth(rw);
2067
+ this._syncRailHidden();
2068
+ }
2069
+
2070
+ _setRailWidth(px) {
2071
+ const w = Math.max(120, Math.min(360, Math.round(px)));
2072
+ this._railPx = w;
2073
+ this.style.setProperty('--deck-rail-w', w + 'px');
2074
+ this._fit();
2075
+ // _scaleThumbs forces a sync layout (frame.offsetWidth) then writes
2076
+ // N transforms. During a resize drag this runs per-pointermove;
2077
+ // coalesce to one per frame.
2078
+ if (!this._scaleRaf) {
2079
+ this._scaleRaf = requestAnimationFrame(() => {
2080
+ this._scaleRaf = null;
2081
+ this._scaleThumbs();
2082
+ });
2083
+ }
2084
+ }
2085
+
2086
+ /** @page must live in the document stylesheet — it's a no-op inside
2087
+ * shadow DOM. Inject/update a single <head> style tag so the print
2088
+ * sheet matches the design size and Save-as-PDF yields one slide per
2089
+ * page with no margins. */
2090
+ _syncPrintPageRule() {
2091
+ const id = 'deck-stage-print-page';
2092
+ let tag = document.getElementById(id);
2093
+ if (!tag) {
2094
+ tag = document.createElement('style');
2095
+ tag.id = id;
2096
+ document.head.appendChild(tag);
2097
+ }
2098
+ tag.textContent =
2099
+ '@page { size: ' + this.designWidth + 'px ' + this.designHeight + 'px; margin: 0; } ' +
2100
+ '@media print { html, body { margin: 0 !important; padding: 0 !important; background: none !important; overflow: visible !important; height: auto !important; } ' +
2101
+ '* { -webkit-print-color-adjust: exact; print-color-adjust: exact; } }';
2102
+ }
2103
+
2104
+ _onSlotChange() {
2105
+ // Rail mutations (delete/move) already reconcile synchronously and
2106
+ // emit slidechange with reason 'api'; skip the async slotchange that
2107
+ // would otherwise re-broadcast with reason 'init'.
2108
+ if (this._squelchSlotChange) { this._squelchSlotChange = false; return; }
2109
+ this._collectSlides();
2110
+ this._restoreIndex();
2111
+ this._applyIndex({ showOverlay: false, broadcast: true, reason: 'init' });
2112
+ this._fit();
2113
+ }
2114
+
2115
+ _collectSlides() {
2116
+ const assigned = this._slot.assignedElements({ flatten: true });
2117
+ this._slides = assigned.filter((el) => {
2118
+ // Skip template/style/script nodes even if someone slots them.
2119
+ const tag = el.tagName;
2120
+ return tag !== 'TEMPLATE' && tag !== 'SCRIPT' && tag !== 'STYLE';
2121
+ });
2122
+ this._slideSet = new Set(this._slides);
2123
+
2124
+ this._slides.forEach((slide, i) => {
2125
+ const n = i + 1;
2126
+ // Determine a label for comment flow: prefer explicit data-label,
2127
+ // then an existing data-screen-label, then first heading, else "Slide".
2128
+ let label = slide.getAttribute('data-label');
2129
+ if (!label) {
2130
+ const existing = slide.getAttribute('data-screen-label');
2131
+ if (existing) {
2132
+ // Strip any leading number the author may have included.
2133
+ label = existing.replace(/^\s*\d+\s*/, '').trim() || existing;
2134
+ }
2135
+ }
2136
+ if (!label) {
2137
+ const h = slide.querySelector('h1, h2, h3, [data-title]');
2138
+ if (h) label = (h.textContent || '').trim().slice(0, 40);
2139
+ }
2140
+ if (!label) label = 'Slide';
2141
+ slide.setAttribute('data-screen-label', `${pad2(n)} ${label}`);
2142
+
2143
+ // Validation attribute for comment flow / auto-checks.
2144
+ if (!slide.hasAttribute('data-om-validate')) {
2145
+ slide.setAttribute('data-om-validate', VALIDATE_ATTR);
2146
+ }
2147
+
2148
+ slide.setAttribute('data-deck-slide', String(i));
2149
+ });
2150
+
2151
+ if (this._totalEl) this._totalEl.textContent = String(this._slides.length || 1);
2152
+ if (this._index >= this._slides.length) this._index = Math.max(0, this._slides.length - 1);
2153
+ this._markLastVisible();
2154
+ this._renderRail();
2155
+ }
2156
+
2157
+ /** Tag the last non-skipped slide so print CSS can drop its
2158
+ * break-after (see the @media print comment above — :last-child
2159
+ * alone matches a hidden skipped slide). */
2160
+ _markLastVisible() {
2161
+ let last = null;
2162
+ this._slides.forEach((s) => {
2163
+ s.removeAttribute('data-deck-last-visible');
2164
+ if (!s.hasAttribute('data-deck-skip')) last = s;
2165
+ });
2166
+ if (last) last.setAttribute('data-deck-last-visible', '');
2167
+ }
2168
+
2169
+ _loadNotes() {
2170
+ const tag = document.getElementById('speaker-notes');
2171
+ if (!tag) { this._notes = []; return; }
2172
+ try {
2173
+ const parsed = JSON.parse(tag.textContent || '[]');
2174
+ if (Array.isArray(parsed)) this._notes = parsed;
2175
+ } catch (e) {
2176
+ console.warn('[deck-stage] Failed to parse #speaker-notes JSON:', e);
2177
+ this._notes = [];
2178
+ }
2179
+ }
2180
+
2181
+ _restoreIndex() {
2182
+ // The host's ?slide= param is delivered as a #<int> hash (1-indexed) on
2183
+ // the iframe src. No hash → slide 1; the deck itself keeps no position
2184
+ // state across loads.
2185
+ const h = (location.hash || '').match(/^#(\d+)$/);
2186
+ if (h) {
2187
+ const n = parseInt(h[1], 10) - 1;
2188
+ if (n >= 0 && n < this._slides.length) this._index = n;
2189
+ }
2190
+ }
2191
+
2192
+ _applyIndex({ showOverlay = true, broadcast = true, reason = 'init' } = {}) {
2193
+ if (!this._slides.length) return;
2194
+ const prev = this._prevIndex == null ? -1 : this._prevIndex;
2195
+ const curr = this._index;
2196
+ // Keep the iframe's own hash in sync so an in-iframe location.reload()
2197
+ // (reload banner path in viewer-handle.ts) lands on the current slide,
2198
+ // not the stale deep-link hash from initial load.
2199
+ try { history.replaceState(null, '', '#' + (curr + 1)); } catch (e) {}
2200
+ this._slides.forEach((s, i) => {
2201
+ if (i === curr) s.setAttribute('data-deck-active', '');
2202
+ else s.removeAttribute('data-deck-active');
2203
+ });
2204
+ if (this._countEl) this._countEl.textContent = String(curr + 1);
2205
+ // Follow-scroll on every navigation (init deep-link, keyboard, click,
2206
+ // tap, external goTo) — the only time we *don't* want the rail to
2207
+ // track current is after a rail-internal mutation, where _renderRail
2208
+ // has already restored the user's scroll position and yanking back to
2209
+ // current would undo it.
2210
+ this._syncRail(reason !== 'mutation');
2211
+
2212
+ if (broadcast) {
2213
+ // (1) Legacy: host-window postMessage for speaker-notes renderers.
2214
+ try { window.postMessage({ slideIndexChanged: curr, deckTotal: this._slides.length, deckSkipped: this._skippedIndices() }, '*'); } catch (e) {}
2215
+
2216
+ // (2) In-page CustomEvent on the <deck-stage> element itself.
2217
+ // Bubbles and composes out of shadow DOM so slide code can listen:
2218
+ // document.querySelector('deck-stage').addEventListener('slidechange', e => {
2219
+ // e.detail.index, e.detail.previousIndex, e.detail.total, e.detail.slide, e.detail.reason
2220
+ // });
2221
+ const detail = {
2222
+ index: curr,
2223
+ previousIndex: prev,
2224
+ total: this._slides.length,
2225
+ slide: this._slides[curr] || null,
2226
+ previousSlide: prev >= 0 ? (this._slides[prev] || null) : null,
2227
+ reason: reason, // 'init' | 'keyboard' | 'click' | 'tap' | 'api'
2228
+ };
2229
+ this.dispatchEvent(new CustomEvent('slidechange', {
2230
+ detail,
2231
+ bubbles: true,
2232
+ composed: true,
2233
+ }));
2234
+ }
2235
+
2236
+ this._prevIndex = curr;
2237
+ if (showOverlay) this._flashOverlay();
2238
+ }
2239
+
2240
+ _flashOverlay() {
2241
+ // Host posts __omelette_presenting while in fullscreen/tab presentation
2242
+ // mode — suppress the nav footer entirely (both hover and slide-change
2243
+ // flash) so the audience sees clean slides.
2244
+ if (!this._overlay || this._presenting) return;
2245
+ this._overlay.setAttribute('data-visible', '');
2246
+ if (this._hideTimer) clearTimeout(this._hideTimer);
2247
+ this._hideTimer = setTimeout(() => {
2248
+ this._overlay.removeAttribute('data-visible');
2249
+ }, OVERLAY_HIDE_MS);
2250
+ }
2251
+
2252
+ _railWidth() {
2253
+ // State-based, no offsetWidth: the first _fit() can run before the
2254
+ // rail has had layout on some load paths, and a 0 there paints the
2255
+ // slide full-width for one frame before the post-slotchange _fit()
2256
+ // corrects it.
2257
+ if (!this._railEnabled || !this._railVisible || this.hasAttribute('no-rail')
2258
+ || this.hasAttribute('noscale') || this._presenting) return 0;
2259
+ return this._railPx || 0;
2260
+ }
2261
+
2262
+ _fit() {
2263
+ if (!this._canvas) return;
2264
+ const stage = this._canvas.parentElement;
2265
+ // PPTX export sets noscale so the DOM capture sees authored-size
2266
+ // geometry — the scaled canvas is in shadow DOM, so the exporter's
2267
+ // resetTransformSelector can't reach .canvas.style.transform directly.
2268
+ if (this.hasAttribute('noscale')) {
2269
+ this._canvas.style.transform = 'none';
2270
+ if (stage) stage.style.left = '0';
2271
+ if (this._overlay) this._overlay.style.marginLeft = '0';
2272
+ if (this._tapzones) this._tapzones.style.left = '0';
2273
+ return;
2274
+ }
2275
+ const rw = this._railWidth();
2276
+ if (stage) stage.style.left = rw + 'px';
2277
+ // Overlay is centred on the viewport via left:50% + translate(-50%);
2278
+ // marginLeft shifts the centre by rw/2 so it lands in the middle of
2279
+ // the [rw, innerWidth] stage region. Tapzones just inset from rw.
2280
+ if (this._overlay) this._overlay.style.marginLeft = (rw / 2) + 'px';
2281
+ if (this._tapzones) this._tapzones.style.left = rw + 'px';
2282
+ const vw = window.innerWidth - rw;
2283
+ const vh = window.innerHeight;
2284
+ const s = Math.min(vw / this.designWidth, vh / this.designHeight);
2285
+ this._canvas.style.transform = `scale(${s})`;
2286
+ }
2287
+
2288
+ _onResize() { this._fit(); }
2289
+
2290
+ _onMouseMove() {
2291
+ // Keep overlay visible while mouse moves; hide after idle.
2292
+ this._flashOverlay();
2293
+ }
2294
+
2295
+ _onMessage(e) {
2296
+ const d = e.data;
2297
+ if (d && typeof d.__omelette_presenting === 'boolean') {
2298
+ this._presenting = d.__omelette_presenting;
2299
+ if (this._presenting && this._overlay) {
2300
+ this._overlay.removeAttribute('data-visible');
2301
+ if (this._hideTimer) clearTimeout(this._hideTimer);
2302
+ }
2303
+ this._syncRailHidden();
2304
+ this._closeMenu();
2305
+ this._closeConfirm();
2306
+ this._fit();
2307
+ this._scaleThumbs();
2308
+ }
2309
+ // Per-viewer show/hide, driven by the TweaksPanel's auto-injected
2310
+ // "Thumbnail rail" toggle (or any author script). Independent of
2311
+ // whether the Tweaks panel itself is open — closing the panel
2312
+ // doesn't change rail visibility. Persists alongside rail width.
2313
+ if (d && d.type === '__deck_rail_visible' && typeof d.on === 'boolean') {
2314
+ if (d.on === this._railVisible) return;
2315
+ this._railVisible = d.on;
2316
+ try { localStorage.setItem('deck-stage.railVisible', d.on ? '1' : '0'); } catch (e) {}
2317
+ // Arm the transition, commit it, then flip state — otherwise the
2318
+ // browser coalesces both writes and nothing animates on show.
2319
+ this.setAttribute('data-rail-anim', '');
2320
+ void (this._rail && this._rail.offsetHeight);
2321
+ this._syncRailHidden();
2322
+ this._fit();
2323
+ this._scaleThumbs();
2324
+ clearTimeout(this._railAnimTimer);
2325
+ this._railAnimTimer = setTimeout(() => this.removeAttribute('data-rail-anim'), 220);
2326
+ }
2327
+ if (d && d.type === '__omelette_rail_enabled') this._enableRail();
2328
+ }
2329
+
2330
+ _syncRailHidden() {
2331
+ if (!this._rail) return;
2332
+ // data-presenting is the hard hide (display:none) for flag-off and
2333
+ // presentation mode — instant, no transition. data-user-hidden is
2334
+ // the soft hide (translateX(-100%)) for the viewer's rail toggle,
2335
+ // so show/hide slides under :host([data-rail-anim]).
2336
+ const hard = !this._railEnabled || this._presenting;
2337
+ if (hard) this._rail.setAttribute('data-presenting', '');
2338
+ else this._rail.removeAttribute('data-presenting');
2339
+ if (!this._railVisible) this._rail.setAttribute('data-user-hidden', '');
2340
+ else this._rail.removeAttribute('data-user-hidden');
2341
+ // translateX hide leaves thumbs (tabIndex=0) in the tab order —
2342
+ // inert keeps them unfocusable while the rail is off-screen.
2343
+ this._rail.inert = hard || !this._railVisible;
2344
+ }
2345
+
2346
+ _onTapBack(e) {
2347
+ e.preventDefault();
2348
+ this._advance(-1, 'tap');
2349
+ }
2350
+
2351
+ _onTapForward(e) {
2352
+ e.preventDefault();
2353
+ this._advance(1, 'tap');
2354
+ }
2355
+
2356
+ _onKey(e) {
2357
+ // Ignore when the user is typing.
2358
+ const t = e.target;
2359
+ if (t && (t.isContentEditable || /^(INPUT|TEXTAREA|SELECT)$/.test(t.tagName))) return;
2360
+ // Confirm dialog swallows nav keys while open; Escape cancels. Enter
2361
+ // is left to the focused button's native activation so Tab→Cancel
2362
+ // →Enter activates Cancel, not the window-level confirm path.
2363
+ if (this._confirm && this._confirm.hasAttribute('data-open')) {
2364
+ if (e.key === 'Escape') { this._closeConfirm(); e.preventDefault(); }
2365
+ return;
2366
+ }
2367
+ if (e.key === 'Escape' && this._menu && this._menu.hasAttribute('data-open')) {
2368
+ this._closeMenu();
2369
+ e.preventDefault();
2370
+ return;
2371
+ }
2372
+ if (e.metaKey || e.ctrlKey || e.altKey) return;
2373
+
2374
+ const key = e.key;
2375
+ let handled = true;
2376
+
2377
+ if (key === 'ArrowRight' || key === 'PageDown' || key === ' ' || key === 'Spacebar') {
2378
+ this._advance(1, 'keyboard');
2379
+ } else if (key === 'ArrowLeft' || key === 'PageUp') {
2380
+ this._advance(-1, 'keyboard');
2381
+ } else if (key === 'Home') {
2382
+ this._go(0, 'keyboard');
2383
+ } else if (key === 'End') {
2384
+ this._go(this._slides.length - 1, 'keyboard');
2385
+ } else if (key === 'r' || key === 'R') {
2386
+ this._go(0, 'keyboard');
2387
+ } else if (/^[0-9]$/.test(key)) {
2388
+ // 1..9 jump to that slide; 0 jumps to 10.
2389
+ const n = key === '0' ? 9 : parseInt(key, 10) - 1;
2390
+ if (n < this._slides.length) this._go(n, 'keyboard');
2391
+ } else {
2392
+ handled = false;
2393
+ }
2394
+
2395
+ if (handled) {
2396
+ e.preventDefault();
2397
+ this._flashOverlay();
2398
+ }
2399
+ }
2400
+
2401
+ _go(i, reason = 'api') {
2402
+ if (!this._slides.length) return;
2403
+ const clamped = Math.max(0, Math.min(this._slides.length - 1, i));
2404
+ if (clamped === this._index) {
2405
+ this._flashOverlay();
2406
+ return;
2407
+ }
2408
+ this._index = clamped;
2409
+ this._applyIndex({ showOverlay: true, broadcast: true, reason });
2410
+ }
2411
+
2412
+ /** Step forward/back skipping any slide marked data-deck-skip. Falls
2413
+ * back to _go's clamp-at-ends behaviour (flash overlay) when there's
2414
+ * nothing further in that direction. */
2415
+ _advance(dir, reason) {
2416
+ if (!this._slides.length) return;
2417
+ let i = this._index + dir;
2418
+ while (i >= 0 && i < this._slides.length && this._slides[i].hasAttribute('data-deck-skip')) {
2419
+ i += dir;
2420
+ }
2421
+ if (i < 0 || i >= this._slides.length) { this._flashOverlay(); return; }
2422
+ this._go(i, reason);
2423
+ }
2424
+
2425
+ // ── Thumbnail rail ────────────────────────────────────────────────────
2426
+ //
2427
+ // Thumbs are keyed by slide element and reused across _renderRail()
2428
+ // calls, so a reorder/delete is an O(changed) DOM shuffle instead of an
2429
+ // O(N) teardown-and-re-clone. Each thumb starts as a lightweight shell
2430
+ // (num + empty frame); the clone is materialized lazily by an
2431
+ // IntersectionObserver when the frame scrolls into (or near) view, so
2432
+ // only visible-ish slides pay the clone + image-decode cost.
2433
+
2434
+ _renderRail() {
2435
+ if (!this._rail || !this._railEnabled) { this._thumbs = []; return; }
2436
+ // FLIP: record each *materialized* thumb's top before the reconcile.
2437
+ // Off-screen (non-materialized) thumbs don't need the animation and
2438
+ // skipping their getBoundingClientRect saves a forced layout per
2439
+ // off-screen thumb on large decks.
2440
+ const prevTops = new Map();
2441
+ (this._thumbs || []).forEach(({ thumb, slide, host }) => {
2442
+ if (host) prevTops.set(slide, thumb.getBoundingClientRect().top);
2443
+ });
2444
+ const st = this._rail.scrollTop;
2445
+
2446
+ // Reconcile: reuse thumbs that already exist for a slide, create
2447
+ // shells for new slides, drop thumbs for removed slides.
2448
+ const bySlide = new Map();
2449
+ (this._thumbs || []).forEach((t) => bySlide.set(t.slide, t));
2450
+ const next = [];
2451
+ this._slides.forEach((slide) => {
2452
+ let t = bySlide.get(slide);
2453
+ if (t) bySlide.delete(slide);
2454
+ else t = this._makeThumb(slide);
2455
+ next.push(t);
2456
+ });
2457
+ // Orphans — slides removed since last render.
2458
+ bySlide.forEach((t) => {
2459
+ if (this._railObserver) this._railObserver.unobserve(t.frame);
2460
+ t.thumb.remove();
2461
+ });
2462
+ // Put thumbs into document order to match _slides. insertBefore on
2463
+ // an already-correctly-placed node is a no-op, so this is cheap
2464
+ // when nothing moved.
2465
+ next.forEach((t, i) => {
2466
+ const want = t.thumb;
2467
+ const at = this._rail.children[i];
2468
+ if (at !== want) this._rail.insertBefore(want, at || null);
2469
+ t.i = i;
2470
+ t.num.textContent = String(i + 1);
2471
+ if (t.slide.hasAttribute('data-deck-skip')) t.thumb.setAttribute('data-skip', '');
2472
+ else t.thumb.removeAttribute('data-skip');
2473
+ });
2474
+ this._thumbs = next;
2475
+
2476
+ this._rail.scrollTop = st;
2477
+ if (prevTops.size) {
2478
+ const moved = [];
2479
+ this._thumbs.forEach(({ thumb, slide }) => {
2480
+ const old = prevTops.get(slide);
2481
+ if (old == null) return;
2482
+ const dy = old - thumb.getBoundingClientRect().top;
2483
+ if (Math.abs(dy) < 1) return;
2484
+ thumb.style.transition = 'none';
2485
+ thumb.style.transform = `translateY(${dy}px)`;
2486
+ moved.push(thumb);
2487
+ });
2488
+ if (moved.length) {
2489
+ // Commit the inverted positions before flipping the transition
2490
+ // on — otherwise the browser coalesces both style writes and
2491
+ // nothing animates.
2492
+ void this._rail.offsetHeight;
2493
+ moved.forEach((t) => {
2494
+ t.style.transition = 'transform 180ms cubic-bezier(.2,.7,.3,1)';
2495
+ t.style.transform = '';
2496
+ });
2497
+ setTimeout(() => moved.forEach((t) => { t.style.transition = ''; }), 220);
2498
+ }
2499
+ }
2500
+ requestAnimationFrame(() => this._scaleThumbs());
2501
+ this._syncRail(false);
2502
+ }
2503
+
2504
+ /** Create a lightweight thumb shell for one slide. The clone is
2505
+ * materialized later by the IntersectionObserver. Event handlers
2506
+ * look up the thumb's *current* index (via _thumbs.indexOf) so the
2507
+ * same element can be reused across reorders. */
2508
+ _makeThumb(slide) {
2509
+ const thumb = document.createElement('div');
2510
+ thumb.className = 'thumb';
2511
+ thumb.tabIndex = 0;
2512
+ const num = document.createElement('div');
2513
+ num.className = 'num';
2514
+ const frame = document.createElement('div');
2515
+ frame.className = 'frame';
2516
+ thumb.append(num, frame);
2517
+
2518
+ const entry = { thumb, num, frame, slide, clone: null, host: null, i: -1 };
2519
+ // entry.i is refreshed on every _renderRail reconcile pass, so
2520
+ // handlers read the thumb's current position without an O(N) scan.
2521
+ const idx = () => entry.i;
2522
+
2523
+ thumb.addEventListener('click', () => this._go(idx(), 'click'));
2524
+ // ↑/↓ step through the rail when a thumb has focus. _go clamps at the
2525
+ // ends and _applyIndex→_syncRail scrolls the new current thumb into
2526
+ // view; we move focus to it (preventScroll — _syncRail already
2527
+ // scrolled) so a held key walks the whole list. stopPropagation keeps
2528
+ // this out of the window-level _onKey nav handler.
2529
+ thumb.addEventListener('keydown', (e) => {
2530
+ if (e.key !== 'ArrowUp' && e.key !== 'ArrowDown') return;
2531
+ if (e.metaKey || e.ctrlKey || e.altKey) return;
2532
+ e.preventDefault();
2533
+ e.stopPropagation();
2534
+ this._go(idx() + (e.key === 'ArrowDown' ? 1 : -1), 'keyboard');
2535
+ const cur = this._thumbs && this._thumbs[this._index];
2536
+ if (cur) cur.thumb.focus({ preventScroll: true });
2537
+ });
2538
+ thumb.addEventListener('contextmenu', (e) => {
2539
+ e.preventDefault();
2540
+ this._openMenu(idx(), e.clientX, e.clientY);
2541
+ });
2542
+ thumb.draggable = true;
2543
+ thumb.addEventListener('dragstart', (e) => {
2544
+ this._dragFrom = idx();
2545
+ thumb.setAttribute('data-dragging', '');
2546
+ e.dataTransfer.effectAllowed = 'move';
2547
+ try { e.dataTransfer.setData('text/plain', String(this._dragFrom)); } catch (err) {}
2548
+ });
2549
+ thumb.addEventListener('dragend', () => {
2550
+ thumb.removeAttribute('data-dragging');
2551
+ this._clearDrop();
2552
+ this._dragFrom = null;
2553
+ });
2554
+ thumb.addEventListener('dragover', (e) => {
2555
+ if (this._dragFrom == null) return;
2556
+ e.preventDefault();
2557
+ e.dataTransfer.dropEffect = 'move';
2558
+ const r = thumb.getBoundingClientRect();
2559
+ this._setDrop(idx(), e.clientY < r.top + r.height / 2 ? 'before' : 'after');
2560
+ });
2561
+ thumb.addEventListener('drop', (e) => {
2562
+ if (this._dragFrom == null) return;
2563
+ e.preventDefault();
2564
+ const i = idx();
2565
+ const r = thumb.getBoundingClientRect();
2566
+ let to = e.clientY >= r.top + r.height / 2 ? i + 1 : i;
2567
+ if (this._dragFrom < to) to--;
2568
+ const from = this._dragFrom;
2569
+ this._clearDrop();
2570
+ this._dragFrom = null;
2571
+ if (to !== from) this._moveSlide(from, to);
2572
+ });
2573
+
2574
+ if (this._railObserver) this._railObserver.observe(frame);
2575
+ frame.__deckThumb = entry;
2576
+ return entry;
2577
+ }
2578
+
2579
+ /** Lazily build the clone for a thumb that has scrolled into view. */
2580
+ _materialize(entry) {
2581
+ if (entry.host) return;
2582
+ const dw = this.designWidth, dh = this.designHeight;
2583
+ let clone = entry.slide.cloneNode(true);
2584
+ clone.removeAttribute('id');
2585
+ clone.removeAttribute('data-deck-active');
2586
+ clone.querySelectorAll('[id]').forEach((el) => el.removeAttribute('id'));
2587
+ // Neuter heavy media; replace <video> with its poster so the box
2588
+ // keeps a visual. <iframe>/<audio> become empty placeholders.
2589
+ clone.querySelectorAll('iframe, audio, object, embed').forEach((el) => {
2590
+ el.removeAttribute('src');
2591
+ el.removeAttribute('srcdoc');
2592
+ el.removeAttribute('data');
2593
+ el.innerHTML = '';
2594
+ });
2595
+ clone.querySelectorAll('video').forEach((el) => {
2596
+ if (!el.poster) { el.removeAttribute('src'); el.innerHTML = ''; return; }
2597
+ const img = document.createElement('img');
2598
+ img.src = el.poster;
2599
+ img.alt = '';
2600
+ img.style.cssText = el.style.cssText + ';object-fit:cover;width:100%;height:100%;';
2601
+ img.className = el.className;
2602
+ el.replaceWith(img);
2603
+ });
2604
+ // Images: defer decode and let the browser pick the smallest
2605
+ // srcset candidate for the ~140px thumb. Same-URL clones reuse the
2606
+ // slide's decoded bitmap (URL-keyed cache), so the remaining cost
2607
+ // is paint/composite — lazy+async keeps that off the main thread.
2608
+ clone.querySelectorAll('img').forEach((el) => {
2609
+ el.loading = 'lazy';
2610
+ el.decoding = 'async';
2611
+ if (el.srcset) el.sizes = (this._railPx || 188) + 'px';
2612
+ });
2613
+ // Custom elements inside the slide would have their
2614
+ // connectedCallback fire when the clone is appended. Replace them
2615
+ // with inert boxes so a component-heavy deck doesn't run N copies
2616
+ // of each component's mount logic in the rail. Children are
2617
+ // preserved so layout-wrapper elements (<my-column><h2>…</h2>)
2618
+ // still show their authored content; the querySelectorAll NodeList
2619
+ // is static, so nested custom elements in the moved subtree are
2620
+ // still visited on later iterations.
2621
+ const neuter = (el) => {
2622
+ const box = document.createElement('div');
2623
+ box.style.cssText = (el.getAttribute('style') || '') +
2624
+ ';background:rgba(0,0,0,0.06);border:1px dashed rgba(0,0,0,0.15);';
2625
+ box.className = el.className;
2626
+ // Preserve theming/i18n hooks so [data-*] / :lang() / [dir]
2627
+ // descendant selectors still match the neutered root.
2628
+ for (const a of el.attributes) {
2629
+ const n = a.name;
2630
+ if (n.startsWith('data-') || n.startsWith('aria-') ||
2631
+ n === 'lang' || n === 'dir' || n === 'role' || n === 'title') {
2632
+ box.setAttribute(n, a.value);
2633
+ }
2634
+ }
2635
+ while (el.firstChild) box.appendChild(el.firstChild);
2636
+ return box;
2637
+ };
2638
+ // querySelectorAll('*') returns descendants only — a custom-element
2639
+ // slide root (<my-slide>…</my-slide>) would slip through and upgrade
2640
+ // on append. Swap the root first.
2641
+ if (clone.tagName.includes('-')) clone = neuter(clone);
2642
+ clone.querySelectorAll('*').forEach((el) => {
2643
+ if (el.tagName.includes('-')) el.replaceWith(neuter(el));
2644
+ });
2645
+ clone.style.cssText += ';position:absolute;top:0;left:0;transform-origin:0 0;' +
2646
+ 'pointer-events:none;width:' + dw + 'px;height:' + dh + 'px;' +
2647
+ 'box-sizing:border-box;overflow:hidden;visibility:visible;opacity:1;';
2648
+ const host = document.createElement('div');
2649
+ host.style.cssText = 'position:absolute;inset:0;';
2650
+ this._syncThumbHostAttrs(host);
2651
+ const sr = host.attachShadow({ mode: 'open' });
2652
+ if (this._adoptedSheet) sr.adoptedStyleSheets = [this._adoptedSheet];
2653
+ else {
2654
+ const st = document.createElement('style');
2655
+ st.textContent = this._authorCss || '';
2656
+ sr.appendChild(st);
2657
+ }
2658
+ sr.appendChild(clone);
2659
+ entry.frame.appendChild(host);
2660
+ entry.host = host;
2661
+ entry.clone = clone;
2662
+ if (this._thumbScale) clone.style.transform = 'scale(' + this._thumbScale + ')';
2663
+ // Once materialized the IO callback is a no-op early-return —
2664
+ // unobserve so scroll doesn't keep firing it.
2665
+ if (this._railObserver) this._railObserver.unobserve(entry.frame);
2666
+ }
2667
+
2668
+ /** Re-clone a single thumb (live-update path). No-op if the thumb
2669
+ * hasn't been materialized yet — it'll pick up current content when
2670
+ * it scrolls into view. */
2671
+ _refreshThumb(slide) {
2672
+ const entry = (this._thumbs || []).find((t) => t.slide === slide);
2673
+ if (!entry || !entry.host) return;
2674
+ entry.host.remove();
2675
+ entry.host = entry.clone = null;
2676
+ this._materialize(entry);
2677
+ }
2678
+
2679
+ _scaleThumbs() {
2680
+ if (!this._thumbs || !this._thumbs.length) return;
2681
+ // Every frame is the same width; if it reads 0 the rail is
2682
+ // display:none (noscale / no-rail / presenting / print) — leave the
2683
+ // clones as-is and re-run when the rail is revealed.
2684
+ const fw = this._thumbs[0].frame.offsetWidth;
2685
+ if (!fw) return;
2686
+ this._thumbScale = fw / this.designWidth;
2687
+ this._thumbs.forEach(({ clone }) => {
2688
+ if (clone) clone.style.transform = 'scale(' + this._thumbScale + ')';
2689
+ });
2690
+ }
2691
+
2692
+ _setDrop(i, where) {
2693
+ // dragover fires at pointer-event rate; touch only the previous
2694
+ // and new target rather than sweeping all N thumbs.
2695
+ const t = this._thumbs && this._thumbs[i];
2696
+ if (this._dropOn && this._dropOn !== t) {
2697
+ this._dropOn.thumb.removeAttribute('data-drop');
2698
+ }
2699
+ if (t) t.thumb.setAttribute('data-drop', where);
2700
+ this._dropOn = t || null;
2701
+ }
2702
+
2703
+ _clearDrop() {
2704
+ if (this._dropOn) this._dropOn.thumb.removeAttribute('data-drop');
2705
+ this._dropOn = null;
2706
+ }
2707
+
2708
+ _syncRail(follow) {
2709
+ if (!this._thumbs) return;
2710
+ this._thumbs.forEach(({ thumb }, i) => {
2711
+ if (i === this._index) {
2712
+ thumb.setAttribute('data-current', '');
2713
+ if (follow && typeof thumb.scrollIntoView === 'function') {
2714
+ thumb.scrollIntoView({ block: 'nearest' });
2715
+ }
2716
+ } else {
2717
+ thumb.removeAttribute('data-current');
2718
+ }
2719
+ });
2720
+ }
2721
+
2722
+ _openMenu(i, x, y) {
2723
+ if (!this._menu) return;
2724
+ this._menuIndex = i;
2725
+ const slide = this._slides[i];
2726
+ const skip = slide && slide.hasAttribute('data-deck-skip');
2727
+ this._menu.querySelector('[data-act="skip"]').textContent = skip ? 'Unskip slide' : 'Skip slide';
2728
+ this._menu.querySelector('[data-act="up"]').disabled = i <= 0;
2729
+ this._menu.querySelector('[data-act="down"]').disabled = i >= this._slides.length - 1;
2730
+ this._menu.querySelector('[data-act="delete"]').disabled = this._slides.length <= 1;
2731
+ // Place, then clamp to viewport after it's measurable.
2732
+ this._menu.style.left = x + 'px';
2733
+ this._menu.style.top = y + 'px';
2734
+ this._menu.setAttribute('data-open', '');
2735
+ const r = this._menu.getBoundingClientRect();
2736
+ const nx = Math.min(x, window.innerWidth - r.width - 4);
2737
+ const ny = Math.min(y, window.innerHeight - r.height - 4);
2738
+ this._menu.style.left = Math.max(4, nx) + 'px';
2739
+ this._menu.style.top = Math.max(4, ny) + 'px';
2740
+ }
2741
+
2742
+ _closeMenu() {
2743
+ if (this._menu) this._menu.removeAttribute('data-open');
2744
+ this._menuIndex = -1;
2745
+ }
2746
+
2747
+ _openConfirm(i) {
2748
+ if (!this._confirm) return;
2749
+ this._confirmIndex = i;
2750
+ this._confirm.querySelector('.title').textContent = 'Delete slide ' + (i + 1) + '?';
2751
+ this._confirm.setAttribute('data-open', '');
2752
+ const btn = this._confirm.querySelector('.danger');
2753
+ if (btn && btn.focus) btn.focus();
2754
+ }
2755
+
2756
+ _closeConfirm() {
2757
+ if (this._confirm) this._confirm.removeAttribute('data-open');
2758
+ this._confirmIndex = -1;
2759
+ }
2760
+
2761
+ _emitDeckChange(detail) {
2762
+ this.dispatchEvent(new CustomEvent('deckchange', {
2763
+ detail, bubbles: true, composed: true,
2764
+ }));
2765
+ }
2766
+
2767
+ _deleteSlide(i) {
2768
+ const slide = this._slides[i];
2769
+ if (!slide || this._slides.length <= 1) return;
2770
+ const wasCurrent = i === this._index;
2771
+ if (i < this._index || (wasCurrent && i === this._slides.length - 1)) this._index--;
2772
+ this._squelchSlotChange = true;
2773
+ slide.remove();
2774
+ this._emitDeckChange({ action: 'delete', from: i, slide });
2775
+ this._collectSlides();
2776
+ this._applyIndex({ showOverlay: true, broadcast: true, reason: 'mutation' });
2777
+ }
2778
+
2779
+ _toggleSkip(i) {
2780
+ const slide = this._slides[i];
2781
+ if (!slide) return;
2782
+ const on = !slide.hasAttribute('data-deck-skip');
2783
+ if (on) slide.setAttribute('data-deck-skip', '');
2784
+ else slide.removeAttribute('data-deck-skip');
2785
+ if (this._thumbs && this._thumbs[i]) {
2786
+ if (on) this._thumbs[i].thumb.setAttribute('data-skip', '');
2787
+ else this._thumbs[i].thumb.removeAttribute('data-skip');
2788
+ }
2789
+ this._markLastVisible();
2790
+ this._emitDeckChange({ action: on ? 'skip' : 'unskip', from: i, slide });
2791
+ // Re-broadcast so the presenter popup's prev/next thumbnails re-pick
2792
+ // the nearest non-skipped slide without waiting for a nav event.
2793
+ try { window.postMessage({ slideIndexChanged: this._index, deckTotal: this._slides.length, deckSkipped: this._skippedIndices() }, '*'); } catch (e) {}
2794
+ }
2795
+
2796
+ _skippedIndices() {
2797
+ const out = [];
2798
+ for (let i = 0; i < this._slides.length; i++) {
2799
+ if (this._slides[i].hasAttribute('data-deck-skip')) out.push(i);
2800
+ }
2801
+ return out;
2802
+ }
2803
+
2804
+ _moveSlide(i, j) {
2805
+ if (j < 0 || j >= this._slides.length || j === i) return;
2806
+ const slide = this._slides[i];
2807
+ const ref = j < i ? this._slides[j] : this._slides[j].nextSibling;
2808
+ // Track the active slide across the reorder so the same content
2809
+ // stays on screen.
2810
+ const cur = this._index;
2811
+ if (cur === i) this._index = j;
2812
+ else if (i < cur && j >= cur) this._index = cur - 1;
2813
+ else if (i > cur && j <= cur) this._index = cur + 1;
2814
+ this._squelchSlotChange = true;
2815
+ this.insertBefore(slide, ref);
2816
+ this._emitDeckChange({ action: 'move', from: i, to: j, slide });
2817
+ this._collectSlides();
2818
+ this._applyIndex({ showOverlay: false, broadcast: true, reason: 'mutation' });
2819
+ }
2820
+
2821
+ // Public API ------------------------------------------------------------
2822
+
2823
+ /** Current slide index (0-based). */
2824
+ get index() { return this._index; }
2825
+ /** Total slide count. */
2826
+ get length() { return this._slides.length; }
2827
+ /** Programmatically navigate. */
2828
+ goTo(i) { this._go(i, 'api'); }
2829
+ next() { this._advance(1, 'api'); }
2830
+ prev() { this._advance(-1, 'api'); }
2831
+ reset() { this._go(0, 'api'); }
2832
+ }
2833
+
2834
+ if (!customElements.get('deck-stage')) {
2835
+ customElements.define('deck-stage', DeckStage);
2836
+ }
2837
+ })();
2838
+
2839
+ </script>
2840
+
2841
+ </body>
2842
+ </html>