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,205 @@
|
|
|
1
|
+
# Slop test — 60 gates + pre-emit self-critique
|
|
2
|
+
|
|
3
|
+
Run this list before handing back any output. Every answer must be **no**. Update the Step 5 preview block's `Slop test` row to reflect the actual outcome of this run.
|
|
4
|
+
|
|
5
|
+
Some gates are **universal** (apply to every genre); some are **genre-scoped** (apply only when the active genre is editorial, atmospheric, modern-minimal, or playful). Genre overrides are noted inline. Where a gate has *no* genre note, treat it as universal.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Pre-emit self-critique (six axes)
|
|
10
|
+
|
|
11
|
+
Run this **before** the gate list, not after. Score the planned output 1–5 on each axis. Anything **< 3 on any axis triggers a revision pass** before the gate sweep — don't bring known weakness into a sixty-gate review.
|
|
12
|
+
|
|
13
|
+
Two passes is normal. Three is a sign the brief is wrong, not the design — re-read the brief.
|
|
14
|
+
|
|
15
|
+
| # | Axis | What you're scoring |
|
|
16
|
+
|---|---|---|
|
|
17
|
+
| **A** | **Philosophy** | Is there a clear *why* — a position the page is taking? Or is it just a layout? |
|
|
18
|
+
| **B** | **Hierarchy** | Can a reader tell, in 2 seconds, what's primary, secondary, tertiary? Or is everything the same weight? |
|
|
19
|
+
| **C** | **Execution** | Are the details (rule weight, accent footprint, text-wrap, focus rings, contrast) all in spec, or is there sloppiness even if the bones are right? |
|
|
20
|
+
| **D** | **Specificity** | Does this look like *this brief* — or does it look like a generic "page that could be anyone"? |
|
|
21
|
+
| **E** | **Restraint** | Have you removed everything that isn't earning its place? Decoration, redundancy, padding-for-padding's-sake? |
|
|
22
|
+
| **F** | **Variety** | Does this output share a structural fingerprint with a previous Hallmark output in the project? Score by structural distance, not visual distance — colour-swaps don't count as variety. |
|
|
23
|
+
|
|
24
|
+
Record the six scores in a one-line stamp comment at the top of the file: `/* Hallmark · pre-emit critique: P5 H4 E5 S4 R5 V5 */`. Future runs should be able to find this and avoid repeating the same weakness.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Visual
|
|
29
|
+
|
|
30
|
+
1. Is the display font Inter, Roboto, Open Sans, Poppins, Lato, or a system default?
|
|
31
|
+
2. Is there a purple-to-blue (or cyan-to-magenta) gradient anywhere? *Genre note: atmospheric allows radial gradients on background only — never on text or pill buttons.*
|
|
32
|
+
3. Is there a 3-equal-column card grid with icon-above-heading tiles?
|
|
33
|
+
4. Is any card nested inside another card?
|
|
34
|
+
5. Is there a `background-clip: text` gradient headline? (Universal — no genre allows gradient text.)
|
|
35
|
+
6. Is any card using a thick coloured left/right side-stripe border?
|
|
36
|
+
7. Is the hero `min-height: 100vh` with everything centred? *Genre note: atmospheric and playful allow centred heroes when the canvas itself is the design (Suno-style).*
|
|
37
|
+
8. Is pure `#000` or pure `#fff` used as a base colour anywhere? *Genre note: modern-minimal allows pure `#fff` paper (the Stripe / ElevenLabs school).*
|
|
38
|
+
|
|
39
|
+
## Structural
|
|
40
|
+
|
|
41
|
+
9. Does the page use the *same* structural fingerprint as the last page you built? (Hero → 3 features → CTA → footer is the AI structural template; reject it.)
|
|
42
|
+
10. Are sections separated only by equal whitespace, with no rule, no ornament, no colour shift — every section identical in rhythm?
|
|
43
|
+
|
|
44
|
+
## Microinteractions
|
|
45
|
+
|
|
46
|
+
11. Is `transition-all` (or `transition: all`) used anywhere? (Specify the properties.)
|
|
47
|
+
12. Is `hover:scale-105` (or any uniform hover-scale) applied across multiple unrelated elements?
|
|
48
|
+
13. Are bouncy / overshoot easings (`cubic-bezier(0.34, 1.56, ...)`, etc.) used on UI state changes — buttons, modals, tooltips? (Reserve overshoots for physical interactions only.)
|
|
49
|
+
14. Does any element have *more than one* hover effect at the same time (translate + scale + shadow + colour + rotate)?
|
|
50
|
+
15. Are you animating `width`, `height`, `top`, `left`, `margin`, or `padding` anywhere?
|
|
51
|
+
16. Does the focus ring transition into existence (fade in)? (Focus rings must appear instantly — keyboard users need an immediate indicator.)
|
|
52
|
+
17. Is there a celebratory success toast for an action whose effect the user can already see? (Silent success is taste; toasts are for failures and invisible effects.)
|
|
53
|
+
18. Are tooltip hover-delay and focus-delay equal? (Hover should delay 800–1000 ms; focus should be 0 ms.)
|
|
54
|
+
19. Is auto-rotating content (carousel, banner, stats) lacking pause-on-hover-and-focus? (WCAG 2.2.2.)
|
|
55
|
+
20. Is there a placeholder name "Jane Doe / John Smith" or a startup cliché (Acme, Nexus, Seamless, Unleash)?
|
|
56
|
+
|
|
57
|
+
## Variety
|
|
58
|
+
|
|
59
|
+
21. Is the `/* Hallmark · macrostructure: <name> · ... */` stamp missing from the top of the CSS? (It must be present.)
|
|
60
|
+
22. Is the macrostructure I picked the same as a previous Hallmark output's stamp in this project? (Read the file system; if a stamp exists, mine must differ.)
|
|
61
|
+
23. Did I default to the **Specimen** macrostructure (numbered left-margin labels + huge serif + asymmetric spans + typographic-only CTA) when the brief did not explicitly call for editorial / foundry / specimen energy? (Specimen fall-through is banned.) *Genre note: atmospheric, modern-minimal, and playful never default to Specimen — only editorial does, and only when the brief signals it.*
|
|
62
|
+
|
|
63
|
+
## Implementation gates
|
|
64
|
+
|
|
65
|
+
24. Does any neutral / surface colour have `oklch(... 0 ...)` (zero chroma)? Pure greys read as flat. Tint every neutral toward the anchor hue — minimum 0.005 chroma. *Genre note: modern-minimal allows zero-chroma neutrals (the monochrome Stripe / ElevenLabs school).*
|
|
66
|
+
25. Does the accent colour cover more than ~5 % of any single viewport (count by area: solid fills, large headings in accent, full-bleed accent backgrounds)? If yes, retreat — accent is for emphasis, not for filling. *Genre note: atmospheric allows accent-tinted radial blooms covering up to ~20 % of the canvas, since the bloom is the design.*
|
|
67
|
+
26. Is any padding / gap / margin a value that isn't on the named spacing scale (`--space-3xs` … `--space-5xl`, multiples of 4 px)? Arbitrary `padding: 17px` is a tell.
|
|
68
|
+
27. Is any prose container's `max-width` outside the 45–75 ch range? Measure must read; under 45 ch is choppy, over 75 ch loses the eye.
|
|
69
|
+
28. Does any interactive element lack `:focus-visible`, `:active`, OR `:disabled` styling? (Eight states is the rule. Default + hover is two; you need at least default + hover + focus-visible + active + disabled present in code.)
|
|
70
|
+
29. Is there any `transform` / `animation` keyframe that is NOT covered by a `@media (prefers-reduced-motion: reduce)` fallback? Every motion gets a reduced-motion alternative.
|
|
71
|
+
|
|
72
|
+
## Hero enrichment gates
|
|
73
|
+
|
|
74
|
+
(When the page carries enrichment — see [`hero-enrichment.md`](hero-enrichment.md).)
|
|
75
|
+
|
|
76
|
+
30. If the page has a demo video, does it autoplay with sound, lack a `poster`, lack `fetchpriority="high"`, or use `loading="lazy"` on the LCP element? (LCP-killers fail this gate.)
|
|
77
|
+
31. If the page has an abstract background, is it more than one accent colour, more than ~5 % footprint, or animating mesh-gradient on the whole page? (Aurora blobs and mesh-on-everything fail this gate.) *Genre note: atmospheric allows up to two warm-toned radial blooms covering ~20–30 % of the canvas, fixed-attached, no animation.*
|
|
78
|
+
32. Does the page mix two or more icon libraries? (Material + Heroicons + Lucide on the same page = the icon-set tell.)
|
|
79
|
+
33. If the page has illustration, did I default to a Lottie library when a hand-built SVG or pure-CSS shape would have worked? (Lottie is last resort, not the default.)
|
|
80
|
+
|
|
81
|
+
## Diversification gates
|
|
82
|
+
|
|
83
|
+
(Cross-reference `.hallmark/log.json` when present.)
|
|
84
|
+
|
|
85
|
+
34. If I used the same archetype as a previous Hallmark output (per `.hallmark/log.json` or the latest macrostructure stamp), did I pick at least one different *variation knob*? Two Bento Grids with `tiles=6, spans=irregular, accent=corner-only` are the same Bento — the within-archetype knobs in [`component-cookbook.md`](component-cookbook.md) exist precisely to prevent that. State the knob deltas in the stamp.
|
|
86
|
+
35. Does any visual-only `<svg>`, custom-art `<div>`, `<canvas>`, or decorative figure lack `aria-label` or `aria-hidden="true"`? Hand-built CSS art and SVG illustrations need an accessible name *or* an explicit hide. Skipping this is the new accessibility tell.
|
|
87
|
+
|
|
88
|
+
## Layout-safety gates
|
|
89
|
+
|
|
90
|
+
(The page must survive every viewport.)
|
|
91
|
+
|
|
92
|
+
36. Does the page horizontally scroll on any viewport between 320 px and 1920 px? Open the rendered page; drag the dev-tools width slider across that range. If a horizontal scrollbar appears at any width, fail. The fix is `html { overflow-x: clip; }` plus `body { overflow-x: clip; }` as a safety net for any clipped-edge enrichment that pushes past the viewport. Use `overflow-x: clip` (not `hidden`) — `clip` preserves `position: sticky` and `position: fixed` on descendants. (Cross-reference: [`layout-and-space.md` § Page-edge clipping](layout-and-space.md).)
|
|
93
|
+
37. For every decorative effect on text — highlighter `<mark>` / `<em>` band / accent stroke / underline — did I visually confirm the position and size? A highlighter band must sit behind the x-height (`linear-gradient(180deg, transparent ~38%, accent ~38%, accent ~92%, transparent ~92%)`), **not** at the baseline (which reads as a fat underline). Underlines must be 1–2 px and offset 1–2 px from the baseline, never 5+ px. Decorative strokes must not exceed 5 % of the viewport (gate 25). The check is *visual*: imagine the rendered output and confirm the band lands in the right vertical zone.
|
|
94
|
+
38. Are interactive bars (nav, toolbar, command bar, hero CTA row, footer link strip) explicitly vertically centered? Default flex layouts inherit `align-items: stretch`, which makes a button taller than its sibling text and breaks the visual baseline. Every flex row mixing height-different elements (button + text, icon + text, mark + body) must declare `align-items: center` and `line-height: 1` on the items with intrinsic height. Inheriting `line-height: 1.55` from `html` fights the row's vertical rhythm.
|
|
95
|
+
|
|
96
|
+
## Typography discipline gates
|
|
97
|
+
|
|
98
|
+
(Three faces is the ceiling. See [`typography.md` § The 2+1 rule](typography.md).)
|
|
99
|
+
|
|
100
|
+
39. Does the page use **more than three** distinct `font-family` families? Count: `--font-display`, `--font-body`, and at most one outlier (`--font-outlier` for wordmark / hero stat / pull quote). A fourth family on the page — e.g. body + display + mono in code blocks + a separate display for the hero — is slop. Same family at different weights counts as one family. Mono counts as a family if used in any non-code context (captions, labels, numerals). If you find four, drop one back to the body or display face.
|
|
101
|
+
40. Is the **outlier face used in more than two slots** on the page? The outlier is a register, not a third surface — wordmark + hero stat is the canonical pair, or wordmark + masthead, or hero stat + pull quote. Three slots = the outlier is now a third body font; collapse it back to the body face.
|
|
102
|
+
|
|
103
|
+
## Input-state gates
|
|
104
|
+
|
|
105
|
+
(Inputs are where almost-right UIs lose. See [`interaction-and-states.md` § Input field states](interaction-and-states.md).)
|
|
106
|
+
|
|
107
|
+
41. Does any input, textarea, or select field change `border-width` between states (default → hover → focus → error)? Default is 1 px; hover, focus, and error must keep `border-width: 1px`. Border-width changes cause layout shift. State changes go to `background-color`, `outline`, `box-shadow`, or `border-color` — never `border-width`.
|
|
108
|
+
42. Does the input focus ring use `border` instead of `outline`? The focus ring must be `outline: 2px solid var(--color-focus)` with `outline-offset: 1px`. Reserving `outline: 2px solid transparent` in the default state prevents geometry shift on activate. A focus ring built from a `border` change is a tell.
|
|
109
|
+
43. Is the input height different from the height of an adjacent button on the same form? Form inputs and the form's submit button share a single base height (44 px floor). 38 px input + 44 px button is the most common form-tuning slop and reads as un-designed.
|
|
110
|
+
44. Is the helper-text container collapsed when no helper or error is shown? The helper slot must reserve `min-height: 1lh` even when empty so that an error appearing doesn't push the page down. Vertical jump on validation is a tell.
|
|
111
|
+
45. Is the disabled input state signalled by *only* `opacity: 0.5`? Disabled needs three independent signals: `opacity: 0.55` AND `cursor: not-allowed` AND `aria-disabled="true"` (or the native `disabled` attribute). One channel is missable; three are not.
|
|
112
|
+
|
|
113
|
+
## Contrast & readability
|
|
114
|
+
|
|
115
|
+
Universal — apply to every genre. These gates catch the real-world failures the user flagged: black-text-on-black-button, dark sections with unreadable text, ink-on-ink slop where the LLM forgot to flip the text colour after flipping the surface.
|
|
116
|
+
|
|
117
|
+
Contrast computation: for every `(color, background-color)` pair on the page, run **APCA Lc** OR **WCAG 2.1 ratio**. OKLCH lightness is a fast pre-check — if `|L_text − L_bg| < 50 %`, the pair likely fails 4.5:1 — confirm with a full calculation.
|
|
118
|
+
|
|
119
|
+
Thresholds:
|
|
120
|
+
- Body text (under 24 px regular OR under 18 px bold): **WCAG 4.5:1 / APCA Lc ≥ 60**.
|
|
121
|
+
- Large text / icons / focus rings: **WCAG 3:1 / APCA Lc ≥ 45**.
|
|
122
|
+
|
|
123
|
+
46. Does any **body text** have a contrast ratio below **4.5:1** against its computed background? Pair every `color` declaration with its effective `background-color` and verify. The most-missed cases are: text inside cards that inherit `color` but the card switched to `background: var(--color-paper-2)` and the text is now too close in lightness; muted text (`color: var(--color-muted)`) on `background: var(--color-paper-3)` — both are mid-lightness and fail.
|
|
124
|
+
|
|
125
|
+
47. Does any **large text** (≥ 24 px regular OR ≥ 18 px bold) or **icon** or **`:focus-visible` ring** have a contrast ratio below **3:1** against its background? Same calculation, looser threshold. Specifically check focus rings — `outline: 2px solid var(--color-focus)` only passes if `--color-focus` has ≥ 3:1 contrast against *both* the element and the page surface.
|
|
126
|
+
|
|
127
|
+
48. Does any **button** have `color` ≈ `background-color` on its fill? The canary check: if the computed text colour and the computed background colour are within **5 % lightness AND 0.05 chroma** in OKLCH, fail the gate. This catches the common bug where `color: var(--color-ink)` sits on `background: var(--color-ink)` (black-on-black slop) — the LLM forgot to use `--color-accent-ink` (or `--color-paper`) for text-on-fill.
|
|
128
|
+
|
|
129
|
+
49. When `--color-accent` is used as a fill anywhere on the page (button, badge, surface), is `--color-accent-ink` **also defined** (in `:root` or theme tokens) AND used as the `color` for text on that fill? If `--color-accent-ink` is missing, Hallmark output is one careless `color: white` away from a low-contrast accident. The token must exist, must verify ≥ APCA Lc 60 / WCAG 4.5:1 against `--color-accent`, and must be applied wherever accent fills a surface that carries text.
|
|
130
|
+
|
|
131
|
+
50. Does any **dark section** (a section or panel whose `background-color` has OKLCH lightness < 50 %) carry text that uses the page-default `color: var(--color-ink)` — i.e. ink-on-ink in a section that flipped its surface? Sections that swap to a dark surface MUST also swap their text colour (typically to `--color-paper`) and ensure nested children inherit. The fix is explicit: any class that sets `background: <dark>` must also set `color: <light>` in the same rule, OR be wrapped in a parent that does. The most common failure: a `.vs__col:first-child` painted with the accent or ink colour but the inner panels still using default ink-coloured text.
|
|
132
|
+
|
|
133
|
+
The CSS stamp at Step 6 should record the result: `· contrast: pass (46–50)` if all five gates pass, or `· contrast: FAIL gates <list>` if any are open. Fix before shipping.
|
|
134
|
+
|
|
135
|
+
## Nav · footer · hero structural slop
|
|
136
|
+
|
|
137
|
+
Universal — apply to every genre. These gates catch the most-recognised AI fingerprints in nav, footer, and hero shape. They sit alongside the structural-fingerprint gate (gate 9): gate 9 catches the *page* fingerprint; 51–55 catch the *chrome* fingerprints that sit on top of it.
|
|
138
|
+
|
|
139
|
+
51. **Nav fingerprint.** Is the page's `<nav>` (or top-of-page `<header>` with role="banner") the AI default — wordmark-left + 4–5 inline text links centred-or-right + button-right at full viewport width + 1 px hairline border-bottom + white background? If yes, fail unless the brief explicitly justifies N1 (the page has only 2 destinations *and* the routing table for the genre allows N1). Hallmark output should rotate among N1, N3, N4, N5, N6, N7, N8, N9 from [`component-cookbook.md`](component-cookbook.md) § Navigation.
|
|
140
|
+
|
|
141
|
+
52. **Footer fingerprint.** Is the `<footer>` the AI default — 4 columns of links (Product / Company / Resources / Legal) + social-icon row + tiny copyright at the very bottom + 1 px hairline top-border + neutral grey background? If yes, fail unless the page is a genuine docs root or hub. Default to Ft1, Ft2, Ft4, Ft5, Ft6, Ft7, or Ft8 from [`component-cookbook.md`](component-cookbook.md) § Footers.
|
|
142
|
+
|
|
143
|
+
53. **Hero centred-everything.** Are eyebrow, title, lede, AND CTA all stacked centred on the same vertical axis? Auto-fail. Pick at most two centred elements; break alignment for the others. Centred-narrow heroes are admissible *only* on editorial / salon / atelier voice, and even then the eyebrow or CTA should sit off-axis (margin-aligned, right-flush, or numeral-anchored).
|
|
144
|
+
|
|
145
|
+
54. **Hero padding asymmetry.** Is `padding-block-end` ≥ 1.3× `padding-block-start` on the hero container? If hero pads symmetrically (or pads *more* on top), it floats off the page. Hero must sit *into* the page — heavier bottom padding pulls it down into the next section's rhythm. Compute on the rendered output's hero element.
|
|
146
|
+
|
|
147
|
+
55. **Decorative-without-purpose.** Does the hero contain a decorative element (cursor, scanline, gradient blob, abstract shape, ornament, badge, sticker) that has no semantic anchor in the content? Fail. Decoration must be motivated: a cursor inside a typed command (signals "you'd type next"), a numeral that names an issue / year / version / chapter, a gradient that responds to interaction (HP3 cursor-spotlight), a stamp that names an authorship or date. Random ornaments — a "42" in the corner with no edition meaning, a cursor floating beside a hero, a Pantone chip with no colour rationale — are slop.
|
|
148
|
+
|
|
149
|
+
The CSS stamp at Step 6 should record the result alongside contrast: `· nav: N# · footer: Ft# · slop: pass (51–55)`. If any of 51–55 fail, fix before shipping.
|
|
150
|
+
|
|
151
|
+
## Honest copy · no fabricated content
|
|
152
|
+
|
|
153
|
+
Universal — apply to every genre. The page must not invent facts about the user's product, team, or market.
|
|
154
|
+
|
|
155
|
+
56. **Invented metric.** Does the page contain any quantitative claim — "10× faster", "saves 5 hours per week", "trusted by 50,000+ teams", "99.9 % uptime", "+47 % conversion" — that the user did not supply, that has no source, and that the model fabricated to fill a stat-led layout, comparison row, or proof bar? If yes, fail. The fix is one of: replace the number with `—` and a labelled grey block, replace it with a question to the user ("metric to confirm"), or rebuild the section without the proof slot. Stat-led macrostructures are slop the moment their stats become decorative. *(See [anti-patterns.md § Invented metrics](anti-patterns.md).)*
|
|
156
|
+
|
|
157
|
+
## Re-drawn UI chrome
|
|
158
|
+
|
|
159
|
+
Universal. Hallmark must reuse the user's existing chrome (browser, OS, IDE) instead of redrawing it.
|
|
160
|
+
|
|
161
|
+
57. **Re-drawn chrome.** Did Hallmark hand-build a fake browser bar (URL pill + traffic-light dots), a fake phone frame (rounded rectangle + notch + speaker slit), a fake code-block frame (mock window-chrome around a `<pre>`), a fake terminal frame, or a fake IDE chrome (file tabs + activity bar + sidebar) using HTML/CSS or SVG? If yes, fail. Re-drawn chrome is one of the strongest "looks AI-generated" tells — the model invented a UI that already exists in the user's environment. The fix: use a `<picture>` or `<figure>` containing a real screenshot, or omit the chrome and let the content stand on its own. *(See [anti-patterns.md § Re-drawn UI chrome](anti-patterns.md).)*
|
|
162
|
+
|
|
163
|
+
## Token discipline
|
|
164
|
+
|
|
165
|
+
Universal. The theme picks the palette and font stack at the top of the run; the rest of the run consumes tokens, never invents them.
|
|
166
|
+
|
|
167
|
+
58. **Mid-render token improvisation.** Did Hallmark introduce any colour value (`#hex`, `oklch(...)`, `rgb(...)`, `hsl(...)`) or `font-family` declaration *outside* the design tokens defined in `:root` / `[data-theme="..."]`? If yes, fail. Every colour and every font in the artifact must reference a named token (`var(--color-accent)`, `font-family: var(--font-display)`). Inline OKLCH or one-off hexes are mid-render improvisation — the model picked the theme, then forgot it and freestyled. The fix: lift the value into the token block as a new named variable, or replace it with an existing token. *(See [SKILL.md § Locked tokens](../SKILL.md) and [anti-patterns.md § Mid-render token improvisation](anti-patterns.md).)*
|
|
168
|
+
|
|
169
|
+
## Responsive — clickable affordances
|
|
170
|
+
|
|
171
|
+
Universal. Buttons, links, and nav items must remain readable as single-line affordances when the viewport shrinks.
|
|
172
|
+
|
|
173
|
+
59. **Two-line clickable text.** Does any button label, primary nav link, footer link, tab label, breadcrumb, or CTA text wrap to two or more lines at any viewport between 320 px and 1920 px? If yes, fail. Clickable text reading on two lines looks broken — visitors read it as a styling error, not as intentional. The fix is one of: shorten the label (the best fix; "Get started free" → "Start free"), set `white-space: nowrap` on the affordance and let the parent reflow, drop a non-essential nav item at narrow widths via `hidden=until-found`, or collapse the nav into a sheet/menu. Never let a CTA or nav link wrap. *(See [responsive.md § Clickable text — never wraps](responsive.md).)*
|
|
174
|
+
|
|
175
|
+
60. **Emoji-as-feature-icon.** Does any feature card, value prop, step number, or pricing tier carry an emoji glyph (✨ 🚀 ⚡ 🔥 🎯 ✅) as its primary icon? If yes, fail. Emoji-as-icon is one of the strongest "AI-default" tells — the model reached for a Unicode glyph instead of choosing an icon library, building a custom mark, or omitting the icon entirely. The fix: pick a single icon library (Lucide / Phosphor / Heroicons — see [assets.md](assets.md)), build a custom SVG, or drop the icon and lead with typography.
|
|
176
|
+
|
|
177
|
+
The CSS stamp at Step 6 should record results: `· honest: pass (56) · chrome: pass (57) · tokens: pass (58) · responsive: pass (59) · icons: pass (60)`. Any failure must be fixed before shipping.
|
|
178
|
+
|
|
179
|
+
## Mobile-responsiveness — the non-negotiables
|
|
180
|
+
|
|
181
|
+
Universal. Every emitted page must render flawlessly at 320 px, 375 px, 414 px, and 768 px CSS-pixel widths. Gates 36 (no horizontal scroll) and 59 (no two-line clickable text) already cover the headline cases; 61–65 below codify the patterns the marketing-site responsiveness pass uncovered. Eyeball each viewport before marking the output complete.
|
|
182
|
+
|
|
183
|
+
61. **Image-bearing grid track without `minmax(0, 1fr)`.** Does any `grid-template-columns` (or `grid-template-rows`) containing a `1fr` track render an `<img>` / `<picture>` / image-bearing element inside one of those tracks? If yes, the track must be `minmax(0, 1fr)` instead. Plain `1fr` resolves to `minmax(auto, 1fr)`, where `auto` minimum is the largest content's intrinsic width — for a 1024 + px native image, that's 1024 + px minimum, which pushes the layout past viewport on phones. The fix is one character per track: `1fr` → `minmax(0, 1fr)`.
|
|
184
|
+
|
|
185
|
+
62. **Root missing `overflow-x: clip`.** Does the artifact lack `overflow-x: clip` on both `html` and `body`? If yes, fail. `clip` (not `hidden`) prevents horizontal scroll without creating a scroll context, so `position: sticky` descendants keep working. Hard requirement on every emitted page. Add to the base reset: `html, body { overflow-x: clip; }`.
|
|
186
|
+
|
|
187
|
+
63. **Display headers without long-word wrap.** Does any element rendering display-size text (`h1`, `.hero__display`, `.section__title`, `.skill-row__title`, hero-equivalent classes) lack `overflow-wrap: anywhere; min-width: 0`? If yes, fail. Long hyphenated words ("AI-generated", uppercase compound brand names) overflow viewport because the only break opportunity is at the hyphen — `overflow-wrap: anywhere` lets the engine break inside the word as a last resort.
|
|
188
|
+
|
|
189
|
+
64. **Per-theme section-head override without mobile collapse.** When a theme or variant overrides `.section__head { grid-template-columns: ... }` to anything other than `1fr`, does it also include the mobile-collapse rule, OR does a global `[data-theme] .section__head { grid-template-columns: 1fr }` exist at `@media (max-width: 48rem)` with matching specificity? If neither, fail. Theme-specific 2-column heads keep their template on mobile, the title wraps onto the section label, and the page reads broken (most visible on Sport: italic Anton title overlapping "02 / EXAMPLES").
|
|
190
|
+
|
|
191
|
+
65. **CSS-only radio tab pattern that scroll-jumps.** When implementing tab toggles via `<input type="radio">` siblings + `:checked` selectors, does the artifact either (a) keep the radios in normal document flow with zero size + opacity 0 (no `position: absolute; top: 0`), OR (b) ship a JS handler that intercepts label clicks, calls `e.preventDefault()`, manually sets `radio.checked = true`, dispatches `change`, and focuses with `{ preventScroll: true }`? If the radios are at `position: absolute; top: 0` with no JS guard, fail. Default-position radios cause the page to jump to the section's top on every tab click — visible on every viewport but most disruptive on mobile.
|
|
192
|
+
|
|
193
|
+
66. **Section eyebrow / tag beside the heading (tag-left, header-right).** Does any section render an eyebrow / number / mono-cap label (`01 · THE TOUR`, `02 / FEATURES`, `Chapter Three`) in a column to the left of, or to the right of, the section heading on the same horizontal row? Auto-fail. The pattern reads as a templated editorial-SaaS tell within seconds. When an eyebrow is used at all (see [`anti-patterns.md § Eyebrow on every section`](anti-patterns.md) — default OFF), the heading goes **directly underneath it in the same column**, vertical stack only. Concretely: **any `<header>`, `<div>`, or `<section>` wrapper — regardless of class name (`.section__head`, `.workbench__head`, `.pricing__head`, `.catches__head`, `.foo__intro`, anything macrostructure- or section-specific)** — that contains both an eyebrow / label / number / kicker element AND a heading element MUST resolve to single-column layout: `display: block`, `display: flex; flex-direction: column`, or `display: grid; grid-template-columns: 1fr` (or `minmax(0, 1fr)`). Any multi-column grid on such a wrapper (`grid-template-columns: 1fr 2fr`, `minmax(0, 0.4fr) minmax(0, 1fr)`, `auto 1fr`, etc.) is banned. **The rule binds on the *content shape* — eyebrow + heading in the same wrapper — not on a specific class-name allowlist.** It supersedes the "Left-margin" axis in [`structure.md`](structure.md) and the "Hanging headers" pattern in [`layout-and-space.md`](layout-and-space.md) for any head that carries an eyebrow. **NOT bypassable by "preserve structural parity" / "mirror this reference" / "match the prior build" instructions** — if a reference build ships the banned pattern (most pre-rule-66 builds do), silently flatten it in the new build. The rules win over parity. Reference builds may pre-date this gate; the gate is authoritative.
|
|
194
|
+
|
|
195
|
+
67. **All-caps display heads with line-height < 1.0 → cap-collision on wrap.** Does any display-size element (`.hero__display`, `.section__title`, `h1`, `h2`, or anything `≥ --text-2xl`) declare both `text-transform: uppercase` AND a `line-height` (or `--lh-tight`) below `1.0`? If yes, fail. Uppercase glyphs have no descenders and their cap-tops sit at the very top of the line box — at `line-height: 0.94` (the old Manifesto / Sport / Brutal default) the cap-tops of line N+1 visibly collide with the baseline or commas of line N when the title wraps. The condensed display faces (Anton, Inter Tight 900, Bebas Neue) make this worse. **Floor for all-caps display heads is `line-height: 1.0`; recommended `1.02–1.08`.** Either bump `--lh-tight` ≥ 1.0 for the theme, or drop `text-transform: uppercase` on the display element. Most visible when a two-line `.section__title` wraps with a trailing comma on line one ("SAME PROMPT, TWO / DIFFERENT OUTPUTS.") — the comma + cap-D fuse into a single glyph blob.
|
|
196
|
+
|
|
197
|
+
68. **Sticky element at `top: 0` below a sticky page-level nav → bleed.** Does the artifact declare `position: sticky; top: 0;` on any element OTHER than the page's top-level nav / banner / header, when a sticky `<header>` / `<nav>` / `.banner` also exists at `top: 0` (i.e. there are two sticky-at-top-0 elements on the page)? Auto-fail. Both stick to the viewport top during scroll and overlap; the deeper-in-DOM element paints over the nav (visible as a "section header bleeding into the nav bar" glitch). Fix: define a `--banner-height` token (~44–64 px depending on nav design) and offset every secondary sticky to `top: var(--banner-height)`, so it docks **beneath** the nav. Also give the nav a higher z-index than in-page sticky elements — split `--z-sticky` (in-page, e.g. 200) from `--z-sticky-nav` (top nav, e.g. 300) so the nav always out-paints when sticky boxes momentarily overlap. This gate fires only when the page actually has sticky elements (S3 sticky-pinned section heads, F2 sticky-scroll feature stacks, sticky tables-of-contents); pages without sticky behaviour pass trivially.
|
|
198
|
+
|
|
199
|
+
69. **Studied DNA discarded for a catalog theme.** Did a `study` diagnosis emit earlier in the conversation, AND does the build's CSS stamp's `theme:` field name a catalog theme (Specimen, Atelier, Brutal, Salon, Newsprint, Linen, Studio, Manifesto, Terminal, Midnight, Almanac, Garden, Quiet, Riso, Sport, Bloom, Coral, Violet, Aurora, Halo, Plume, Editorial) rather than `studied-DNA (source: ...)` — without the user having explicitly pivoted ("use Linen instead", "ignore the DNA", "rotate to a different theme")? Auto-fail. The studied DNA was meant to be the system (SKILL.md § 2.6 Condition 0); defaulting back to catalog is the attractor pull. Fix: re-emit using the studied DNA's tokens directly (paper OKLCH, accent OKLCH, named candidate fonts, macrostructure, archetypes) and update the stamp to `theme: studied-DNA (source: <URL or image>)` with the inline values. This gate is trivially passed when no recent study exists in conversation scope.
|
|
200
|
+
|
|
201
|
+
The CSS stamp at Step 6 records mobile pass alongside contrast: `· mobile: pass (36, 59, 61–69)`.
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
205
|
+
If any answer is **yes**, fix it. Do not ship slop.
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
# Structure
|
|
2
|
+
|
|
3
|
+
Most AI-generated UIs are visually distinct but structurally identical: hero → three features → CTA → footer. Same heading positions, same column counts, same component vocabulary. **Structural sameness is the AI fingerprint, not visual sameness.** Hallmark's job is to break it.
|
|
4
|
+
|
|
5
|
+
This file catalogues the **primitive axes** of structural variety. For most builds you should NOT compose a fingerprint axis-by-axis from this file — instead pick a named whole-page shape from [`macrostructures.md`](macrostructures.md), which is faster and prevents default-attractor sameness. Use this file when you need to deviate from a macrostructure's defaults on one or two axes, or when you're auditing an existing page and need vocabulary for what you see.
|
|
6
|
+
|
|
7
|
+
The axes below are still the building blocks. Pick one option from each to form a *structural fingerprint*. Two pages should never share the same fingerprint.
|
|
8
|
+
|
|
9
|
+
## The six axes
|
|
10
|
+
|
|
11
|
+
### 1. Section-heading placement
|
|
12
|
+
|
|
13
|
+
Where does a section's title live in space? Pick one per page.
|
|
14
|
+
|
|
15
|
+
| Pattern | Description | Real-world reference |
|
|
16
|
+
| --- | --- | --- |
|
|
17
|
+
| **Left-margin** | ⚠️ **Opt-in only — never default.** Eyebrow / number / label in a narrow left column with heading + body to the right. Reads as a templated-editorial AI tell when applied to SaaS / dev-tool / consumer pages. Permitted ONLY when the user explicitly asks for an editorial / specimen layout AND no eyebrow is paired with the heading (label may sit beside body copy; heading must stay in its own row above). The eyebrow-left / heading-right variant is banned outright by slop-test gate 66. | The New York Times Magazine; our Specimen theme — when the user explicitly requests that voice. |
|
|
18
|
+
| **Hanging** | Heading floats in negative space *above* the section, with generous breathing room. | David Airey's portfolio; minimal modernist. |
|
|
19
|
+
| **Centered display** | Heading dominates centre stage, symmetrical. Formal, welcoming, can feel static if used everywhere. | Apple product pages; Atelier-style runway invitations. |
|
|
20
|
+
| **Bottom-aligned** | Heading anchors the *base* of a section, content flows above. Inverts hierarchy. | Swiss editorial; Newsprint masthead-below pattern. |
|
|
21
|
+
| **Overlapping image** | Heading layered atop photography or colour block. Demands strong contrast. | Pentagram project pages; Manifesto posters. |
|
|
22
|
+
| **Sticky / pinned** | Heading remains visible while content scrolls beneath. Orientation aid. | GSAP ScrollTrigger docs; Almanac-style references. |
|
|
23
|
+
| **Numbered display** | ⚠️ **Opt-in only — never default.** "01." with a rule line and the heading right beside it. Procedural, sequenced. Banned for default SaaS / consumer / dev-tool pages by slop-test gate 66 (the tag-beside-heading pattern is a templated tell). Permitted only when the user explicitly asks for ordinal / chaptered numbering AND the macrostructure is Long Document, Manifesto, or Catalogue numbered. Even then, prefer the stacked variant: number on its own line above the heading. | Rauno Freiberg's portfolio — when the user explicitly invokes that voice. |
|
|
24
|
+
| **Inline with body** | No section break — the heading emerges from the paragraph flow. Conversational. | Medium articles; long-form essays. |
|
|
25
|
+
|
|
26
|
+
### 2. Body composition
|
|
27
|
+
|
|
28
|
+
How does long-form content lay out beyond "single column at 65ch"?
|
|
29
|
+
|
|
30
|
+
| Pattern | When | Reference |
|
|
31
|
+
| --- | --- | --- |
|
|
32
|
+
| **Single column** | Narrative-first, reading-led. The default for editorial. | Most blogs. |
|
|
33
|
+
| **Two-column asymmetric** | Wide body + narrow margin column for metadata, captions, marginalia. | Semplice; Linen-style. |
|
|
34
|
+
| **Multi-column justified** | Newspaper rhythm; 2–3 narrow columns, hyphenated, justified. | The Guardian; FT.com; Newsprint. |
|
|
35
|
+
| **Marginalia** | Sidenotes in a generous outer margin run alongside core text. | Tufte CSS; scholarly publications. |
|
|
36
|
+
| **Three-column equal** | Encyclopedia / reference / data-density. Chunked, scannable. | Wikipedia; Whole Earth Catalog; Almanac. |
|
|
37
|
+
| **Full-bleed with margin reset** | Body at 65ch, but pull-quotes or images bleed full-viewport. Emphasis via scale change. | Medium pull-quotes; Manifesto sections. |
|
|
38
|
+
| **Asymmetric spans** | Columns vary widthwise; intentional 2-1-3 ratios via CSS Grid. | Locomotive; portfolio sites. |
|
|
39
|
+
|
|
40
|
+
### 3. Divider language
|
|
41
|
+
|
|
42
|
+
How do sections separate?
|
|
43
|
+
|
|
44
|
+
- **Hairline rule.** 0.5–1px line, inset or full-bleed. Hallmark's default; modernist.
|
|
45
|
+
- **Ornament.** Fleuron (`❦`), centered dot, geometric mark. Salon, editorial classic.
|
|
46
|
+
- **Negative space.** No rule at all — the gap *is* the divider. Apple, Linen, modern minimalism.
|
|
47
|
+
- **Bleed-color block.** Section background colour shifts; the colour edge is the divider. Manifesto, Brutal.
|
|
48
|
+
- **Double rule / typographic mark.** Top + bottom line tight together; signals masthead in Newsprint.
|
|
49
|
+
|
|
50
|
+
### 4. Button voice
|
|
51
|
+
|
|
52
|
+
How do CTAs happen?
|
|
53
|
+
|
|
54
|
+
- **Outlined.** Border, no fill. Secondary or quiet primary. Hallmark default.
|
|
55
|
+
- **Unstyled link.** Underlined word, no box. Trust the typography. Editorial / craft sites.
|
|
56
|
+
- **Oversized solid.** Big block of accent colour, full padding. Manifesto, Sport, statement-CTA.
|
|
57
|
+
- **Typographic-only.** A word in a specific weight/size/colour, no rule, no box. Looks like a headline that happens to be clickable. Atelier, Salon.
|
|
58
|
+
- **Form-as-CTA.** The button is part of an inline form; the action *is* fill-this-field. Newsletter signups.
|
|
59
|
+
|
|
60
|
+
### 5. Image treatment
|
|
61
|
+
|
|
62
|
+
How does imagery enter the page?
|
|
63
|
+
|
|
64
|
+
- **Full-bleed.** Edge-to-edge, viewport width, image as architecture. Manifesto, Sport.
|
|
65
|
+
- **Tightly cropped.** Small, deliberate, sized to grid. Almanac, Atelier still-life.
|
|
66
|
+
- **Inline with text.** Image flows within the paragraph rhythm, sized to measure. Editorial, Newsprint.
|
|
67
|
+
- **Margin-aligned.** Image sits in the wide outer margin; body unbroken. Linen, Tufte.
|
|
68
|
+
- **None.** No imagery; typography carries everything. Specimen, Manifesto-as-text-poster, Terminal.
|
|
69
|
+
|
|
70
|
+
### 6. Reveal pattern
|
|
71
|
+
|
|
72
|
+
What happens on page-load and on scroll?
|
|
73
|
+
|
|
74
|
+
- **Fade-up stagger.** Default. Subtle, broadly safe; orchestrated once with exponential ease-out.
|
|
75
|
+
- **Horizontal sweep.** Element slides in from one edge; clip-path or transform. Directional momentum.
|
|
76
|
+
- **Type-unmask.** clip-path animates open over text. Graceful when the type is the hero.
|
|
77
|
+
- **Number-tick.** Counter from 0 to final value; for stats, prices, dates. Almanac, dashboards.
|
|
78
|
+
- **Typewriter.** Character-by-character; honest about the medium. Terminal only. **Decorative-graphics constraint:** Terminal output must NOT include standalone scanlines, detached blinking cursors, or random ASCII art. The terminal cursor (`▮`) is allowed only when it sits *inside* a typed command (install code block, N8 Terminal command nav) and signals an honest "you'd type next" affordance. A floating cursor in a hero corner is set decoration; remove it. See [`microinteractions.md`](microinteractions.md) Caret blink row.
|
|
79
|
+
- **None.** Everything is just there at load. Some sites should not move. Pentagram, brutalist sites.
|
|
80
|
+
|
|
81
|
+
## Picking a fingerprint
|
|
82
|
+
|
|
83
|
+
A fingerprint = one choice per axis. There are 8 × 7 × 5 × 5 × 5 × 6 = **42 000** fingerprints. You will never run out.
|
|
84
|
+
|
|
85
|
+
Two rules govern choices:
|
|
86
|
+
|
|
87
|
+
1. **Coherence.** A Newsprint page with multi-column justified body should have a typographic CTA, not an oversized solid button — those don't share a voice. Pick choices that belong to the same *world*.
|
|
88
|
+
2. **Anti-repetition.** Across consecutive pages built in the same session, no two should share more than three of the six axes. If the previous page used left-margin headings + single column + hairline divider + outlined button, this page should differ on at least three of those.
|
|
89
|
+
|
|
90
|
+
## Theme-suggested fingerprints
|
|
91
|
+
|
|
92
|
+
Each Hallmark theme has a default structural fingerprint. Use them as starting points only when the brief specifies a theme. **For most builds, pick a macrostructure from [`macrostructures.md`](macrostructures.md) instead** — themes describe *visual surface*, macrostructures describe *page shape*; the latter drives variety more.
|
|
93
|
+
|
|
94
|
+
The table below is alphabetical by theme to neutralise any "first row = default" attractor. No theme is the default. The **Nav** and **Footer** columns name the default archetype from [`component-cookbook.md`](component-cookbook.md); the routing tables in that file list the acceptable alternates.
|
|
95
|
+
|
|
96
|
+
| Theme | Heading | Body | Divider | Button | Image | Reveal | Nav | Footer |
|
|
97
|
+
| --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
|
98
|
+
| Almanac | Sticky | Three-column equal | Hairline | Outlined | Inline | Number-tick | N3 Side-rail | Ft3 Index columns |
|
|
99
|
+
| Atelier | Centered | Single column | Negative space | Typographic-only | Tightly cropped | Type-unmask | N9 Edge-min | Ft6 Letter close |
|
|
100
|
+
| Aurora | Hanging | Single column | Negative space | Typographic-only | None | Fade-up | N5 Floating pill | Ft5 Statement |
|
|
101
|
+
| Bloom | Centered | Single column | Negative space | Typographic-only | None | Fade-up | N5 Floating pill | Ft5 Statement |
|
|
102
|
+
| Brutal | Overlapping image | Full-bleed reset | Bleed-colour | Oversized solid | Full-bleed | Horizontal sweep | N7 Brutal slab | Ft8 Marquee scroll |
|
|
103
|
+
| Coral | Centered | Single column | Negative space | Outlined | Margin-aligned | Fade-up | N5 Floating pill | Ft1 Mast-headed |
|
|
104
|
+
| Garden | Hanging | Marginalia | Negative space | Unstyled link | Margin-aligned | None | N9 Edge-min | Ft6 Letter close |
|
|
105
|
+
| Halo | Centered | Single column | Negative space | Outlined | None | Fade-up | N5 Floating pill | Ft5 Statement |
|
|
106
|
+
| Linen | Hanging | Two-column asymmetric | Negative space | Unstyled link | Margin-aligned | Fade-up | N6 Masthead | Ft1 Mast-headed |
|
|
107
|
+
| Manifesto | Overlapping image | Full-bleed reset | Bleed-colour | Oversized solid | Full-bleed | Horizontal sweep | N7 Brutal slab | Ft5 Statement |
|
|
108
|
+
| Midnight | Numbered display | Single column | Hairline | Typographic-only | None | Typewriter | N5 Floating pill | Ft2 Inline single line |
|
|
109
|
+
| Newsprint | Bottom-aligned | Multi-column justified | Double rule | Outlined | Inline | None | N6 Masthead | Ft4 Dense colophon |
|
|
110
|
+
| Plume | Hanging | Single column | Bleed-colour band | Outlined | Margin-aligned | Fade-up | N9 Edge-min | Ft1 Mast-headed |
|
|
111
|
+
| Editorial | Hanging | 2-col asym hero / single below | Hairline | Outlined | Tightly cropped or generated (Tier C) | Fade-up | N6 Masthead | Ft1 Mast-headed |
|
|
112
|
+
| Quiet | Centered | Single column narrow | Negative space | Outlined pill | None | None | N9 Edge-min | Ft2 Inline single line |
|
|
113
|
+
| Riso | Centered | Single column | Negative space | Outlined | Inline | None | N7 Brutal slab | Ft8 Marquee scroll |
|
|
114
|
+
| Salon | Centered | Single column narrow | Ornament (fleuron) | Outlined | Tightly cropped | None | N6 Masthead | Ft1 Mast-headed |
|
|
115
|
+
| Specimen | Left-margin | Asymmetric spans | Hairline | Outlined | None | Fade-up | N5 Floating pill | Ft2 Inline single line |
|
|
116
|
+
| Sport | Numbered display | Asymmetric spans | Bleed-colour | Oversized solid | Full-bleed | Horizontal sweep | N7 Brutal slab | Ft8 Marquee scroll |
|
|
117
|
+
| Studio | Centered | Asymmetric spans | Negative space | Typographic-only | Tightly cropped | Fade-up | N7 Brutal slab | Ft3 Index columns |
|
|
118
|
+
| Terminal | Inline (with `>` prompt) | Single column | Negative space | Typographic-only `[ go ]` | None | Typewriter | N8 Terminal command | Ft4 Dense colophon |
|
|
119
|
+
| Violet | Hanging | Single column | Negative space | Outlined | None | Fade-up | N5 Floating pill | Ft2 Inline single line |
|
|
120
|
+
|
|
121
|
+
## Anti-patterns of structural sameness
|
|
122
|
+
|
|
123
|
+
Reject these structural fingerprints. They are the AI-template fingerprint.
|
|
124
|
+
|
|
125
|
+
- **The SaaS hero.** Centered display heading, centered subhead, centered pill CTA, full-viewport hero, fade-up. The single most-recognised AI structural fingerprint.
|
|
126
|
+
- **The 3-feature row.** Three equal columns of icon-above-heading-above-two-line-body, gapped at 24px, identical card padding.
|
|
127
|
+
- **The benefits-then-CTA.** A list of feature bullets followed by a "Sign up" button block. Predictable rhythm.
|
|
128
|
+
- **The everything-fades-in.** Every section gets the same scroll-triggered fade-up animation. Makes the page feel like a presentation.
|
|
129
|
+
- **The carbon-copy footer.** Logo, four columns of links, social row, copyright. The same on every site you've ever seen.
|
|
130
|
+
|
|
131
|
+
## When you don't know
|
|
132
|
+
|
|
133
|
+
If the brief doesn't suggest a fingerprint and the user hasn't picked a theme, **do not default**. Read the brief for a domain word (audio, commerce, docs, agency, restaurant, fashion, fintech, personal, …) and offer the user **three macrostructures from categorically different groups *that fit that domain***. Then let them pick.
|
|
134
|
+
|
|
135
|
+
The point of three is contrast: a grid-led shape, a document-led shape, a poster-led shape. Picking from categorically different groups is what produces variety; offering three near-twins is the AI tell this whole skill exists to defeat.
|
|
136
|
+
|
|
137
|
+
### Domain → trio (offer these three; never default)
|
|
138
|
+
|
|
139
|
+
If you can't infer the domain, ask one question — "what does this thing do?" — and then map it.
|
|
140
|
+
|
|
141
|
+
| Domain words in the brief | Trio to offer |
|
|
142
|
+
| --- | --- |
|
|
143
|
+
| **podcast, audio, music, playlist, listening** | **Photographic** · **Quote-Led** · **Letter** |
|
|
144
|
+
| **shop, store, product, merch, commerce, ecom** | **Catalogue** · **Photographic** · **Bento Grid** |
|
|
145
|
+
| **docs, CLI, SDK, API, library, open source, developer reference** | **Workbench** · **Long Document** · **Component Playground** |
|
|
146
|
+
| **platform, infra, observability, dashboard SaaS, B2B tool, try-or-talk-to-sales** | **Bento Grid** · **Workbench** · **Stat-Led** |
|
|
147
|
+
| **agency, studio (work-led), case studies, multi-project portfolio, freelance creative** | **Portfolio Grid** · **Split Studio** · **Index-First** |
|
|
148
|
+
| **personal one-pager, individual, about-me, resume (no case studies)** | **Long Document** · **Letter** · **Index-First** |
|
|
149
|
+
| **restaurant, café, bar, food, kitchen, menu** | **Photographic** · **Long Document** · **Catalogue** |
|
|
150
|
+
| **fashion, apparel, beauty, lookbook** | **Photographic** · **Catalogue** · **Marquee Hero** |
|
|
151
|
+
| **fintech, banking, payments, invest, trading** | **Stat-Led** · **Workbench** · **Long Document** |
|
|
152
|
+
| **manifesto, campaign, cause, advocacy, political** | **Manifesto** · **Quote-Led** · **Stat-Led** |
|
|
153
|
+
| **editorial, foundry, magazine, type, specimen** | **Specimen** · **Long Document** · **Type Specimen** |
|
|
154
|
+
| **product launch, SaaS marketing, B2B** | **Bento Grid** · **Workbench** · **Stat-Led** |
|
|
155
|
+
| **conference, event, speaker, keynote** | **Marquee Hero** · **Manifesto** · **Photographic** |
|
|
156
|
+
| **fallback (genuinely no signal)** | **Bento Grid** · **Long Document** · **Manifesto** |
|
|
157
|
+
|
|
158
|
+
**Note on splits.** Some domains split on intent. *Developer-tool docs* and *developer-tool marketing* both have "developer" in them, but the docs page wants a Workbench walkthrough; the marketing page wants Bento Grid + Stat-Led so the SRE can read the value prop in 30 seconds. Same for *personal*: a one-pager about-me and a multi-project portfolio of case studies are *different briefs* — the one-pager wants prose (Long Doc / Letter); the portfolio wants Portfolio Grid / Split Studio. If the brief is ambiguous, **ask one question** to disambiguate ("docs walkthrough or marketing landing?", "one-pager or case studies?") before picking the trio.
|
|
159
|
+
|
|
160
|
+
If the user shrugs and says "you pick", read the project's CSS for a `/* Hallmark · macrostructure: ... */` stamp; whichever of the trio is most categorically distant from the stamped family is the right pick. Two consecutive outputs should never be from the same family — never two editorial macrostructures, never two grid-led macrostructures.
|
|
161
|
+
|
|
162
|
+
If the user answers a vague tone word ("modern", "clean", "professional"), that is not a feeling. Re-ask with the domain trio.
|
|
163
|
+
|
|
164
|
+
The fallback row at the bottom of the table is the *last* resort — only if no domain words appear and the user genuinely cannot pick. In practice, almost every brief contains a domain word; using the fallback usually means you didn't read carefully enough.
|