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.
- package/LICENSE +21 -0
- package/README.md +12 -0
- package/bin/agent.mjs +63 -0
- package/package.json +38 -0
- package/runtime/.env.example +79 -0
- package/runtime/AGENTS.md +119 -0
- package/runtime/LICENSE +21 -0
- package/runtime/README.md +367 -0
- package/runtime/agent +32 -0
- package/runtime/agents/README.md +78 -0
- package/runtime/agents/aws-architecture-analyst/AGENTS.md +30 -0
- package/runtime/agents/aws-architecture-analyst/README.md +19 -0
- package/runtime/agents/aws-architecture-analyst/agent.yaml +58 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/_shared/runner_support.py +320 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/capability.yaml +22 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/decision-rules.md +57 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/analyze-workload-architecture/workflow.md +6 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/capability.yaml +23 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/decision-rules.md +62 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/discover-account-inventory/workflow.md +7 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/capability.yaml +22 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/decision-rules.md +56 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/estimate-blast-radius/workflow.md +6 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/capability.yaml +22 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/decision-rules.md +58 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/generate-architecture-report/workflow.md +5 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/capability.yaml +23 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/decision-rules.md +58 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/map-service-dependencies/workflow.md +6 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/capability.yaml +23 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/decision-rules.md +55 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-networking/workflow.md +5 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/capability.yaml +22 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/decision-rules.md +55 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-observability/workflow.md +5 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/capability.yaml +22 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/decision-rules.md +55 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/runner.py +9 -0
- package/runtime/agents/aws-architecture-analyst/capabilities/review-resilience/workflow.md +5 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/aws_repository.py +300 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/dependency_mapper.py +73 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/env.example +6 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/integration.yaml +13 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/analyze-workload-architecture.yaml +12 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/discover-account-inventory.yaml +10 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/estimate-blast-radius.yaml +12 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/generate-architecture-report.yaml +13 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/map-service-dependencies.yaml +12 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/review-networking.yaml +12 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/review-observability.yaml +12 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/methods/review-resilience.yaml +12 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/normalizers.py +119 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/report_renderer.py +140 -0
- package/runtime/agents/aws-architecture-analyst/infra/integrations/aws/tests/test_repository.py +72 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/context.md +18 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/policies.yaml +32 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/analyze-workload-architecture.md +28 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/discover-account-inventory.md +34 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/estimate-blast-radius.md +30 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/generate-architecture-report.md +27 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/map-service-dependencies.md +28 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/review-networking.md +25 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/review-observability.md +24 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/prompts/review-resilience.md +29 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/rubrics.md +70 -0
- package/runtime/agents/aws-architecture-analyst/knowledge/system.md +51 -0
- package/runtime/agents/aws-architecture-analyst/templates/architecture-report-output.md +48 -0
- package/runtime/agents/aws-architecture-analyst/templates/blast-radius-output.md +37 -0
- package/runtime/agents/aws-architecture-analyst/templates/dependency-map-output.md +28 -0
- package/runtime/agents/aws-architecture-analyst/templates/inventory-summary-output.md +33 -0
- package/runtime/agents/aws-architecture-analyst/templates/networking-review-output.md +28 -0
- package/runtime/agents/aws-architecture-analyst/templates/observability-review-output.md +26 -0
- package/runtime/agents/aws-architecture-analyst/templates/resilience-review-output.md +30 -0
- package/runtime/agents/aws-architecture-analyst/templates/workload-architecture-output.md +46 -0
- package/runtime/agents/aws-architecture-analyst/tests/test_runners.py +384 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/AGENTS.md +31 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/README.md +47 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/agent.yaml +53 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/_shared/runner_support.py +158 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/capability.yaml +42 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/runner.py +116 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/tests/test_runner.py +47 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/analyze-service-error/workflow.md +19 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/capability.yaml +39 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/runner.py +127 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/tests/test_runner.py +48 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/correlate-azure-card-logs/workflow.md +19 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/capability.yaml +39 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/runner.py +101 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/tests/test_runner.py +45 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/detect-error-patterns/workflow.md +19 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/capability.yaml +38 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/runner.py +91 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/tests/test_runner.py +46 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/extract-log-samples/workflow.md +18 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/capability.yaml +40 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/runner.py +112 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/tests/test_runner.py +46 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/generate-incident-report/workflow.md +20 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/capability.yaml +37 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/runner.py +87 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/tests/test_runner.py +45 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-groups/workflow.md +18 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/capability.yaml +36 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/runner.py +88 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/tests/test_runner.py +53 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/list-log-streams/workflow.md +19 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/capability.yaml +53 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/runner.py +134 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/tests/test_runner.py +68 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/run-insights-query/workflow.md +19 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/capability.yaml +38 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/runner.py +68 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/tests/test_runner.py +44 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/search-log-events/workflow.md +18 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/capability.yaml +39 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/decision-rules.md +8 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/runner.py +126 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/tests/test_runner.py +68 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/capabilities/trace-request/workflow.md +18 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/README.md +15 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/README.md +7 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/README.md +20 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/cli.py +104 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/cloudwatch_repository.py +289 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/env.example +5 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/integration.yaml +28 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/mcp/README.md +3 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/describe-log-streams.yaml +20 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/filter-log-events.yaml +23 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/get-logs-insights-query-results.yaml +17 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/list-log-groups.yaml +19 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/methods/start-logs-insights-query.yaml +22 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/models/README.md +3 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/models/log-event.schema.json +13 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/models/log-group.schema.json +14 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/infra/integrations/aws-cloudwatch/tests/test_repository.py +43 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/README.md +9 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/context.md +25 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/policies.yaml +49 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/README.md +3 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/analyze-service-error.md +34 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/correlate-azure-card-logs.md +34 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/detect-error-patterns.md +32 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/extract-log-samples.md +34 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/generate-incident-report.md +34 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/list-log-groups.md +34 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/list-log-streams.md +34 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/run-insights-query.md +36 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/search-log-events.md +35 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/prompts/trace-request.md +34 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/knowledge/system.md +37 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/README.md +3 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/analyze-service-error-output.md +22 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/correlate-azure-card-logs-output.md +20 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/detect-error-patterns-output.md +16 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/extract-log-samples-output.md +17 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/generate-incident-report-output.md +24 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/list-log-groups-output.md +19 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/list-log-streams-output.md +18 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/run-insights-query-output.md +30 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/search-log-events-output.md +16 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/templates/trace-request-output.md +17 -0
- package/runtime/agents/aws-cloudwatch-log-analyzer/tests/test_agentic_contracts.py +125 -0
- package/runtime/agents/aws-operations-operator/AGENTS.md +29 -0
- package/runtime/agents/aws-operations-operator/README.md +45 -0
- package/runtime/agents/aws-operations-operator/agent.yaml +73 -0
- package/runtime/agents/aws-operations-operator/capabilities/_shared/runner_support.py +260 -0
- package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/decision-rules.md +60 -0
- package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/force-ecs-deployment/workflow.md +24 -0
- package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/decision-rules.md +50 -0
- package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/generate-operation-report/workflow.md +19 -0
- package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/decision-rules.md +53 -0
- package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/invalidate-cloudfront-cache/workflow.md +20 -0
- package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/decision-rules.md +56 -0
- package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/invoke-lambda/workflow.md +22 -0
- package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/decision-rules.md +55 -0
- package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/plan-operational-action/workflow.md +22 -0
- package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/decision-rules.md +46 -0
- package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/purge-sqs-queue-plan/workflow.md +17 -0
- package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/decision-rules.md +46 -0
- package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/redrive-sqs-dlq/workflow.md +18 -0
- package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/decision-rules.md +54 -0
- package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/restart-ecs-service/workflow.md +18 -0
- package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/decision-rules.md +56 -0
- package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/scale-autoscaling-group/workflow.md +22 -0
- package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/capability.yaml +21 -0
- package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/decision-rules.md +54 -0
- package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/runner.py +7 -0
- package/runtime/agents/aws-operations-operator/capabilities/toggle-eventbridge-rule/workflow.md +20 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/aws_operations_repository.py +500 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/env.example +16 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/integration.yaml +17 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/force-ecs-deployment.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/generate-operation-report.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/invalidate-cloudfront-cache.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/invoke-lambda.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/plan-operational-action.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/purge-sqs-queue-plan.yaml +14 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/redrive-sqs-dlq.yaml +14 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/restart-ecs-service.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/scale-autoscaling-group.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/methods/toggle-eventbridge-rule.yaml +10 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/report_renderer.py +83 -0
- package/runtime/agents/aws-operations-operator/infra/integrations/aws-operations/tests/test_repository.py +176 -0
- package/runtime/agents/aws-operations-operator/knowledge/context.md +25 -0
- package/runtime/agents/aws-operations-operator/knowledge/policies.yaml +87 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/force-ecs-deployment.md +31 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/generate-operation-report.md +24 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/invalidate-cloudfront-cache.md +27 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/invoke-lambda.md +30 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/plan-operational-action.md +33 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/purge-sqs-queue-plan.md +25 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/redrive-sqs-dlq.md +26 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/restart-ecs-service.md +26 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/scale-autoscaling-group.md +30 -0
- package/runtime/agents/aws-operations-operator/knowledge/prompts/toggle-eventbridge-rule.md +28 -0
- package/runtime/agents/aws-operations-operator/knowledge/system.md +67 -0
- package/runtime/agents/aws-operations-operator/templates/operation-plan-output.md +31 -0
- package/runtime/agents/aws-operations-operator/templates/operation-report-output.md +38 -0
- package/runtime/agents/aws-operations-operator/templates/rollback-notes-output.md +25 -0
- package/runtime/agents/aws-operations-operator/tests/test_runners.py +555 -0
- package/runtime/agents/aws-security-governance-auditor/AGENTS.md +30 -0
- package/runtime/agents/aws-security-governance-auditor/README.md +18 -0
- package/runtime/agents/aws-security-governance-auditor/agent.yaml +64 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/_shared/runner_support.py +221 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/decision-rules.md +50 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-cloudtrail-config/workflow.md +4 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/decision-rules.md +47 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-config-guardrails/workflow.md +4 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/decision-rules.md +47 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-encryption/workflow.md +4 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/decision-rules.md +49 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-iam-principals/workflow.md +5 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/decision-rules.md +47 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-public-exposure/workflow.md +5 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/decision-rules.md +47 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-s3-buckets/workflow.md +5 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/decision-rules.md +47 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-secrets-usage/workflow.md +5 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/decision-rules.md +48 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/audit-security-groups/workflow.md +5 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/decision-rules.md +47 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-remediation-plan/workflow.md +5 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/capability.yaml +21 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/decision-rules.md +49 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/runner.py +7 -0
- package/runtime/agents/aws-security-governance-auditor/capabilities/generate-security-report/workflow.md +5 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/auditors.py +216 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/aws_security_repository.py +193 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/env.example +6 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/integration.yaml +14 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-cloudtrail-config.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-config-guardrails.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-encryption.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-iam-principals.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-public-exposure.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-s3-buckets.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-secrets-usage.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/audit-security-groups.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/generate-remediation-plan.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/methods/generate-security-report.yaml +11 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/report_renderer.py +64 -0
- package/runtime/agents/aws-security-governance-auditor/infra/integrations/aws-security/tests/test_repository.py +153 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/context.md +21 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/policies.yaml +42 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-cloudtrail-config.md +17 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-config-guardrails.md +15 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-encryption.md +15 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-iam-principals.md +29 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-public-exposure.md +21 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-s3-buckets.md +21 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-secrets-usage.md +15 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/audit-security-groups.md +21 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/generate-remediation-plan.md +20 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/prompts/generate-security-report.md +20 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/severity-rubric.md +38 -0
- package/runtime/agents/aws-security-governance-auditor/knowledge/system.md +42 -0
- package/runtime/agents/aws-security-governance-auditor/templates/cloudtrail-audit-output.md +24 -0
- package/runtime/agents/aws-security-governance-auditor/templates/config-guardrails-output.md +24 -0
- package/runtime/agents/aws-security-governance-auditor/templates/encryption-audit-output.md +24 -0
- package/runtime/agents/aws-security-governance-auditor/templates/iam-audit-output.md +24 -0
- package/runtime/agents/aws-security-governance-auditor/templates/public-exposure-output.md +28 -0
- package/runtime/agents/aws-security-governance-auditor/templates/remediation-plan-output.md +31 -0
- package/runtime/agents/aws-security-governance-auditor/templates/s3-buckets-output.md +28 -0
- package/runtime/agents/aws-security-governance-auditor/templates/secrets-usage-output.md +24 -0
- package/runtime/agents/aws-security-governance-auditor/templates/security-groups-output.md +28 -0
- package/runtime/agents/aws-security-governance-auditor/templates/security-report-output.md +41 -0
- package/runtime/agents/aws-security-governance-auditor/tests/test_runners.py +336 -0
- package/runtime/agents/azure-devops-orchestrator/AGENTS.md +36 -0
- package/runtime/agents/azure-devops-orchestrator/README.md +87 -0
- package/runtime/agents/azure-devops-orchestrator/agent.yaml +56 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/_shared/runner_support.py +146 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/capability.yaml +38 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/decision-rules.md +8 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/runner.py +175 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/tests/test_runner.py +56 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/assign-card/workflow.md +33 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/capability.yaml +39 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/decision-rules.md +10 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/runner.py +112 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/tests/test_runner.py +80 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/attach-file/workflow.md +7 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/capability.yaml +37 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/decision-rules.md +9 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/runner.py +142 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/tests/test_runner.py +49 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/comment-card/workflow.md +34 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/capability.yaml +42 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/decision-rules.md +9 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/runner.py +294 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/tests/test_runner.py +131 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/generate-cards-report/workflow.md +37 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/capability.yaml +37 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/decision-rules.md +7 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/runner.py +122 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/tests/test_runner.py +56 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/list-cards/workflow.md +23 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/capability.yaml +37 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/decision-rules.md +9 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/runner.py +150 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/tests/test_runner.py +50 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/move-card/workflow.md +32 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/capability.yaml +36 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/decision-rules.md +7 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/runner.py +184 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/tests/test_runner.py +53 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/prepare-card-analysis/workflow.md +27 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/capability.yaml +35 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/decision-rules.md +7 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/runner.py +186 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/tests/test_runner.py +90 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/read-card/workflow.md +37 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/capability.yaml +37 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/decision-rules.md +8 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/runner.py +143 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/tests/test_runner.py +49 -0
- package/runtime/agents/azure-devops-orchestrator/capabilities/update-card-tags/workflow.md +33 -0
- package/runtime/agents/azure-devops-orchestrator/infra/README.md +22 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/README.md +13 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/README.md +63 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/azure_repository.py +539 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/cli.py +116 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/env.example +6 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/integration.yaml +39 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/mcp/README.md +7 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/add-comment.yaml +34 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/attach-file.yaml +38 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/find-users.yaml +31 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/get-work-item-comments.yaml +33 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/get-work-item.yaml +43 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/list-work-items.yaml +39 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/methods/update-work-item.yaml +38 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/README.md +6 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/comment-list.schema.json +15 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/comment.schema.json +14 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/identity.schema.json +12 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/work-item-list.schema.json +15 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/work-item.schema.json +30 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/models/write-result.schema.json +26 -0
- package/runtime/agents/azure-devops-orchestrator/infra/integrations/azure/tests/test_repository.py +120 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/README.md +22 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/context.md +28 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/policies.yaml +57 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/README.md +7 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/assign-card.md +34 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/attach-file.md +28 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/comment-card.md +35 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/generate-cards-report.md +32 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/list-cards.md +31 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/move-card.md +35 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/prepare-card-analysis.md +31 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/read-card.md +32 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/prompts/update-card-tags.md +30 -0
- package/runtime/agents/azure-devops-orchestrator/knowledge/system.md +66 -0
- package/runtime/agents/azure-devops-orchestrator/templates/README.md +8 -0
- package/runtime/agents/azure-devops-orchestrator/templates/assign-card-output.md +21 -0
- package/runtime/agents/azure-devops-orchestrator/templates/attach-file-output.md +24 -0
- package/runtime/agents/azure-devops-orchestrator/templates/comment-card-output.md +21 -0
- package/runtime/agents/azure-devops-orchestrator/templates/generate-cards-report-output.md +38 -0
- package/runtime/agents/azure-devops-orchestrator/templates/list-cards-output.md +23 -0
- package/runtime/agents/azure-devops-orchestrator/templates/move-card-output.md +23 -0
- package/runtime/agents/azure-devops-orchestrator/templates/prepare-card-analysis-output.md +27 -0
- package/runtime/agents/azure-devops-orchestrator/templates/read-card-output.md +34 -0
- package/runtime/agents/azure-devops-orchestrator/templates/update-card-tags-output.md +22 -0
- package/runtime/agents/azure-devops-orchestrator/tests/test_agentic_contracts.py +176 -0
- package/runtime/agents/bpo-analyser/AGENTS.md +28 -0
- package/runtime/agents/bpo-analyser/README.md +63 -0
- package/runtime/agents/bpo-analyser/agent.yaml +64 -0
- package/runtime/agents/bpo-analyser/capabilities/_shared/runner_support.py +195 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/capability.yaml +23 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/decision-rules.md +10 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/runner.py +81 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-cpf-proposals/workflow.md +6 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/capability.yaml +23 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/decision-rules.md +7 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/runner.py +91 -0
- package/runtime/agents/bpo-analyser/capabilities/analyze-proposal/workflow.md +7 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/capability.yaml +22 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/decision-rules.md +7 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/runner.py +69 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-attached-documents/workflow.md +6 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-proposal/capability.yaml +22 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-proposal/decision-rules.md +6 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-proposal/runner.py +53 -0
- package/runtime/agents/bpo-analyser/capabilities/consult-proposal/workflow.md +6 -0
- package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/capability.yaml +23 -0
- package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/decision-rules.md +8 -0
- package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/runner.py +64 -0
- package/runtime/agents/bpo-analyser/capabilities/find-latest-proposal-by-cpf/workflow.md +6 -0
- package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/capability.yaml +22 -0
- package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/decision-rules.md +5 -0
- package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/runner.py +62 -0
- package/runtime/agents/bpo-analyser/capabilities/list-proposals-by-cpf/workflow.md +6 -0
- package/runtime/agents/bpo-analyser/capabilities/test-connection/capability.yaml +22 -0
- package/runtime/agents/bpo-analyser/capabilities/test-connection/decision-rules.md +5 -0
- package/runtime/agents/bpo-analyser/capabilities/test-connection/runner.py +62 -0
- package/runtime/agents/bpo-analyser/capabilities/test-connection/workflow.md +6 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/README.md +29 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/bpo_repository.py +858 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/env.example +16 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/analyze-cpf-proposals.yaml +5 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/analyze-proposal.yaml +6 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/consult-attached-documents.yaml +5 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/consult-proposal.yaml +5 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/find-latest-proposal-by-cpf.yaml +5 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/list-proposals-by-cpf.yaml +5 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/methods/test-connection.yaml +4 -0
- package/runtime/agents/bpo-analyser/infra/integrations/bpo/tests/test_repository.py +345 -0
- package/runtime/agents/bpo-analyser/knowledge/README.md +14 -0
- package/runtime/agents/bpo-analyser/knowledge/context.md +15 -0
- package/runtime/agents/bpo-analyser/knowledge/domain-glossary.md +53 -0
- package/runtime/agents/bpo-analyser/knowledge/policies.yaml +44 -0
- package/runtime/agents/bpo-analyser/knowledge/prompts/analyze-cpf-proposals.md +40 -0
- package/runtime/agents/bpo-analyser/knowledge/prompts/analyze-proposal.md +38 -0
- package/runtime/agents/bpo-analyser/knowledge/prompts/consult-attached-documents.md +39 -0
- package/runtime/agents/bpo-analyser/knowledge/prompts/consult-proposal.md +37 -0
- package/runtime/agents/bpo-analyser/knowledge/prompts/find-latest-proposal-by-cpf.md +37 -0
- package/runtime/agents/bpo-analyser/knowledge/prompts/list-proposals-by-cpf.md +37 -0
- package/runtime/agents/bpo-analyser/knowledge/prompts/test-connection.md +35 -0
- package/runtime/agents/bpo-analyser/knowledge/system.md +58 -0
- package/runtime/agents/bpo-analyser/templates/README.md +4 -0
- package/runtime/agents/bpo-analyser/templates/analyze-cpf-proposals-output.md +36 -0
- package/runtime/agents/bpo-analyser/templates/analyze-proposal-output.md +35 -0
- package/runtime/agents/bpo-analyser/templates/consult-attached-documents-output.md +27 -0
- package/runtime/agents/bpo-analyser/templates/consult-proposal-output.md +33 -0
- package/runtime/agents/bpo-analyser/templates/find-latest-proposal-by-cpf-output.md +31 -0
- package/runtime/agents/bpo-analyser/templates/list-proposals-by-cpf-output.md +21 -0
- package/runtime/agents/bpo-analyser/templates/test-connection-output.md +29 -0
- package/runtime/agents/bpo-analyser/tests/test_agentic_contracts.py +176 -0
- package/runtime/agents/bpo-analyser/tests/test_runners.py +257 -0
- package/runtime/agents/data-scientist-analyst/AGENTS.md +10 -0
- package/runtime/agents/data-scientist-analyst/README.md +137 -0
- package/runtime/agents/data-scientist-analyst/agent.yaml +104 -0
- package/runtime/agents/data-scientist-analyst/capabilities/_shared/runner_support.py +439 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-cohorts/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-correlation/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-sql-source/workflow.md +5 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/analyze-time-series/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/baseline-predictive-model/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-confidence-intervals/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/capability.yaml +22 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/calculate-sample-size/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/compare-periods/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/capability.yaml +22 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-anomalies/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-data-leakage/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-outliers/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/detect-sensitive-data/workflow.md +5 -0
- package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/evaluate-model/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-model-results/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/explain-statistical-result/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/forecast-series/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-data-report/workflow.md +5 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/generate-reconciliation-report/workflow.md +5 -0
- package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/ingest-dataset/workflow.md +5 -0
- package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/inspect-dataset-schema/workflow.md +5 -0
- package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/measure-effect-size/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/monitor-model-drift/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/prepare-modeling-dataset/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/profile-dataset/workflow.md +5 -0
- package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/reconcile-spreadsheets/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-data-pipeline/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/run-exploratory-analysis/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/segment-data/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/segment-data/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/segment-data/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/segment-data/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/capability.yaml +23 -0
- package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/decision-rules.md +8 -0
- package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/runner.py +13 -0
- package/runtime/agents/data-scientist-analyst/capabilities/test-hypothesis/workflow.md +6 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/agent-bridge/methods/analyze-sql-source.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/artifacts.py +15 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/data_repository.py +1226 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/dataset_controls.py +46 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/dataset_io.py +150 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/dataset_models.py +22 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/analyze-cohorts.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/analyze-correlation.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/analyze-time-series.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/baseline-predictive-model.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/calculate-confidence-intervals.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/calculate-sample-size.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/compare-periods.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-anomalies.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-data-leakage.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-outliers.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/detect-sensitive-data.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/evaluate-model.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/explain-model-results.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/explain-statistical-result.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/forecast-series.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/generate-data-report.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/generate-reconciliation-report.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/ingest-dataset.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/inspect-dataset-schema.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/measure-effect-size.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/monitor-model-drift.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/prepare-modeling-dataset.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/profile-dataset.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/reconcile-spreadsheets.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/run-data-pipeline.yaml +27 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/run-exploratory-analysis.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/segment-data.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/methods/test-hypothesis.yaml +4 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/modeling_tools.py +219 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/privacy.py +124 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/profiling.py +267 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/reconciliation_tools.py +68 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/reporting.py +94 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/sql_result.py +100 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/statistics_tools.py +247 -0
- package/runtime/agents/data-scientist-analyst/infra/integrations/file-dataset/time_series_tools.py +195 -0
- package/runtime/agents/data-scientist-analyst/knowledge/analysis-methods.md +30 -0
- package/runtime/agents/data-scientist-analyst/knowledge/context.md +16 -0
- package/runtime/agents/data-scientist-analyst/knowledge/contracts/analyze-sql-source.schema.json +14 -0
- package/runtime/agents/data-scientist-analyst/knowledge/contracts/evaluate-model.schema.json +15 -0
- package/runtime/agents/data-scientist-analyst/knowledge/contracts/profile-dataset.schema.json +13 -0
- package/runtime/agents/data-scientist-analyst/knowledge/contracts/run-data-pipeline.schema.json +14 -0
- package/runtime/agents/data-scientist-analyst/knowledge/data-policies.md +8 -0
- package/runtime/agents/data-scientist-analyst/knowledge/health-checklist.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/operational-runbook.md +47 -0
- package/runtime/agents/data-scientist-analyst/knowledge/policies.yaml +77 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-cohorts.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-correlation.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-sql-source.md +44 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/analyze-time-series.md +36 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/baseline-predictive-model.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/calculate-confidence-intervals.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/calculate-sample-size.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/compare-periods.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-anomalies.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-data-leakage.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-outliers.md +37 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/detect-sensitive-data.md +38 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/evaluate-model.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/explain-model-results.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/explain-statistical-result.md +36 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/forecast-series.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/generate-data-report.md +36 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/generate-reconciliation-report.md +35 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/ingest-dataset.md +35 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/inspect-dataset-schema.md +36 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/measure-effect-size.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/monitor-model-drift.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/prepare-modeling-dataset.md +35 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/profile-dataset.md +40 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/reconcile-spreadsheets.md +40 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/run-data-pipeline.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/run-exploratory-analysis.md +34 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/segment-data.md +33 -0
- package/runtime/agents/data-scientist-analyst/knowledge/prompts/test-hypothesis.md +36 -0
- package/runtime/agents/data-scientist-analyst/knowledge/system.md +54 -0
- package/runtime/agents/data-scientist-analyst/templates/data-report.md +53 -0
- package/runtime/agents/data-scientist-analyst/templates/reconciliation-report.md +41 -0
- package/runtime/agents/data-scientist-analyst/tests/test_runners.py +1480 -0
- package/runtime/agents/database-change-operator/AGENTS.md +29 -0
- package/runtime/agents/database-change-operator/README.md +36 -0
- package/runtime/agents/database-change-operator/agent.yaml +57 -0
- package/runtime/agents/database-change-operator/capabilities/_shared/runner_support.py +115 -0
- package/runtime/agents/database-change-operator/capabilities/apply-migration/capability.yaml +23 -0
- package/runtime/agents/database-change-operator/capabilities/apply-migration/decision-rules.md +8 -0
- package/runtime/agents/database-change-operator/capabilities/apply-migration/runner.py +52 -0
- package/runtime/agents/database-change-operator/capabilities/apply-migration/workflow.md +8 -0
- package/runtime/agents/database-change-operator/capabilities/migration-report/capability.yaml +22 -0
- package/runtime/agents/database-change-operator/capabilities/migration-report/decision-rules.md +5 -0
- package/runtime/agents/database-change-operator/capabilities/migration-report/runner.py +41 -0
- package/runtime/agents/database-change-operator/capabilities/migration-report/workflow.md +5 -0
- package/runtime/agents/database-change-operator/capabilities/plan-migration/capability.yaml +23 -0
- package/runtime/agents/database-change-operator/capabilities/plan-migration/decision-rules.md +6 -0
- package/runtime/agents/database-change-operator/capabilities/plan-migration/runner.py +36 -0
- package/runtime/agents/database-change-operator/capabilities/plan-migration/workflow.md +8 -0
- package/runtime/agents/database-change-operator/capabilities/rollback-migration/capability.yaml +23 -0
- package/runtime/agents/database-change-operator/capabilities/rollback-migration/decision-rules.md +9 -0
- package/runtime/agents/database-change-operator/capabilities/rollback-migration/runner.py +50 -0
- package/runtime/agents/database-change-operator/capabilities/rollback-migration/workflow.md +7 -0
- package/runtime/agents/database-change-operator/capabilities/run-write-script/capability.yaml +23 -0
- package/runtime/agents/database-change-operator/capabilities/run-write-script/decision-rules.md +9 -0
- package/runtime/agents/database-change-operator/capabilities/run-write-script/runner.py +54 -0
- package/runtime/agents/database-change-operator/capabilities/run-write-script/workflow.md +7 -0
- package/runtime/agents/database-change-operator/capabilities/test-write-permissions/capability.yaml +22 -0
- package/runtime/agents/database-change-operator/capabilities/test-write-permissions/decision-rules.md +8 -0
- package/runtime/agents/database-change-operator/capabilities/test-write-permissions/runner.py +51 -0
- package/runtime/agents/database-change-operator/capabilities/test-write-permissions/workflow.md +6 -0
- package/runtime/agents/database-change-operator/capabilities/update-records/capability.yaml +23 -0
- package/runtime/agents/database-change-operator/capabilities/update-records/decision-rules.md +9 -0
- package/runtime/agents/database-change-operator/capabilities/update-records/runner.py +68 -0
- package/runtime/agents/database-change-operator/capabilities/update-records/workflow.md +7 -0
- package/runtime/agents/database-change-operator/capabilities/upsert-records/capability.yaml +23 -0
- package/runtime/agents/database-change-operator/capabilities/upsert-records/decision-rules.md +9 -0
- package/runtime/agents/database-change-operator/capabilities/upsert-records/runner.py +63 -0
- package/runtime/agents/database-change-operator/capabilities/upsert-records/workflow.md +7 -0
- package/runtime/agents/database-change-operator/infra/README.md +3 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/README.md +6 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/cli.py +97 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/database_change_repository.py +581 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/env.example +3 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/integration.yaml +30 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/mcp/README.md +3 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/apply-migration.yaml +8 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/migration-report.yaml +7 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/plan-migration.yaml +8 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/rollback-migration.yaml +8 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/run-write-script.yaml +8 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/test-write-permissions.yaml +7 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/update-records.yaml +8 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/methods/upsert-records.yaml +8 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/models/README.md +3 -0
- package/runtime/agents/database-change-operator/infra/integrations/postgres/tests/test_repository.py +116 -0
- package/runtime/agents/database-change-operator/knowledge/README.md +13 -0
- package/runtime/agents/database-change-operator/knowledge/context.md +9 -0
- package/runtime/agents/database-change-operator/knowledge/policies.yaml +44 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/README.md +7 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/apply-migration.md +24 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/migration-report.md +13 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/plan-migration.md +22 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/rollback-migration.md +21 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/run-write-script.md +23 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/test-write-permissions.md +20 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/update-records.md +24 -0
- package/runtime/agents/database-change-operator/knowledge/prompts/upsert-records.md +23 -0
- package/runtime/agents/database-change-operator/knowledge/system.md +47 -0
- package/runtime/agents/database-change-operator/templates/README.md +8 -0
- package/runtime/agents/database-change-operator/templates/apply-migration-output.md +31 -0
- package/runtime/agents/database-change-operator/templates/migration-report-output.md +14 -0
- package/runtime/agents/database-change-operator/templates/plan-migration-output.md +21 -0
- package/runtime/agents/database-change-operator/templates/rollback-migration-output.md +30 -0
- package/runtime/agents/database-change-operator/templates/run-write-script-output.md +29 -0
- package/runtime/agents/database-change-operator/templates/test-write-permissions-output.md +18 -0
- package/runtime/agents/database-change-operator/templates/update-records-output.md +31 -0
- package/runtime/agents/database-change-operator/templates/upsert-records-output.md +31 -0
- package/runtime/agents/database-change-operator/tests/test_agentic_contracts.py +48 -0
- package/runtime/agents/database-change-operator/tests/test_runners.py +161 -0
- package/runtime/agents/drawio-diagram-builder/AGENTS.md +35 -0
- package/runtime/agents/drawio-diagram-builder/README.md +53 -0
- package/runtime/agents/drawio-diagram-builder/agent.yaml +60 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/_shared/runner_support.py +496 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/analyze-diagram-context/workflow.md +28 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/capability.yaml +21 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/conduct-diagram-interview/workflow.md +21 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/execute-diagram-delivery/workflow.md +27 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-architecture-diagram/workflow.md +24 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/capability.yaml +19 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-drawio-diagram/workflow.md +22 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-erd-diagram/workflow.md +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/generate-flow-diagram/workflow.md +21 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/ingest-diagram-sources/workflow.md +23 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/plan-diagram/workflow.md +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/read-azure-card-context/workflow.md +21 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/refine-drawio-diagram/workflow.md +22 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/capability.yaml +20 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/decision-rules.md +8 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/runner.py +9 -0
- package/runtime/agents/drawio-diagram-builder/capabilities/review-drawio-diagram/workflow.md +28 -0
- package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/drawio_renderer.py +498 -0
- package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/layout_engine.py +17 -0
- package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/source_reader.py +212 -0
- package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/spec_builder.py +282 -0
- package/runtime/agents/drawio-diagram-builder/infra/integrations/drawio/validators.py +203 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/context.md +32 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/diagram-taxonomy.yaml +57 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/policies.yaml +68 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/analyze-diagram-context.md +32 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/conduct-diagram-interview.md +23 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/execute-diagram-delivery.md +27 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-architecture-diagram.md +23 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-drawio-diagram.md +23 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-erd-diagram.md +22 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/generate-flow-diagram.md +23 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/ingest-diagram-sources.md +24 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/plan-diagram.md +22 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/read-azure-card-context.md +21 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/refine-drawio-diagram.md +25 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/prompts/review-drawio-diagram.md +30 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/system.md +52 -0
- package/runtime/agents/drawio-diagram-builder/knowledge/visual-rules.md +12 -0
- package/runtime/agents/drawio-diagram-builder/templates/diagram-spec.schema.json +42 -0
- package/runtime/agents/drawio-diagram-builder/templates/shape-library.yaml +10 -0
- package/runtime/agents/drawio-diagram-builder/templates/style-presets.yaml +28 -0
- package/runtime/agents/drawio-diagram-builder/tests/__init__.py +0 -0
- package/runtime/agents/drawio-diagram-builder/tests/test_refine.py +144 -0
- package/runtime/agents/drawio-diagram-builder/tests/test_renderer.py +208 -0
- package/runtime/agents/drawio-diagram-builder/tests/test_source_reader.py +62 -0
- package/runtime/agents/drawio-diagram-builder/tests/test_specs.py +189 -0
- package/runtime/agents/drawio-diagram-builder/tests/test_validators.py +198 -0
- package/runtime/agents/elasticsearch-log-analyzer/AGENTS.md +28 -0
- package/runtime/agents/elasticsearch-log-analyzer/README.md +53 -0
- package/runtime/agents/elasticsearch-log-analyzer/agent.yaml +54 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/_shared/runner_support.py +123 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/capability.yaml +25 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/decision-rules.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/runner.py +118 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/analyze-service-errors/workflow.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/capability.yaml +22 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/decision-rules.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/runner.py +82 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/correlate-azure-card-logs/workflow.md +5 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/capability.yaml +24 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/decision-rules.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/runner.py +93 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/detect-error-patterns/workflow.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/capability.yaml +23 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/decision-rules.md +7 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/runner.py +66 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/extract-log-samples/workflow.md +5 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/capability.yaml +26 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/decision-rules.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/runner.py +129 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/generate-log-report/workflow.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/capability.yaml +22 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/decision-rules.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/runner.py +50 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/list-log-sources/workflow.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/capability.yaml +35 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/decision-rules.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/runner.py +78 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/search-log-events/workflow.md +7 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/capability.yaml +23 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/decision-rules.md +7 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/runner.py +70 -0
- package/runtime/agents/elasticsearch-log-analyzer/capabilities/trace-request/workflow.md +6 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/README.md +7 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/README.md +37 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/cli.py +96 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/elasticsearch_repository.py +458 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/env.example +5 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/integration.yaml +30 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/mcp/README.md +3 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/aggregate-terms.yaml +8 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/aggregate-timeline.yaml +8 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/count-events.yaml +8 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/describe-source.yaml +7 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/get-event.yaml +7 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/list-sources.yaml +7 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/render-query.yaml +8 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/methods/search-events.yaml +8 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/models/README.md +3 -0
- package/runtime/agents/elasticsearch-log-analyzer/infra/integrations/elasticsearch/tests/test_repository.py +159 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/README.md +4 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/context.md +10 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/policies.yaml +33 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/README.md +3 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/analyze-service-errors.md +27 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/correlate-azure-card-logs.md +30 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/detect-error-patterns.md +26 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/extract-log-samples.md +27 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/generate-log-report.md +29 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/list-log-sources.md +27 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/search-log-events.md +28 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/prompts/trace-request.md +27 -0
- package/runtime/agents/elasticsearch-log-analyzer/knowledge/system.md +42 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/README.md +3 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/analyze-service-errors-output.md +21 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/correlate-azure-card-logs-output.md +24 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/detect-error-patterns-output.md +17 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/extract-log-samples-output.md +10 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/generate-log-report-output.md +35 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/list-log-sources-output.md +21 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/search-log-events-output.md +20 -0
- package/runtime/agents/elasticsearch-log-analyzer/templates/trace-request-output.md +18 -0
- package/runtime/agents/elasticsearch-log-analyzer/tests/test_agentic_contracts.py +45 -0
- package/runtime/agents/elasticsearch-log-analyzer/tests/test_guardrails.py +217 -0
- package/runtime/agents/elasticsearch-log-analyzer/tests/test_runners.py +127 -0
- package/runtime/agents/excel-workbook-builder/AGENTS.md +21 -0
- package/runtime/agents/excel-workbook-builder/README.md +51 -0
- package/runtime/agents/excel-workbook-builder/agent.yaml +68 -0
- package/runtime/agents/excel-workbook-builder/capabilities/_shared/advanced_ops.py +351 -0
- package/runtime/agents/excel-workbook-builder/capabilities/_shared/template_binding.py +40 -0
- package/runtime/agents/excel-workbook-builder/capabilities/_shared/template_ops.py +251 -0
- package/runtime/agents/excel-workbook-builder/capabilities/_shared/workbook_support.py +963 -0
- package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/add-formulas-and-validations/workflow.md +26 -0
- package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/compare-template-versions/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-adjustment-suggestions/workflow.md +24 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-pivot-summary/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-summary-dashboard/workflow.md +25 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template/workflow.md +26 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/create-template-version/workflow.md +27 -0
- package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/deprecate-template-version/workflow.md +21 -0
- package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/explain-reconciliation-differences/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/export-workbook-artifacts/workflow.md +26 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-reconciliation-report/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/runner.py +60 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-template-input-file/workflow.md +22 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/runner.py +46 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-data/workflow.md +27 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/runner.py +62 -0
- package/runtime/agents/excel-workbook-builder/capabilities/generate-workbook-from-template/workflow.md +25 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/runner.py +47 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-source-document/workflow.md +25 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/runner.py +47 -0
- package/runtime/agents/excel-workbook-builder/capabilities/ingest-workbook-data/workflow.md +22 -0
- package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/runner.py +70 -0
- package/runtime/agents/excel-workbook-builder/capabilities/inspect-template/workflow.md +22 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/runner.py +57 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-template-versions/workflow.md +19 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-templates/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-templates/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-templates/runner.py +44 -0
- package/runtime/agents/excel-workbook-builder/capabilities/list-templates/workflow.md +21 -0
- package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/runner.py +56 -0
- package/runtime/agents/excel-workbook-builder/capabilities/map-source-to-template/workflow.md +27 -0
- package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/runner.py +47 -0
- package/runtime/agents/excel-workbook-builder/capabilities/normalize-tabular-data/workflow.md +25 -0
- package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/plan-workbook/workflow.md +26 -0
- package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/promote-template-version/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/runner.py +164 -0
- package/runtime/agents/excel-workbook-builder/capabilities/reconcile-datasets/workflow.md +27 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-generated-workbook/workflow.md +25 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-template/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-template/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-template/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refine-template/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/refresh-workbook-data/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/register-template/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/register-template/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/register-template/runner.py +80 -0
- package/runtime/agents/excel-workbook-builder/capabilities/register-template/workflow.md +24 -0
- package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/runner.py +44 -0
- package/runtime/agents/excel-workbook-builder/capabilities/render-workbook-preview/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/runner.py +92 -0
- package/runtime/agents/excel-workbook-builder/capabilities/request-database-data/workflow.md +29 -0
- package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/runner.py +72 -0
- package/runtime/agents/excel-workbook-builder/capabilities/review-generated-workbook/workflow.md +25 -0
- package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/run-workbook-operation/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/scan-formula-errors/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/scan-formula-errors/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/scan-formula-errors/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/capability.yaml +15 -0
- package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/update-existing-workbook/workflow.md +23 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/runner.py +9 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-reconciliation-rules/workflow.md +25 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/capability.yaml +14 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/decision-rules.md +8 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/runner.py +98 -0
- package/runtime/agents/excel-workbook-builder/capabilities/validate-source-data/workflow.md +24 -0
- package/runtime/agents/excel-workbook-builder/infra/README.md +4 -0
- package/runtime/agents/excel-workbook-builder/infra/integrations/database-delegator/README.md +5 -0
- package/runtime/agents/excel-workbook-builder/infra/integrations/document-reader/README.md +5 -0
- package/runtime/agents/excel-workbook-builder/infra/integrations/file-normalizer/README.md +5 -0
- package/runtime/agents/excel-workbook-builder/infra/integrations/workbook-renderer/README.md +5 -0
- package/runtime/agents/excel-workbook-builder/knowledge/context.md +27 -0
- package/runtime/agents/excel-workbook-builder/knowledge/formula-rules.md +9 -0
- package/runtime/agents/excel-workbook-builder/knowledge/policies.yaml +30 -0
- package/runtime/agents/excel-workbook-builder/knowledge/reconciliation-rules.md +9 -0
- package/runtime/agents/excel-workbook-builder/knowledge/runtime.md +67 -0
- package/runtime/agents/excel-workbook-builder/knowledge/source-routing.md +9 -0
- package/runtime/agents/excel-workbook-builder/knowledge/system.md +47 -0
- package/runtime/agents/excel-workbook-builder/knowledge/template-catalog.yaml +3 -0
- package/runtime/agents/excel-workbook-builder/templates/README.md +16 -0
- package/runtime/agents/excel-workbook-builder/tests/fixtures/plan-workbook-brief.json +12 -0
- package/runtime/agents/excel-workbook-builder/tests/test_template_lifecycle.py +258 -0
- package/runtime/agents/figma-ui-ux-product-designer/AGENTS.md +23 -0
- package/runtime/agents/figma-ui-ux-product-designer/README.md +80 -0
- package/runtime/agents/figma-ui-ux-product-designer/agent.yaml +106 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/_shared/design_support.py +913 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/_shared/figma_setup.py +264 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/capability.yaml +17 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-existing-figma-project/workflow.md +34 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/capability.yaml +14 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/analyze-product-context/workflow.md +31 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/capability.yaml +15 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/apply-design-feedback/workflow.md +33 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/capability.yaml +18 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/capture-url-to-figma/workflow.md +33 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/capability.yaml +14 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-interview/workflow.md +38 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/capability.yaml +14 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/conduct-design-review-session/workflow.md +29 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/capability.yaml +17 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-design-system-foundation/workflow.md +33 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/capability.yaml +17 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-figma-project/workflow.md +34 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/capability.yaml +17 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-mobile-app-design/workflow.md +40 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/capability.yaml +17 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/create-web-app-design/workflow.md +38 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/capability.yaml +14 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/facelift-existing-product/workflow.md +32 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/capability.yaml +14 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-dev-handoff/workflow.md +27 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/capability.yaml +17 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/generate-user-journey-diagram/workflow.md +31 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/capability.yaml +15 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/ingest-design-source/workflow.md +30 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/capability.yaml +18 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/read-azure-card-for-design/workflow.md +34 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/capability.yaml +14 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/recreate-legacy-design/workflow.md +32 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/capability.yaml +14 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/review-design-quality/workflow.md +35 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/capability.yaml +25 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/runner.py +9 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/setup-figma-mcp-bridge/workflow.md +33 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/capability.yaml +15 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/triage-design-feedback/workflow.md +34 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/capability.yaml +18 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/decision-rules.md +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/runner.py +8 -0
- package/runtime/agents/figma-ui-ux-product-designer/capabilities/update-existing-figma-design/workflow.md +34 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/README.md +11 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/bin/figma-codex-bridge +3 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/bin/figma-codex-bridge.cmd +3 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/bin/figma-codex-bridge.py +262 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_mcp_adapter.py +95 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_mode.py +72 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_models.py +71 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_operation_log.py +43 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/figma_repository.py +29 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/integration.yaml +39 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/capture-url-to-figma.yaml +5 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/create-new-file.yaml +5 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/create-screen.yaml +5 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/export-review-context.yaml +4 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/generate-diagram.yaml +12 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/inspect-file.yaml +4 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/search-design-system.yaml +4 -0
- package/runtime/agents/figma-ui-ux-product-designer/infra/integrations/figma/methods/update-screen.yaml +5 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/accessibility-rules.md +47 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/context.md +27 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/depth-scope-rules.md +49 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/design-quality-checklist.md +13 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/direct-mode-requirements.md +29 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/feedback-rubric.md +57 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/figma-mcp-setup.md +79 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/figma-workflow.md +40 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/policies.yaml +61 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/system.md +48 -0
- package/runtime/agents/figma-ui-ux-product-designer/knowledge/ux-patterns.md +62 -0
- package/runtime/agents/figma-ui-ux-product-designer/templates/design-brief.md +33 -0
- package/runtime/agents/figma-ui-ux-product-designer/templates/design-quality-report.md +25 -0
- package/runtime/agents/figma-ui-ux-product-designer/templates/design-system-spec.md +51 -0
- package/runtime/agents/figma-ui-ux-product-designer/templates/dev-handoff.md +38 -0
- package/runtime/agents/figma-ui-ux-product-designer/templates/figma-action-plan.md +32 -0
- package/runtime/agents/figma-ui-ux-product-designer/templates/screen-inventory.md +24 -0
- package/runtime/agents/figma-ui-ux-product-designer/tests/test_figma_designer.py +324 -0
- package/runtime/agents/knowledge-generator/AGENTS.md +34 -0
- package/runtime/agents/knowledge-generator/README.md +35 -0
- package/runtime/agents/knowledge-generator/agent.yaml +45 -0
- package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/capability.yaml +32 -0
- package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/decision-rules.md +8 -0
- package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/runner.py +44 -0
- package/runtime/agents/knowledge-generator/capabilities/generate-knowledge/workflow.md +8 -0
- package/runtime/agents/knowledge-generator/capabilities/inspect-source/capability.yaml +23 -0
- package/runtime/agents/knowledge-generator/capabilities/inspect-source/decision-rules.md +8 -0
- package/runtime/agents/knowledge-generator/capabilities/inspect-source/runner.py +38 -0
- package/runtime/agents/knowledge-generator/capabilities/inspect-source/workflow.md +8 -0
- package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/capability.yaml +23 -0
- package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/decision-rules.md +8 -0
- package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/runner.py +22 -0
- package/runtime/agents/knowledge-generator/capabilities/list-knowledge-profiles/workflow.md +5 -0
- package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/capability.yaml +23 -0
- package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/decision-rules.md +8 -0
- package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/runner.py +28 -0
- package/runtime/agents/knowledge-generator/capabilities/validate-knowledge/workflow.md +7 -0
- package/runtime/agents/knowledge-generator/infra/integrations/local-source/knowledge_repository.py +1147 -0
- package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/generate-knowledge.yaml +5 -0
- package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/inspect-source.yaml +5 -0
- package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/list-profiles.yaml +5 -0
- package/runtime/agents/knowledge-generator/infra/integrations/local-source/methods/validate-knowledge.yaml +5 -0
- package/runtime/agents/knowledge-generator/knowledge/context.md +27 -0
- package/runtime/agents/knowledge-generator/knowledge/policies.yaml +65 -0
- package/runtime/agents/knowledge-generator/knowledge/prompts/generate-knowledge.md +46 -0
- package/runtime/agents/knowledge-generator/knowledge/prompts/inspect-source.md +40 -0
- package/runtime/agents/knowledge-generator/knowledge/prompts/list-knowledge-profiles.md +28 -0
- package/runtime/agents/knowledge-generator/knowledge/prompts/validate-knowledge.md +27 -0
- package/runtime/agents/knowledge-generator/knowledge/system.md +44 -0
- package/runtime/agents/knowledge-generator/templates/coverage-assessment.md.tmpl +14 -0
- package/runtime/agents/knowledge-generator/templates/domain.schema.json +28 -0
- package/runtime/agents/knowledge-generator/templates/integration.schema.json +33 -0
- package/runtime/agents/knowledge-generator/templates/operations.schema.json +30 -0
- package/runtime/agents/knowledge-generator/tests/test_runners.py +460 -0
- package/runtime/agents/n1-support-agent/AGENTS.md +10 -0
- package/runtime/agents/n1-support-agent/README.md +65 -0
- package/runtime/agents/n1-support-agent/agent.yaml +71 -0
- package/runtime/agents/n1-support-agent/capabilities/_shared/domain_knowledge.py +262 -0
- package/runtime/agents/n1-support-agent/capabilities/_shared/runner_support.py +730 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/capability.yaml +23 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/runner.py +325 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-bpo-proposal/workflow.md +21 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/capability.yaml +15 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/decision-rules.md +11 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/runner.py +64 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-cognito-user/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/capability.yaml +15 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/runner.py +65 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-onboarding-status/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/capability.yaml +15 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/runner.py +65 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-proposal-status/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/capability.yaml +19 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/runner.py +351 -0
- package/runtime/agents/n1-support-agent/capabilities/analyze-restrictive-base/workflow.md +28 -0
- package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/capability.yaml +19 -0
- package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/runner.py +70 -0
- package/runtime/agents/n1-support-agent/capabilities/collect-customer-logs/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/capability.yaml +15 -0
- package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/runner.py +72 -0
- package/runtime/agents/n1-support-agent/capabilities/decide-n1-outcome/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/capability.yaml +25 -0
- package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/decision-rules.md +7 -0
- package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/runner.py +121 -0
- package/runtime/agents/n1-support-agent/capabilities/execute-n1-card-runbook/workflow.md +15 -0
- package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/capability.yaml +15 -0
- package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/runner.py +73 -0
- package/runtime/agents/n1-support-agent/capabilities/extract-card-entities/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/capability.yaml +15 -0
- package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/runner.py +74 -0
- package/runtime/agents/n1-support-agent/capabilities/generate-n1-artifacts/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/capability.yaml +19 -0
- package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/runner.py +71 -0
- package/runtime/agents/n1-support-agent/capabilities/route-customer-symptom/workflow.md +23 -0
- package/runtime/agents/n1-support-agent/capabilities/update-azure-card/capability.yaml +20 -0
- package/runtime/agents/n1-support-agent/capabilities/update-azure-card/decision-rules.md +12 -0
- package/runtime/agents/n1-support-agent/capabilities/update-azure-card/runner.py +71 -0
- package/runtime/agents/n1-support-agent/capabilities/update-azure-card/workflow.md +4 -0
- package/runtime/agents/n1-support-agent/infra/README.md +7 -0
- package/runtime/agents/n1-support-agent/knowledge/README.md +14 -0
- package/runtime/agents/n1-support-agent/knowledge/context.md +19 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/README.md +23 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/contracts/n1-support-triage-contract.json +40 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/index.json +42 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/playbooks/global-support-diagnostics.json +28 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/card-rules.json +43 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/invoice-transaction-rules.json +43 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/login-account-rules.json +37 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/onboarding-rules.json +70 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/public-agency-margin-rules.json +43 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/rules/restrictive-base-rules.json +43 -0
- package/runtime/agents/n1-support-agent/knowledge/domains/customer-support/symptom-routing.json +107 -0
- package/runtime/agents/n1-support-agent/knowledge/policies.yaml +56 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/README.md +4 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-bpo-proposal.md +29 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-cognito-user.md +41 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-onboarding-status.md +42 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-proposal-status.md +41 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/analyze-restrictive-base.md +15 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/collect-customer-logs.md +43 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/decide-n1-outcome.md +41 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/execute-n1-card-runbook.md +6 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/extract-card-entities.md +43 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/generate-n1-artifacts.md +39 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/route-customer-symptom.md +10 -0
- package/runtime/agents/n1-support-agent/knowledge/prompts/update-azure-card.md +40 -0
- package/runtime/agents/n1-support-agent/knowledge/runbooks/customer-onboarding-triage.md +38 -0
- package/runtime/agents/n1-support-agent/knowledge/system.md +50 -0
- package/runtime/agents/n1-support-agent/templates/README.md +3 -0
- package/runtime/agents/n1-support-agent/templates/n1-card-runbook-output.md +13 -0
- package/runtime/agents/n1-support-agent/tests/test_agentic_contracts.py +92 -0
- package/runtime/agents/n1-support-agent/tests/test_runners.py +564 -0
- package/runtime/agents/n2-support-agent/AGENTS.md +14 -0
- package/runtime/agents/n2-support-agent/README.md +60 -0
- package/runtime/agents/n2-support-agent/agent.yaml +75 -0
- package/runtime/agents/n2-support-agent/capabilities/_shared/auxiliary_runner.py +116 -0
- package/runtime/agents/n2-support-agent/capabilities/_shared/azure_workflow.py +132 -0
- package/runtime/agents/n2-support-agent/capabilities/_shared/runner_support.py +1030 -0
- package/runtime/agents/n2-support-agent/capabilities/_shared/specialist_orchestration.py +172 -0
- package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/analyze-code-root-cause/workflow.md +16 -0
- package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/build-reproduction-strategy/workflow.md +16 -0
- package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/classify-root-cause/workflow.md +15 -0
- package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/correlate-runtime-evidence/workflow.md +15 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/capability.yaml +17 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/runner.py +39 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-n2-investigation/workflow.md +11 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/execute-specialist-validation/workflow.md +31 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-card-comment/workflow.md +15 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/capability.yaml +17 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/runner.py +44 -0
- package/runtime/agents/n2-support-agent/capabilities/generate-patch-plan/workflow.md +9 -0
- package/runtime/agents/n2-support-agent/capabilities/load-support-context/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/load-support-context/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/load-support-context/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/load-support-context/workflow.md +16 -0
- package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/rank-code-findings/workflow.md +16 -0
- package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/review-patch-plan-readiness/workflow.md +16 -0
- package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/select-specialist-checks/workflow.md +15 -0
- package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/update-azure-workflow/workflow.md +15 -0
- package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/update-n2-card-workflow/workflow.md +32 -0
- package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/capability.yaml +15 -0
- package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/decision-rules.md +12 -0
- package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/runner.py +12 -0
- package/runtime/agents/n2-support-agent/capabilities/validate-n1-handoff/workflow.md +14 -0
- package/runtime/agents/n2-support-agent/infra/README.md +7 -0
- package/runtime/agents/n2-support-agent/knowledge/context.md +15 -0
- package/runtime/agents/n2-support-agent/knowledge/policies.yaml +43 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/README.md +3 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/analyze-code-root-cause.md +38 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/build-reproduction-strategy.md +36 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/classify-root-cause.md +38 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/correlate-runtime-evidence.md +35 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/execute-n2-investigation.md +40 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/execute-specialist-validation.md +41 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/generate-card-comment.md +35 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/generate-patch-plan.md +40 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/load-support-context.md +38 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/rank-code-findings.md +34 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/review-patch-plan-readiness.md +36 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/select-specialist-checks.md +36 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/update-azure-workflow.md +37 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/update-n2-card-workflow.md +37 -0
- package/runtime/agents/n2-support-agent/knowledge/prompts/validate-n1-handoff.md +37 -0
- package/runtime/agents/n2-support-agent/knowledge/runbooks/n2-root-cause-analysis.md +20 -0
- package/runtime/agents/n2-support-agent/knowledge/runbooks/root-cause-taxonomy.md +32 -0
- package/runtime/agents/n2-support-agent/knowledge/runbooks/specialist-validation-catalog.md +44 -0
- package/runtime/agents/n2-support-agent/knowledge/system.md +46 -0
- package/runtime/agents/n2-support-agent/templates/README.md +6 -0
- package/runtime/agents/n2-support-agent/tests/test_agentic_contracts.py +68 -0
- package/runtime/agents/n2-support-agent/tests/test_runners.py +569 -0
- package/runtime/agents/postgres-data-analyzer/AGENTS.md +28 -0
- package/runtime/agents/postgres-data-analyzer/README.md +58 -0
- package/runtime/agents/postgres-data-analyzer/agent.yaml +92 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/_shared/runner_support.py +189 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/_shared/strong_runner.py +172 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/capability.yaml +23 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/runner.py +41 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-cpf-column/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/analyze-query-result/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/build-analysis-query/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/compare-tables/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/runner.py +56 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/describe-table/workflow.md +5 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-data-quality-issues/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/runner.py +34 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/detect-sensitive-columns/workflow.md +5 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/estimate-table-size/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explain-query-plan/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/explore-database-domain/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/capability.yaml +24 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/runner.py +86 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-data-report/workflow.md +5 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/generate-erd-report/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-databases/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-relationships/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/capability.yaml +21 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/runner.py +36 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-schemas/workflow.md +4 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/capability.yaml +21 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/runner.py +35 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/list-tables/workflow.md +4 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/runner.py +41 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/profile-table/workflow.md +5 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/runner.py +40 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/run-readonly-query/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/sample-table/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-columns/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/search-tables/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/suggest-joins/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/capability.yaml +21 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/runner.py +34 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/test-connection/workflow.md +5 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/trace-record/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/capability.yaml +22 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/decision-rules.md +10 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/runner.py +15 -0
- package/runtime/agents/postgres-data-analyzer/capabilities/validate-readonly-query/workflow.md +6 -0
- package/runtime/agents/postgres-data-analyzer/infra/README.md +3 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/README.md +14 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/cli.py +80 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/env.example +2 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/integration.yaml +29 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/mcp/README.md +3 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/analyze-cpf-column.yaml +16 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/analyze-query-result.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/build-analysis-query.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/compare-tables.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/describe-table.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/detect-data-quality-issues.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/detect-sensitive-columns.yaml +7 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/estimate-table-size.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/explain-query-plan.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/explore-database-domain.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/generate-data-report.yaml +19 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/generate-erd-report.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-databases.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-relationships.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-schemas.yaml +7 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/list-tables.yaml +7 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/profile-table.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/run-readonly-query.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/sample-table.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/search-columns.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/search-tables.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/suggest-joins.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/test-connection.yaml +7 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/trace-record.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/methods/validate-readonly-query.yaml +8 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/models/README.md +3 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/postgres_repository.py +619 -0
- package/runtime/agents/postgres-data-analyzer/infra/integrations/postgres/tests/test_repository.py +88 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/README.md +3 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/context.md +9 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/policies.yaml +82 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/README.md +3 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/analyze-cpf-column.md +45 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/analyze-query-result.md +35 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/build-analysis-query.md +39 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/compare-tables.md +37 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/describe-table.md +35 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/detect-data-quality-issues.md +33 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/detect-sensitive-columns.md +32 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/estimate-table-size.md +33 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/explain-query-plan.md +37 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/explore-database-domain.md +35 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/generate-data-report.md +54 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/generate-erd-report.md +34 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-databases.md +28 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-relationships.md +31 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-schemas.md +29 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/list-tables.md +32 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/profile-table.md +36 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/run-readonly-query.md +44 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/sample-table.md +44 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/search-columns.md +32 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/search-tables.md +29 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/suggest-joins.md +32 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/test-connection.md +34 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/trace-record.md +43 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/prompts/validate-readonly-query.md +47 -0
- package/runtime/agents/postgres-data-analyzer/knowledge/system.md +48 -0
- package/runtime/agents/postgres-data-analyzer/templates/README.md +3 -0
- package/runtime/agents/postgres-data-analyzer/templates/analyze-cpf-column-output.md +21 -0
- package/runtime/agents/postgres-data-analyzer/templates/analyze-query-result-output.md +14 -0
- package/runtime/agents/postgres-data-analyzer/templates/build-analysis-query-output.md +12 -0
- package/runtime/agents/postgres-data-analyzer/templates/compare-tables-output.md +25 -0
- package/runtime/agents/postgres-data-analyzer/templates/describe-table-output.md +25 -0
- package/runtime/agents/postgres-data-analyzer/templates/detect-data-quality-issues-output.md +11 -0
- package/runtime/agents/postgres-data-analyzer/templates/detect-sensitive-columns-output.md +13 -0
- package/runtime/agents/postgres-data-analyzer/templates/estimate-table-size-output.md +12 -0
- package/runtime/agents/postgres-data-analyzer/templates/explain-query-plan-output.md +15 -0
- package/runtime/agents/postgres-data-analyzer/templates/explore-database-domain-output.md +19 -0
- package/runtime/agents/postgres-data-analyzer/templates/generate-data-report-output.md +34 -0
- package/runtime/agents/postgres-data-analyzer/templates/generate-erd-report-output.md +10 -0
- package/runtime/agents/postgres-data-analyzer/templates/list-databases-output.md +10 -0
- package/runtime/agents/postgres-data-analyzer/templates/list-relationships-output.md +10 -0
- package/runtime/agents/postgres-data-analyzer/templates/list-schemas-output.md +10 -0
- package/runtime/agents/postgres-data-analyzer/templates/list-tables-output.md +11 -0
- package/runtime/agents/postgres-data-analyzer/templates/profile-table-output.md +18 -0
- package/runtime/agents/postgres-data-analyzer/templates/run-readonly-query-output.md +11 -0
- package/runtime/agents/postgres-data-analyzer/templates/sample-table-output.md +12 -0
- package/runtime/agents/postgres-data-analyzer/templates/search-columns-output.md +11 -0
- package/runtime/agents/postgres-data-analyzer/templates/search-tables-output.md +11 -0
- package/runtime/agents/postgres-data-analyzer/templates/suggest-joins-output.md +11 -0
- package/runtime/agents/postgres-data-analyzer/templates/test-connection-output.md +8 -0
- package/runtime/agents/postgres-data-analyzer/templates/trace-record-output.md +17 -0
- package/runtime/agents/postgres-data-analyzer/templates/validate-readonly-query-output.md +11 -0
- package/runtime/agents/postgres-data-analyzer/tests/test_runners.py +435 -0
- package/runtime/agents/presentation-deck-builder/AGENTS.md +31 -0
- package/runtime/agents/presentation-deck-builder/README.md +42 -0
- package/runtime/agents/presentation-deck-builder/agent.yaml +55 -0
- package/runtime/agents/presentation-deck-builder/capabilities/_shared/template_support.py +372 -0
- package/runtime/agents/presentation-deck-builder/capabilities/compare-template-versions/capability.yaml +18 -0
- package/runtime/agents/presentation-deck-builder/capabilities/compare-template-versions/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/compare-template-versions/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/create-template/capability.yaml +18 -0
- package/runtime/agents/presentation-deck-builder/capabilities/create-template/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/create-template/workflow.md +6 -0
- package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/capability.yaml +19 -0
- package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/runner.py +101 -0
- package/runtime/agents/presentation-deck-builder/capabilities/create-template-version/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/capability.yaml +19 -0
- package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/runner.py +102 -0
- package/runtime/agents/presentation-deck-builder/capabilities/deprecate-template-version/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/capability.yaml +19 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/runner.py +483 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-deck-from-template/workflow.md +6 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/capability.yaml +23 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/runner.py +57 -0
- package/runtime/agents/presentation-deck-builder/capabilities/generate-template-input-file/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/ingest-source-document/capability.yaml +21 -0
- package/runtime/agents/presentation-deck-builder/capabilities/ingest-source-document/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/ingest-source-document/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/inspect-template/capability.yaml +18 -0
- package/runtime/agents/presentation-deck-builder/capabilities/inspect-template/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/inspect-template/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/capability.yaml +21 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/runner.py +42 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-template-versions/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-templates/capability.yaml +20 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-templates/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-templates/runner.py +37 -0
- package/runtime/agents/presentation-deck-builder/capabilities/list-templates/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/plan-deck/capability.yaml +18 -0
- package/runtime/agents/presentation-deck-builder/capabilities/plan-deck/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/plan-deck/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/capability.yaml +19 -0
- package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/runner.py +89 -0
- package/runtime/agents/presentation-deck-builder/capabilities/promote-template-version/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/refine-generated-deck/capability.yaml +21 -0
- package/runtime/agents/presentation-deck-builder/capabilities/refine-generated-deck/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/refine-generated-deck/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/refine-template/capability.yaml +19 -0
- package/runtime/agents/presentation-deck-builder/capabilities/refine-template/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/refine-template/runner.py +136 -0
- package/runtime/agents/presentation-deck-builder/capabilities/refine-template/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/capabilities/register-template/capability.yaml +28 -0
- package/runtime/agents/presentation-deck-builder/capabilities/register-template/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/register-template/runner.py +80 -0
- package/runtime/agents/presentation-deck-builder/capabilities/register-template/workflow.md +8 -0
- package/runtime/agents/presentation-deck-builder/capabilities/review-generated-deck/capability.yaml +18 -0
- package/runtime/agents/presentation-deck-builder/capabilities/review-generated-deck/decision-rules.md +12 -0
- package/runtime/agents/presentation-deck-builder/capabilities/review-generated-deck/workflow.md +5 -0
- package/runtime/agents/presentation-deck-builder/infra/README.md +4 -0
- package/runtime/agents/presentation-deck-builder/infra/integrations/document-reader/README.md +3 -0
- package/runtime/agents/presentation-deck-builder/infra/integrations/presentation-renderer/README.md +3 -0
- package/runtime/agents/presentation-deck-builder/knowledge/context.md +37 -0
- package/runtime/agents/presentation-deck-builder/knowledge/output-templates/deck-plan.md +47 -0
- package/runtime/agents/presentation-deck-builder/knowledge/output-templates/deck-review.md +40 -0
- package/runtime/agents/presentation-deck-builder/knowledge/output-templates/extracted-content.md +38 -0
- package/runtime/agents/presentation-deck-builder/knowledge/output-templates/template-inspection.md +33 -0
- package/runtime/agents/presentation-deck-builder/knowledge/output-templates/template-version-comparison.md +38 -0
- package/runtime/agents/presentation-deck-builder/knowledge/policies.yaml +47 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/compare-template-versions.md +39 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/create-template-version.md +37 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/create-template.md +35 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/deprecate-template-version.md +36 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/generate-deck-from-template.md +48 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/generate-template-input-file.md +30 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/ingest-source-document.md +42 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/inspect-template.md +34 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/list-template-versions.md +33 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/list-templates.md +29 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/plan-deck.md +45 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/promote-template-version.md +36 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/refine-generated-deck.md +34 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/refine-template.md +39 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/register-template.md +43 -0
- package/runtime/agents/presentation-deck-builder/knowledge/prompts/review-generated-deck.md +43 -0
- package/runtime/agents/presentation-deck-builder/knowledge/runtime.md +39 -0
- package/runtime/agents/presentation-deck-builder/knowledge/system.md +47 -0
- package/runtime/agents/presentation-deck-builder/knowledge/template-catalog.yaml +3 -0
- package/runtime/agents/presentation-deck-builder/knowledge/template-routing.md +6 -0
- package/runtime/agents/presentation-deck-builder/templates/README.md +6 -0
- package/runtime/agents/presentation-deck-builder/tests/test_runners.py +258 -0
- package/runtime/agents/software-specification-analyst/AGENTS.md +49 -0
- package/runtime/agents/software-specification-analyst/README.md +92 -0
- package/runtime/agents/software-specification-analyst/agent.yaml +55 -0
- package/runtime/agents/software-specification-analyst/capabilities/analyze-multiple-projects/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/analyze-multiple-projects/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/analyze-multiple-projects/workflow.md +7 -0
- package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/capability.yaml +32 -0
- package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/runner.py +659 -0
- package/runtime/agents/software-specification-analyst/capabilities/analyze-project-context/workflow.md +11 -0
- package/runtime/agents/software-specification-analyst/capabilities/build-requirements-traceability/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/build-requirements-traceability/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/build-requirements-traceability/workflow.md +7 -0
- package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/capability.yaml +26 -0
- package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/runner.py +253 -0
- package/runtime/agents/software-specification-analyst/capabilities/conduct-requirements-interview/workflow.md +8 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-analysis-dossier/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-analysis-dossier/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-analysis-dossier/workflow.md +6 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/capability.yaml +42 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/runner.py +559 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-complete-spec/workflow.md +13 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-discovery-notes/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-discovery-notes/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-discovery-notes/workflow.md +6 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/capability.yaml +28 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/runner.py +370 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-final-spec-from-analysis/workflow.md +6 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-functional-spec/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-functional-spec/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-functional-spec/workflow.md +8 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-technical-spec/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-technical-spec/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/create-technical-spec/workflow.md +8 -0
- package/runtime/agents/software-specification-analyst/capabilities/identify-business-questions/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/identify-business-questions/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/identify-business-questions/workflow.md +6 -0
- package/runtime/agents/software-specification-analyst/capabilities/identify-critical-points/capability.yaml +22 -0
- package/runtime/agents/software-specification-analyst/capabilities/identify-critical-points/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/identify-critical-points/workflow.md +6 -0
- package/runtime/agents/software-specification-analyst/capabilities/map-user-journeys/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/map-user-journeys/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/map-user-journeys/workflow.md +7 -0
- package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/capability.yaml +26 -0
- package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/runner.py +216 -0
- package/runtime/agents/software-specification-analyst/capabilities/refine-analysis-with-feedback/workflow.md +6 -0
- package/runtime/agents/software-specification-analyst/capabilities/review-spec-completeness/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/review-spec-completeness/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/review-spec-completeness/workflow.md +7 -0
- package/runtime/agents/software-specification-analyst/capabilities/write-user-stories/capability.yaml +21 -0
- package/runtime/agents/software-specification-analyst/capabilities/write-user-stories/decision-rules.md +12 -0
- package/runtime/agents/software-specification-analyst/capabilities/write-user-stories/workflow.md +7 -0
- package/runtime/agents/software-specification-analyst/infra/README.md +7 -0
- package/runtime/agents/software-specification-analyst/knowledge/context.md +122 -0
- package/runtime/agents/software-specification-analyst/knowledge/policies.yaml +136 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/analyze-multiple-projects.md +40 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/analyze-project-context.md +69 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/build-requirements-traceability.md +33 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/conduct-requirements-interview.md +76 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/create-analysis-dossier.md +38 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/create-complete-spec.md +46 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/create-discovery-notes.md +34 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/create-final-spec-from-analysis.md +51 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/create-functional-spec.md +35 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/create-technical-spec.md +39 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/identify-business-questions.md +36 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/identify-critical-points.md +37 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/map-user-journeys.md +34 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/refine-analysis-with-feedback.md +41 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/review-spec-completeness.md +44 -0
- package/runtime/agents/software-specification-analyst/knowledge/prompts/write-user-stories.md +39 -0
- package/runtime/agents/software-specification-analyst/knowledge/system.md +65 -0
- package/runtime/agents/software-specification-analyst/templates/analysis-context-output.md +11 -0
- package/runtime/agents/software-specification-analyst/templates/analysis-dossier-output.md +13 -0
- package/runtime/agents/software-specification-analyst/templates/business-questions-output.md +11 -0
- package/runtime/agents/software-specification-analyst/templates/complete-spec-output.md +56 -0
- package/runtime/agents/software-specification-analyst/templates/critical-points-output.md +4 -0
- package/runtime/agents/software-specification-analyst/templates/discovery-notes-output.md +11 -0
- package/runtime/agents/software-specification-analyst/templates/functional-spec-output.md +23 -0
- package/runtime/agents/software-specification-analyst/templates/interview-guide-output.md +15 -0
- package/runtime/agents/software-specification-analyst/templates/journey-flow-output.md +16 -0
- package/runtime/agents/software-specification-analyst/templates/multi-project-analysis-output.md +11 -0
- package/runtime/agents/software-specification-analyst/templates/refined-analysis-output.md +11 -0
- package/runtime/agents/software-specification-analyst/templates/spec-review-output.md +17 -0
- package/runtime/agents/software-specification-analyst/templates/technical-spec-output.md +25 -0
- package/runtime/agents/software-specification-analyst/templates/traceability-matrix-output.md +5 -0
- package/runtime/agents/software-specification-analyst/templates/user-stories-output.md +21 -0
- package/runtime/agents/software-specification-analyst/tests/__init__.py +0 -0
- package/runtime/agents/software-specification-analyst/tests/test_analyze_project_context.py +132 -0
- package/runtime/agents/software-specification-analyst/tests/test_create_complete_spec.py +199 -0
- package/runtime/agents/software-specification-analyst/tests/test_create_final_spec.py +108 -0
- package/runtime/agents/sqlserver-change-operator/AGENTS.md +33 -0
- package/runtime/agents/sqlserver-change-operator/README.md +40 -0
- package/runtime/agents/sqlserver-change-operator/agent.yaml +66 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/_shared/runner_support.py +253 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/apply-migration/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/backup-records/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/change-report/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/change-report/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/change-report/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/change-report/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/create-object/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/create-object/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/create-object/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/create-object/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/delete-records/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/plan-migration/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/rollback-migration/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/run-write-script/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/test-write-permissions/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/update-records/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/update-records/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/update-records/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/update-records/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/capability.yaml +23 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/runner.py +15 -0
- package/runtime/agents/sqlserver-change-operator/capabilities/upsert-records/workflow.md +7 -0
- package/runtime/agents/sqlserver-change-operator/infra/README.md +3 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/README.md +3 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/mcp/README.md +3 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/apply-migration.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/backup-records.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/change-report.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/create-object.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/delete-records.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/plan-migration.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/rollback-migration.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/run-write-script.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/test-write-permissions.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/update-records.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/methods/upsert-records.yaml +8 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/models/README.md +3 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/sqlserver_change_repository.py +598 -0
- package/runtime/agents/sqlserver-change-operator/infra/integrations/sqlserver/tests/test_repository.py +152 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/README.md +3 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/context.md +9 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/policies.yaml +33 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/README.md +3 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/apply-migration.md +24 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/backup-records.md +16 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/change-report.md +14 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/create-object.md +15 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/delete-records.md +17 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/plan-migration.md +23 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/rollback-migration.md +15 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/run-write-script.md +16 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/test-write-permissions.md +15 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/update-records.md +21 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/prompts/upsert-records.md +17 -0
- package/runtime/agents/sqlserver-change-operator/knowledge/system.md +58 -0
- package/runtime/agents/sqlserver-change-operator/templates/README.md +3 -0
- package/runtime/agents/sqlserver-change-operator/templates/apply-migration-output.md +20 -0
- package/runtime/agents/sqlserver-change-operator/templates/backup-records-output.md +8 -0
- package/runtime/agents/sqlserver-change-operator/templates/change-report-output.md +9 -0
- package/runtime/agents/sqlserver-change-operator/templates/create-object-output.md +20 -0
- package/runtime/agents/sqlserver-change-operator/templates/delete-records-output.md +23 -0
- package/runtime/agents/sqlserver-change-operator/templates/plan-migration-output.md +20 -0
- package/runtime/agents/sqlserver-change-operator/templates/rollback-migration-output.md +20 -0
- package/runtime/agents/sqlserver-change-operator/templates/run-write-script-output.md +20 -0
- package/runtime/agents/sqlserver-change-operator/templates/test-write-permissions-output.md +8 -0
- package/runtime/agents/sqlserver-change-operator/templates/update-records-output.md +23 -0
- package/runtime/agents/sqlserver-change-operator/templates/upsert-records-output.md +20 -0
- package/runtime/agents/sqlserver-data-analyzer/AGENTS.md +32 -0
- package/runtime/agents/sqlserver-data-analyzer/README.md +48 -0
- package/runtime/agents/sqlserver-data-analyzer/agent.yaml +89 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/_shared/runner_support.py +444 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/decision-rules.md +26 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-cpf-column/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/analyze-query-result/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/build-analysis-query/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/compare-tables/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/describe-table/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/decision-rules.md +23 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-data-quality-issues/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/detect-sensitive-columns/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/estimate-table-size/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explain-query-plan/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/explore-database-domain/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-data-report/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/generate-erd-report/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-databases/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-relationships/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-schemas/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/list-tables/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/decision-rules.md +24 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/profile-table/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/decision-rules.md +29 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/run-readonly-query/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/sample-table/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-columns/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/search-tables/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/decision-rules.md +24 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/suggest-joins/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/test-connection/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/trace-record/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/capability.yaml +22 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/decision-rules.md +12 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/runner.py +15 -0
- package/runtime/agents/sqlserver-data-analyzer/capabilities/validate-readonly-query/workflow.md +6 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/README.md +3 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/README.md +3 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/mcp/README.md +3 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/analyze-cpf-column.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/analyze-query-result.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/build-analysis-query.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/compare-tables.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/describe-table.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/detect-data-quality-issues.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/detect-sensitive-columns.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/estimate-table-size.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/explain-query-plan.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/explore-database-domain.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/generate-data-report.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/generate-erd-report.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-databases.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-relationships.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-schemas.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/list-tables.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/profile-table.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/run-readonly-query.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/sample-table.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/search-columns.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/search-tables.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/suggest-joins.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/test-connection.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/trace-record.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/methods/validate-readonly-query.yaml +8 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/models/README.md +3 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/sqlserver_repository.py +576 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/tests/test_privacy.py +236 -0
- package/runtime/agents/sqlserver-data-analyzer/infra/integrations/sqlserver/tests/test_repository.py +50 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/README.md +3 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/context.md +11 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/policies.yaml +66 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/README.md +3 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/analyze-cpf-column.md +37 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/analyze-query-result.md +32 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/build-analysis-query.md +40 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/compare-tables.md +36 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/describe-table.md +35 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/detect-data-quality-issues.md +31 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/detect-sensitive-columns.md +29 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/estimate-table-size.md +28 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/explain-query-plan.md +33 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/explore-database-domain.md +30 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/generate-data-report.md +37 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/generate-erd-report.md +28 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-databases.md +26 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-relationships.md +33 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-schemas.md +26 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/list-tables.md +27 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/profile-table.md +29 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/run-readonly-query.md +33 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/sample-table.md +31 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/search-columns.md +29 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/search-tables.md +26 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/suggest-joins.md +34 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/test-connection.md +28 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/trace-record.md +33 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/prompts/validate-readonly-query.md +29 -0
- package/runtime/agents/sqlserver-data-analyzer/knowledge/system.md +65 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/README.md +3 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/analyze-cpf-column-output.md +36 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/analyze-query-result-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/build-analysis-query-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/compare-tables-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/describe-table-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/detect-data-quality-issues-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/detect-sensitive-columns-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/estimate-table-size-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/explain-query-plan-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/explore-database-domain-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/generate-data-report-output.md +36 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/generate-erd-report-output.md +32 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/list-databases-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/list-relationships-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/list-schemas-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/list-tables-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/profile-table-output.md +33 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/run-readonly-query-output.md +27 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/sample-table-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/search-columns-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/search-tables-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/suggest-joins-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/test-connection-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/trace-record-output.md +1 -0
- package/runtime/agents/sqlserver-data-analyzer/templates/validate-readonly-query-output.md +1 -0
- package/runtime/agents/technical-integration-analyst/AGENTS.md +35 -0
- package/runtime/agents/technical-integration-analyst/README.md +41 -0
- package/runtime/agents/technical-integration-analyst/agent.yaml +59 -0
- package/runtime/agents/technical-integration-analyst/capabilities/_shared/runner_support.py +241 -0
- package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/analyze-integration-flow/workflow.md +6 -0
- package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/extract-integration-contract/workflow.md +7 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-http-artifacts/workflow.md +6 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-protocol-artifacts/workflow.md +6 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-technical-docs/workflow.md +6 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/generate-test-data/workflow.md +6 -0
- package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/identify-missing-information/workflow.md +6 -0
- package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/decision-rules.md +13 -0
- package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/ingest-technical-docs/workflow.md +6 -0
- package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/capability.yaml +23 -0
- package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/decision-rules.md +14 -0
- package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/runner.py +15 -0
- package/runtime/agents/technical-integration-analyst/capabilities/run-integration-tests/workflow.md +8 -0
- package/runtime/agents/technical-integration-analyst/infra/README.md +7 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/document-source/document_source_repository.py +214 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/document-source/methods/load-sources.yaml +8 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/http-api/http_api_repository.py +164 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/http-api/methods/run-integration-tests.yaml +8 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/analyze-flow.yaml +11 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/extract-contract.yaml +8 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-http-artifacts.yaml +12 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-protocol-artifacts.yaml +11 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-technical-docs.yaml +13 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/generate-test-data.yaml +12 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/methods/identify-missing-information.yaml +8 -0
- package/runtime/agents/technical-integration-analyst/infra/integrations/technical-integration/technical_integration_repository.py +621 -0
- package/runtime/agents/technical-integration-analyst/knowledge/context.md +14 -0
- package/runtime/agents/technical-integration-analyst/knowledge/policies.yaml +46 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/README.md +5 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/analyze-integration-flow.md +30 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/extract-integration-contract.md +33 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-http-artifacts.md +31 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-protocol-artifacts.md +29 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-technical-docs.md +32 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/generate-test-data.md +31 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/identify-missing-information.md +27 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/ingest-technical-docs.md +30 -0
- package/runtime/agents/technical-integration-analyst/knowledge/prompts/run-integration-tests.md +33 -0
- package/runtime/agents/technical-integration-analyst/knowledge/system.md +47 -0
- package/runtime/agents/technical-integration-analyst/templates/README.md +3 -0
- package/runtime/agents/technical-integration-analyst/templates/analyze-integration-flow-output.md +13 -0
- package/runtime/agents/technical-integration-analyst/templates/extract-integration-contract-output.md +27 -0
- package/runtime/agents/technical-integration-analyst/templates/generate-http-artifacts-output.md +31 -0
- package/runtime/agents/technical-integration-analyst/templates/generate-protocol-artifacts-output.md +31 -0
- package/runtime/agents/technical-integration-analyst/templates/generate-technical-docs-output.md +46 -0
- package/runtime/agents/technical-integration-analyst/templates/generate-test-data-output.md +31 -0
- package/runtime/agents/technical-integration-analyst/templates/identify-missing-information-output.md +21 -0
- package/runtime/agents/technical-integration-analyst/templates/ingest-technical-docs-output.md +24 -0
- package/runtime/agents/technical-integration-analyst/templates/run-integration-tests-output.md +14 -0
- package/runtime/agents/technical-integration-analyst/tests/fixtures/dry_run_result.json +8 -0
- package/runtime/agents/technical-integration-analyst/tests/fixtures/openapi_simple.json +23 -0
- package/runtime/agents/technical-integration-analyst/tests/fixtures/postman_simple.json +20 -0
- package/runtime/agents/technical-integration-analyst/tests/fixtures/wsdl_simple.xml +9 -0
- package/runtime/agents/technical-integration-analyst/tests/test_technical_integration.py +524 -0
- package/runtime/agents/topdesk-orchestrator/AGENTS.md +29 -0
- package/runtime/agents/topdesk-orchestrator/README.md +45 -0
- package/runtime/agents/topdesk-orchestrator/agent.yaml +54 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/_shared/runner_support.py +186 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/capability.yaml +21 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/runner.py +56 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/analyze-incident-insufficiency/workflow.md +15 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/capability.yaml +22 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/runner.py +75 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/create-incident/workflow.md +20 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/capability.yaml +21 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/runner.py +44 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/incident-report/workflow.md +15 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/capability.yaml +21 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/runner.py +74 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/list-incidents/workflow.md +15 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/capability.yaml +22 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/runner.py +57 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/read-incident/workflow.md +15 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/capability.yaml +22 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/runner.py +72 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/request-more-info/workflow.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/capability.yaml +25 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/runner.py +198 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/triage-incident/workflow.md +18 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/capability.yaml +22 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/decision-rules.md +16 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/runner.py +51 -0
- package/runtime/agents/topdesk-orchestrator/capabilities/update-incident/workflow.md +15 -0
- package/runtime/agents/topdesk-orchestrator/infra/README.md +3 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/README.md +5 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/README.md +18 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/cli.py +88 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/env.example +3 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/integration.yaml +27 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/mcp/README.md +3 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/create-incident.yaml +15 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/get-catalog.yaml +13 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/get-incident.yaml +14 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/get-progress-trail.yaml +14 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/list-incidents.yaml +16 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/search-persons.yaml +14 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/methods/update-incident.yaml +17 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/models/README.md +3 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/models/incident.schema.json +21 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/tests/test_repository.py +124 -0
- package/runtime/agents/topdesk-orchestrator/infra/integrations/topdesk/topdesk_repository.py +278 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/README.md +3 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/context.md +24 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/policies.yaml +35 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/README.md +3 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/analyze-incident-insufficiency.md +34 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/create-incident.md +34 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/incident-report.md +33 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/list-incidents.md +34 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/read-incident.md +35 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/request-more-info.md +34 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/triage-incident.md +35 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/prompts/update-incident.md +34 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/system.md +40 -0
- package/runtime/agents/topdesk-orchestrator/knowledge/triage-rules.md +43 -0
- package/runtime/agents/topdesk-orchestrator/templates/README.md +3 -0
- package/runtime/agents/topdesk-orchestrator/templates/analyze-incident-insufficiency-output.md +18 -0
- package/runtime/agents/topdesk-orchestrator/templates/create-incident-output.md +17 -0
- package/runtime/agents/topdesk-orchestrator/templates/incident-report-output.md +18 -0
- package/runtime/agents/topdesk-orchestrator/templates/list-incidents-output.md +17 -0
- package/runtime/agents/topdesk-orchestrator/templates/read-incident-output.md +17 -0
- package/runtime/agents/topdesk-orchestrator/templates/request-more-info-output.md +17 -0
- package/runtime/agents/topdesk-orchestrator/templates/triage-incident-output.md +19 -0
- package/runtime/agents/topdesk-orchestrator/templates/update-incident-output.md +17 -0
- package/runtime/agents/topdesk-orchestrator/tests/test_agentic_contracts.py +65 -0
- package/runtime/agents/topdesk-orchestrator/tests/test_contract_cleanup.py +21 -0
- package/runtime/agents/topdesk-orchestrator/tests/test_runners.py +251 -0
- package/runtime/ai-devkit +10 -0
- package/runtime/aikit +10 -0
- package/runtime/cli/README.md +642 -0
- package/runtime/cli/__init__.py +1 -0
- package/runtime/cli/aikit/__init__.py +3 -0
- package/runtime/cli/aikit/credentials.py +337 -0
- package/runtime/cli/aikit/diagnostics.py +270 -0
- package/runtime/cli/aikit/fallback.py +156 -0
- package/runtime/cli/aikit/guardrails.py +76 -0
- package/runtime/cli/aikit/install.py +269 -0
- package/runtime/cli/aikit/llm.py +591 -0
- package/runtime/cli/aikit/lock.py +238 -0
- package/runtime/cli/aikit/main.py +1390 -0
- package/runtime/cli/aikit/memory.py +135 -0
- package/runtime/cli/aikit/output.py +70 -0
- package/runtime/cli/aikit/providers.py +513 -0
- package/runtime/cli/aikit/router.py +27 -0
- package/runtime/cli/aikit/sources.py +334 -0
- package/runtime/plugins/claude-code-ai-devkit/README.md +25 -0
- package/runtime/plugins/claude-code-ai-devkit/agents/README.md +5 -0
- package/runtime/plugins/claude-code-ai-devkit/commands/devkit-doctor.md +10 -0
- package/runtime/plugins/claude-code-ai-devkit/commands/devkit-provider.md +12 -0
- package/runtime/plugins/claude-code-ai-devkit/commands/devkit-run.md +10 -0
- package/runtime/plugins/claude-code-ai-devkit/commands/devkit-setup.md +10 -0
- package/runtime/plugins/claude-code-ai-devkit/plugin.json +40 -0
- package/runtime/plugins/claude-code-ai-devkit/scripts/bootstrap.py +33 -0
- package/runtime/plugins/claude-code-ai-devkit/scripts/doctor.py +16 -0
- package/runtime/plugins/claude-code-ai-devkit/scripts/run-capability.py +21 -0
- package/runtime/plugins/claude-code-ai-devkit/scripts/runtime.py +63 -0
- package/runtime/plugins/claude-code-ai-devkit/skills/ai-devkit-router/SKILL.md +20 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/SKILL.md +28 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/desenvolvimento.md +11 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/infra.md +12 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/providers.md +22 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/routing.md +30 -0
- package/runtime/plugins/claude-skill-ai-devkit/ai-devkit/references/sustentacao.md +12 -0
- package/runtime/plugins/claude-skill-ai-devkit/plugin.json +18 -0
- package/runtime/plugins/codex-ai-devkit/.codex-plugin/plugin.json +24 -0
- package/runtime/plugins/codex-ai-devkit/README.md +26 -0
- package/runtime/plugins/codex-ai-devkit/scripts/bootstrap.py +33 -0
- package/runtime/plugins/codex-ai-devkit/scripts/doctor.py +16 -0
- package/runtime/plugins/codex-ai-devkit/scripts/install-runtime.py +17 -0
- package/runtime/plugins/codex-ai-devkit/scripts/resolve-capability.py +16 -0
- package/runtime/plugins/codex-ai-devkit/scripts/run-capability.py +21 -0
- package/runtime/plugins/codex-ai-devkit/scripts/runtime.py +63 -0
- package/runtime/plugins/codex-ai-devkit/skills/ai-devkit-router/SKILL.md +45 -0
- package/runtime/providers/agent-bridge.yaml +24 -0
- package/runtime/providers/aws.yaml +57 -0
- package/runtime/providers/azure-devops.yaml +43 -0
- package/runtime/providers/bpo.yaml +82 -0
- package/runtime/providers/document-source.yaml +23 -0
- package/runtime/providers/drawio.yaml +22 -0
- package/runtime/providers/elasticsearch.yaml +52 -0
- package/runtime/providers/figma.yaml +48 -0
- package/runtime/providers/file-dataset.yaml +22 -0
- package/runtime/providers/local-files.yaml +26 -0
- package/runtime/providers/postgres.yaml +39 -0
- package/runtime/providers/presentation-renderer.yaml +22 -0
- package/runtime/providers/restrictive-db.yaml +27 -0
- package/runtime/providers/sqlserver.yaml +43 -0
- package/runtime/providers/technical-http.yaml +45 -0
- package/runtime/providers/topdesk.yaml +44 -0
- package/runtime/providers/workbook-renderer.yaml +22 -0
- package/runtime/scripts/README.md +48 -0
- package/runtime/scripts/mvp-readiness.py +360 -0
- package/runtime/scripts/release-gate.py +219 -0
- package/runtime/scripts/validate-repo.py +655 -0
- package/runtime/scripts/verify-release-alignment.mjs +100 -0
- package/runtime/vendor/README.md +26 -0
- package/runtime/vendor/plugins/CATALOG.md +53 -0
- package/runtime/vendor/plugins/open-design/AGENTS.md +35 -0
- package/runtime/vendor/plugins/open-design/README.md +22 -0
- package/runtime/vendor/plugins/open-design/README.zh-CN.md +22 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/build-test/SKILL.md +76 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/build-test/open-design.json +38 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/code-import/SKILL.md +60 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/code-import/open-design.json +36 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/critique-theater/SKILL.md +51 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/critique-theater/open-design.json +34 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/design-extract/SKILL.md +64 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/design-extract/open-design.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/diff-review/SKILL.md +54 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/diff-review/open-design.json +38 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/direction-picker/SKILL.md +28 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/direction-picker/open-design.json +34 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/discovery-question-form/SKILL.md +66 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/discovery-question-form/open-design.json +34 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/figma-extract/SKILL.md +64 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/figma-extract/open-design.json +36 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/handoff/SKILL.md +59 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/handoff/open-design.json +36 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/patch-edit/SKILL.md +60 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/patch-edit/open-design.json +38 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/rewrite-plan/SKILL.md +57 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/rewrite-plan/open-design.json +36 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/todo-write/SKILL.md +24 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/todo-write/open-design.json +34 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/token-map/SKILL.md +147 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/token-map/examples/semantic-inference-before-after.json +164 -0
- package/runtime/vendor/plugins/open-design/_official/atoms/token-map/open-design.json +36 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/agentic/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/agentic/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/airbnb/DESIGN.md +393 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/airbnb/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/airtable/DESIGN.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/airtable/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ant/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ant/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/apple/DESIGN.md +250 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/apple/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/application/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/application/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/arc/DESIGN.md +152 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/arc/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/artistic/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/artistic/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/atelier-zero/DESIGN.md +316 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/atelier-zero/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bento/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bento/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/binance/DESIGN.md +348 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/binance/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bmw/DESIGN.md +183 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bmw/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bmw-m/DESIGN.md +246 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bmw-m/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bold/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bold/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/brutalism/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/brutalism/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bugatti/DESIGN.md +271 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/bugatti/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cafe/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cafe/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cal/DESIGN.md +262 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cal/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/canva/DESIGN.md +157 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/canva/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/claude/DESIGN.md +315 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/claude/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/clay/DESIGN.md +307 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/clay/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/claymorphism/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/claymorphism/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/clean/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/clean/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/clickhouse/DESIGN.md +284 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/clickhouse/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cohere/DESIGN.md +269 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cohere/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/coinbase/DESIGN.md +132 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/coinbase/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/colorful/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/colorful/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/composio/DESIGN.md +310 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/composio/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/contemporary/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/contemporary/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/corporate/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/corporate/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cosmic/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cosmic/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/creative/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/creative/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cursor/DESIGN.md +312 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/cursor/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/dashboard/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/dashboard/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/default/DESIGN.md +62 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/default/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/discord/DESIGN.md +162 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/discord/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/dithered/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/dithered/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/doodle/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/doodle/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/dramatic/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/dramatic/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/duolingo/DESIGN.md +154 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/duolingo/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/editorial/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/editorial/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/elegant/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/elegant/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/elevenlabs/DESIGN.md +268 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/elevenlabs/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/energetic/DESIGN.md +72 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/energetic/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/enterprise/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/enterprise/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/expo/DESIGN.md +284 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/expo/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/expressive/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/expressive/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/fantasy/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/fantasy/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ferrari/DESIGN.md +317 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ferrari/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/figma/DESIGN.md +223 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/figma/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/flat/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/flat/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/framer/DESIGN.md +249 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/framer/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/friendly/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/friendly/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/futuristic/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/futuristic/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/github/DESIGN.md +155 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/github/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/glassmorphism/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/glassmorphism/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/gradient/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/gradient/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/hashicorp/DESIGN.md +281 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/hashicorp/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/huggingface/DESIGN.md +149 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/huggingface/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ibm/DESIGN.md +335 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ibm/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/intercom/DESIGN.md +149 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/intercom/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/kami/DESIGN.md +410 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/kami/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/kraken/DESIGN.md +128 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/kraken/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/lamborghini/DESIGN.md +291 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/lamborghini/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/levels/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/levels/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/linear-app/DESIGN.md +370 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/linear-app/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/lingo/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/lingo/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/lovable/DESIGN.md +301 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/lovable/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/luxury/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/luxury/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mastercard/DESIGN.md +368 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mastercard/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/material/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/material/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/meta/DESIGN.md +369 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/meta/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/minimal/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/minimal/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/minimax/DESIGN.md +260 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/minimax/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mintlify/DESIGN.md +329 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mintlify/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/miro/DESIGN.md +111 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/miro/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mission-control/DESIGN.md +476 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mission-control/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mistral-ai/DESIGN.md +264 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mistral-ai/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/modern/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/modern/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mongodb/DESIGN.md +269 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mongodb/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mono/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/mono/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/neobrutalism/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/neobrutalism/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/neon/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/neon/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/neumorphism/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/neumorphism/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/nike/DESIGN.md +366 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/nike/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/notion/DESIGN.md +312 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/notion/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/nvidia/DESIGN.md +296 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/nvidia/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ollama/DESIGN.md +270 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/ollama/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/openai/DESIGN.md +140 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/openai/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/opencode-ai/DESIGN.md +284 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/opencode-ai/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/pacman/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/pacman/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/paper/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/paper/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/perspective/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/perspective/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/pinterest/DESIGN.md +233 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/pinterest/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/playstation/DESIGN.md +367 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/playstation/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/posthog/DESIGN.md +259 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/posthog/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/premium/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/premium/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/professional/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/professional/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/publication/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/publication/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/raycast/DESIGN.md +271 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/raycast/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/refined/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/refined/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/renault/DESIGN.md +314 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/renault/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/replicate/DESIGN.md +264 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/replicate/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/resend/DESIGN.md +306 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/resend/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/retro/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/retro/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/revolut/DESIGN.md +188 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/revolut/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/runwayml/DESIGN.md +247 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/runwayml/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/sanity/DESIGN.md +360 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/sanity/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/sentry/DESIGN.md +265 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/sentry/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/shadcn/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/shadcn/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/shopify/DESIGN.md +353 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/shopify/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/simple/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/simple/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/skeumorphism/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/skeumorphism/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/sleek/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/sleek/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/spacex/DESIGN.md +197 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/spacex/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/spacious/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/spacious/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/spotify/DESIGN.md +249 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/spotify/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/starbucks/DESIGN.md +583 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/starbucks/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/storytelling/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/storytelling/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/stripe/DESIGN.md +325 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/stripe/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/supabase/DESIGN.md +258 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/supabase/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/superhuman/DESIGN.md +255 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/superhuman/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/tesla/DESIGN.md +289 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/tesla/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/tetris/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/tetris/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/theverge/DESIGN.md +342 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/theverge/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/together-ai/DESIGN.md +266 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/together-ai/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/totality-festival/DESIGN.md +206 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/totality-festival/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/uber/DESIGN.md +298 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/uber/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/urdu/DESIGN.md +1002 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/urdu/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vercel/DESIGN.md +313 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vercel/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vibrant/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vibrant/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vintage/DESIGN.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vintage/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vodafone/DESIGN.md +426 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/vodafone/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/voltagent/DESIGN.md +326 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/voltagent/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/warm-editorial/DESIGN.md +65 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/warm-editorial/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/warp/DESIGN.md +256 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/warp/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/webflow/DESIGN.md +95 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/webflow/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/wired/DESIGN.md +281 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/wired/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/wise/DESIGN.md +176 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/wise/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/x-ai/DESIGN.md +260 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/x-ai/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/xiaohongshu/DESIGN.md +402 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/xiaohongshu/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/zapier/DESIGN.md +331 -0
- package/runtime/vendor/plugins/open-design/_official/design-systems/zapier/open-design.json +112 -0
- package/runtime/vendor/plugins/open-design/_official/examples/3d-creator-portfolio/SKILL.md +120 -0
- package/runtime/vendor/plugins/open-design/_official/examples/3d-creator-portfolio/example.html +436 -0
- package/runtime/vendor/plugins/open-design/_official/examples/3d-creator-portfolio/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/acreage-farming/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/acreage-farming/example.html +428 -0
- package/runtime/vendor/plugins/open-design/_official/examples/acreage-farming/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/aerocore/SKILL.md +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/aerocore/example.html +2136 -0
- package/runtime/vendor/plugins/open-design/_official/examples/aerocore/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ai-designer-portfolio/SKILL.md +163 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ai-designer-portfolio/example.html +484 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ai-designer-portfolio/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/article-magazine/SKILL.md +46 -0
- package/runtime/vendor/plugins/open-design/_official/examples/article-magazine/example.html +81 -0
- package/runtime/vendor/plugins/open-design/_official/examples/article-magazine/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/audio-jingle/SKILL.md +132 -0
- package/runtime/vendor/plugins/open-design/_official/examples/audio-jingle/example.html +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/audio-jingle/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/blog-post/SKILL.md +81 -0
- package/runtime/vendor/plugins/open-design/_official/examples/blog-post/example.html +80 -0
- package/runtime/vendor/plugins/open-design/_official/examples/blog-post/open-design.json +134 -0
- package/runtime/vendor/plugins/open-design/_official/examples/card-twitter/SKILL.md +42 -0
- package/runtime/vendor/plugins/open-design/_official/examples/card-twitter/example.html +58 -0
- package/runtime/vendor/plugins/open-design/_official/examples/card-twitter/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/card-xiaohongshu/SKILL.md +43 -0
- package/runtime/vendor/plugins/open-design/_official/examples/card-xiaohongshu/example.html +98 -0
- package/runtime/vendor/plugins/open-design/_official/examples/card-xiaohongshu/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/cinematic-landing-page/SKILL.md +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/cinematic-landing-page/example.html +723 -0
- package/runtime/vendor/plugins/open-design/_official/examples/cinematic-landing-page/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/SKILL.md +209 -0
- package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/example.html +698 -0
- package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/open-design.json +131 -0
- package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/references/case-formats.md +94 -0
- package/runtime/vendor/plugins/open-design/_official/examples/clinical-case-report/references/checklist.md +41 -0
- package/runtime/vendor/plugins/open-design/_official/examples/codenest-coding-platform/SKILL.md +84 -0
- package/runtime/vendor/plugins/open-design/_official/examples/codenest-coding-platform/example.html +233 -0
- package/runtime/vendor/plugins/open-design/_official/examples/codenest-coding-platform/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/codex-interactive-capability-map/SKILL.md +80 -0
- package/runtime/vendor/plugins/open-design/_official/examples/codex-interactive-capability-map/example.html +672 -0
- package/runtime/vendor/plugins/open-design/_official/examples/codex-interactive-capability-map/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/critique/SKILL.md +258 -0
- package/runtime/vendor/plugins/open-design/_official/examples/critique/example.html +671 -0
- package/runtime/vendor/plugins/open-design/_official/examples/critique/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dashboard/SKILL.md +76 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dashboard/example.html +118 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dashboard/open-design.json +131 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dashboard-ui-glass/SKILL.md +175 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dashboard-ui-glass/example.html +509 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dashboard-ui-glass/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/data-report/SKILL.md +45 -0
- package/runtime/vendor/plugins/open-design/_official/examples/data-report/example.html +175 -0
- package/runtime/vendor/plugins/open-design/_official/examples/data-report/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dating-web/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dating-web/example.html +265 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dating-web/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dcf-valuation/SKILL.md +140 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dcf-valuation/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dcf-valuation/references/sector-wacc.md +42 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-guizang-editorial/SKILL.md +66 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-guizang-editorial/example.html +631 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-guizang-editorial/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-open-slide-canvas/SKILL.md +70 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-open-slide-canvas/example.html +602 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-open-slide-canvas/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-swiss-international/SKILL.md +80 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-swiss-international/example.html +746 -0
- package/runtime/vendor/plugins/open-design/_official/examples/deck-swiss-international/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/design-brief/SKILL.md +252 -0
- package/runtime/vendor/plugins/open-design/_official/examples/design-brief/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/digital-eguide/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/digital-eguide/example.html +204 -0
- package/runtime/vendor/plugins/open-design/_official/examples/digital-eguide/open-design.json +136 -0
- package/runtime/vendor/plugins/open-design/_official/examples/doc-kami-parchment/SKILL.md +70 -0
- package/runtime/vendor/plugins/open-design/_official/examples/doc-kami-parchment/example.html +84 -0
- package/runtime/vendor/plugins/open-design/_official/examples/doc-kami-parchment/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/docs-page/SKILL.md +80 -0
- package/runtime/vendor/plugins/open-design/_official/examples/docs-page/example.html +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/docs-page/open-design.json +133 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dreamcore-landing/SKILL.md +134 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dreamcore-landing/example.html +615 -0
- package/runtime/vendor/plugins/open-design/_official/examples/dreamcore-landing/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/email-marketing/SKILL.md +85 -0
- package/runtime/vendor/plugins/open-design/_official/examples/email-marketing/example.html +159 -0
- package/runtime/vendor/plugins/open-design/_official/examples/email-marketing/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/eng-runbook/SKILL.md +51 -0
- package/runtime/vendor/plugins/open-design/_official/examples/eng-runbook/example.html +250 -0
- package/runtime/vendor/plugins/open-design/_official/examples/eng-runbook/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/evergreen-finance/SKILL.md +157 -0
- package/runtime/vendor/plugins/open-design/_official/examples/evergreen-finance/example.html +627 -0
- package/runtime/vendor/plugins/open-design/_official/examples/evergreen-finance/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/finance-report/SKILL.md +62 -0
- package/runtime/vendor/plugins/open-design/_official/examples/finance-report/example.html +242 -0
- package/runtime/vendor/plugins/open-design/_official/examples/finance-report/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/SKILL.md +87 -0
- package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/assets/template.html +387 -0
- package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/example.html +13 -0
- package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/open-design.json +133 -0
- package/runtime/vendor/plugins/open-design/_official/examples/flowai-live-dashboard-template/references/checklist.md +35 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-data-chart-nyt/SKILL.md +59 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-data-chart-nyt/example.html +101 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-data-chart-nyt/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-flowchart-sticky/SKILL.md +64 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-flowchart-sticky/example.html +137 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-flowchart-sticky/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-glitch-title/SKILL.md +67 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-glitch-title/example.html +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-glitch-title/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-light-leak-cinema/SKILL.md +66 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-light-leak-cinema/example.html +81 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-light-leak-cinema/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-liquid-bg-hero/SKILL.md +71 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-liquid-bg-hero/example.html +64 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-liquid-bg-hero/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-logo-outro/SKILL.md +64 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-logo-outro/example.html +80 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-logo-outro/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-macos-notification/SKILL.md +70 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-macos-notification/example.html +60 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frame-macos-notification/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/SKILL.md +94 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/example.html +763 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/open-design.json +180 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/STYLE_PRESETS.md +346 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/animation-patterns.md +110 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/html-template.md +350 -0
- package/runtime/vendor/plugins/open-design/_official/examples/frontend-slides/references/viewport-base.css +133 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/SKILL.md +132 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/example.html +1059 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-creative-voltage/open-design.json +157 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/SKILL.md +90 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/example.html +2621 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-editorial-forest/open-design.json +139 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/SKILL.md +135 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/example.html +842 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-electric-studio/open-design.json +158 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/SKILL.md +95 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/example.html +2842 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-emerald-editorial/open-design.json +146 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/SKILL.md +102 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/example.html +967 -0
- package/runtime/vendor/plugins/open-design/_official/examples/fs-notebook-tabs/open-design.json +158 -0
- package/runtime/vendor/plugins/open-design/_official/examples/gamified-app/SKILL.md +109 -0
- package/runtime/vendor/plugins/open-design/_official/examples/gamified-app/example.html +292 -0
- package/runtime/vendor/plugins/open-design/_official/examples/gamified-app/open-design.json +134 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/SKILL.md +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/example.html +473 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/open-design.json +134 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/README.md +10 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/artifact-example.json +15 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/example-data.json +138 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/provenance-example.json +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/github-dashboard/references/template.html +473 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/SKILL.md +314 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/assets/example-slides.html +318 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/assets/template.html +647 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/checklist.md +265 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/components.md +363 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/layouts.md +630 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/styles.md +195 -0
- package/runtime/vendor/plugins/open-design/_official/examples/guizang-ppt/references/themes.md +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/SKILL.md +355 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/open-design.json +117 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/references/animation-rows.md +29 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/references/codex-pet-contract.md +35 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hatch-pet/references/qa-rubric.md +60 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/SKILL.md +167 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/example.html +455 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-academic-paper/open-design.json +143 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/SKILL.md +172 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/example.html +418 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-bauhaus/open-design.json +142 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/SKILL.md +162 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/example.html +415 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-memphis-pop/open-design.json +145 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/SKILL.md +180 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/example.html +429 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-retro-tv/open-design.json +145 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/SKILL.md +175 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/example.html +450 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-true-blueprint/open-design.json +143 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/SKILL.md +162 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/example.html +437 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hps-y2k-chrome/open-design.json +145 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hr-onboarding/SKILL.md +52 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hr-onboarding/example.html +219 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hr-onboarding/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/SKILL.md +251 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/assets/base.css +150 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/assets/fonts.css +9 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/assets/runtime.js +960 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/animations.md +147 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/authoring-guide.md +141 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/full-decks.md +98 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/layouts.md +103 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/presenter-mode.md +240 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt/references/themes.md +107 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-course-module/SKILL.md +79 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-course-module/example.html +308 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-course-module/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-graphify-dark-graph/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-graphify-dark-graph/example.html +361 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-graphify-dark-graph/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-hermes-cyber-terminal/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-hermes-cyber-terminal/example.html +414 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-hermes-cyber-terminal/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-knowledge-arch-blueprint/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-knowledge-arch-blueprint/example.html +409 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-knowledge-arch-blueprint/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-obsidian-claude-gradient/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-obsidian-claude-gradient/example.html +379 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-obsidian-claude-gradient/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-pitch-deck/SKILL.md +79 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-pitch-deck/example.html +296 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-pitch-deck/open-design.json +146 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-presenter-mode-reveal/SKILL.md +79 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-presenter-mode-reveal/example.html +756 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-presenter-mode-reveal/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-product-launch/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-product-launch/example.html +263 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-product-launch/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-brutalist/SKILL.md +70 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-brutalist/example.html +774 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-brutalist/open-design.json +119 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-editorial/SKILL.md +60 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-editorial/example.html +490 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-taste-editorial/open-design.json +119 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-tech-sharing/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-tech-sharing/example.html +298 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-tech-sharing/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-testing-safety-alert/SKILL.md +79 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-testing-safety-alert/example.html +408 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-testing-safety-alert/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-weekly-report/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-weekly-report/example.html +272 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-weekly-report/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-pastel-card/SKILL.md +79 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-pastel-card/example.html +409 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-pastel-card/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-white-editorial/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-white-editorial/example.html +427 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-xhs-white-editorial/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-8-bit-orbit/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-8-bit-orbit/example.html +1657 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-8-bit-orbit/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-biennale-yellow/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-biennale-yellow/example.html +855 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-biennale-yellow/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-block-frame/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-block-frame/example.html +1460 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-block-frame/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-blue-professional/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-blue-professional/example.html +1410 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-blue-professional/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-bold-poster/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-bold-poster/example.html +884 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-bold-poster/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-broadside/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-broadside/example.html +2189 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-broadside/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-capsule/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-capsule/example.html +1417 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-capsule/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cartesian/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cartesian/example.html +1157 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cartesian/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cobalt-grid/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cobalt-grid/example.html +1207 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-cobalt-grid/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-coral/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-coral/example.html +1628 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-coral/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/SKILL.md +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/example.html +640 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-creative-mode/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-daisy-days/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-daisy-days/example.html +497 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-daisy-days/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/SKILL.md +98 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/example.html +753 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-editorial-tri-tone/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-grove/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-grove/example.html +1738 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-grove/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-long-table/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-long-table/example.html +1207 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-long-table/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-mat/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-mat/example.html +1404 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-mat/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-monochrome/SKILL.md +91 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-monochrome/example.html +2429 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-monochrome/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/SKILL.md +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/example.html +827 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-neo-grid-bold/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/SKILL.md +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/example.html +827 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-peoples-platform/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/SKILL.md +100 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/assets/styles.css +668 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/example.html +443 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pin-and-paper/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/SKILL.md +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/example.html +607 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-pink-script/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-playful/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-playful/example.html +1442 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-playful/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-raw-grid/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-raw-grid/example.html +1174 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-raw-grid/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-windows/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-windows/example.html +1342 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-windows/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-zine/SKILL.md +93 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-zine/example.html +1101 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-retro-zine/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-sakura-chroma/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-sakura-chroma/example.html +1378 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-sakura-chroma/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-scatterbrain/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-scatterbrain/example.html +1339 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-scatterbrain/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-signal/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-signal/example.html +2635 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-signal/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/SKILL.md +98 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/example.html +1155 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-soft-editorial/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/SKILL.md +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/assets/deck-stage.js +619 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/example.html +901 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-stencil-tablet/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-studio/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-studio/example.html +1687 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-studio/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-vellum/SKILL.md +91 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-vellum/example.html +1167 -0
- package/runtime/vendor/plugins/open-design/_official/examples/html-ppt-zhangzara-vellum/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/SKILL.md +165 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/example.html +533 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-annual-letter/open-design.json +146 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/SKILL.md +187 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/example.html +856 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-bento-insight/open-design.json +148 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/SKILL.md +185 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/example.html +983 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-golden-circle/open-design.json +147 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/SKILL.md +180 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/example.html +498 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-keynote-black/open-design.json +158 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/SKILL.md +179 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/example.html +848 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-luxe-whitespace/open-design.json +146 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/SKILL.md +171 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/example.html +871 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-pentagram-grid/open-design.json +146 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/SKILL.md +170 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/example.html +451 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-slides/open-design.json +156 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/SKILL.md +179 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/example.html +668 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-sparkline-arc/open-design.json +147 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/SKILL.md +190 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/example.html +1001 -0
- package/runtime/vendor/plugins/open-design/_official/examples/huashu-takram-soft-tech/open-design.json +147 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/SKILL.md +500 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/open-design.json +183 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/audio-reactive.md +76 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/captions.md +132 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/css-patterns.md +373 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/dynamic-techniques.md +90 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/html-in-canvas.md +146 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/motion-principles.md +69 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/transcript-guide.md +151 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/transitions.md +112 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/tts.md +75 -0
- package/runtime/vendor/plugins/open-design/_official/examples/hyperframes/references/typography.md +175 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/SKILL.md +161 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/assets/template.html +436 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/example.html +1184 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/open-design.json +134 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/attribution.md +35 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/checklist.md +39 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/compliance.md +60 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ib-pitch-book/references/conventions.md +36 -0
- package/runtime/vendor/plugins/open-design/_official/examples/image-poster/SKILL.md +104 -0
- package/runtime/vendor/plugins/open-design/_official/examples/image-poster/example.html +113 -0
- package/runtime/vendor/plugins/open-design/_official/examples/image-poster/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/examples/innovation/SKILL.md +159 -0
- package/runtime/vendor/plugins/open-design/_official/examples/innovation/example.html +415 -0
- package/runtime/vendor/plugins/open-design/_official/examples/innovation/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/invoice/SKILL.md +48 -0
- package/runtime/vendor/plugins/open-design/_official/examples/invoice/example.html +214 -0
- package/runtime/vendor/plugins/open-design/_official/examples/invoice/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kami-deck/SKILL.md +196 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kami-deck/example.html +1140 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kami-deck/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kami-landing/SKILL.md +234 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kami-landing/example.html +673 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kami-landing/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kanban-board/SKILL.md +50 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kanban-board/example.html +270 -0
- package/runtime/vendor/plugins/open-design/_official/examples/kanban-board/open-design.json +131 -0
- package/runtime/vendor/plugins/open-design/_official/examples/last30days/SKILL.md +142 -0
- package/runtime/vendor/plugins/open-design/_official/examples/last30days/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/last30days/references/save-html-brief.md +50 -0
- package/runtime/vendor/plugins/open-design/_official/examples/layered-depth/SKILL.md +121 -0
- package/runtime/vendor/plugins/open-design/_official/examples/layered-depth/example.html +511 -0
- package/runtime/vendor/plugins/open-design/_official/examples/layered-depth/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/liquid-glass-agency/SKILL.md +165 -0
- package/runtime/vendor/plugins/open-design/_official/examples/liquid-glass-agency/example.html +548 -0
- package/runtime/vendor/plugins/open-design/_official/examples/liquid-glass-agency/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/SKILL.md +136 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/references/artifact-schema.md +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/references/connector-policy.md +119 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-artifact/references/refresh-contract.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/SKILL.md +203 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/assets/template.html +643 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/example.html +946 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/open-design.json +199 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/checklist.md +83 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/components.md +212 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/connectors.md +173 -0
- package/runtime/vendor/plugins/open-design/_official/examples/live-dashboard/references/layouts.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/luxury-botanical/SKILL.md +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/luxury-botanical/example.html +695 -0
- package/runtime/vendor/plugins/open-design/_official/examples/luxury-botanical/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/magazine-poster/SKILL.md +88 -0
- package/runtime/vendor/plugins/open-design/_official/examples/magazine-poster/example.html +207 -0
- package/runtime/vendor/plugins/open-design/_official/examples/magazine-poster/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/meeting-notes/SKILL.md +47 -0
- package/runtime/vendor/plugins/open-design/_official/examples/meeting-notes/example.html +234 -0
- package/runtime/vendor/plugins/open-design/_official/examples/meeting-notes/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mindloop-landing/SKILL.md +161 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mindloop-landing/example.html +396 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mindloop-landing/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/SKILL.md +102 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/assets/template.html +442 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/example.html +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/open-design.json +136 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/references/checklist.md +46 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-app/references/layouts.md +312 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-onboarding/SKILL.md +54 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-onboarding/example.html +206 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mobile-onboarding/open-design.json +134 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mockup-device-3d/SKILL.md +63 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mockup-device-3d/example.html +193 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mockup-device-3d/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/motion-frames/SKILL.md +90 -0
- package/runtime/vendor/plugins/open-design/_official/examples/motion-frames/example.html +221 -0
- package/runtime/vendor/plugins/open-design/_official/examples/motion-frames/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mythic-naturecore/SKILL.md +117 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mythic-naturecore/example.html +387 -0
- package/runtime/vendor/plugins/open-design/_official/examples/mythic-naturecore/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/nimbus-grid/SKILL.md +147 -0
- package/runtime/vendor/plugins/open-design/_official/examples/nimbus-grid/example.html +1096 -0
- package/runtime/vendor/plugins/open-design/_official/examples/nimbus-grid/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-contribute-open-design/SKILL.md +27 -0
- package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-contribute-open-design/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-publish-github/SKILL.md +27 -0
- package/runtime/vendor/plugins/open-design/_official/examples/od-plugin-publish-github/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/SKILL.md +321 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/about.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/capabilities.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/cta.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/hero.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/image-manifest.json +168 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/imagegen-prompts.md +246 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-1.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-2.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-3.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-4.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/lab-5.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-1.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-2.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-3.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/method-4.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/testimonial.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/work-1.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/assets/work-2.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/example.html +2645 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing/open-design.json +148 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing-deck/SKILL.md +222 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing-deck/example.html +1171 -0
- package/runtime/vendor/plugins/open-design/_official/examples/open-design-landing-deck/open-design.json +131 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbis-nft/SKILL.md +140 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbis-nft/example.html +473 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbis-nft/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-general/SKILL.md +196 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-general/example.html +1302 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-general/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-github/SKILL.md +160 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-github/example.html +770 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-github/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-gmail/SKILL.md +163 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-gmail/example.html +643 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-gmail/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-linear/SKILL.md +170 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-linear/example.html +571 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-linear/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-notion/SKILL.md +179 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-notion/example.html +529 -0
- package/runtime/vendor/plugins/open-design/_official/examples/orbit-notion/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pm-spec/SKILL.md +52 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pm-spec/example.html +248 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pm-spec/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/portfolio-cosmic/SKILL.md +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/portfolio-cosmic/example.html +587 -0
- package/runtime/vendor/plugins/open-design/_official/examples/portfolio-cosmic/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/poster-hero/SKILL.md +42 -0
- package/runtime/vendor/plugins/open-design/_official/examples/poster-hero/example.html +88 -0
- package/runtime/vendor/plugins/open-design/_official/examples/poster-hero/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ppt-keynote/SKILL.md +43 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ppt-keynote/example.html +198 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ppt-keynote/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/SKILL.md +254 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/references/audit-table-template.md +58 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/references/font-discipline.md +363 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pptx-html-fidelity-audit/references/layout-discipline.md +371 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pricing-page/SKILL.md +79 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pricing-page/example.html +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/pricing-page/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/SKILL.md +233 -0
- package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/assets/template.html +488 -0
- package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/open-design.json +148 -0
- package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/checklist.md +112 -0
- package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/components.md +143 -0
- package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/layouts.md +457 -0
- package/runtime/vendor/plugins/open-design/_official/examples/replit-deck/references/themes.md +326 -0
- package/runtime/vendor/plugins/open-design/_official/examples/resume-modern/SKILL.md +43 -0
- package/runtime/vendor/plugins/open-design/_official/examples/resume-modern/example.html +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/resume-modern/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/saas-landing/SKILL.md +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/saas-landing/example.html +153 -0
- package/runtime/vendor/plugins/open-design/_official/examples/saas-landing/open-design.json +154 -0
- package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/SKILL.md +120 -0
- package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/assets/template.html +393 -0
- package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/example.html +269 -0
- package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/open-design.json +195 -0
- package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/references/checklist.md +55 -0
- package/runtime/vendor/plugins/open-design/_official/examples/simple-deck/references/layouts.md +201 -0
- package/runtime/vendor/plugins/open-design/_official/examples/skyelite-private-jets/SKILL.md +95 -0
- package/runtime/vendor/plugins/open-design/_official/examples/skyelite-private-jets/example.html +284 -0
- package/runtime/vendor/plugins/open-design/_official/examples/skyelite-private-jets/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-carousel/SKILL.md +92 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-carousel/example.html +219 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-carousel/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-dashboard/SKILL.md +118 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-dashboard/example.html +1534 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-dashboard/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/SKILL.md +107 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/assets/template.html +1258 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/example.html +1258 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/open-design.json +134 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-media-matrix-tracker-template/references/checklist.md +25 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-reddit-card/SKILL.md +68 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-reddit-card/example.html +56 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-reddit-card/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-spotify-card/SKILL.md +67 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-spotify-card/example.html +70 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-spotify-card/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-x-post-card/SKILL.md +65 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-x-post-card/example.html +53 -0
- package/runtime/vendor/plugins/open-design/_official/examples/social-x-post-card/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/sprite-animation/SKILL.md +95 -0
- package/runtime/vendor/plugins/open-design/_official/examples/sprite-animation/example.html +271 -0
- package/runtime/vendor/plugins/open-design/_official/examples/sprite-animation/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/stellar-launch/SKILL.md +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/stellar-launch/example.html +498 -0
- package/runtime/vendor/plugins/open-design/_official/examples/stellar-launch/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/team-okrs/SKILL.md +47 -0
- package/runtime/vendor/plugins/open-design/_official/examples/team-okrs/example.html +207 -0
- package/runtime/vendor/plugins/open-design/_official/examples/team-okrs/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/SKILL.md +78 -0
- package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/assets/template.html +284 -0
- package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/example.html +22 -0
- package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/examples/trading-analysis-dashboard-template/references/checklist.md +32 -0
- package/runtime/vendor/plugins/open-design/_official/examples/tweaks/SKILL.md +240 -0
- package/runtime/vendor/plugins/open-design/_official/examples/tweaks/assets/wrap.html +437 -0
- package/runtime/vendor/plugins/open-design/_official/examples/tweaks/example.html +750 -0
- package/runtime/vendor/plugins/open-design/_official/examples/tweaks/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/SKILL.md +199 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/example.html +1150 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-midnight-editorial/open-design.json +148 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/SKILL.md +172 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/example.html +948 -0
- package/runtime/vendor/plugins/open-design/_official/examples/ve-terminal-mono/open-design.json +144 -0
- package/runtime/vendor/plugins/open-design/_official/examples/velar-luxury-real-estate/SKILL.md +99 -0
- package/runtime/vendor/plugins/open-design/_official/examples/velar-luxury-real-estate/example.html +377 -0
- package/runtime/vendor/plugins/open-design/_official/examples/velar-luxury-real-estate/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/vfx-text-cursor/SKILL.md +64 -0
- package/runtime/vendor/plugins/open-design/_official/examples/vfx-text-cursor/example.html +65 -0
- package/runtime/vendor/plugins/open-design/_official/examples/vfx-text-cursor/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/video-hyperframes/SKILL.md +46 -0
- package/runtime/vendor/plugins/open-design/_official/examples/video-hyperframes/example.html +140 -0
- package/runtime/vendor/plugins/open-design/_official/examples/video-hyperframes/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/examples/video-shortform/SKILL.md +128 -0
- package/runtime/vendor/plugins/open-design/_official/examples/video-shortform/example.html +90 -0
- package/runtime/vendor/plugins/open-design/_official/examples/video-shortform/open-design.json +119 -0
- package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/SKILL.md +229 -0
- package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/assets/template.html +457 -0
- package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/example.html +400 -0
- package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/open-design.json +248 -0
- package/runtime/vendor/plugins/open-design/_official/examples/waitlist-page/references/checklist.md +42 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/SKILL.md +103 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/assets/template.html +338 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/example.html +81 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/open-design.json +172 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/references/checklist.md +44 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype/references/layouts.md +247 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-brutalist/SKILL.md +61 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-brutalist/example.html +449 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-brutalist/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-editorial/SKILL.md +60 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-editorial/example.html +392 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-editorial/open-design.json +119 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-soft/SKILL.md +63 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-soft/example.html +542 -0
- package/runtime/vendor/plugins/open-design/_official/examples/web-prototype-taste-soft/open-design.json +119 -0
- package/runtime/vendor/plugins/open-design/_official/examples/weekly-update/SKILL.md +50 -0
- package/runtime/vendor/plugins/open-design/_official/examples/weekly-update/example.html +337 -0
- package/runtime/vendor/plugins/open-design/_official/examples/weekly-update/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/examples/wireframe-sketch/SKILL.md +97 -0
- package/runtime/vendor/plugins/open-design/_official/examples/wireframe-sketch/example.html +256 -0
- package/runtime/vendor/plugins/open-design/_official/examples/wireframe-sketch/open-design.json +125 -0
- package/runtime/vendor/plugins/open-design/_official/examples/x-research/SKILL.md +116 -0
- package/runtime/vendor/plugins/open-design/_official/examples/x-research/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/3d-stone-staircase-evolution-infographic/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/3d-stone-staircase-evolution-infographic/template.json +20 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/anime-martial-arts-battle-illustration/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/anime-martial-arts-battle-illustration/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/e-commerce-live-stream-ui-mockup/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/e-commerce-live-stream-ui-mockup/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-anime-fighting-game-captain-ryuuga-vs-kaze-renshin/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-anime-fighting-game-captain-ryuuga-vs-kaze-renshin/template.json +28 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-guanyu-slaying-yanliang/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-guanyu-slaying-yanliang/template.json +28 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-lyubu-yuanmen-archery/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-lyubu-yuanmen-archery/template.json +27 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-zhaoyun-cradle-escape/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-screenshot-three-kingdoms-zhaoyun-cradle-escape/template.json +29 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-ui-ancient-china-open-world-mmo-hud/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/game-ui-ancient-china-open-world-mmo-hud/template.json +26 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/illustrated-city-food-map/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/illustrated-city-food-map/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/illustration-crayon-kid-drawing-rework/open-design.json +127 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/illustration-crayon-kid-drawing-rework/template.json +27 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/infographic-otaku-dance-choreography-breakdown-gokurakujodo-16-panels/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/infographic-otaku-dance-choreography-breakdown-gokurakujodo-16-panels/template.json +29 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/momotaro-explainer-slide-in-hybrid-style/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/momotaro-explainer-slide-in-hybrid-style/template.json +18 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/notion-team-dashboard-live-artifact/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/notion-team-dashboard-live-artifact/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-anime-girl-to-cinematic-photo/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-anime-girl-to-cinematic-photo/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-casual-fashion-grid-photoshoot/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-casual-fashion-grid-photoshoot/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cinematic-south-asian-male-portrait-with-vultures/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cinematic-south-asian-male-portrait-with-vultures/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cyberpunk-anime-portrait-with-neon-face-text/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-cyberpunk-anime-portrait-with-neon-face-text/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-elegant-fantasy-girl-in-violet-garden/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-elegant-fantasy-girl-in-violet-garden/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-ethereal-blue-haired-fantasy-portrait/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-ethereal-blue-haired-fantasy-portrait/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-glamorous-woman-in-black-portrait/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-glamorous-woman-in-black-portrait/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-hyper-realistic-selfie-texture-prompts/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-hyper-realistic-selfie-texture-prompts/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-lavender-fantasy-mage-portrait/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-lavender-fantasy-mage-portrait/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-monochrome-studio-portrait/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-monochrome-studio-portrait/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-old-photo-restoration-to-dslr-portrait/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-old-photo-restoration-to-dslr-portrait/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-poetic-woman-in-garden-portrait/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-poetic-woman-in-garden-portrait/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-professional-identity-portrait-wallpaper/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-professional-identity-portrait-wallpaper/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-realistically-imperfect-ai-selfie/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-realistically-imperfect-ai-selfie/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-signed-marker-portrait-on-shikishi/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-signed-marker-portrait-on-shikishi/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-empress-portrait/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-empress-portrait/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-mask-hanfu-portrait/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snow-rabbit-mask-hanfu-portrait/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-hanfu-portrait/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-hanfu-portrait/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-spirit-portrait/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-snowy-rabbit-spirit-portrait/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-song-dynasty-hanfu-portrait/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/profile-avatar-song-dynasty-hanfu-portrait/template.json +20 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-anime-pokemon-shop-outfit-teaser-poster/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-anime-pokemon-shop-outfit-teaser-poster/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-cinematic-elevator-scene/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-cinematic-elevator-scene/template.json +20 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-confused-elf-girl-at-pastel-desk/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-confused-elf-girl-at-pastel-desk/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-editorial-fashion-photography/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-editorial-fashion-photography/template.json +18 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-fashion-editorial-collage/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-fashion-editorial-collage/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-psg-transfer-announcement-poster/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-psg-transfer-announcement-poster/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-sensational-girl-dance-storyboard-8-shots/open-design.json +126 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-sensational-girl-dance-storyboard-8-shots/template.json +25 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-showa-day-retro-culture-magazine-cover/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-showa-day-retro-culture-magazine-cover/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-social-media-fashion-outfit-generation/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-social-media-fashion-outfit-generation/template.json +20 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-travel-snapshot-collage-prompt/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-travel-snapshot-collage-prompt/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-vintage-sign-painter-sketch/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/social-media-post-vintage-sign-painter-sketch/template.json +20 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/vr-headset-exploded-view-poster/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/image-templates/vr-headset-exploded-view-poster/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-code-migration/SKILL.md +47 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-code-migration/examples/jquery-to-react.html +152 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-code-migration/open-design.json +165 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-default/SKILL.md +75 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-default/open-design.json +184 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-design-refine/SKILL.md +18 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-design-refine/open-design.json +141 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-figma-migration/SKILL.md +47 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-figma-migration/examples/dashboard-card.html +153 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-figma-migration/open-design.json +155 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-media-generation/SKILL.md +75 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-media-generation/open-design.json +166 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-new-generation/SKILL.md +41 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-new-generation/examples/saas-landing.html +130 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-new-generation/open-design.json +156 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-nextjs-export/SKILL.md +17 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-nextjs-export/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-plugin-authoring/SKILL.md +45 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-plugin-authoring/open-design.json +137 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-react-export/SKILL.md +17 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-react-export/open-design.json +119 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-share-to-community/SKILL.md +79 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-share-to-community/open-design.json +85 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-tune-collab/SKILL.md +38 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-tune-collab/examples/hero-tune.html +155 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-tune-collab/open-design.json +135 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-vue-export/SKILL.md +17 -0
- package/runtime/vendor/plugins/open-design/_official/scenarios/od-vue-export/open-design.json +119 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/3d-animated-boy-building-lego/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/3d-animated-boy-building-lego/template.json +19 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/HYPERFRAMES-ATTRIBUTIONS.md +58 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/a-decade-of-refinement-glow-up/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/a-decade-of-refinement-glow-up/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-guardian-dragon-rescue/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-guardian-dragon-rescue/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-indian-kingdom-fpv-video/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/ancient-indian-kingdom-fpv-video/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/animation-transfer-and-camera-tracking-prompt/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/animation-transfer-and-camera-tracking-prompt/template.json +19 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/beat-synced-outfit-transformation-dance/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/beat-synced-outfit-transformation-dance/template.json +20 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/character-intro-motion-graphics-sequence/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/character-intro-motion-graphics-sequence/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-birthday-celebration-sequence/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-birthday-celebration-sequence/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-dragon-interaction-flight/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-dragon-interaction-flight/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-east-asian-woman-hand-dance/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-east-asian-woman-hand-dance/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-emotional-face-close-up/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-emotional-face-close-up/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-marine-biologist-exploration/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-marine-biologist-exploration/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-music-podcast-and-guitar-technique/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-music-podcast-and-guitar-technique/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-route-navigation-guide/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-route-navigation-guide/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-street-racing-sequence-for-seedance-2/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-street-racing-sequence-for-seedance-2/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-vampire-alley-fight-sequence/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cinematic-vampire-alley-fight-sequence/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/crimson-horizon-sci-fi-cinematic-sequence/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/crimson-horizon-sci-fi-cinematic-sequence/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cyberpunk-game-trailer-script/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/cyberpunk-game-trailer-script/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/forbidden-city-cat-satire/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/forbidden-city-cat-satire/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/open-design.json +141 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f31712e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f41652e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f45772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f49632e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f54672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f71552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts/f74512e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/fonts.css +146 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/source/index.html +127 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-poster/template.json +55 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/open-design.json +139 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f33452e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f45772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f71552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts/f76512e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/fonts.css +101 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/source/index.html +85 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-bold-signal/template.json +53 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/open-design.json +139 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/fonts/f6e772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/fonts/f77552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/fonts.css +254 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/source/index.html +113 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-build-minimal/template.json +53 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/open-design.json +138 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f33512e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f34742e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f45592e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f4d672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f59672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f62672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f73772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts/f77512e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/fonts.css +146 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/source/index.html +94 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-creative-voltage/template.json +52 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f2d6f2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f46512e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f4e552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f4e6b2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f59302e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f5a682e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f62512e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f66672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f66772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f724d2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f75322e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts/f7a672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/fonts.css +433 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/index.html +102 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/source/tailwind.css +1 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-chart-nyt/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/open-design.json +141 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/source/DataRollup.tsx +208 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/source/Root.tsx +40 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/source/entry.ts +7 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-data-rollup/template.json +55 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/open-design.json +128 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/compositions/decision_tree.html +434 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/fonts/f6e772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/fonts/f77552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/fonts.css +191 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/source/index.html +67 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-decision-tree/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/open-design.json +138 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/fonts/f4e342e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/fonts/f5a772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/fonts.css +218 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/source/index.html +86 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-electric-studio/template.json +52 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f2d342e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f45772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f46672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts/f71552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/fonts.css +164 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/index.html +100 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/source/tailwind.css +1 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-glitch-title/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/compositions/main-graphics.html +589 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f32552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f474d2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f49632e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f54672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f59592e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f6e772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f726f2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts/f77552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/fonts.css +308 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/source/index.html +72 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-kinetic-type/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f2d6f2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f46512e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f49672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f4e6b2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f50492e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f57672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f576b2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f59302e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f66672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f66772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f75322e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts/f7a672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/fonts.css +451 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/index.html +82 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/source/tailwind.css +1 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-light-leak-cinema/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f48712e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f62412e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f65382e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f66672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f6d672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts/f75322e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/fonts.css +361 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/index.html +65 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/source/tailwind.css +1 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-liquid-bg-hero/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f65382e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f6d672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f6e772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts/f77552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/fonts.css +442 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/index.html +81 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/source/tailwind.css +1 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-logo-outro/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/compositions/nyt-chart.html +448 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f32552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f4e6f2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f624a2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts/f726f2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/fonts.css +173 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/source/index.html +65 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-nyt-graph/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/open-design.json +139 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/fonts/f50552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/fonts/f526e2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/fonts.css +92 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/source/index.html +136 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-pentagram-stat/template.json +53 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/compositions/captions.html +164 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/compositions/intro.html +108 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/compositions/stats.html +388 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/fonts/f54352e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/fonts/f65672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/fonts.css +47 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/source/index.html +240 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-play-mode/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/assets/figma-cursors.svg +30 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/assets/figma-logo-pieces.svg +15 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/assets/figma-logo-pills.svg +6 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/compositions/scene1-logo-intro.html +190 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/compositions/scene2-4-canvas.html +574 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/compositions/scene5-logo-outro.html +227 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/fonts/f6e772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/fonts/f77552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/fonts.css +254 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/source/index.html +169 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/open-design.json +131 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/brand-logo.svg +4 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/brand-symbol.svg +5 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/screenshot-1.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/screenshot-2.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/screenshot-3.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/sfx-twinkle.mp3 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/sfx-whoosh-1.mp3 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/sfx-whoosh-2.mp3 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/assets/warm-pad.mp3 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/01-problem-type.html +185 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/02-card-to-logo.html +164 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/03-brand-reveal.html +128 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/04-benefits-flowchart.html +165 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/05-product-surfaces.html +168 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/06-wheel-pillars.html +182 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/07-foundation.html +205 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/compositions/08-cta-outro.html +174 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f2d342e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f30552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f35672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f35772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f36312e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f36442e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f45772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f46672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f4e732e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f524b2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f54642e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f59342e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f6a592e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f6e772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f71552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts/f77552e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/fonts.css +1094 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/source/index.html +147 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-product-promo-30s/template.json +39 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/assets/swiss-grid.svg +116 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/compositions/captions.html +151 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/compositions/graphics.html +207 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/compositions/intro.html +132 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/source/index.html +233 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-swiss-grid/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/open-design.json +139 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/fonts/f4e342e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/fonts/f5a772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/fonts.css +272 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/source/index.html +97 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-takram-organic/template.json +53 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/source/compositions/captions.html +187 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/source/compositions/overlays.html +324 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/source/index.html +203 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-vignelli/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/open-design.json +129 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/compositions/captions.html +154 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/compositions/graphics.html +165 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/compositions/intro.html +87 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/fonts/f424a2e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/fonts/f6e772e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/fonts.css +38 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/index.html +285 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/source/textures/natural-paper.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/frame-warm-grain/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/hollywood-haute-couture-fantasy-video-prompt/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/hollywood-haute-couture-fantasy-video-prompt/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/hunched-character-animation/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/hunched-character-animation/template.json +19 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/live-action-anime-adaptation-water-vs-thunder-breathing-duel/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/live-action-anime-adaptation-water-vs-thunder-breathing-duel/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/luxury-supercar-cinematic-narrative/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/luxury-supercar-cinematic-narrative/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/magical-academy-storyboard-sequence/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/magical-academy-storyboard-sequence/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/modern-rural-aesthetics-healing-short-film-video-prompt/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/modern-rural-aesthetics-healing-short-film-video-prompt/template.json +23 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/nightclub-flyer-atmospheric-animation/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/nightclub-flyer-atmospheric-animation/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/retro-hk-wuxia-film-aesthetic/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/retro-hk-wuxia-film-aesthetic/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-15-second-cinematic-japanese-romance-short-film/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-15-second-cinematic-japanese-romance-short-film/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-80-year-old-rapper-mv/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/seedance-2-0-80-year-old-rapper-mv/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/sequence-and-movement-instruction-for-martial-arts-video/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/sequence-and-movement-instruction-for-martial-arts-video/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/soul-switching-mirror-magic-sequence/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/soul-switching-mirror-magic-sequence/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/toaster-rocket-jumpscare/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/toaster-rocket-jumpscare/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/traditional-dance-performance/open-design.json +122 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/traditional-dance-performance/template.json +22 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/SKILL.md +33 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/open-design.json +123 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/preview.mp4 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/preview.png +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f56382e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f65382e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f6d672e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts/f76412e776f666632.woff2 +0 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/fonts.css +307 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/index.html +66 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/source/tailwind.css +1 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vfx-text-cursor/template.json +37 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-desk-hologram-ar-realdesk/open-design.json +87 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-desk-hologram-ar-realdesk/template.json +30 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-guanyu-slaying-yanliang/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-guanyu-slaying-yanliang/template.json +30 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-lyubu-yuanmen-archery/open-design.json +130 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-lyubu-yuanmen-archery/template.json +30 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-zhaoyun-cradle-escape/open-design.json +131 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/video-seedance-three-kingdoms-zhaoyun-cradle-escape/template.json +31 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vintage-disney-style-pirate-crocodile-animation/open-design.json +120 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/vintage-disney-style-pirate-crocodile-animation/template.json +19 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/viral-k-pop-dance-choreography/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/viral-k-pop-dance-choreography/template.json +21 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/wasteland-factory-chase/open-design.json +121 -0
- package/runtime/vendor/plugins/open-design/_official/video-templates/wasteland-factory-chase/template.json +21 -0
- package/runtime/vendor/plugins/open-design/community/deep-think-maximum-cognitive-effort-protocol-mq8kvw92/SKILL.md +149 -0
- package/runtime/vendor/plugins/open-design/community/deep-think-maximum-cognitive-effort-protocol-mq8kvw92/open-design.json +29 -0
- package/runtime/vendor/plugins/open-design/community/deep-think-maximum-cognitive-effort-protocol-mq8kvw92/references/source-1-mpj79mp4-deep-think.md +4 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/LICENSE +21 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/SKILL.md +552 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/open-design.json +58 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/anti-patterns.md +412 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/assets.md +406 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/color.md +95 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/component-cookbook.md +254 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c1-outlined-chip.md +12 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c2-inline-form-as-cta.md +16 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c3-typographic-link.md +8 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/c4-sticky-bottom-bar.md +16 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f1-bento-grid.md +20 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f2-sticky-scroll-stack.md +20 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f3-tabular-spec-sheet.md +11 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f4-step-sequence.md +11 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f5-annotated-screenshot.md +11 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/f6-product-card-grid.md +41 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft1-mast-headed.md +13 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft2-inline-rule-single-line.md +10 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft3-index-style-category-list.md +12 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft4-dense-typographic.md +10 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft5-statement.md +21 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft6-letter-close.md +19 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft7-newsletter-first.md +27 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/ft8-marquee-scroll.md +25 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h1-marquee.md +15 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h2-split-diptych.md +15 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h3-quote-led.md +11 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h4-stat-led.md +14 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h5-letter-hero.md +11 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h6-photographic-fold.md +16 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h7-demo-video-clipped-by-viewport-edge.md +27 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h8-mockup-split-browser-framed.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/h9-custom-illustration-centerpiece.md +27 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n1-wordmark-2-links.md +12 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n10-floating-on-scroll-morph.md +19 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n2-floating-chip.md +14 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n3-side-rail.md +14 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n4-hidden-behind-k.md +9 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n5-floating-pill.md +28 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n6-newspaper-masthead.md +24 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n7-brutal-slab.md +22 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n8-terminal-command.md +21 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/n9-edge-aligned-minimal.md +17 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s1-left-margin-numbered.md +15 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s2-hanging.md +13 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s3-sticky-pinned.md +19 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s4-inline-no-break.md +11 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/s5-bottom-anchored.md +13 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t1-pull-quote-with-marginalia.md +12 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t2-logo-wall-hairline.md +19 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t3-single-huge-quote.md +11 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/components/t4-numbered-stat-strip.md +14 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/contract.md +24 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/copy.md +182 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/custom-craft.md +626 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/custom-theme.md +329 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/design-md.md +116 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/export-formats.md +328 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/floating-nav.md +89 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/atmospheric.md +65 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/editorial.md +70 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/modern-minimal.md +67 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/genres/playful.md +65 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/hero-enrichment.md +474 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/imagery-kit.md +170 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/interaction-and-states.md +207 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/layout-and-space.md +111 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/01-bento-grid.md +35 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/02-long-document.md +34 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/03-marquee-hero.md +31 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/04-stat-led.md +32 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/05-workbench.md +32 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/06-conversational-faq.md +33 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/07-manifesto.md +32 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/08-photographic.md +34 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/09-quote-led.md +32 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/10-specimen.md +32 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/11-catalogue.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/12-letter.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/13-index-first.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/14-narrative-workflow.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/15-split-studio.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/16-feature-stack.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/17-type-specimen.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/18-portfolio-grid.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/19-map-diagram.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/20-ecosystem-index.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures/21-component-playground.md +23 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/macrostructures.md +89 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/microinteractions.md +260 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/motion.md +109 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/preview-examples.md +49 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/responsive.md +138 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/slop-test.md +205 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/structure.md +164 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/study.md +511 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/typography.md +243 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/verbs/audit.md +25 -0
- package/runtime/vendor/plugins/open-design/community/hallmark/references/verbs/redesign.md +269 -0
- package/runtime/vendor/plugins/open-design/community/import-smoke-test/.claude-plugin/plugin.json +5 -0
- package/runtime/vendor/plugins/open-design/community/import-smoke-test/README.md +19 -0
- package/runtime/vendor/plugins/open-design/community/import-smoke-test/SKILL.md +21 -0
- package/runtime/vendor/plugins/open-design/community/import-smoke-test/assets/import-checklist.md +7 -0
- package/runtime/vendor/plugins/open-design/community/import-smoke-test/open-design.json +124 -0
- package/runtime/vendor/plugins/open-design/community/import-smoke-test/preview/index.html +128 -0
- package/runtime/vendor/plugins/open-design/community/registry-starter/SKILL.md +10 -0
- package/runtime/vendor/plugins/open-design/community/registry-starter/open-design.json +37 -0
- package/runtime/vendor/plugins/open-design/marketplace.json +16 -0
- package/runtime/vendor/plugins/open-design/open-design/.claude-plugin/plugin.json +7 -0
- package/runtime/vendor/plugins/open-design/open-design/.mcp.json +9 -0
- package/runtime/vendor/plugins/open-design/registry/community/open-design-marketplace.json +86 -0
- package/runtime/vendor/plugins/open-design/registry/official/open-design-marketplace.json +11999 -0
- package/runtime/vendor/plugins/open-design/spec/AGENT-DEVELOPMENT.md +83 -0
- package/runtime/vendor/plugins/open-design/spec/AGENT-DEVELOPMENT.zh-CN.md +83 -0
- package/runtime/vendor/plugins/open-design/spec/CONTRIBUTING.md +59 -0
- package/runtime/vendor/plugins/open-design/spec/CONTRIBUTING.zh-CN.md +59 -0
- package/runtime/vendor/plugins/open-design/spec/PUBLISHING-REGISTRIES.md +138 -0
- package/runtime/vendor/plugins/open-design/spec/PUBLISHING-REGISTRIES.zh-CN.md +138 -0
- package/runtime/vendor/plugins/open-design/spec/README.md +68 -0
- package/runtime/vendor/plugins/open-design/spec/README.zh-CN.md +68 -0
- package/runtime/vendor/plugins/open-design/spec/SPEC.md +218 -0
- package/runtime/vendor/plugins/open-design/spec/SPEC.zh-CN.md +218 -0
- package/runtime/vendor/plugins/open-design/spec/examples/README.md +23 -0
- package/runtime/vendor/plugins/open-design/spec/examples/README.zh-CN.md +23 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-hyperframes-launch/SKILL.md +26 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-hyperframes-launch/open-design.json +48 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-image-campaign/SKILL.md +26 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-image-campaign/open-design.json +47 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-live-artifact-ops/SKILL.md +27 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-live-artifact-ops/example.html +173 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-live-artifact-ops/open-design.json +60 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/README.md +10 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/SKILL.md +27 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/assets/seed-brief.md +10 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/evals/evals.json +18 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/example.html +262 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/open-design.json +61 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-prototype-dashboard/preview/index.html +89 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-slides-pitch/SKILL.md +27 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-slides-pitch/example.html +178 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-slides-pitch/open-design.json +60 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-video-storyboard/SKILL.md +26 -0
- package/runtime/vendor/plugins/open-design/spec/examples/create-video-storyboard/open-design.json +47 -0
- package/runtime/vendor/plugins/open-design/spec/examples/deploy-vercel-static/SKILL.md +23 -0
- package/runtime/vendor/plugins/open-design/spec/examples/deploy-vercel-static/open-design.json +55 -0
- package/runtime/vendor/plugins/open-design/spec/examples/export-nextjs-handoff/SKILL.md +23 -0
- package/runtime/vendor/plugins/open-design/spec/examples/export-nextjs-handoff/open-design.json +39 -0
- package/runtime/vendor/plugins/open-design/spec/examples/extend-plugin-author/SKILL.md +23 -0
- package/runtime/vendor/plugins/open-design/spec/examples/extend-plugin-author/open-design.json +46 -0
- package/runtime/vendor/plugins/open-design/spec/examples/import-screenshot-to-prototype/SKILL.md +24 -0
- package/runtime/vendor/plugins/open-design/spec/examples/import-screenshot-to-prototype/open-design.json +44 -0
- package/runtime/vendor/plugins/open-design/spec/examples/open-design-marketplace.json +88 -0
- package/runtime/vendor/plugins/open-design/spec/examples/refine-critique-loop/SKILL.md +23 -0
- package/runtime/vendor/plugins/open-design/spec/examples/refine-critique-loop/open-design.json +43 -0
- package/runtime/vendor/plugins/open-design/spec/examples/share-github-pr/SKILL.md +23 -0
- package/runtime/vendor/plugins/open-design/spec/examples/share-github-pr/open-design.json +54 -0
- package/runtime/vendor/plugins/open-design/spec/templates/README.template.md +30 -0
- package/runtime/vendor/plugins/open-design/spec/templates/README.template.zh-CN.md +30 -0
- package/runtime/vendor/plugins/open-design/spec/templates/SKILL.template.md +40 -0
- package/runtime/vendor/plugins/open-design/spec/templates/evals.template.json +26 -0
- package/runtime/vendor/plugins/open-design/spec/templates/open-design.template.json +45 -0
- package/runtime/vendor/plugins/ruflo/README.md +155 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/README.md +86 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/REFERENCE.md +112 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/agents/adr-architect.md +45 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/commands/adr.md +46 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/scripts/import.mjs +283 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/scripts/smoke.sh +130 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/scripts/verify.mjs +121 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-create/SKILL.md +61 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-index/SKILL.md +73 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-review/SKILL.md +55 -0
- package/runtime/vendor/plugins/ruflo/ruflo-adr/skills/adr-verify/SKILL.md +42 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/.claude-plugin/plugin.json +25 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/README.md +99 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-coordinator.md +71 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-leaf.md +56 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen-leaf.md +116 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen-researcher.md +165 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen-reviewer.md +155 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-queen.md +180 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-researcher.md +62 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/nested-reviewer.md +75 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/agents/wasm-specialist.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/commands/managed-agent.md +13 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/commands/wasm.md +10 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/scripts/smoke.sh +104 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/managed-agent/SKILL.md +56 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/nested-subagents/SKILL.md +69 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/wasm-agent/SKILL.md +31 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agent/skills/wasm-gallery/SKILL.md +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/.claude-plugin/plugin.json +24 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/README.md +221 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/agents/agentdb-specialist.md +84 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/commands/agentdb.md +12 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/commands/embeddings.md +17 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/scripts/smoke.sh +204 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/skills/agentdb-query/SKILL.md +54 -0
- package/runtime/vendor/plugins/ruflo/ruflo-agentdb/skills/vector-search/SKILL.md +94 -0
- package/runtime/vendor/plugins/ruflo/ruflo-aidefence/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-aidefence/README.md +79 -0
- package/runtime/vendor/plugins/ruflo/ruflo-aidefence/agents/safety-specialist.md +43 -0
- package/runtime/vendor/plugins/ruflo/ruflo-aidefence/commands/aidefence.md +10 -0
- package/runtime/vendor/plugins/ruflo/ruflo-aidefence/scripts/smoke.sh +84 -0
- package/runtime/vendor/plugins/ruflo/ruflo-aidefence/skills/pii-detect/SKILL.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-aidefence/skills/safety-scan/SKILL.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/.claude-plugin/plugin.json +24 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/README.md +78 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/commands/arena.md +59 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/eslint.config.js +19 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/package.json +47 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/cli.ts +116 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/domain/games.ts +61 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/domain/strategies.ts +191 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/domain/types.ts +146 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/arena.ts +54 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/evolution.ts +91 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/index.ts +11 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/rng.ts +27 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/engine/tournament.ts +46 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/index.ts +55 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/mcp-tools/index.ts +269 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/persistence/run-store.ts +127 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/src/report/render.ts +80 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/evolution.test.ts +31 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/games-arena.test.ts +54 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/mcp-tools.test.ts +92 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/tests/tournament.test.ts +37 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/tsconfig.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-arena/vitest.config.ts +9 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/README.md +76 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/agents/autopilot-coordinator.md +42 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/commands/autopilot-status.md +15 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/commands/autopilot.md +18 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/scripts/smoke.sh +76 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/skills/autopilot-loop/SKILL.md +27 -0
- package/runtime/vendor/plugins/ruflo/ruflo-autopilot/skills/autopilot-predict/SKILL.md +26 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/.claude-plugin/plugin.json +24 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/README.md +131 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/agents/browser-agent.md +107 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/commands/ruflo-browser.md +63 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/scripts/SITES.txt +18 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/scripts/replay-spike.sh +157 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/scripts/smoke.sh +143 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-auth-flow/SKILL.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-extract/SKILL.md +55 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-form-fill/SKILL.md +40 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-login/SKILL.md +46 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-record/SKILL.md +49 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-replay/SKILL.md +47 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-scrape/SKILL.md +36 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-screenshot-diff/SKILL.md +37 -0
- package/runtime/vendor/plugins/ruflo/ruflo-browser/skills/browser-test/SKILL.md +48 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/.claude-plugin/plugin.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/.mcp.json +11 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/README.md +72 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/agents/coder.md +31 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/agents/researcher.md +80 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/agents/reviewer.md +19 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/agents/witness-curator.md +79 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/commands/ruflo-status.md +11 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/commands/witness.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/hooks/hooks.json +77 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/ruflo-hook.cjs +166 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/ruflo-hook.sh +33 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/smoke.sh +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-cli-no-crash.mjs +103 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-consensus-transport.mjs +108 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-hooks.mjs +129 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-mcp-protocol.mjs +66 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-mcp-roundtrips.mjs +141 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/test-memory-import.mjs +174 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/history.mjs +105 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/init.mjs +83 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/lib.mjs +300 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/perf.mjs +204 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/regen.mjs +94 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/scripts/witness/verify.mjs +213 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/skills/discover-plugins/SKILL.md +119 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/skills/init-project/SKILL.md +9 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/skills/ruflo-doctor/SKILL.md +14 -0
- package/runtime/vendor/plugins/ruflo/ruflo-core/skills/witness/SKILL.md +102 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/.claude-plugin/plugin.json +54 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/README.md +180 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/REFERENCE.md +92 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/agents/cost-analyst.md +98 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/bench/booster-corpus.json +244 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/commands/ruflo-cost.md +162 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/hooks/hooks.json +17 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/_prices.mjs +58 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/_sessions.mjs +74 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/anomaly.mjs +224 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/bench.mjs +422 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/budget.mjs +218 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/burn.mjs +200 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/compact.mjs +153 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/conversation.mjs +76 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/counterfactual.mjs +188 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/diff.mjs +280 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/export.mjs +154 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/federation.mjs +134 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/health.mjs +229 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/outcome.mjs +43 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/projection.mjs +205 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/ruflo-hook.cjs +56 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/session.mjs +225 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/smoke.sh +650 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/summary.mjs +221 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/test-health-integration.mjs +176 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/track.mjs +175 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/scripts/trend.mjs +141 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-anomaly/SKILL.md +92 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-benchmark/SKILL.md +59 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-booster-edit/SKILL.md +85 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-booster-route/SKILL.md +42 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-budget-check/SKILL.md +65 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-burn/SKILL.md +76 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-compact-context/SKILL.md +37 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-conversation/SKILL.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-counterfactual/SKILL.md +54 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-diff/SKILL.md +131 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-export/SKILL.md +59 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-federation/SKILL.md +55 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-health/SKILL.md +92 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-optimize/SKILL.md +47 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-projection/SKILL.md +61 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-report/SKILL.md +36 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-session/SKILL.md +87 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-summary/SKILL.md +74 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-track/SKILL.md +79 -0
- package/runtime/vendor/plugins/ruflo/ruflo-cost-tracker/skills/cost-trend/SKILL.md +44 -0
- package/runtime/vendor/plugins/ruflo/ruflo-daa/.claude-plugin/plugin.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-daa/README.md +69 -0
- package/runtime/vendor/plugins/ruflo/ruflo-daa/agents/daa-specialist.md +42 -0
- package/runtime/vendor/plugins/ruflo/ruflo-daa/commands/daa.md +10 -0
- package/runtime/vendor/plugins/ruflo/ruflo-daa/scripts/smoke.sh +77 -0
- package/runtime/vendor/plugins/ruflo/ruflo-daa/skills/cognitive-pattern/SKILL.md +29 -0
- package/runtime/vendor/plugins/ruflo/ruflo-daa/skills/daa-agent/SKILL.md +31 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/.claude-plugin/plugin.json +23 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/README.md +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/REFERENCE.md +73 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/agents/domain-modeler.md +54 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/commands/ddd.md +43 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/scripts/smoke.sh +72 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/skills/ddd-aggregate/SKILL.md +51 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/skills/ddd-context/SKILL.md +45 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ddd/skills/ddd-validate/SKILL.md +50 -0
- package/runtime/vendor/plugins/ruflo/ruflo-docs/.claude-plugin/plugin.json +20 -0
- package/runtime/vendor/plugins/ruflo/ruflo-docs/README.md +72 -0
- package/runtime/vendor/plugins/ruflo/ruflo-docs/agents/docs-writer.md +49 -0
- package/runtime/vendor/plugins/ruflo/ruflo-docs/commands/ruflo-docs.md +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-docs/scripts/smoke.sh +71 -0
- package/runtime/vendor/plugins/ruflo/ruflo-docs/skills/api-docs/SKILL.md +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-docs/skills/doc-gen/SKILL.md +19 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/.claude-plugin/plugin.json +26 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/README.md +99 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/agents/federation-coordinator.md +56 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/commands/federation.md +40 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/scripts/smoke.sh +86 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/skills/federation-audit/SKILL.md +19 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/skills/federation-init/SKILL.md +15 -0
- package/runtime/vendor/plugins/ruflo/ruflo-federation/skills/federation-status/SKILL.md +15 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/.claude-plugin/plugin.json +26 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/README.md +89 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/deep-researcher.md +61 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/dossier-investigator.md +68 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/goal-planner.md +89 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/agents/horizon-tracker.md +67 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/commands/goals.md +12 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/scripts/smoke.sh +87 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/deep-research/SKILL.md +43 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/dossier-collect/SKILL.md +70 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/goal-plan/SKILL.md +59 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/horizon-track/SKILL.md +61 -0
- package/runtime/vendor/plugins/ruflo/ruflo-goals/skills/research-synthesize/SKILL.md +62 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/.claude-plugin/plugin.json +27 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/package-lock.json +15432 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/package.json +55 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/aidefence-suspicion-adapter.ts +102 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/browser-causal-adapter.ts +193 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/cost-attribution-adapter.ts +123 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/federation-trust-adapter.ts +116 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/index.ts +87 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/jujutsu-blast-radius-adapter.ts +107 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/knowledge-graph-adapter.ts +183 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/observability-span-adapter.ts +123 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/portfolio-cg-adapter.ts +140 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/adapters/rag-memory-adapter.ts +117 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/application/federation-client.ts +147 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/application/federation-server.ts +158 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/application/streaming-bridge.ts +137 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/adapter.ts +92 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/federation-protocol.ts +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/signed-artifact.ts +80 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/domain/types.ts +215 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/index.ts +105 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/infrastructure/jl-embed.ts +98 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/infrastructure/solver-bridge.ts +389 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/infrastructure/witness-signer.ts +209 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/src/mcp-tools/index.ts +316 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/adapter-registry.test.ts +69 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/browser-causal-adapter.test.ts +174 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/mcp-tools.test.ts +169 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase3-adapters.test.ts +206 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase4-adapters.test.ts +158 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase5-portfolio.test.ts +122 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase6-adapters.test.ts +224 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase6_5-streaming.test.ts +135 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase7-signed-artifact.test.ts +238 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/phase8-federation.test.ts +194 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tests/solver-bridge.test.ts +255 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/tsconfig.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-graph-intelligence/vitest.config.ts +9 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/.claude-plugin/plugin.json +26 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/README.md +143 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/agents/intelligence-specialist.md +106 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/commands/intelligence.md +25 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/commands/neural.md +15 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/scripts/smoke.sh +152 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/skills/intelligence-route/SKILL.md +56 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/skills/intelligence-transfer/SKILL.md +80 -0
- package/runtime/vendor/plugins/ruflo/ruflo-intelligence/skills/neural-train/SKILL.md +94 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/.claude-plugin/plugin.json +26 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/README.md +181 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/REFERENCE.md +63 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/device-coordinator.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/fleet-manager.md +67 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/telemetry-analyzer.md +53 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/agents/witness-auditor.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/commands/iot.md +59 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/scripts/smoke.sh +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-anomalies/SKILL.md +14 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-firmware/SKILL.md +15 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-fleet/SKILL.md +13 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-register/SKILL.md +18 -0
- package/runtime/vendor/plugins/ruflo/ruflo-iot-cognitum/skills/iot-witness-verify/SKILL.md +14 -0
- package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/README.md +75 -0
- package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/agents/git-specialist.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/commands/jujutsu.md +12 -0
- package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/scripts/smoke.sh +75 -0
- package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/skills/diff-analyze/SKILL.md +31 -0
- package/runtime/vendor/plugins/ruflo/ruflo-jujutsu/skills/git-workflow/SKILL.md +45 -0
- package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/.claude-plugin/plugin.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/README.md +99 -0
- package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/agents/graph-navigator.md +80 -0
- package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/commands/kg.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/scripts/smoke.sh +87 -0
- package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/skills/kg-extract/SKILL.md +44 -0
- package/runtime/vendor/plugins/ruflo/ruflo-knowledge-graph/skills/kg-traverse/SKILL.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/README.md +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/agents/loop-worker-coordinator.md +53 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/commands/ruflo-loop.md +17 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/commands/ruflo-schedule.md +18 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/scripts/smoke.sh +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/skills/cron-schedule/SKILL.md +25 -0
- package/runtime/vendor/plugins/ruflo/ruflo-loop-workers/skills/loop-worker/SKILL.md +27 -0
- package/runtime/vendor/plugins/ruflo/ruflo-market-data/.claude-plugin/plugin.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-market-data/README.md +98 -0
- package/runtime/vendor/plugins/ruflo/ruflo-market-data/agents/data-engineer.md +85 -0
- package/runtime/vendor/plugins/ruflo/ruflo-market-data/commands/market.md +39 -0
- package/runtime/vendor/plugins/ruflo/ruflo-market-data/scripts/smoke.sh +88 -0
- package/runtime/vendor/plugins/ruflo/ruflo-market-data/skills/market-ingest/SKILL.md +34 -0
- package/runtime/vendor/plugins/ruflo/ruflo-market-data/skills/market-pattern/SKILL.md +36 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/.claude-plugin/plugin.json +32 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/README.md +64 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/agents/metaharness-architect.md +58 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/commands/ruflo-metaharness.md +46 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/_harness.mjs +261 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/_similarity.mjs +161 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/_spike-similarity.mjs +223 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/audit-list.mjs +158 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/audit-trend.mjs +272 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/bench-parse-mcp-scan.mjs +146 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/bench-recordpair-overhead.mjs +186 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/bench-similarity.mjs +177 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/drift-from-history.mjs +363 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/genome.mjs +80 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/mcp-scan.mjs +111 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/mint.mjs +119 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/oia-audit.mjs +228 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/router-parallel-analyze.mjs +250 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/score.mjs +92 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/similarity.mjs +158 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/smoke.sh +2268 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-graceful-degradation.mjs +141 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-mcp-tools.mjs +437 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-parallel-pipeline.mjs +204 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-pipeline-roundtrip.mjs +586 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-similarity.mjs +334 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/test-with-openrouter.mjs +229 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/scripts/threat-model.mjs +59 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-drift-from-history/SKILL.md +65 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-genome/SKILL.md +54 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-mcp-scan/SKILL.md +47 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-mint/SKILL.md +72 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-oia-audit/SKILL.md +79 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-score/SKILL.md +66 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-similarity/SKILL.md +67 -0
- package/runtime/vendor/plugins/ruflo/ruflo-metaharness/skills/harness-threat-model/SKILL.md +39 -0
- package/runtime/vendor/plugins/ruflo/ruflo-migrations/.claude-plugin/plugin.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-migrations/README.md +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-migrations/agents/migration-engineer.md +98 -0
- package/runtime/vendor/plugins/ruflo/ruflo-migrations/commands/migrate.md +47 -0
- package/runtime/vendor/plugins/ruflo/ruflo-migrations/scripts/smoke.sh +86 -0
- package/runtime/vendor/plugins/ruflo/ruflo-migrations/skills/migrate-create/SKILL.md +35 -0
- package/runtime/vendor/plugins/ruflo/ruflo-migrations/skills/migrate-validate/SKILL.md +35 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/.claude-plugin/plugin.json +26 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/README.md +326 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/backtest-engineer.md +74 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/market-analyst.md +92 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/risk-analyst.md +127 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/agents/trading-strategist.md +170 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/backtest-throughput.bench.mjs +247 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/memory-recall.bench.mjs +198 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/portfolio-cg.bench.mjs +256 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/backtest-throughput-baseline-20260520T203616Z.md +48 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/cg-baseline-20260520T022220Z.md +25 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/cg-native-baseline-20260520T202735Z.md +104 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/memory-recall-baseline-20260520T203616Z.md +45 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/results/signal-generation-baseline-20260520T203616Z.md +43 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/benchmarks/signal-generation.bench.mjs +233 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/commands/trader.md +67 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/scripts/runtime-smoke.sh +118 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/scripts/smoke.sh +86 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-backtest/SKILL.md +47 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-cloud-backtest/SKILL.md +85 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-explain/SKILL.md +137 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-portfolio/SKILL.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-portfolio-cg/SKILL.md +117 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-regime/SKILL.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-risk/SKILL.md +33 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-signal/SKILL.md +35 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/skills/trader-train/SKILL.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/pipeline-messages.ts +147 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-artifact.mjs +98 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-artifact.ts +186 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-attribution.mjs +227 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/signed-attribution.ts +416 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/sublinear-adapter.mjs +245 -0
- package/runtime/vendor/plugins/ruflo/ruflo-neural-trader/src/sublinear-adapter.ts +383 -0
- package/runtime/vendor/plugins/ruflo/ruflo-observability/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-observability/README.md +98 -0
- package/runtime/vendor/plugins/ruflo/ruflo-observability/agents/observability-engineer.md +117 -0
- package/runtime/vendor/plugins/ruflo/ruflo-observability/commands/observe.md +39 -0
- package/runtime/vendor/plugins/ruflo/ruflo-observability/scripts/smoke.sh +86 -0
- package/runtime/vendor/plugins/ruflo/ruflo-observability/skills/observe-metrics/SKILL.md +34 -0
- package/runtime/vendor/plugins/ruflo/ruflo-observability/skills/observe-trace/SKILL.md +29 -0
- package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/.claude-plugin/plugin.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/README.md +75 -0
- package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/agents/plugin-developer.md +40 -0
- package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/commands/create-plugin.md +11 -0
- package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/scripts/smoke.sh +83 -0
- package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/skills/create-plugin/SKILL.md +105 -0
- package/runtime/vendor/plugins/ruflo/ruflo-plugin-creator/skills/validate-plugin/SKILL.md +34 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/README.md +202 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/agents/memory-specialist.md +120 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/commands/recall.md +23 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/commands/ruflo-memory.md +38 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/scripts/smoke.sh +84 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/skills/memory-bridge/SKILL.md +59 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rag-memory/skills/memory-search/SKILL.md +67 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/.claude-plugin/plugin.json +23 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/README.md +262 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/agents/vector-engineer.md +194 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/commands/vector.md +155 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/scripts/smoke.sh +76 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-cluster/SKILL.md +41 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-embed/SKILL.md +47 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-hyperbolic/SKILL.md +55 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvector/skills/vector-setup/SKILL.md +82 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/README.md +68 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/agents/llm-specialist.md +37 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/commands/ruvllm.md +9 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/scripts/smoke.sh +77 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/skills/chat-format/SKILL.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-ruvllm/skills/llm-config/SKILL.md +32 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rvf/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rvf/README.md +78 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rvf/agents/session-specialist.md +30 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rvf/commands/rvf.md +10 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rvf/scripts/smoke.sh +79 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rvf/skills/rvf-manage/SKILL.md +37 -0
- package/runtime/vendor/plugins/ruflo/ruflo-rvf/skills/session-persist/SKILL.md +35 -0
- package/runtime/vendor/plugins/ruflo/ruflo-security-audit/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-security-audit/README.md +69 -0
- package/runtime/vendor/plugins/ruflo/ruflo-security-audit/agents/security-auditor.md +50 -0
- package/runtime/vendor/plugins/ruflo/ruflo-security-audit/commands/audit.md +18 -0
- package/runtime/vendor/plugins/ruflo/ruflo-security-audit/scripts/smoke.sh +79 -0
- package/runtime/vendor/plugins/ruflo/ruflo-security-audit/skills/dependency-check/SKILL.md +25 -0
- package/runtime/vendor/plugins/ruflo/ruflo-security-audit/skills/security-scan/SKILL.md +24 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/README.md +111 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/agents/sparc-orchestrator.md +145 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/commands/ruflo-sparc.md +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/scripts/smoke.sh +91 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/skills/sparc-implement/SKILL.md +122 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/skills/sparc-refine/SKILL.md +130 -0
- package/runtime/vendor/plugins/ruflo/ruflo-sparc/skills/sparc-spec/SKILL.md +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/.claude-plugin/plugin.json +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/README.md +86 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/agents/architect.md +39 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/agents/coordinator.md +31 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/commands/swarm.md +16 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/commands/watch.md +13 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/scripts/smoke.sh +93 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/skills/monitor-stream/SKILL.md +15 -0
- package/runtime/vendor/plugins/ruflo/ruflo-swarm/skills/swarm-init/SKILL.md +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-testgen/.claude-plugin/plugin.json +21 -0
- package/runtime/vendor/plugins/ruflo/ruflo-testgen/README.md +74 -0
- package/runtime/vendor/plugins/ruflo/ruflo-testgen/agents/tester.md +39 -0
- package/runtime/vendor/plugins/ruflo/ruflo-testgen/commands/testgen.md +19 -0
- package/runtime/vendor/plugins/ruflo/ruflo-testgen/scripts/smoke.sh +79 -0
- package/runtime/vendor/plugins/ruflo/ruflo-testgen/skills/tdd-workflow/SKILL.md +22 -0
- package/runtime/vendor/plugins/ruflo/ruflo-testgen/skills/test-gaps/SKILL.md +17 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/.claude-plugin/plugin.json +70 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/README.md +148 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/agents/gaia-benchmark-runner.md +78 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/agents/gaia-submission-coordinator.md +95 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/agents/workflow-specialist.md +55 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-cost.md +78 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-history.md +73 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-leaderboard.md +62 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-run.md +98 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-submit.md +86 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia-validate.md +94 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/gaia.md +48 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/commands/workflow.md +20 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/scripts/smoke-gaia.sh +140 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/scripts/smoke.sh +115 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/gaia-architecture-comparison/SKILL.md +127 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/gaia-debugging/SKILL.md +116 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/gaia-submission/SKILL.md +123 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/workflow-create/SKILL.md +60 -0
- package/runtime/vendor/plugins/ruflo/ruflo-workflows/skills/workflow-run/SKILL.md +40 -0
- package/runtime/vendor/skills/CATALOG.md +78 -0
- package/runtime/vendor/skills/andrej-karpathy-skills/karpathy-guidelines/SKILL.md +67 -0
- package/runtime/vendor/skills/app/SKILL.md +1456 -0
- package/runtime/vendor/skills/app/agents/openai.yaml +4 -0
- package/runtime/vendor/skills/app/skill.json +36 -0
- package/runtime/vendor/skills/app/spec.md +1454 -0
- package/runtime/vendor/skills/book-to-skill/BACKERS.md +27 -0
- package/runtime/vendor/skills/book-to-skill/CHANGELOG.md +154 -0
- package/runtime/vendor/skills/book-to-skill/CONTRIBUTING.md +55 -0
- package/runtime/vendor/skills/book-to-skill/LICENSE.md +21 -0
- package/runtime/vendor/skills/book-to-skill/README.md +438 -0
- package/runtime/vendor/skills/book-to-skill/SECURITY.md +33 -0
- package/runtime/vendor/skills/book-to-skill/SKILL.md +634 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/__init__.py +4 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/__main__.py +4 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/cli.py +16 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/config.py +38 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/dependencies.py +289 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/exceptions.py +2 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/__init__.py +1 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/calibre.py +26 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/docx.py +89 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/epub.py +101 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/html.py +54 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/pdf.py +100 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/rtf.py +47 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/parsers/text.py +15 -0
- package/runtime/vendor/skills/book-to-skill/book_to_skill/utils.py +678 -0
- package/runtime/vendor/skills/book-to-skill/mkdocs.yml +69 -0
- package/runtime/vendor/skills/book-to-skill/pyproject.toml +42 -0
- package/runtime/vendor/skills/book-to-skill/scripts/banner.txt +26 -0
- package/runtime/vendor/skills/book-to-skill/scripts/extract.py +26 -0
- package/runtime/vendor/skills/book-to-skill/tests/test_book_to_skill.py +1035 -0
- package/runtime/vendor/skills/book-to-skill/tests/test_discovery_tax.py +122 -0
- package/runtime/vendor/skills/book-to-skill/tools/discovery_tax.py +192 -0
- package/runtime/vendor/skills/book-to-skill/tools/validate_skill.py +220 -0
- package/runtime/vendor/skills/drawio-diagramming/SKILL.md +35 -0
- package/runtime/vendor/skills/drawio-diagramming/agents/openai.yaml +4 -0
- package/runtime/vendor/skills/drawio-diagramming/references/diagram-types.md +20 -0
- package/runtime/vendor/skills/drawio-diagramming/references/layout-patterns.md +21 -0
- package/runtime/vendor/skills/drawio-diagramming/references/mxfile-format.md +28 -0
- package/runtime/vendor/skills/drawio-diagramming/references/visual-quality-gates.md +15 -0
- package/runtime/vendor/skills/drawio-diagramming/scripts/inspect_drawio.py +36 -0
- package/runtime/vendor/skills/drawio-diagramming/scripts/validate_drawio.py +86 -0
- package/runtime/vendor/skills/ecc/agent-introspection-debugging/SKILL.md +152 -0
- package/runtime/vendor/skills/ecc/agent-introspection-debugging/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/agent-sort/SKILL.md +214 -0
- package/runtime/vendor/skills/ecc/agent-sort/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/api-design/SKILL.md +522 -0
- package/runtime/vendor/skills/ecc/api-design/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/article-writing/SKILL.md +78 -0
- package/runtime/vendor/skills/ecc/article-writing/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/backend-patterns/SKILL.md +597 -0
- package/runtime/vendor/skills/ecc/backend-patterns/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/benchmark-methodology/SKILL.md +190 -0
- package/runtime/vendor/skills/ecc/benchmark-methodology/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/brand-discovery/SKILL.md +145 -0
- package/runtime/vendor/skills/ecc/brand-discovery/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/10_purpose-why.md +40 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/20_positioning.md +44 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/30_audience-niche.md +52 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/40_personality-archetype.md +57 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/50_voice-tone.md +59 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/60_narrative-story.md +50 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/70_founder-tension.md +49 -0
- package/runtime/vendor/skills/ecc/brand-discovery/references/90_SYNTHESIS.md +133 -0
- package/runtime/vendor/skills/ecc/brand-voice/SKILL.md +96 -0
- package/runtime/vendor/skills/ecc/brand-voice/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/brand-voice/references/voice-profile-schema.md +55 -0
- package/runtime/vendor/skills/ecc/bun-runtime/SKILL.md +83 -0
- package/runtime/vendor/skills/ecc/bun-runtime/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/coding-standards/SKILL.md +549 -0
- package/runtime/vendor/skills/ecc/coding-standards/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/competitive-platform-analysis/SKILL.md +214 -0
- package/runtime/vendor/skills/ecc/competitive-platform-analysis/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/competitive-report-structure/SKILL.md +162 -0
- package/runtime/vendor/skills/ecc/competitive-report-structure/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/content-engine/SKILL.md +130 -0
- package/runtime/vendor/skills/ecc/content-engine/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/crosspost/SKILL.md +110 -0
- package/runtime/vendor/skills/ecc/crosspost/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/deep-research/SKILL.md +154 -0
- package/runtime/vendor/skills/ecc/deep-research/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/dmux-workflows/SKILL.md +143 -0
- package/runtime/vendor/skills/ecc/dmux-workflows/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/documentation-lookup/SKILL.md +89 -0
- package/runtime/vendor/skills/ecc/documentation-lookup/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/e2e-testing/SKILL.md +325 -0
- package/runtime/vendor/skills/ecc/e2e-testing/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/eval-harness/SKILL.md +235 -0
- package/runtime/vendor/skills/ecc/eval-harness/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/everything-claude-code/SKILL.md +442 -0
- package/runtime/vendor/skills/ecc/everything-claude-code/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/exa-search/SKILL.md +169 -0
- package/runtime/vendor/skills/ecc/exa-search/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/fal-ai-media/SKILL.md +276 -0
- package/runtime/vendor/skills/ecc/fal-ai-media/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/frontend-patterns/SKILL.md +661 -0
- package/runtime/vendor/skills/ecc/frontend-patterns/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/frontend-slides/SKILL.md +183 -0
- package/runtime/vendor/skills/ecc/frontend-slides/STYLE_PRESETS.md +330 -0
- package/runtime/vendor/skills/ecc/frontend-slides/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/investor-materials/SKILL.md +95 -0
- package/runtime/vendor/skills/ecc/investor-materials/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/investor-outreach/SKILL.md +90 -0
- package/runtime/vendor/skills/ecc/investor-outreach/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/market-research/SKILL.md +74 -0
- package/runtime/vendor/skills/ecc/market-research/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/mcp-server-patterns/SKILL.md +66 -0
- package/runtime/vendor/skills/ecc/mcp-server-patterns/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/mle-workflow/SKILL.md +346 -0
- package/runtime/vendor/skills/ecc/mle-workflow/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/nextjs-turbopack/SKILL.md +43 -0
- package/runtime/vendor/skills/ecc/nextjs-turbopack/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/product-capability/SKILL.md +140 -0
- package/runtime/vendor/skills/ecc/product-capability/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/security-review/SKILL.md +494 -0
- package/runtime/vendor/skills/ecc/security-review/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/strategic-compact/SKILL.md +103 -0
- package/runtime/vendor/skills/ecc/strategic-compact/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/tdd-workflow/SKILL.md +409 -0
- package/runtime/vendor/skills/ecc/tdd-workflow/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/verification-loop/SKILL.md +125 -0
- package/runtime/vendor/skills/ecc/verification-loop/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/video-editing/SKILL.md +307 -0
- package/runtime/vendor/skills/ecc/video-editing/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/ecc/x-api/SKILL.md +229 -0
- package/runtime/vendor/skills/ecc/x-api/agents/openai.yaml +7 -0
- package/runtime/vendor/skills/napkin/README.md +40 -0
- package/runtime/vendor/skills/napkin/SKILL.md +109 -0
- package/runtime/vendor/skills/napkin/napkin.md +37 -0
|
@@ -0,0 +1,587 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>Portfolio Cosmic — Michael Smith</title>
|
|
7
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
8
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
9
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Instrument+Serif:ital@1&display=swap" rel="stylesheet">
|
|
10
|
+
<style>
|
|
11
|
+
:root {
|
|
12
|
+
--bg: 0 0% 4%;
|
|
13
|
+
--surface: 0 0% 8%;
|
|
14
|
+
--text: 0 0% 96%;
|
|
15
|
+
--muted: 0 0% 53%;
|
|
16
|
+
--stroke: 0 0% 12%;
|
|
17
|
+
--accent: 0 0% 96%;
|
|
18
|
+
}
|
|
19
|
+
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
20
|
+
html { scroll-behavior: smooth; }
|
|
21
|
+
body {
|
|
22
|
+
font-family: 'Inter', -apple-system, system-ui, sans-serif;
|
|
23
|
+
background: hsl(var(--bg));
|
|
24
|
+
color: hsl(var(--text));
|
|
25
|
+
-webkit-font-smoothing: antialiased;
|
|
26
|
+
overflow-x: hidden;
|
|
27
|
+
}
|
|
28
|
+
img, video { display: block; }
|
|
29
|
+
button, a { font: inherit; color: inherit; cursor: pointer; text-decoration: none; }
|
|
30
|
+
|
|
31
|
+
.font-display { font-family: 'Instrument Serif', serif; font-style: italic; }
|
|
32
|
+
.muted { color: hsl(var(--muted)); }
|
|
33
|
+
.eyebrow { font-size: 0.72rem; color: hsl(var(--muted)); text-transform: uppercase; letter-spacing: 0.3em; }
|
|
34
|
+
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
|
|
35
|
+
|
|
36
|
+
.accent-gradient { background: linear-gradient(90deg, #89AACC 0%, #4E85BF 100%); }
|
|
37
|
+
|
|
38
|
+
@keyframes scroll-down { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
|
|
39
|
+
@keyframes role-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
|
|
40
|
+
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
|
|
41
|
+
@keyframes word-cycle { 0%,28% { opacity: 1; transform: translateY(0); } 33%,100% { opacity: 0; transform: translateY(-20px); } }
|
|
42
|
+
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
|
|
43
|
+
|
|
44
|
+
/* ───── LOADING SCREEN ───── */
|
|
45
|
+
#loader {
|
|
46
|
+
position: fixed; inset: 0; z-index: 9999; background: hsl(var(--bg));
|
|
47
|
+
transition: opacity 0.6s ease;
|
|
48
|
+
}
|
|
49
|
+
#loader.done { opacity: 0; pointer-events: none; }
|
|
50
|
+
.loader-label { position: absolute; top: 32px; left: 32px; }
|
|
51
|
+
.loader-words {
|
|
52
|
+
position: absolute; inset: 0; display: grid; place-items: center;
|
|
53
|
+
}
|
|
54
|
+
.loader-words span {
|
|
55
|
+
position: absolute; font-size: clamp(2.2rem, 7vw, 4.5rem);
|
|
56
|
+
color: hsl(var(--text) / 0.8); opacity: 0;
|
|
57
|
+
}
|
|
58
|
+
.loader-count {
|
|
59
|
+
position: absolute; bottom: 48px; right: 40px;
|
|
60
|
+
font-size: clamp(4rem, 14vw, 9rem); line-height: 1;
|
|
61
|
+
font-variant-numeric: tabular-nums;
|
|
62
|
+
}
|
|
63
|
+
.loader-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: hsl(var(--stroke) / 0.5); }
|
|
64
|
+
.loader-bar > div {
|
|
65
|
+
height: 100%; transform-origin: left; transform: scaleX(0);
|
|
66
|
+
box-shadow: 0 0 8px rgba(137,170,204,0.35);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* ───── HERO ───── */
|
|
70
|
+
.hero { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; }
|
|
71
|
+
.hero video, .hero .video-fallback {
|
|
72
|
+
position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
|
|
73
|
+
transform: translate(-50%, -50%); object-fit: cover; z-index: 0;
|
|
74
|
+
}
|
|
75
|
+
.video-fallback {
|
|
76
|
+
width: 100%; height: 100%;
|
|
77
|
+
background: radial-gradient(ellipse at 30% 20%, #16243a 0%, #060810 55%, #020308 100%);
|
|
78
|
+
}
|
|
79
|
+
.hero .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); z-index: 1; }
|
|
80
|
+
.hero .bottom-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 192px; background: linear-gradient(to top, hsl(var(--bg)), transparent); z-index: 1; }
|
|
81
|
+
|
|
82
|
+
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; padding: 24px 16px; }
|
|
83
|
+
.nav-pill {
|
|
84
|
+
display: inline-flex; align-items: center; gap: 2px; border-radius: 999px;
|
|
85
|
+
backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1);
|
|
86
|
+
background: hsl(var(--surface)); padding: 8px; transition: box-shadow 0.4s ease;
|
|
87
|
+
}
|
|
88
|
+
.nav-pill.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
|
|
89
|
+
.logo {
|
|
90
|
+
position: relative; width: 36px; height: 36px; border-radius: 50%;
|
|
91
|
+
display: grid; place-items: center; transition: transform 0.3s ease;
|
|
92
|
+
}
|
|
93
|
+
.logo::before {
|
|
94
|
+
content: ''; position: absolute; inset: 0; border-radius: 50%; padding: 2px;
|
|
95
|
+
background: linear-gradient(90deg, #89AACC 0%, #4E85BF 100%);
|
|
96
|
+
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
|
|
97
|
+
-webkit-mask-composite: xor; mask-composite: exclude; transition: transform 0.5s ease;
|
|
98
|
+
}
|
|
99
|
+
.logo:hover { transform: scale(1.1); }
|
|
100
|
+
.logo:hover::before { transform: rotate(180deg); }
|
|
101
|
+
.logo span {
|
|
102
|
+
position: relative; z-index: 1; width: 30px; height: 30px; border-radius: 50%;
|
|
103
|
+
background: hsl(var(--bg)); display: grid; place-items: center; font-size: 13px;
|
|
104
|
+
}
|
|
105
|
+
.nav-divider { width: 1px; height: 20px; background: hsl(var(--stroke)); margin: 0 4px; }
|
|
106
|
+
.nav-link, .say-hi {
|
|
107
|
+
font-size: 0.85rem; border-radius: 999px; padding: 8px 16px; transition: all 0.3s ease;
|
|
108
|
+
}
|
|
109
|
+
.nav-link.active { color: hsl(var(--text)); background: hsl(var(--stroke) / 0.5); }
|
|
110
|
+
.nav-link:not(.active) { color: hsl(var(--muted)); }
|
|
111
|
+
.nav-link:not(.active):hover { color: hsl(var(--text)); background: hsl(var(--stroke) / 0.5); }
|
|
112
|
+
.say-hi { position: relative; display: inline-flex; align-items: center; gap: 4px; }
|
|
113
|
+
.say-hi .ring {
|
|
114
|
+
position: absolute; inset: -2px; border-radius: 999px; opacity: 0;
|
|
115
|
+
background: linear-gradient(90deg, #89AACC 0%, #4E85BF 100%); transition: opacity 0.3s ease;
|
|
116
|
+
}
|
|
117
|
+
.say-hi:hover .ring { opacity: 1; }
|
|
118
|
+
.say-hi .inner {
|
|
119
|
+
position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 4px;
|
|
120
|
+
background: hsl(var(--surface)); backdrop-filter: blur(12px); border-radius: 999px; padding: 8px 16px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 24px; }
|
|
124
|
+
.hero-eyebrow { display: block; margin-bottom: 32px; }
|
|
125
|
+
.hero-name {
|
|
126
|
+
font-size: clamp(3.5rem, 12vw, 9rem); line-height: 0.9; letter-spacing: -0.02em;
|
|
127
|
+
margin-bottom: 24px;
|
|
128
|
+
}
|
|
129
|
+
.hero-role { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 8px; }
|
|
130
|
+
.hero-role .role-word { display: inline-block; animation: role-fade-in 0.4s ease-out; }
|
|
131
|
+
.hero-desc { font-size: 0.95rem; max-width: 28rem; margin: 16px auto 48px; line-height: 1.6; color: hsl(var(--muted)); }
|
|
132
|
+
.cta-row { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
|
|
133
|
+
.btn { position: relative; border-radius: 999px; font-size: 0.9rem; padding: 14px 28px; transition: transform 0.3s ease; }
|
|
134
|
+
.btn:hover { transform: scale(1.05); }
|
|
135
|
+
.btn-solid { background: hsl(var(--text)); color: hsl(var(--bg)); }
|
|
136
|
+
.btn-outline { border: 2px solid hsl(var(--stroke)); background: hsl(var(--bg)); color: hsl(var(--text)); }
|
|
137
|
+
|
|
138
|
+
.scroll-ind { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; }
|
|
139
|
+
.scroll-ind .lbl { font-size: 0.7rem; letter-spacing: 0.2em; color: hsl(var(--muted)); text-transform: uppercase; display: block; margin-bottom: 12px; }
|
|
140
|
+
.scroll-ind .track { width: 1px; height: 40px; background: hsl(var(--stroke)); margin: 0 auto; overflow: hidden; position: relative; }
|
|
141
|
+
.scroll-ind .track > i { display: block; width: 1px; height: 100%; background: hsl(var(--text)); animation: scroll-down 1.5s ease-in-out infinite; }
|
|
142
|
+
|
|
143
|
+
/* ───── REVEAL (whileInView) ───── */
|
|
144
|
+
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(0.25,0.1,0.25,1), transform 1s cubic-bezier(0.25,0.1,0.25,1); }
|
|
145
|
+
.reveal.in { opacity: 1; transform: none; }
|
|
146
|
+
|
|
147
|
+
/* ───── SECTION HEADER ───── */
|
|
148
|
+
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
|
|
149
|
+
.sec-head .line { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
|
|
150
|
+
.sec-head .line .bar { width: 32px; height: 1px; background: hsl(var(--stroke)); }
|
|
151
|
+
.sec-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em; }
|
|
152
|
+
.sec-head p { color: hsl(var(--muted)); font-size: 0.95rem; max-width: 30rem; margin-top: 16px; }
|
|
153
|
+
.view-all {
|
|
154
|
+
position: relative; display: inline-flex; align-items: center; gap: 6px;
|
|
155
|
+
border-radius: 999px; padding: 10px 18px; font-size: 0.85rem; border: 1px solid hsl(var(--stroke));
|
|
156
|
+
}
|
|
157
|
+
.view-all .ring { position: absolute; inset: -1px; border-radius: 999px; opacity: 0; background: linear-gradient(90deg,#89AACC,#4E85BF); transition: opacity 0.3s; z-index: 0; }
|
|
158
|
+
.view-all:hover .ring { opacity: 1; }
|
|
159
|
+
.view-all .inner { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; background: hsl(var(--bg)); border-radius: 999px; padding: 0 2px; }
|
|
160
|
+
|
|
161
|
+
/* ───── WORKS BENTO ───── */
|
|
162
|
+
.works { padding: 48px 0; }
|
|
163
|
+
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
|
|
164
|
+
.proj { position: relative; grid-column: span 12; border: 1px solid hsl(var(--stroke)); background: hsl(var(--surface)); border-radius: 24px; overflow: hidden; cursor: pointer; }
|
|
165
|
+
.proj:nth-child(1) { grid-column: span 12; }
|
|
166
|
+
.proj-img { position: relative; width: 100%; height: 100%; }
|
|
167
|
+
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
|
|
168
|
+
.proj:hover .proj-img img { transform: scale(1.05); }
|
|
169
|
+
.proj .halftone {
|
|
170
|
+
position: absolute; inset: 0; opacity: 0.2; mix-blend-mode: multiply; pointer-events: none;
|
|
171
|
+
background-image: radial-gradient(circle, #000 1px, transparent 1px); background-size: 4px 4px;
|
|
172
|
+
}
|
|
173
|
+
.proj .hover-layer {
|
|
174
|
+
position: absolute; inset: 0; display: grid; place-items: center; opacity: 0;
|
|
175
|
+
background: hsl(var(--bg) / 0.7); backdrop-filter: blur(16px); transition: opacity 0.4s ease;
|
|
176
|
+
}
|
|
177
|
+
.proj:hover .hover-layer { opacity: 1; }
|
|
178
|
+
.proj-label {
|
|
179
|
+
position: relative; display: inline-flex; align-items: center; gap: 6px;
|
|
180
|
+
background: #fff; color: #111; border-radius: 999px; padding: 10px 20px; font-size: 0.9rem;
|
|
181
|
+
}
|
|
182
|
+
.proj-label::before {
|
|
183
|
+
content: ''; position: absolute; inset: -2px; border-radius: 999px; z-index: -1;
|
|
184
|
+
background: linear-gradient(90deg, #89AACC, #4E85BF, #89AACC); background-size: 200% 100%;
|
|
185
|
+
animation: gradient-shift 6s ease infinite;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/* ───── JOURNAL ───── */
|
|
189
|
+
.journal { padding: 64px 0; }
|
|
190
|
+
.entries { display: flex; flex-direction: column; gap: 16px; }
|
|
191
|
+
.entry {
|
|
192
|
+
display: flex; align-items: center; gap: 24px; padding: 16px;
|
|
193
|
+
background: hsl(var(--surface) / 0.3); border: 1px solid hsl(var(--stroke));
|
|
194
|
+
border-radius: 40px; transition: background 0.3s ease;
|
|
195
|
+
}
|
|
196
|
+
.entry:hover { background: hsl(var(--surface)); }
|
|
197
|
+
.entry img { width: 72px; height: 72px; border-radius: 24px; object-fit: cover; flex: 0 0 auto; }
|
|
198
|
+
.entry .body { flex: 1; min-width: 0; }
|
|
199
|
+
.entry .body h3 { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; }
|
|
200
|
+
.entry .meta { display: flex; gap: 16px; color: hsl(var(--muted)); font-size: 0.8rem; margin-top: 6px; }
|
|
201
|
+
.entry .date { color: hsl(var(--muted)); font-size: 0.8rem; white-space: nowrap; }
|
|
202
|
+
|
|
203
|
+
/* ───── EXPLORATIONS ───── */
|
|
204
|
+
.explore { position: relative; min-height: 300vh; }
|
|
205
|
+
.explore-pin {
|
|
206
|
+
position: sticky; top: 0; height: 100vh; display: grid; place-items: center;
|
|
207
|
+
text-align: center; z-index: 10; pointer-events: none;
|
|
208
|
+
}
|
|
209
|
+
.explore-pin .inner { pointer-events: auto; }
|
|
210
|
+
.explore-pin h2 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; margin: 16px 0; }
|
|
211
|
+
.dribbble-btn {
|
|
212
|
+
display: inline-flex; align-items: center; gap: 8px; border: 1px solid hsl(var(--stroke));
|
|
213
|
+
border-radius: 999px; padding: 12px 22px; font-size: 0.9rem; margin-top: 16px;
|
|
214
|
+
}
|
|
215
|
+
.parallax-cols {
|
|
216
|
+
position: absolute; inset: 0; z-index: 20; display: grid; grid-template-columns: 1fr 1fr;
|
|
217
|
+
gap: 48px; max-width: 1400px; margin: 0 auto; padding: 0 32px; pointer-events: none;
|
|
218
|
+
}
|
|
219
|
+
.pcol { display: flex; flex-direction: column; gap: 80px; padding-top: 30vh; }
|
|
220
|
+
.pcol:nth-child(2) { padding-top: 55vh; }
|
|
221
|
+
.pcard {
|
|
222
|
+
aspect-ratio: 1; max-width: 320px; width: 100%; border-radius: 20px; overflow: hidden;
|
|
223
|
+
border: 1px solid hsl(var(--stroke)); pointer-events: auto; cursor: pointer; will-change: transform;
|
|
224
|
+
}
|
|
225
|
+
.pcard img { width: 100%; height: 100%; object-fit: cover; }
|
|
226
|
+
.pcol:nth-child(2) .pcard { margin-left: auto; }
|
|
227
|
+
|
|
228
|
+
/* ───── STATS ───── */
|
|
229
|
+
.stats { padding: 64px 0; }
|
|
230
|
+
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
|
|
231
|
+
.stat .num { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1; }
|
|
232
|
+
.stat .lbl { color: hsl(var(--muted)); font-size: 0.85rem; margin-top: 12px; }
|
|
233
|
+
|
|
234
|
+
/* ───── CONTACT / FOOTER ───── */
|
|
235
|
+
.contact { position: relative; padding: 64px 0 48px; overflow: hidden; }
|
|
236
|
+
.contact .bgvid, .contact .video-fallback {
|
|
237
|
+
position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
|
|
238
|
+
transform: translate(-50%, -50%) scaleY(-1); object-fit: cover; z-index: 0;
|
|
239
|
+
}
|
|
240
|
+
.contact .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
|
|
241
|
+
.contact .inner { position: relative; z-index: 2; }
|
|
242
|
+
.marquee { overflow: hidden; white-space: nowrap; margin: 32px 0 48px; }
|
|
243
|
+
.marquee .track { display: inline-block; will-change: transform; }
|
|
244
|
+
.marquee span { font-size: clamp(2rem, 6vw, 4rem); color: hsl(var(--text) / 0.85); }
|
|
245
|
+
.contact-cta { text-align: center; }
|
|
246
|
+
.email-btn {
|
|
247
|
+
position: relative; display: inline-flex; align-items: center; gap: 8px;
|
|
248
|
+
border-radius: 999px; padding: 16px 32px; font-size: 1rem;
|
|
249
|
+
}
|
|
250
|
+
.email-btn .ring { position: absolute; inset: -2px; border-radius: 999px; opacity: 0; background: linear-gradient(90deg,#89AACC,#4E85BF); transition: opacity 0.3s; }
|
|
251
|
+
.email-btn:hover .ring { opacity: 1; }
|
|
252
|
+
.email-btn .inner { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; background: hsl(var(--surface)); border-radius: 999px; padding: 0 4px; }
|
|
253
|
+
.footer-bar {
|
|
254
|
+
display: flex; justify-content: space-between; align-items: center; gap: 24px;
|
|
255
|
+
margin-top: 64px; padding-top: 24px; border-top: 1px solid hsl(var(--stroke)); flex-wrap: wrap;
|
|
256
|
+
}
|
|
257
|
+
.socials { display: flex; gap: 20px; }
|
|
258
|
+
.socials a { color: hsl(var(--muted)); font-size: 0.85rem; transition: color 0.3s; }
|
|
259
|
+
.socials a:hover { color: hsl(var(--text)); }
|
|
260
|
+
.avail { display: inline-flex; align-items: center; gap: 8px; color: hsl(var(--muted)); font-size: 0.85rem; }
|
|
261
|
+
.avail .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse-dot 2s ease-in-out infinite; }
|
|
262
|
+
|
|
263
|
+
/* ───── LIGHTBOX ───── */
|
|
264
|
+
#lightbox { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.92); display: none; place-items: center; padding: 40px; }
|
|
265
|
+
#lightbox.open { display: grid; }
|
|
266
|
+
#lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 16px; }
|
|
267
|
+
|
|
268
|
+
/* ───── RESPONSIVE ───── */
|
|
269
|
+
@media (min-width: 768px) {
|
|
270
|
+
.proj:nth-child(1) { grid-column: span 7; aspect-ratio: 4/3; }
|
|
271
|
+
.proj:nth-child(2) { grid-column: span 5; aspect-ratio: 3/4; }
|
|
272
|
+
.proj:nth-child(3) { grid-column: span 5; aspect-ratio: 3/4; }
|
|
273
|
+
.proj:nth-child(4) { grid-column: span 7; aspect-ratio: 4/3; }
|
|
274
|
+
}
|
|
275
|
+
@media (max-width: 767px) {
|
|
276
|
+
.proj { aspect-ratio: 4/3; }
|
|
277
|
+
.stats-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
|
|
278
|
+
.parallax-cols { gap: 20px; padding: 0 16px; }
|
|
279
|
+
.entry { border-radius: 28px; }
|
|
280
|
+
.nav-divider, .nav-link { } /* keep visible */
|
|
281
|
+
}
|
|
282
|
+
</style>
|
|
283
|
+
</head>
|
|
284
|
+
<body>
|
|
285
|
+
<!-- ───── LOADING SCREEN ───── -->
|
|
286
|
+
<div id="loader">
|
|
287
|
+
<div class="loader-label eyebrow">Portfolio</div>
|
|
288
|
+
<div class="loader-words font-display">
|
|
289
|
+
<span data-w="0">Design</span>
|
|
290
|
+
<span data-w="1">Create</span>
|
|
291
|
+
<span data-w="2">Inspire</span>
|
|
292
|
+
</div>
|
|
293
|
+
<div class="loader-count font-display" id="count">000</div>
|
|
294
|
+
<div class="loader-bar"><div class="accent-gradient" id="loadbar"></div></div>
|
|
295
|
+
</div>
|
|
296
|
+
|
|
297
|
+
<!-- ───── HERO ───── -->
|
|
298
|
+
<section class="hero" id="home">
|
|
299
|
+
<video id="heroVideo" autoplay muted loop playsinline poster="">
|
|
300
|
+
<source src="https://stream.mux.com/Aa02T7oM1wH5Mk5EEVDYhbZ1ChcdhRsS2m1NYyx4Ua1g.m3u8" type="application/x-mpegURL">
|
|
301
|
+
</video>
|
|
302
|
+
<div class="video-fallback" aria-hidden="true"></div>
|
|
303
|
+
<div class="overlay"></div>
|
|
304
|
+
<div class="bottom-fade"></div>
|
|
305
|
+
|
|
306
|
+
<nav class="navbar">
|
|
307
|
+
<div class="nav-pill" id="navPill">
|
|
308
|
+
<a class="logo" href="#home"><span class="font-display">JA</span></a>
|
|
309
|
+
<span class="nav-divider"></span>
|
|
310
|
+
<a class="nav-link active" href="#home">Home</a>
|
|
311
|
+
<a class="nav-link" href="#work">Work</a>
|
|
312
|
+
<a class="nav-link" href="#resume">Resume</a>
|
|
313
|
+
<span class="nav-divider"></span>
|
|
314
|
+
<a class="say-hi" href="#contact"><span class="ring"></span><span class="inner">Say hi ↗</span></a>
|
|
315
|
+
</div>
|
|
316
|
+
</nav>
|
|
317
|
+
|
|
318
|
+
<div class="hero-content">
|
|
319
|
+
<span class="hero-eyebrow eyebrow">Collection '26</span>
|
|
320
|
+
<h1 class="hero-name font-display">Michael Smith</h1>
|
|
321
|
+
<p class="hero-role">A <span class="font-display role-word" id="role">Creative</span> lives in Chicago.</p>
|
|
322
|
+
<p class="hero-desc">Designing seamless digital interactions by focusing on the unique nuances which bring systems to life.</p>
|
|
323
|
+
<div class="cta-row">
|
|
324
|
+
<a class="btn btn-solid" href="#work">See Works</a>
|
|
325
|
+
<a class="btn btn-outline" href="#contact">Reach out...</a>
|
|
326
|
+
</div>
|
|
327
|
+
</div>
|
|
328
|
+
|
|
329
|
+
<div class="scroll-ind">
|
|
330
|
+
<span class="lbl">Scroll</span>
|
|
331
|
+
<div class="track"><i></i></div>
|
|
332
|
+
</div>
|
|
333
|
+
</section>
|
|
334
|
+
|
|
335
|
+
<!-- ───── SELECTED WORKS ───── -->
|
|
336
|
+
<section class="works" id="work">
|
|
337
|
+
<div class="container">
|
|
338
|
+
<div class="sec-head reveal">
|
|
339
|
+
<div>
|
|
340
|
+
<span class="line"><i class="bar"></i><span class="eyebrow">Selected Work</span></span>
|
|
341
|
+
<h2>Featured <span class="font-display">projects</span></h2>
|
|
342
|
+
<p>A selection of projects I've worked on, from concept to launch.</p>
|
|
343
|
+
</div>
|
|
344
|
+
<a class="view-all" href="#work"><span class="ring"></span><span class="inner">View all work →</span></a>
|
|
345
|
+
</div>
|
|
346
|
+
<div class="bento reveal">
|
|
347
|
+
<div class="proj">
|
|
348
|
+
<div class="proj-img"><img data-img="p1" alt="Automotive Motion"><div class="halftone"></div></div>
|
|
349
|
+
<div class="hover-layer"><span class="proj-label">View — <span class="font-display">Automotive Motion</span></span></div>
|
|
350
|
+
</div>
|
|
351
|
+
<div class="proj">
|
|
352
|
+
<div class="proj-img"><img data-img="p2" alt="Urban Architecture"><div class="halftone"></div></div>
|
|
353
|
+
<div class="hover-layer"><span class="proj-label">View — <span class="font-display">Urban Architecture</span></span></div>
|
|
354
|
+
</div>
|
|
355
|
+
<div class="proj">
|
|
356
|
+
<div class="proj-img"><img data-img="p3" alt="Human Perspective"><div class="halftone"></div></div>
|
|
357
|
+
<div class="hover-layer"><span class="proj-label">View — <span class="font-display">Human Perspective</span></span></div>
|
|
358
|
+
</div>
|
|
359
|
+
<div class="proj">
|
|
360
|
+
<div class="proj-img"><img data-img="p4" alt="Brand Identity"><div class="halftone"></div></div>
|
|
361
|
+
<div class="hover-layer"><span class="proj-label">View — <span class="font-display">Brand Identity</span></span></div>
|
|
362
|
+
</div>
|
|
363
|
+
</div>
|
|
364
|
+
</div>
|
|
365
|
+
</section>
|
|
366
|
+
|
|
367
|
+
<!-- ───── JOURNAL ───── -->
|
|
368
|
+
<section class="journal" id="resume">
|
|
369
|
+
<div class="container">
|
|
370
|
+
<div class="sec-head reveal">
|
|
371
|
+
<div>
|
|
372
|
+
<span class="line"><i class="bar"></i><span class="eyebrow">Journal</span></span>
|
|
373
|
+
<h2>Recent <span class="font-display">thoughts</span></h2>
|
|
374
|
+
<p>Notes on craft, process, and the systems behind good design.</p>
|
|
375
|
+
</div>
|
|
376
|
+
<a class="view-all" href="#resume"><span class="ring"></span><span class="inner">View all →</span></a>
|
|
377
|
+
</div>
|
|
378
|
+
<div class="entries reveal">
|
|
379
|
+
<div class="entry"><img data-img="j1" alt=""><div class="body"><h3>Designing motion that feels inevitable</h3><div class="meta"><span>6 min read</span></div></div><span class="date">Mar 2026</span></div>
|
|
380
|
+
<div class="entry"><img data-img="j2" alt=""><div class="body"><h3>The architecture of a calm interface</h3><div class="meta"><span>4 min read</span></div></div><span class="date">Feb 2026</span></div>
|
|
381
|
+
<div class="entry"><img data-img="j3" alt=""><div class="body"><h3>On building systems, not screens</h3><div class="meta"><span>8 min read</span></div></div><span class="date">Jan 2026</span></div>
|
|
382
|
+
<div class="entry"><img data-img="j4" alt=""><div class="body"><h3>Why constraints make better work</h3><div class="meta"><span>5 min read</span></div></div><span class="date">Dec 2025</span></div>
|
|
383
|
+
</div>
|
|
384
|
+
</div>
|
|
385
|
+
</section>
|
|
386
|
+
|
|
387
|
+
<!-- ───── EXPLORATIONS ───── -->
|
|
388
|
+
<section class="explore">
|
|
389
|
+
<div class="explore-pin">
|
|
390
|
+
<div class="inner container">
|
|
391
|
+
<span class="eyebrow">Explorations</span>
|
|
392
|
+
<h2 class="font-display">Visual playground</h2>
|
|
393
|
+
<p class="muted" style="max-width:26rem;margin:0 auto;">Experiments, studies, and things that never shipped.</p>
|
|
394
|
+
<a class="dribbble-btn" href="#">Dribbble ↗</a>
|
|
395
|
+
</div>
|
|
396
|
+
</div>
|
|
397
|
+
<div class="parallax-cols">
|
|
398
|
+
<div class="pcol">
|
|
399
|
+
<div class="pcard" style="transform:rotate(-3deg)"><img data-img="e1" alt=""></div>
|
|
400
|
+
<div class="pcard" style="transform:rotate(2deg)"><img data-img="e2" alt=""></div>
|
|
401
|
+
<div class="pcard" style="transform:rotate(-1deg)"><img data-img="e3" alt=""></div>
|
|
402
|
+
</div>
|
|
403
|
+
<div class="pcol">
|
|
404
|
+
<div class="pcard" style="transform:rotate(2deg)"><img data-img="e4" alt=""></div>
|
|
405
|
+
<div class="pcard" style="transform:rotate(-2deg)"><img data-img="e5" alt=""></div>
|
|
406
|
+
<div class="pcard" style="transform:rotate(3deg)"><img data-img="e6" alt=""></div>
|
|
407
|
+
</div>
|
|
408
|
+
</div>
|
|
409
|
+
</section>
|
|
410
|
+
|
|
411
|
+
<!-- ───── STATS ───── -->
|
|
412
|
+
<section class="stats">
|
|
413
|
+
<div class="container">
|
|
414
|
+
<div class="stats-grid reveal">
|
|
415
|
+
<div class="stat"><div class="num font-display">20+</div><div class="lbl">Years Experience</div></div>
|
|
416
|
+
<div class="stat"><div class="num font-display">95+</div><div class="lbl">Projects Done</div></div>
|
|
417
|
+
<div class="stat"><div class="num font-display">200%</div><div class="lbl">Satisfied Clients</div></div>
|
|
418
|
+
</div>
|
|
419
|
+
</div>
|
|
420
|
+
</section>
|
|
421
|
+
|
|
422
|
+
<!-- ───── CONTACT / FOOTER ───── -->
|
|
423
|
+
<section class="contact" id="contact">
|
|
424
|
+
<video class="bgvid" autoplay muted loop playsinline>
|
|
425
|
+
<source src="https://stream.mux.com/Aa02T7oM1wH5Mk5EEVDYhbZ1ChcdhRsS2m1NYyx4Ua1g.m3u8" type="application/x-mpegURL">
|
|
426
|
+
</video>
|
|
427
|
+
<div class="video-fallback" aria-hidden="true"></div>
|
|
428
|
+
<div class="overlay"></div>
|
|
429
|
+
<div class="inner container">
|
|
430
|
+
<div class="marquee"><div class="track" id="marquee"></div></div>
|
|
431
|
+
<div class="contact-cta">
|
|
432
|
+
<a class="email-btn" href="mailto:hello@michaelsmith.com"><span class="ring"></span><span class="inner">hello@michaelsmith.com</span></a>
|
|
433
|
+
</div>
|
|
434
|
+
<div class="footer-bar">
|
|
435
|
+
<div class="socials">
|
|
436
|
+
<a href="#">Twitter</a><a href="#">LinkedIn</a><a href="#">Dribbble</a><a href="#">GitHub</a>
|
|
437
|
+
</div>
|
|
438
|
+
<div class="avail"><span class="dot"></span>Available for projects</div>
|
|
439
|
+
</div>
|
|
440
|
+
</div>
|
|
441
|
+
</section>
|
|
442
|
+
|
|
443
|
+
<div id="lightbox"><img id="lightboxImg" alt=""></div>
|
|
444
|
+
|
|
445
|
+
<script>window.__PC_IMGS__ = {"p1":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgODAwIDYwMCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnMSIgeDE9IjAiIHkxPSIwIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzFhMjQzMyIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzBhMGUxNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiBmaWxsPSJ1cmwoI2cxKSIvPjxjaXJjbGUgY3g9IjMxIiBjeT0iNTMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMDQiIGN5PSIyMTAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNzciIGN5PSIzNjciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNTAiIGN5PSI1MjQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMjMiIGN5PSI4MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM5NiIgY3k9IjIzOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ2OSIgY3k9IjM5NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU0MiIgY3k9IjU1MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYxNSIgY3k9IjEwOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY4OCIgY3k9IjI2NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc2MSIgY3k9IjQyMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM0IiBjeT0iNTgwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTA3IiBjeT0iMTM3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTgwIiBjeT0iMjk0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjUzIiBjeT0iNDUxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzI2IiBjeT0iOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM5OSIgY3k9IjE2NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ3MiIgY3k9IjMyMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU0NSIgY3k9IjQ3OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYxOCIgY3k9IjM2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjkxIiBjeT0iMTkzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzY0IiBjeT0iMzUwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzciIGN5PSI1MDciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTAiIGN5PSI2NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE4MyIgY3k9IjIyMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI1NiIgY3k9IjM3OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMyOSIgY3k9IjUzNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQwMiIgY3k9IjkyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDc1IiBjeT0iMjQ5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTQ4IiBjeT0iNDA2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjIxIiBjeT0iNTYzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjk0IiBjeT0iMTIwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzY3IiBjeT0iMjc3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDAiIGN5PSI0MzQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTMiIGN5PSI1OTEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODYiIGN5PSIxNDgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNTkiIGN5PSIzMDUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMzIiIGN5PSI0NjIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MDUiIGN5PSIxOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ3OCIgY3k9IjE3NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU1MSIgY3k9IjMzMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYyNCIgY3k9IjQ5MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY5NyIgY3k9IjQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzcwIiBjeT0iMjA0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDMiIGN5PSIzNjEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTYiIGN5PSI1MTgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODkiIGN5PSI3NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI2MiIgY3k9IjIzMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMzNSIgY3k9IjM4OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQwOCIgY3k9IjU0NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ4MSIgY3k9IjEwMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU1NCIgY3k9IjI2MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYyNyIgY3k9IjQxNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjcwMCIgY3k9IjU3NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc3MyIgY3k9IjEzMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ2IiBjeT0iMjg4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTE5IiBjeT0iNDQ1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTkyIiBjeT0iMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI2NSIgY3k9IjE1OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMzOCIgY3k9IjMxNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==","p2":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iMTAwMCIgdmlld0JveD0iMCAwIDgwMCAxMDAwIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImcyIiB4MT0iMCIgeTE9IjAiIHgyPSIxIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjMmEyMDE4Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMGQwYTA3Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3Qgd2lkdGg9IjgwMCIgaGVpZ2h0PSIxMDAwIiBmaWxsPSJ1cmwoI2cyKSIvPjxjaXJjbGUgY3g9IjYyIiBjeT0iMTA2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTM1IiBjeT0iMjYzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjA4IiBjeT0iNDIwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjgxIiBjeT0iNTc3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzU0IiBjeT0iNzM0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDI3IiBjeT0iODkxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTAwIiBjeT0iNDgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NzMiIGN5PSIyMDUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2NDYiIGN5PSIzNjIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3MTkiIGN5PSI1MTkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3OTIiIGN5PSI2NzYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2NSIgY3k9IjgzMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEzOCIgY3k9Ijk5MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIxMSIgY3k9IjE0NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4NCIgY3k9IjMwNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM1NyIgY3k9IjQ2MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQzMCIgY3k9IjYxOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUwMyIgY3k9Ijc3NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU3NiIgY3k9IjkzMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY0OSIgY3k9Ijg5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzIyIiBjeT0iMjQ2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzk1IiBjeT0iNDAzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjgiIGN5PSI1NjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDEiIGN5PSI3MTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMTQiIGN5PSI4NzQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyODciIGN5PSIzMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM2MCIgY3k9IjE4OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQzMyIgY3k9IjM0NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUwNiIgY3k9IjUwMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU3OSIgY3k9IjY1OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY1MiIgY3k9IjgxNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjcyNSIgY3k9Ijk3MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc5OCIgY3k9IjEzMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjcxIiBjeT0iMjg3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQ0IiBjeT0iNDQ0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjE3IiBjeT0iNjAxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjkwIiBjeT0iNzU4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzYzIiBjeT0iOTE1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDM2IiBjeT0iNzIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MDkiIGN5PSIyMjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1ODIiIGN5PSIzODYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2NTUiIGN5PSI1NDMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3MjgiIGN5PSI3MDAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxIiBjeT0iODU3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzQiIGN5PSIxNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE0NyIgY3k9IjE3MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIyMCIgY3k9IjMyOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI5MyIgY3k9IjQ4NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM2NiIgY3k9IjY0MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQzOSIgY3k9Ijc5OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUxMiIgY3k9Ijk1NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU4NSIgY3k9IjExMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY1OCIgY3k9IjI3MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjczMSIgY3k9IjQyNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQiIGN5PSI1ODQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3NyIgY3k9Ijc0MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE1MCIgY3k9Ijg5OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIyMyIgY3k9IjU1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjk2IiBjeT0iMjEyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzY5IiBjeT0iMzY5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+","p3":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iMTAwMCIgdmlld0JveD0iMCAwIDgwMCAxMDAwIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImczIiB4MT0iMCIgeTE9IjAiIHgyPSIxIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjMjMxYTJlIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMGMwODEwIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3Qgd2lkdGg9IjgwMCIgaGVpZ2h0PSIxMDAwIiBmaWxsPSJ1cmwoI2czKSIvPjxjaXJjbGUgY3g9IjkzIiBjeT0iMTU5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTY2IiBjeT0iMzE2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjM5IiBjeT0iNDczIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzEyIiBjeT0iNjMwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzg1IiBjeT0iNzg3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDU4IiBjeT0iOTQ0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTMxIiBjeT0iMTAxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjA0IiBjeT0iMjU4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjc3IiBjeT0iNDE1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzUwIiBjeT0iNTcyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjMiIGN5PSI3MjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5NiIgY3k9Ijg4NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2OSIgY3k9IjQzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjQyIiBjeT0iMjAwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzE1IiBjeT0iMzU3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzg4IiBjeT0iNTE0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDYxIiBjeT0iNjcxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTM0IiBjeT0iODI4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjA3IiBjeT0iOTg1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjgwIiBjeT0iMTQyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzUzIiBjeT0iMjk5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjYiIGN5PSI0NTYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5OSIgY3k9IjYxMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3MiIgY3k9Ijc3MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI0NSIgY3k9IjkyNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMxOCIgY3k9Ijg0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzkxIiBjeT0iMjQxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDY0IiBjeT0iMzk4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTM3IiBjeT0iNTU1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjEwIiBjeT0iNzEyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjgzIiBjeT0iODY5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzU2IiBjeT0iMjYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyOSIgY3k9IjE4MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwMiIgY3k9IjM0MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3NSIgY3k9IjQ5NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI0OCIgY3k9IjY1NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMyMSIgY3k9IjgxMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM5NCIgY3k9Ijk2OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ2NyIgY3k9IjEyNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU0MCIgY3k9IjI4MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYxMyIgY3k9IjQzOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY4NiIgY3k9IjU5NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc1OSIgY3k9Ijc1MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMyIiBjeT0iOTEwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTA1IiBjeT0iNjciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNzgiIGN5PSIyMjQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNTEiIGN5PSIzODEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMjQiIGN5PSI1MzgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzOTciIGN5PSI2OTUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NzAiIGN5PSI4NTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NDMiIGN5PSI5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjE2IiBjeT0iMTY2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjg5IiBjeT0iMzIzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzYyIiBjeT0iNDgwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzUiIGN5PSI2MzciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMDgiIGN5PSI3OTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODEiIGN5PSI5NTEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNTQiIGN5PSIxMDgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMjciIGN5PSIyNjUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MDAiIGN5PSI0MjIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=","p4":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgODAwIDYwMCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnNCIgeDE9IjAiIHkxPSIwIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzE2MjQyYSIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA3MGQxMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiBmaWxsPSJ1cmwoI2c0KSIvPjxjaXJjbGUgY3g9IjEyNCIgY3k9IjIxMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE5NyIgY3k9IjM2OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI3MCIgY3k9IjUyNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM0MyIgY3k9IjgzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDE2IiBjeT0iMjQwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDg5IiBjeT0iMzk3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTYyIiBjeT0iNTU0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjM1IiBjeT0iMTExIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzA4IiBjeT0iMjY4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzgxIiBjeT0iNDI1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTQiIGN5PSI1ODIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjciIGN5PSIxMzkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMDAiIGN5PSIyOTYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNzMiIGN5PSI0NTMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNDYiIGN5PSIxMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQxOSIgY3k9IjE2NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ5MiIgY3k9IjMyNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU2NSIgY3k9IjQ4MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYzOCIgY3k9IjM4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzExIiBjeT0iMTk1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzg0IiBjeT0iMzUyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTciIGN5PSI1MDkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzAiIGN5PSI2NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIwMyIgY3k9IjIyMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI3NiIgY3k9IjM4MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM0OSIgY3k9IjUzNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQyMiIgY3k9Ijk0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDk1IiBjeT0iMjUxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTY4IiBjeT0iNDA4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjQxIiBjeT0iNTY1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzE0IiBjeT0iMTIyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzg3IiBjeT0iMjc5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjAiIGN5PSI0MzYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzMiIGN5PSI1OTMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMDYiIGN5PSIxNTAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNzkiIGN5PSIzMDciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNTIiIGN5PSI0NjQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MjUiIGN5PSIyMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ5OCIgY3k9IjE3OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU3MSIgY3k9IjMzNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY0NCIgY3k9IjQ5MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjcxNyIgY3k9IjQ5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzkwIiBjeT0iMjA2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjMiIGN5PSIzNjMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzYiIGN5PSI1MjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMDkiIGN5PSI3NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4MiIgY3k9IjIzNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM1NSIgY3k9IjM5MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQyOCIgY3k9IjU0OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUwMSIgY3k9IjEwNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU3NCIgY3k9IjI2MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY0NyIgY3k9IjQxOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjcyMCIgY3k9IjU3NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc5MyIgY3k9IjEzMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY2IiBjeT0iMjkwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTM5IiBjeT0iNDQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjEyIiBjeT0iNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4NSIgY3k9IjE2MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM1OCIgY3k9IjMxOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQzMSIgY3k9IjQ3NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==","j1":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiB2aWV3Qm94PSIwIDAgMjAwIDIwMCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnNSIgeDE9IjAiIHkxPSIwIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzFjMjczMyIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzBhMGUxNCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSJ1cmwoI2c1KSIvPjxjaXJjbGUgY3g9IjE1NSIgY3k9IjY1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjgiIGN5PSIyMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwMSIgY3k9IjE3OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3NCIgY3k9IjEzNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ3IiBjeT0iOTMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjAiIGN5PSI1MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE5MyIgY3k9IjciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2NiIgY3k9IjE2NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEzOSIgY3k9IjEyMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEyIiBjeT0iNzgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4NSIgY3k9IjM1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTU4IiBjeT0iMTkyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzEiIGN5PSIxNDkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMDQiIGN5PSIxMDYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNzciIGN5PSI2MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUwIiBjeT0iMjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjMiIGN5PSIxNzciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOTYiIGN5PSIxMzQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2OSIgY3k9IjkxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQyIiBjeT0iNDgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNSIgY3k9IjUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4OCIgY3k9IjE2MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2MSIgY3k9IjExOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM0IiBjeT0iNzYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMDciIGN5PSIzMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE4MCIgY3k9IjE5MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUzIiBjeT0iMTQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI2IiBjeT0iMTA0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTk5IiBjeT0iNjEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3MiIgY3k9IjE4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQ1IiBjeT0iMTc1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTgiIGN5PSIxMzIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5MSIgY3k9Ijg5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTY0IiBjeT0iNDYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNyIgY3k9IjMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTAiIGN5PSIxNjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODMiIGN5PSIxMTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NiIgY3k9Ijc0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI5IiBjeT0iMzEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyIiBjeT0iMTg4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzUiIGN5PSIxNDUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDgiIGN5PSIxMDIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMSIgY3k9IjU5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTQiIGN5PSIxNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2NyIgY3k9IjE3MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQwIiBjeT0iMTMwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTEzIiBjeT0iODciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODYiIGN5PSI0NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU5IiBjeT0iMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEzMiIgY3k9IjE1OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUiIGN5PSIxMTUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3OCIgY3k9IjcyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTUxIiBjeT0iMjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNCIgY3k9IjE4NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijk3IiBjeT0iMTQzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iMTAwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDMiIGN5PSI1NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjExNiIgY3k9IjE0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTg5IiBjeT0iMTcxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjIiIGN5PSIxMjgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=","j2":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiB2aWV3Qm94PSIwIDAgMjAwIDIwMCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnNiIgeDE9IjAiIHkxPSIwIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzJhMjIxOCIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzBkMGEwNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSJ1cmwoI2c2KSIvPjxjaXJjbGUgY3g9IjE4NiIgY3k9IjExOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU5IiBjeT0iNzUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzIiIGN5PSIzMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUiIGN5PSIxODkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3OCIgY3k9IjE0NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE1MSIgY3k9IjEwMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI0IiBjeT0iNjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5NyIgY3k9IjE3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTcwIiBjeT0iMTc0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDMiIGN5PSIxMzEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTYiIGN5PSI4OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE4OSIgY3k9IjQ1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTM1IiBjeT0iMTU5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOCIgY3k9IjExNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjgxIiBjeT0iNzMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNTQiIGN5PSIzMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI3IiBjeT0iMTg3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTAwIiBjeT0iMTQ0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTczIiBjeT0iMTAxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDYiIGN5PSI1OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjExOSIgY3k9IjE1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTkyIiBjeT0iMTcyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjUiIGN5PSIxMjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzgiIGN5PSI4NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjExIiBjeT0iNDMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4NCIgY3k9IjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNTciIGN5PSIxNTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMCIgY3k9IjExNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwMyIgY3k9IjcxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTc2IiBjeT0iMjgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0OSIgY3k9IjE4NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEyMiIgY3k9IjE0MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE5NSIgY3k9Ijk5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjgiIGN5PSI1NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE0MSIgY3k9IjEzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQiIGN5PSIxNzAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4NyIgY3k9IjEyNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2MCIgY3k9Ijg0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzMiIGN5PSI0MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwNiIgY3k9IjE5OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3OSIgY3k9IjE1NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUyIiBjeT0iMTEyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI1IiBjeT0iNjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOTgiIGN5PSIyNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjcxIiBjeT0iMTgzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQ0IiBjeT0iMTQwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTciIGN5PSI5NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjkwIiBjeT0iNTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNjMiIGN5PSIxMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM2IiBjeT0iMTY4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTA5IiBjeT0iMTI1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTgyIiBjeT0iODIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NSIgY3k9IjM5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI4IiBjeT0iMTk2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMSIgY3k9IjE1MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc0IiBjeT0iMTEwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQ3IiBjeT0iNjciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMCIgY3k9IjI0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTMiIGN5PSIxODEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=","j3":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiB2aWV3Qm94PSIwIDAgMjAwIDIwMCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnNyIgeDE9IjAiIHkxPSIwIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzIyMWEyYyIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzBjMDgxMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSJ1cmwoI2c3KSIvPjxjaXJjbGUgY3g9IjE3IiBjeT0iMTcxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTAiIGN5PSIxMjgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNjMiIGN5PSI4NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM2IiBjeT0iNDIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMDkiIGN5PSIxOTkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODIiIGN5PSIxNTYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NSIgY3k9IjExMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEyOCIgY3k9IjcwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMSIgY3k9IjI3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzQiIGN5PSIxODQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDciIGN5PSIxNDEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMCIgY3k9Ijk4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTMiIGN5PSI1NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2NiIgY3k9IjEyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzkiIGN5PSIxNjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTIiIGN5PSIxMjYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODUiIGN5PSI4MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU4IiBjeT0iNDAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzEiIGN5PSIxOTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0IiBjeT0iMTU0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzciIGN5PSIxMTEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNTAiIGN5PSI2OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIzIiBjeT0iMjUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5NiIgY3k9IjE4MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2OSIgY3k9IjEzOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQyIiBjeT0iOTYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTUiIGN5PSI1MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE4OCIgY3k9IjEwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjEiIGN5PSIxNjciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzQiIGN5PSIxMjQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3IiBjeT0iODEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4MCIgY3k9IjM4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTUzIiBjeT0iMTk1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjYiIGN5PSIxNTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5OSIgY3k9IjEwOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3MiIgY3k9IjY2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDUiIGN5PSIyMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjExOCIgY3k9IjE4MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE5MSIgY3k9IjEzNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY0IiBjeT0iOTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzciIGN5PSI1MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwIiBjeT0iOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjgzIiBjeT0iMTY1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTU2IiBjeT0iMTIyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjkiIGN5PSI3OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwMiIgY3k9IjM2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTc1IiBjeT0iMTkzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDgiIGN5PSIxNTAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjEiIGN5PSIxMDciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOTQiIGN5PSI2NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY3IiBjeT0iMjEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDAiIGN5PSIxNzgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMyIgY3k9IjEzNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijg2IiBjeT0iOTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNTkiIGN5PSI0OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMyIiBjeT0iNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwNSIgY3k9IjE2MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3OCIgY3k9IjEyMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUxIiBjeT0iNzciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjQiIGN5PSIzNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==","j4":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiB2aWV3Qm94PSIwIDAgMjAwIDIwMCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnOCIgeDE9IjAiIHkxPSIwIiB4Mj0iMSIgeTI9IjEiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzE2MjYyYSIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzA3MGQxMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiBmaWxsPSJ1cmwoI2c4KSIvPjxjaXJjbGUgY3g9IjQ4IiBjeT0iMjQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjEiIGN5PSIxODEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOTQiIGN5PSIxMzgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2NyIgY3k9Ijk1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQwIiBjeT0iNTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMyIgY3k9IjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4NiIgY3k9IjE2NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE1OSIgY3k9IjEyMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMyIiBjeT0iODAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMDUiIGN5PSIzNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3OCIgY3k9IjE5NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUxIiBjeT0iMTUxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI0IiBjeT0iMTA4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTk3IiBjeT0iNjUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3MCIgY3k9IjIyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQzIiBjeT0iMTc5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTYiIGN5PSIxMzYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4OSIgY3k9IjkzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTYyIiBjeT0iNTAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNSIgY3k9IjciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMDgiIGN5PSIxNjQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODEiIGN5PSIxMjEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NCIgY3k9Ijc4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI3IiBjeT0iMzUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIwIiBjeT0iMTkyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzMiIGN5PSIxNDkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDYiIGN5PSIxMDYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOSIgY3k9IjYzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTIiIGN5PSIyMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2NSIgY3k9IjE3NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM4IiBjeT0iMTM0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTExIiBjeT0iOTEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODQiIGN5PSI0OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU3IiBjeT0iNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEzMCIgY3k9IjE2MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMiIGN5PSIxMTkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3NiIgY3k9Ijc2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQ5IiBjeT0iMzMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMiIgY3k9IjE5MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijk1IiBjeT0iMTQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTY4IiBjeT0iMTA0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDEiIGN5PSI2MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjExNCIgY3k9IjE4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTg3IiBjeT0iMTc1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjAiIGN5PSIxMzIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMzMiIGN5PSI4OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYiIGN5PSI0NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc5IiBjeT0iMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE1MiIgY3k9IjE2MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI1IiBjeT0iMTE3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTgiIGN5PSI3NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3MSIgY3k9IjMxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDQiIGN5PSIxODgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTciIGN5PSIxNDUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOTAiIGN5PSIxMDIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MyIgY3k9IjU5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTM2IiBjeT0iMTYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5IiBjeT0iMTczIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iODIiIGN5PSIxMzAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNTUiIGN5PSI4NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==","e1":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2aWV3Qm94PSIwIDAgNjQwIDY0MCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnMTEiIHgxPSIwIiB5MT0iMCIgeDI9IjEiIHkyPSIxIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMxYTI0MzMiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwYTBlMTQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iNjQwIiBoZWlnaHQ9IjY0MCIgZmlsbD0idXJsKCNnMTEpIi8+PGNpcmNsZSBjeD0iMzQxIiBjeT0iNTgzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDE0IiBjeT0iMTAwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDg3IiBjeT0iMjU3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTYwIiBjeT0iNDE0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjMzIiBjeT0iNTcxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjYiIGN5PSI4OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEzOSIgY3k9IjI0NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIxMiIgY3k9IjQwMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4NSIgY3k9IjU1OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM1OCIgY3k9Ijc2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDMxIiBjeT0iMjMzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTA0IiBjeT0iMzkwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTc3IiBjeT0iNTQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTAiIGN5PSI2NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjgzIiBjeT0iMjIxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTU2IiBjeT0iMzc4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjI5IiBjeT0iNTM1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzAyIiBjeT0iNTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNzUiIGN5PSIyMDkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NDgiIGN5PSIzNjYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MjEiIGN5PSI1MjMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1OTQiIGN5PSI0MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI3IiBjeT0iMTk3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTAwIiBjeT0iMzU0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTczIiBjeT0iNTExIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjQ2IiBjeT0iMjgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMTkiIGN5PSIxODUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzOTIiIGN5PSIzNDIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NjUiIGN5PSI0OTkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MzgiIGN5PSIxNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYxMSIgY3k9IjE3MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ0IiBjeT0iMzMwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTE3IiBjeT0iNDg3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTkwIiBjeT0iNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI2MyIgY3k9IjE2MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMzNiIgY3k9IjMxOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQwOSIgY3k9IjQ3NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ4MiIgY3k9IjYzMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU1NSIgY3k9IjE0OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYyOCIgY3k9IjMwNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYxIiBjeT0iNDYzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTM0IiBjeT0iNjIwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjA3IiBjeT0iMTM3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjgwIiBjeT0iMjk0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzUzIiBjeT0iNDUxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDI2IiBjeT0iNjA4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDk5IiBjeT0iMTI1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTcyIiBjeT0iMjgyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNSIgY3k9IjQzOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc4IiBjeT0iNTk2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTUxIiBjeT0iMTEzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjI0IiBjeT0iMjcwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjk3IiBjeT0iNDI3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzcwIiBjeT0iNTg0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDQzIiBjeT0iMTAxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTE2IiBjeT0iMjU4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTg5IiBjeT0iNDE1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjIiIGN5PSI1NzIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5NSIgY3k9Ijg5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTY4IiBjeT0iMjQ2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+","e2":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2aWV3Qm94PSIwIDAgNjQwIDY0MCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnMTIiIHgxPSIwIiB5MT0iMCIgeDI9IjEiIHkyPSIxIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMyYTIwMTgiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwYTBlMTQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iNjQwIiBoZWlnaHQ9IjY0MCIgZmlsbD0idXJsKCNnMTIpIi8+PGNpcmNsZSBjeD0iMzcyIiBjeT0iNjM2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDQ1IiBjeT0iMTUzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTE4IiBjeT0iMzEwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTkxIiBjeT0iNDY3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjQiIGN5PSI2MjQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5NyIgY3k9IjE0MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3MCIgY3k9IjI5OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI0MyIgY3k9IjQ1NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMxNiIgY3k9IjYxMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM4OSIgY3k9IjEyOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ2MiIgY3k9IjI4NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUzNSIgY3k9IjQ0MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYwOCIgY3k9IjYwMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQxIiBjeT0iMTE3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTE0IiBjeT0iMjc0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTg3IiBjeT0iNDMxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjYwIiBjeT0iNTg4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzMzIiBjeT0iMTA1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDA2IiBjeT0iMjYyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDc5IiBjeT0iNDE5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTUyIiBjeT0iNTc2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjI1IiBjeT0iOTMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1OCIgY3k9IjI1MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEzMSIgY3k9IjQwNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIwNCIgY3k9IjU2NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI3NyIgY3k9IjgxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzUwIiBjeT0iMjM4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDIzIiBjeT0iMzk1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDk2IiBjeT0iNTUyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTY5IiBjeT0iNjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyIiBjeT0iMjI2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzUiIGN5PSIzODMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDgiIGN5PSI1NDAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMjEiIGN5PSI1NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI5NCIgY3k9IjIxNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM2NyIgY3k9IjM3MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ0MCIgY3k9IjUyOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUxMyIgY3k9IjQ1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTg2IiBjeT0iMjAyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTkiIGN5PSIzNTkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5MiIgY3k9IjUxNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2NSIgY3k9IjMzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjM4IiBjeT0iMTkwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzExIiBjeT0iMzQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzg0IiBjeT0iNTA0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDU3IiBjeT0iMjEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MzAiIGN5PSIxNzgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MDMiIGN5PSIzMzUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNiIgY3k9IjQ5MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwOSIgY3k9IjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODIiIGN5PSIxNjYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNTUiIGN5PSIzMjMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMjgiIGN5PSI0ODAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MDEiIGN5PSI2MzciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NzQiIGN5PSIxNTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NDciIGN5PSIzMTEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MjAiIGN5PSI0NjgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MyIgY3k9IjYyNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEyNiIgY3k9IjE0MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE5OSIgY3k9IjI5OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==","e3":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2aWV3Qm94PSIwIDAgNjQwIDY0MCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnMTMiIHgxPSIwIiB5MT0iMCIgeDI9IjEiIHkyPSIxIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMyMzFhMmUiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwYTBlMTQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iNjQwIiBoZWlnaHQ9IjY0MCIgZmlsbD0idXJsKCNnMTMpIi8+PGNpcmNsZSBjeD0iNDAzIiBjeT0iNDkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NzYiIGN5PSIyMDYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NDkiIGN5PSIzNjMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MjIiIGN5PSI1MjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NSIgY3k9IjM3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI4IiBjeT0iMTk0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjAxIiBjeT0iMzUxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjc0IiBjeT0iNTA4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzQ3IiBjeT0iMjUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MjAiIGN5PSIxODIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0OTMiIGN5PSIzMzkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NjYiIGN5PSI0OTYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MzkiIGN5PSIxMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjcyIiBjeT0iMTcwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQ1IiBjeT0iMzI3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjE4IiBjeT0iNDg0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjkxIiBjeT0iMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM2NCIgY3k9IjE1OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQzNyIgY3k9IjMxNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUxMCIgY3k9IjQ3MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU4MyIgY3k9IjYyOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2IiBjeT0iMTQ2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iODkiIGN5PSIzMDMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNjIiIGN5PSI0NjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMzUiIGN5PSI2MTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMDgiIGN5PSIxMzQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzODEiIGN5PSIyOTEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NTQiIGN5PSI0NDgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MjciIGN5PSI2MDUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MDAiIGN5PSIxMjIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMyIgY3k9IjI3OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwNiIgY3k9IjQzNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE3OSIgY3k9IjU5MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI1MiIgY3k9IjExMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMyNSIgY3k9IjI2NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM5OCIgY3k9IjQyNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ3MSIgY3k9IjU4MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU0NCIgY3k9Ijk4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjE3IiBjeT0iMjU1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTAiIGN5PSI0MTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjMiIGN5PSI1NjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOTYiIGN5PSI4NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI2OSIgY3k9IjI0MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM0MiIgY3k9IjQwMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQxNSIgY3k9IjU1NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ4OCIgY3k9Ijc0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTYxIiBjeT0iMjMxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjM0IiBjeT0iMzg4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjciIGN5PSI1NDUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDAiIGN5PSI2MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIxMyIgY3k9IjIxOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4NiIgY3k9IjM3NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM1OSIgY3k9IjUzMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQzMiIgY3k9IjUwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTA1IiBjeT0iMjA3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTc4IiBjeT0iMzY0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTEiIGN5PSI1MjEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4NCIgY3k9IjM4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTU3IiBjeT0iMTk1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjMwIiBjeT0iMzUyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+","e4":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2aWV3Qm94PSIwIDAgNjQwIDY0MCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnMTQiIHgxPSIwIiB5MT0iMCIgeDI9IjEiIHkyPSIxIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMxNjI0MmEiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwYTBlMTQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iNjQwIiBoZWlnaHQ9IjY0MCIgZmlsbD0idXJsKCNnMTQpIi8+PGNpcmNsZSBjeD0iNDM0IiBjeT0iMTAyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTA3IiBjeT0iMjU5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTgwIiBjeT0iNDE2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTMiIGN5PSI1NzMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4NiIgY3k9IjkwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTU5IiBjeT0iMjQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjMyIiBjeT0iNDA0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzA1IiBjeT0iNTYxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzc4IiBjeT0iNzgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NTEiIGN5PSIyMzUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MjQiIGN5PSIzOTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1OTciIGN5PSI1NDkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMCIgY3k9IjY2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTAzIiBjeT0iMjIzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTc2IiBjeT0iMzgwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjQ5IiBjeT0iNTM3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzIyIiBjeT0iNTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzOTUiIGN5PSIyMTEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NjgiIGN5PSIzNjgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NDEiIGN5PSI1MjUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MTQiIGN5PSI0MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ3IiBjeT0iMTk5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTIwIiBjeT0iMzU2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTkzIiBjeT0iNTEzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjY2IiBjeT0iMzAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMzkiIGN5PSIxODciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MTIiIGN5PSIzNDQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0ODUiIGN5PSI1MDEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NTgiIGN5PSIxOCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYzMSIgY3k9IjE3NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjY0IiBjeT0iMzMyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTM3IiBjeT0iNDg5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjEwIiBjeT0iNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4MyIgY3k9IjE2MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM1NiIgY3k9IjMyMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQyOSIgY3k9IjQ3NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUwMiIgY3k9IjYzNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU3NSIgY3k9IjE1MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjgiIGN5PSIzMDgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4MSIgY3k9IjQ2NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE1NCIgY3k9IjYyMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIyNyIgY3k9IjEzOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMwMCIgY3k9IjI5NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM3MyIgY3k9IjQ1MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ0NiIgY3k9IjYxMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUxOSIgY3k9IjEyNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU5MiIgY3k9IjI4NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI1IiBjeT0iNDQxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTgiIGN5PSI1OTgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNzEiIGN5PSIxMTUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNDQiIGN5PSIyNzIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMTciIGN5PSI0MjkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzOTAiIGN5PSI1ODYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NjMiIGN5PSIxMDMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MzYiIGN5PSIyNjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MDkiIGN5PSI0MTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MiIgY3k9IjU3NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjExNSIgY3k9IjkxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTg4IiBjeT0iMjQ4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjYxIiBjeT0iNDA1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+","e5":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2aWV3Qm94PSIwIDAgNjQwIDY0MCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnMTUiIHgxPSIwIiB5MT0iMCIgeDI9IjEiIHkyPSIxIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMxZjJhMzYiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwYTBlMTQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iNjQwIiBoZWlnaHQ9IjY0MCIgZmlsbD0idXJsKCNnMTUpIi8+PGNpcmNsZSBjeD0iNDY1IiBjeT0iMTU1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTM4IiBjeT0iMzEyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjExIiBjeT0iNDY5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDQiIGN5PSI2MjYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTciIGN5PSIxNDMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxOTAiIGN5PSIzMDAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNjMiIGN5PSI0NTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMzYiIGN5PSI2MTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0MDkiIGN5PSIxMzEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0ODIiIGN5PSIyODgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1NTUiIGN5PSI0NDUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MjgiIGN5PSI2MDIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MSIgY3k9IjExOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEzNCIgY3k9IjI3NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIwNyIgY3k9IjQzMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4MCIgY3k9IjU5MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM1MyIgY3k9IjEwNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQyNiIgY3k9IjI2NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ5OSIgY3k9IjQyMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU3MiIgY3k9IjU3OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUiIGN5PSI5NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc4IiBjeT0iMjUyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTUxIiBjeT0iNDA5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjI0IiBjeT0iNTY2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjk3IiBjeT0iODMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNzAiIGN5PSIyNDAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NDMiIGN5PSIzOTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MTYiIGN5PSI1NTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1ODkiIGN5PSI3MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIyIiBjeT0iMjI4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iOTUiIGN5PSIzODUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNjgiIGN5PSI1NDIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyNDEiIGN5PSI1OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMxNCIgY3k9IjIxNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM4NyIgY3k9IjM3MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ2MCIgY3k9IjUzMCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUzMyIgY3k9IjQ3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjA2IiBjeT0iMjA0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzkiIGN5PSIzNjEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMTIiIGN5PSI1MTgiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxODUiIGN5PSIzNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI1OCIgY3k9IjE5MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMzMSIgY3k9IjM0OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQwNCIgY3k9IjUwNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ3NyIgY3k9IjIzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTUwIiBjeT0iMTgwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjIzIiBjeT0iMzM3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTYiIGN5PSI0OTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxMjkiIGN5PSIxMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIwMiIgY3k9IjE2OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI3NSIgY3k9IjMyNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM0OCIgY3k9IjQ4MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQyMSIgY3k9IjYzOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ5NCIgY3k9IjE1NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU2NyIgY3k9IjMxMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjAiIGN5PSI0NzAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI3MyIgY3k9IjYyNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE0NiIgY3k9IjE0NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIxOSIgY3k9IjMwMSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI5MiIgY3k9IjQ1OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==","e6":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2aWV3Qm94PSIwIDAgNjQwIDY0MCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJnMTYiIHgxPSIwIiB5MT0iMCIgeDI9IjEiIHkyPSIxIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMyYTFmMjgiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwYTBlMTQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB3aWR0aD0iNjQwIiBoZWlnaHQ9IjY0MCIgZmlsbD0idXJsKCNnMTYpIi8+PGNpcmNsZSBjeD0iNDk2IiBjeT0iMjA4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTY5IiBjeT0iMzY1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMiIgY3k9IjUyMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9Ijc1IiBjeT0iMzkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDgiIGN5PSIxOTYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMjEiIGN5PSIzNTMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyOTQiIGN5PSI1MTAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNjciIGN5PSIyNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ0MCIgY3k9IjE4NCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUxMyIgY3k9IjM0MSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU4NiIgY3k9IjQ5OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE5IiBjeT0iMTUiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI5MiIgY3k9IjE3MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2NSIgY3k9IjMyOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjIzOCIgY3k9IjQ4NiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMxMSIgY3k9IjMiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzODQiIGN5PSIxNjAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI0NTciIGN5PSIzMTciIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MzAiIGN5PSI0NzQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI2MDMiIGN5PSI2MzEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzNiIgY3k9IjE0OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwOSIgY3k9IjMwNSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE4MiIgY3k9IjQ2MiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI1NSIgY3k9IjYxOSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjMyOCIgY3k9IjEzNiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQwMSIgY3k9IjI5MyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQ3NCIgY3k9IjQ1MCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjU0NyIgY3k9IjYwNyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjYyMCIgY3k9IjEyNCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUzIiBjeT0iMjgxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTI2IiBjeT0iNDM4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTk5IiBjeT0iNTk1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjcyIiBjeT0iMTEyIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzQ1IiBjeT0iMjY5IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDE4IiBjeT0iNDI2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDkxIiBjeT0iNTgzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTY0IiBjeT0iMTAwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNjM3IiBjeT0iMjU3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNzAiIGN5PSI0MTQiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIxNDMiIGN5PSI1NzEiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIyMTYiIGN5PSI4OCIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjI4OSIgY3k9IjI0NSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjM2MiIgY3k9IjQwMiIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjQzNSIgY3k9IjU1OSIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjUwOCIgY3k9Ijc2IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNTgxIiBjeT0iMjMzIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTQiIGN5PSIzOTAiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI4NyIgY3k9IjU0NyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjE2MCIgY3k9IjY0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjMzIiBjeT0iMjIxIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzA2IiBjeT0iMzc4IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzc5IiBjeT0iNTM1IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iNDUyIiBjeT0iNTIiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1MjUiIGN5PSIyMDkiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSI1OTgiIGN5PSIzNjYiIHI9IjEiIGZpbGw9IiNmZmYiIG9wYWNpdHk9IjAuMDUiLz48Y2lyY2xlIGN4PSIzMSIgY3k9IjUyMyIgcj0iMSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjxjaXJjbGUgY3g9IjEwNCIgY3k9IjQwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMTc3IiBjeT0iMTk3IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMjUwIiBjeT0iMzU0IiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PGNpcmNsZSBjeD0iMzIzIiBjeT0iNTExIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+"};</script>
|
|
446
|
+
<script>
|
|
447
|
+
// ── Inline placeholder images (data URIs) ──
|
|
448
|
+
var IMGS = window.__PC_IMGS__ || {};
|
|
449
|
+
document.querySelectorAll('img[data-img]').forEach(function (el) {
|
|
450
|
+
var key = el.getAttribute('data-img');
|
|
451
|
+
if (IMGS[key]) el.src = IMGS[key];
|
|
452
|
+
});
|
|
453
|
+
|
|
454
|
+
// ── Loading screen: rAF counter 000 -> 100 over 2700ms ──
|
|
455
|
+
(function () {
|
|
456
|
+
var loader = document.getElementById('loader');
|
|
457
|
+
var countEl = document.getElementById('count');
|
|
458
|
+
var bar = document.getElementById('loadbar');
|
|
459
|
+
var words = document.querySelectorAll('.loader-words span');
|
|
460
|
+
var start = null;
|
|
461
|
+
var DUR = 2700;
|
|
462
|
+
// rotate words every 900ms
|
|
463
|
+
var wi = 0;
|
|
464
|
+
function showWord(i) {
|
|
465
|
+
words.forEach(function (w, idx) { w.style.opacity = idx === i ? '1' : '0'; w.style.transform = idx === i ? 'translateY(0)' : 'translateY(20px)'; });
|
|
466
|
+
}
|
|
467
|
+
words.forEach(function (w) { w.style.transition = 'opacity 0.4s ease, transform 0.4s ease'; });
|
|
468
|
+
showWord(0);
|
|
469
|
+
var wordTimer = setInterval(function () { wi = (wi + 1) % words.length; showWord(wi); }, 900);
|
|
470
|
+
function frame(t) {
|
|
471
|
+
if (start === null) start = t;
|
|
472
|
+
var p = Math.min((t - start) / DUR, 1);
|
|
473
|
+
var n = Math.round(p * 100);
|
|
474
|
+
countEl.textContent = String(n).padStart(3, '0');
|
|
475
|
+
bar.style.transform = 'scaleX(' + (n / 100) + ')';
|
|
476
|
+
if (p < 1) { requestAnimationFrame(frame); }
|
|
477
|
+
else {
|
|
478
|
+
clearInterval(wordTimer);
|
|
479
|
+
setTimeout(function () { loader.classList.add('done'); }, 400);
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
requestAnimationFrame(frame);
|
|
483
|
+
})();
|
|
484
|
+
|
|
485
|
+
// ── Hero role cycling every 2s ──
|
|
486
|
+
(function () {
|
|
487
|
+
var roles = ['Creative', 'Fullstack', 'Founder', 'Scholar'];
|
|
488
|
+
var el = document.getElementById('role');
|
|
489
|
+
var i = 0;
|
|
490
|
+
setInterval(function () {
|
|
491
|
+
i = (i + 1) % roles.length;
|
|
492
|
+
el.textContent = roles[i];
|
|
493
|
+
el.style.animation = 'none';
|
|
494
|
+
void el.offsetWidth;
|
|
495
|
+
el.style.animation = 'role-fade-in 0.4s ease-out';
|
|
496
|
+
}, 2000);
|
|
497
|
+
})();
|
|
498
|
+
|
|
499
|
+
// ── Navbar shadow on scroll > 100 ──
|
|
500
|
+
(function () {
|
|
501
|
+
var pill = document.getElementById('navPill');
|
|
502
|
+
window.addEventListener('scroll', function () {
|
|
503
|
+
if (window.scrollY > 100) pill.classList.add('scrolled');
|
|
504
|
+
else pill.classList.remove('scrolled');
|
|
505
|
+
}, { passive: true });
|
|
506
|
+
})();
|
|
507
|
+
|
|
508
|
+
// ── whileInView reveals via IntersectionObserver ──
|
|
509
|
+
(function () {
|
|
510
|
+
var io = new IntersectionObserver(function (entries) {
|
|
511
|
+
entries.forEach(function (e) { if (e.isIntersecting) { e.target.classList.add('in'); io.unobserve(e.target); } });
|
|
512
|
+
}, { threshold: 0.1, rootMargin: '-80px' });
|
|
513
|
+
document.querySelectorAll('.reveal').forEach(function (el) { io.observe(el); });
|
|
514
|
+
})();
|
|
515
|
+
|
|
516
|
+
// ── Explorations parallax (useScroll/useTransform -> passive scroll listener) ──
|
|
517
|
+
(function () {
|
|
518
|
+
var explore = document.querySelector('.explore');
|
|
519
|
+
var cards = document.querySelectorAll('.parallax-cols .pcard');
|
|
520
|
+
function onScroll() {
|
|
521
|
+
if (!explore) return;
|
|
522
|
+
var rect = explore.getBoundingClientRect();
|
|
523
|
+
var total = rect.height - window.innerHeight;
|
|
524
|
+
var prog = Math.min(Math.max(-rect.top / total, 0), 1);
|
|
525
|
+
cards.forEach(function (c, idx) {
|
|
526
|
+
var col = c.closest('.pcol');
|
|
527
|
+
var dir = (col && col.matches(':nth-child(2)')) ? 1 : -1;
|
|
528
|
+
var speed = 120 + (idx % 3) * 60;
|
|
529
|
+
var base = c.getAttribute('data-rot') || '0';
|
|
530
|
+
c.style.transform = 'translateY(' + (prog * speed * dir) + 'px) rotate(' + base + 'deg)';
|
|
531
|
+
});
|
|
532
|
+
}
|
|
533
|
+
// store base rotation
|
|
534
|
+
cards.forEach(function (c) {
|
|
535
|
+
var m = (c.getAttribute('style') || '').match(/rotate\(([-\d.]+)deg\)/);
|
|
536
|
+
c.setAttribute('data-rot', m ? m[1] : '0');
|
|
537
|
+
});
|
|
538
|
+
window.addEventListener('scroll', onScroll, { passive: true });
|
|
539
|
+
onScroll();
|
|
540
|
+
})();
|
|
541
|
+
|
|
542
|
+
// ── Lightbox on exploration card click ──
|
|
543
|
+
(function () {
|
|
544
|
+
var lb = document.getElementById('lightbox');
|
|
545
|
+
var lbImg = document.getElementById('lightboxImg');
|
|
546
|
+
document.querySelectorAll('.pcard').forEach(function (c) {
|
|
547
|
+
c.addEventListener('click', function () {
|
|
548
|
+
var img = c.querySelector('img');
|
|
549
|
+
if (img) { lbImg.src = img.src; lb.classList.add('open'); }
|
|
550
|
+
});
|
|
551
|
+
});
|
|
552
|
+
lb.addEventListener('click', function () { lb.classList.remove('open'); });
|
|
553
|
+
})();
|
|
554
|
+
|
|
555
|
+
// ── Footer marquee (GSAP xPercent -50 -> passive rAF translate) ──
|
|
556
|
+
(function () {
|
|
557
|
+
var track = document.getElementById('marquee');
|
|
558
|
+
var unit = 'BUILDING THE FUTURE • ';
|
|
559
|
+
var html = '';
|
|
560
|
+
for (var i = 0; i < 10; i++) html += '<span>' + unit + '</span>';
|
|
561
|
+
track.innerHTML = html + html; // duplicate for seamless loop
|
|
562
|
+
var x = 0;
|
|
563
|
+
var half = 0;
|
|
564
|
+
function measure() { half = track.scrollWidth / 2; }
|
|
565
|
+
measure();
|
|
566
|
+
window.addEventListener('resize', measure);
|
|
567
|
+
function tick() {
|
|
568
|
+
x -= 0.6;
|
|
569
|
+
if (half && -x >= half) x += half;
|
|
570
|
+
track.style.transform = 'translateX(' + x + 'px)';
|
|
571
|
+
requestAnimationFrame(tick);
|
|
572
|
+
}
|
|
573
|
+
requestAnimationFrame(tick);
|
|
574
|
+
})();
|
|
575
|
+
|
|
576
|
+
// ── Active nav link on hash click ──
|
|
577
|
+
(function () {
|
|
578
|
+
document.querySelectorAll('.nav-link').forEach(function (l) {
|
|
579
|
+
l.addEventListener('click', function () {
|
|
580
|
+
document.querySelectorAll('.nav-link').forEach(function (x) { x.classList.remove('active'); });
|
|
581
|
+
l.classList.add('active');
|
|
582
|
+
});
|
|
583
|
+
});
|
|
584
|
+
})();
|
|
585
|
+
</script>
|
|
586
|
+
</body>
|
|
587
|
+
</html>
|