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,1454 @@
|
|
|
1
|
+
# APP Specification
|
|
2
|
+
|
|
3
|
+
Status: Working draft
|
|
4
|
+
|
|
5
|
+
Current snapshot alignment:
|
|
6
|
+
|
|
7
|
+
- latest released version: [`v1.1.6`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.1.6.md)
|
|
8
|
+
- earlier released snapshots: [`v1.1.5`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.1.5.md), [`v1.1.4`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.1.4.md), [`v1.1.3`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.1.3.md), [`v1.1.2`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.1.2.md), [`v1.1.1`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.1.1.md), [`v1.1.0`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.1.0.md), [`v1.0.1`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.0.1.md), [`v1.0.0`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v1.0.0.md), [`v0.0.12`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.12.md), [`v0.0.11`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.11.md), [`v0.0.10`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.10.md), [`v0.0.9`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.9.md), [`v0.0.8`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.8.md), [`v0.0.7`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.7.md), [`v0.0.6`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.6.md), [`v0.0.5`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.5.md), [`v0.0.4`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.4.md), [`v0.0.2`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.2.md), [`v0.0.1`](https://github.com/jhenriquedev/app-protocol/blob/main/versions/v0.0.1.md)
|
|
9
|
+
|
|
10
|
+
This document is the living draft of the AI-First Programming Protocol. Released versions are copied into [`versions/`](https://github.com/jhenriquedev/app-protocol/tree/main/versions).
|
|
11
|
+
|
|
12
|
+
Language policy:
|
|
13
|
+
|
|
14
|
+
- this working draft is canonical in English
|
|
15
|
+
- early released snapshots in `versions/` are legacy Portuguese documents
|
|
16
|
+
- Portuguese backups are preserved in [`i18n/pt-br/`](https://github.com/jhenriquedev/app-protocol/tree/main/i18n/pt-br)
|
|
17
|
+
|
|
18
|
+
## 1. Purpose
|
|
19
|
+
|
|
20
|
+
APP defines a protocol for organizing software in a way that is predictable for humans and legible to AI agents.
|
|
21
|
+
|
|
22
|
+
The protocol optimizes for:
|
|
23
|
+
|
|
24
|
+
- low context cost
|
|
25
|
+
- explicit semantic ownership
|
|
26
|
+
- predictable file and folder structure
|
|
27
|
+
- minimal hidden coupling
|
|
28
|
+
- agent-ready execution contracts
|
|
29
|
+
|
|
30
|
+
### 1.1 Architectural Properties Induced by APP
|
|
31
|
+
|
|
32
|
+
APP defines its own architectural properties. It does not normatively adopt SOLID, DDD, Clean Architecture, or any other prior doctrine as its source of authority.
|
|
33
|
+
|
|
34
|
+
External comparisons may be useful for explanation, but the normative source of truth remains this protocol.
|
|
35
|
+
|
|
36
|
+
The protocol induces the following architectural properties:
|
|
37
|
+
|
|
38
|
+
- **Capability Cohesion** — a `Case` MUST represent a single capability and MUST NOT mix unrelated capabilities in the same semantic unit.
|
|
39
|
+
- **Semantic Ownership** — each `Case` MUST own the semantics, contracts, and surfaces of its capability inside its own folder.
|
|
40
|
+
- **Explicit Surface Contracts** — every execution or interaction boundary MUST be expressed through canonical surfaces (`domain`, `api`, `ui`, `web`, `mobile`, `stream`, `agentic`) instead of ad hoc file conventions.
|
|
41
|
+
- **Visual Surface Specialization** — visual capabilities MAY be expressed through `ui`, `web`, and `mobile`. APP standardizes the semantic grammar of those visual surfaces, but MUST NOT require platform-specialized surfaces to share the same concrete technical contract.
|
|
42
|
+
- **Pure Domain Core** — `domain.case.ts` MUST remain free of I/O, persistence, transport concerns, and arbitrary side effects.
|
|
43
|
+
- **Protocol Dependency Inversion** — Cases depend on `core/` contracts; runtime implementations are selected by host apps.
|
|
44
|
+
- **Host-Owned Composition Root** — `apps/` own registry assembly, provider binding, package exposure, runtime configuration, and deployment concerns.
|
|
45
|
+
- **Explicit Orchestration Boundary** — cross-case composition MUST happen through explicit capability boundaries resolved by the app runtime (`ctx.cases`), never through direct imports between Case folders.
|
|
46
|
+
- **Declarative Operational Contracts** — operational behavior that must be legible to tooling or hosts SHOULD be declared as metadata contracts when the protocol provides such a slot (`router()`, `subscribe()`, `recoveryPolicy()`, `tool()`, `mcp()`).
|
|
47
|
+
- **Structural Toolability** — shared shapes used by hosts, tooling, and agents (`AppSchema`, `AppResult`, `AppError`, `StreamFailureEnvelope`, registry contracts) MUST remain structurally explicit and stable.
|
|
48
|
+
- **Low-Context Navigability** — a capability SHOULD be understandable with minimal navigation; the protocol favors local reasoning over layer scattering.
|
|
49
|
+
|
|
50
|
+
### 1.2 Conformance Interpretation
|
|
51
|
+
|
|
52
|
+
APP architectural conformance operates at three levels:
|
|
53
|
+
|
|
54
|
+
- **Static conformance** — rules that can be checked from filesystem structure, imports, and declarations
|
|
55
|
+
- **Review-level conformance** — rules that require architectural judgment, such as capability cohesion
|
|
56
|
+
- **Runtime conformance** — rules that must be validated by the host app at bootstrap or execution time
|
|
57
|
+
|
|
58
|
+
Supporting guidance may expand these levels in project documentation and tooling, but no supporting document overrides the normative statements in this spec.
|
|
59
|
+
|
|
60
|
+
## 2. Paradigm
|
|
61
|
+
|
|
62
|
+
APP is the protocol for the **AI-First Programming** paradigm.
|
|
63
|
+
|
|
64
|
+
The relationship between these layers is:
|
|
65
|
+
|
|
66
|
+
```text
|
|
67
|
+
AI-First Programming ← paradigm (conceptual layer)
|
|
68
|
+
└─ APP ← protocol (normative layer)
|
|
69
|
+
└─ Implementations ← concrete projects (execution layer)
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
APP is the first normative expression of the AI-First Programming paradigm, not the only one possible. Other protocols may emerge within the same paradigm.
|
|
73
|
+
|
|
74
|
+
### 2.1 Paradigm Declarations
|
|
75
|
+
|
|
76
|
+
The AI-First Programming paradigm is defined by five declarations:
|
|
77
|
+
|
|
78
|
+
**Ontology** — A system is made of capabilities, each organized as a Case with predictable surfaces (`domain`, `api`, `ui`, `web`, `mobile`, `stream`, `agentic`).
|
|
79
|
+
|
|
80
|
+
**Composition** — Cases compose through explicit boundaries, never through implicit coupling. Four canonical forms exist: intra-Case collaboration, cross-Case synchronous (`ctx.cases`), cross-Case event-driven (`_publish`/`subscribe`), and host-mediated orchestration.
|
|
81
|
+
|
|
82
|
+
**Evolution** — A system grows by adding and separating Cases, not by scattering logic across generic layers. Each new capability is a new Case, not a new layer.
|
|
83
|
+
|
|
84
|
+
**Cognition** — The developer's primary question is "what capability am I creating?", not "what layer am I in?" or "what service do I expose?". The Case is the unit of thought.
|
|
85
|
+
|
|
86
|
+
**Operability** — Humans and agents are peers in understanding and operating the system. AI is a design priority, not a substitute for judgment. Software is structured to be legible, generable, and operable by both.
|
|
87
|
+
|
|
88
|
+
### 2.2 Operational Resolutions
|
|
89
|
+
|
|
90
|
+
The following operational resolutions are conceptually closed and define APP's current public direction:
|
|
91
|
+
|
|
92
|
+
- **Canonical Capability Adapter** — an APP project may be projected into an external tool runtime through a Canonical Capability Adapter. The adapter exposes canonical capabilities as tools while preserving tool identity, input/output schemas, execution path, and declared policy. It projects capability execution; it does not reimplement capability logic.
|
|
93
|
+
- **Adapter Ownership** — the protocol may define projection constraints, but concrete adapters belong to ecosystem tooling, skill `/app`, or project hosts. APP itself does not ship the operational adapter as part of the protocol.
|
|
94
|
+
- **Composition Sufficiency** — the four canonical composition forms defined above are sufficient for APP v1. Multi-step agent planning, tool-call chaining, and agent runtime orchestration are operational concerns outside protocol semantics.
|
|
95
|
+
- **Manifesto Materialization** — the five paradigm declarations above are already the canonical manifesto base for AI-First Programming. Supporting documents may expand them, but they do not override or replace them.
|
|
96
|
+
- **Standalone Example Closure** — `examples/typescript/` remains the compact executable baseline for the current protocol generation, while `examples/react/` is the current full reference for app-level agentic and cross-client MCP publication.
|
|
97
|
+
|
|
98
|
+
## 3. Canonical Unit: Case
|
|
99
|
+
|
|
100
|
+
A `Case` is the canonical unit of organization in APP.
|
|
101
|
+
|
|
102
|
+
A Case:
|
|
103
|
+
|
|
104
|
+
- represents a single capability
|
|
105
|
+
- owns its local semantics and execution surfaces
|
|
106
|
+
- lives in a dedicated folder
|
|
107
|
+
- should be understandable with minimal navigation
|
|
108
|
+
|
|
109
|
+
Examples:
|
|
110
|
+
|
|
111
|
+
- `user_validate`
|
|
112
|
+
- `user_register`
|
|
113
|
+
- `theme_toggle`
|
|
114
|
+
- `ticket_assign`
|
|
115
|
+
|
|
116
|
+
## 4. Canonical Structure
|
|
117
|
+
|
|
118
|
+
An APP project has four canonical layers:
|
|
119
|
+
|
|
120
|
+
- `packages/` — shared project code resolved by hosts and exposed to contextual Cases through `ctx.packages`
|
|
121
|
+
- `core/` — protocol contracts (base classes, shared types, infrastructure interfaces, host contracts)
|
|
122
|
+
- `cases/` — capabilities (the shared source of truth for all business logic)
|
|
123
|
+
- `apps/` — hosts (each app consumes only the Cases and surfaces it needs and acts as the composition root)
|
|
124
|
+
|
|
125
|
+
### 4.1 Layer responsibilities
|
|
126
|
+
|
|
127
|
+
`packages/` is the shared project code layer. It contains project-specific libraries, utilities, design systems, wrappers, and reusable implementation modules. In APP v1, Cases do not import `packages/` directly. Contextual surfaces consume app-selected packages through `ctx.packages`, and the host app decides what is exposed there. A new APP project may begin with an empty `packages/` layer when no host-selected shared code is needed yet.
|
|
128
|
+
|
|
129
|
+
`core/` is the protocol layer. It contains base classes for all surfaces (`domain.case.ts`, `api.case.ts`, `ui.case.ts`, `web.case.ts`, `mobile.case.ts`, `stream.case.ts`, `agentic.case.ts`) and shared contracts in `core/shared/` (contexts, infrastructure interfaces, structural types, host contracts). No business logic lives here. Every project uses the same contracts; implementations live in `cases/`.
|
|
130
|
+
|
|
131
|
+
`cases/` is the capability layer. It is shared across all apps. Cases are organized by domain folder (`users/`) and each Case has its own folder (`user_validate/`, `user_register/`). No app owns Cases — apps consume them.
|
|
132
|
+
|
|
133
|
+
`apps/` is the host layer. Each app is a separate runtime — a backend server, a frontend portal, a set of lambda functions. Each app has its own `app.ts` (bootstrap) and `registry.ts` (which Cases, providers, and packages to load). The protocol defines that `apps/` exists but does not dictate the internal structure of each app.
|
|
134
|
+
|
|
135
|
+
### 4.2 Directory layout
|
|
136
|
+
|
|
137
|
+
```text
|
|
138
|
+
project/
|
|
139
|
+
├── packages/
|
|
140
|
+
│ ├── design-system/
|
|
141
|
+
│ ├── date-utils/
|
|
142
|
+
│ └── http-fetch/
|
|
143
|
+
│
|
|
144
|
+
├── core/
|
|
145
|
+
│ ├── domain.case.ts
|
|
146
|
+
│ ├── api.case.ts
|
|
147
|
+
│ ├── ui.case.ts
|
|
148
|
+
│ ├── web.case.ts
|
|
149
|
+
│ ├── mobile.case.ts
|
|
150
|
+
│ ├── stream.case.ts
|
|
151
|
+
│ ├── agentic.case.ts
|
|
152
|
+
│ └── shared/
|
|
153
|
+
│ ├── app_base_context.ts
|
|
154
|
+
│ ├── app_infra_contracts.ts
|
|
155
|
+
│ ├── app_structural_contracts.ts
|
|
156
|
+
│ └── app_host_contracts.ts
|
|
157
|
+
│
|
|
158
|
+
├── cases/
|
|
159
|
+
│ ├── users/
|
|
160
|
+
│ │ ├── user_validate/
|
|
161
|
+
│ │ │ ├── user_validate.domain.case.ts
|
|
162
|
+
│ │ │ ├── user_validate.api.case.ts
|
|
163
|
+
│ │ │ ├── user_validate.ui.case.ts
|
|
164
|
+
│ │ │ ├── user_validate.web.case.ts
|
|
165
|
+
│ │ │ ├── user_validate.mobile.case.ts
|
|
166
|
+
│ │ │ └── user_validate.agentic.case.ts
|
|
167
|
+
│ │ └── user_register/
|
|
168
|
+
│ │ ├── user_register.domain.case.ts
|
|
169
|
+
│ │ ├── user_register.api.case.ts
|
|
170
|
+
│ │ ├── user_register.ui.case.ts
|
|
171
|
+
│ │ ├── user_register.stream.case.ts
|
|
172
|
+
│ │ └── user_register.agentic.case.ts
|
|
173
|
+
│
|
|
174
|
+
└── apps/
|
|
175
|
+
├── backend/
|
|
176
|
+
│ ├── app.ts
|
|
177
|
+
│ └── registry.ts
|
|
178
|
+
├── portal/
|
|
179
|
+
│ ├── app.ts
|
|
180
|
+
│ └── registry.ts
|
|
181
|
+
├── lambdas/
|
|
182
|
+
│ ├── app.ts
|
|
183
|
+
│ └── registry.ts
|
|
184
|
+
└── agent/
|
|
185
|
+
├── app.ts
|
|
186
|
+
└── registry.ts
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
Not every Case needs every surface. A Case implements only the surfaces relevant to its capability.
|
|
190
|
+
|
|
191
|
+
Optional supporting artifacts may live inside a Case folder when they do not
|
|
192
|
+
redefine the canonical surface grammar. The canonical support artifact is
|
|
193
|
+
`<case>.us.md`, a human/agent-facing specification aid used to capture intent,
|
|
194
|
+
business rules, planned surfaces, validation scenarios, and open questions for a
|
|
195
|
+
Case. `<case>.us.md` is not required for baseline APP filesystem conformance,
|
|
196
|
+
but stricter operational profiles such as skill `/app` may require it for new
|
|
197
|
+
Cases or significant semantic changes.
|
|
198
|
+
|
|
199
|
+
Each app in `apps/` is a host — it has its own `registry.ts` that imports only the specific resources it needs. `_cases` imports Case surfaces, `_providers` binds runtime implementations, and `_packages` exposes shared libraries through context. No app is forced to load surfaces or packages it does not use.
|
|
200
|
+
|
|
201
|
+
> A centralized `cases/cases.ts` is not required at runtime. A project may optionally maintain one for tooling, documentation, or agent discovery, but no app imports it. Similarly, Case manifest files (`<case>.ts`) and domain aggregators (`<domain>.ts`) are optional convenience — the protocol does not require them.
|
|
202
|
+
|
|
203
|
+
### 4.3 Canonical Architectural Diagrams
|
|
204
|
+
|
|
205
|
+
The following diagrams are canonical visual summaries of APP. They illustrate the protocol's own architectural grammar and are normative at the semantic level.
|
|
206
|
+
|
|
207
|
+
Mermaid source is the canonical textual representation. Any stylized renderings in `docs/` are editorial presentations of the same semantics and do not override the protocol.
|
|
208
|
+
|
|
209
|
+
#### Four Canonical Layers
|
|
210
|
+
|
|
211
|
+
```mermaid
|
|
212
|
+
flowchart TB
|
|
213
|
+
packages[packages/]:::pkg
|
|
214
|
+
core[core/]:::core
|
|
215
|
+
cases[cases/]:::cases
|
|
216
|
+
apps[apps/]:::apps
|
|
217
|
+
|
|
218
|
+
cases -->|imports contracts from| core
|
|
219
|
+
apps -->|registers and instantiates| cases
|
|
220
|
+
apps -->|binds runtime to| core
|
|
221
|
+
apps -->|selects and exposes| packages
|
|
222
|
+
apps -.->|injects via context, not direct import| cases
|
|
223
|
+
|
|
224
|
+
classDef pkg fill:#efe7d2,stroke:#8a6d1d,color:#2f2508;
|
|
225
|
+
classDef core fill:#dbe9ff,stroke:#2b6cb0,color:#0b2545;
|
|
226
|
+
classDef cases fill:#dff3e4,stroke:#2f855a,color:#0f2f1f;
|
|
227
|
+
classDef apps fill:#ffe2d5,stroke:#c05621,color:#4a1f10;
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
#### A Case as a Capability Unit
|
|
231
|
+
|
|
232
|
+
```mermaid
|
|
233
|
+
flowchart LR
|
|
234
|
+
subgraph Case["Case Folder"]
|
|
235
|
+
domain["domain.case.ts"]:::domain
|
|
236
|
+
api["api.case.ts"]:::surface
|
|
237
|
+
ui["ui.case.ts"]:::surface
|
|
238
|
+
web["web.case.ts"]:::surface
|
|
239
|
+
mobile["mobile.case.ts"]:::surface
|
|
240
|
+
stream["stream.case.ts"]:::surface
|
|
241
|
+
agentic["agentic.case.ts"]:::surface
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
domain -->|semantic source of truth| api
|
|
245
|
+
domain -->|semantic source of truth| ui
|
|
246
|
+
domain -->|semantic source of truth| web
|
|
247
|
+
domain -->|semantic source of truth| mobile
|
|
248
|
+
domain -->|semantic source of truth| stream
|
|
249
|
+
domain -->|optional derivation| agentic
|
|
250
|
+
|
|
251
|
+
classDef domain fill:#fff4cc,stroke:#b7791f,color:#4a3410;
|
|
252
|
+
classDef surface fill:#edf2f7,stroke:#4a5568,color:#1a202c;
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
#### App Registry and Context Materialization
|
|
256
|
+
|
|
257
|
+
```mermaid
|
|
258
|
+
flowchart LR
|
|
259
|
+
subgraph Registry["apps/<app>/registry.ts"]
|
|
260
|
+
casesSlot["_cases"]:::cases
|
|
261
|
+
providersSlot["_providers"]:::core
|
|
262
|
+
packagesSlot["_packages"]:::pkg
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
bootstrap["apps/<app>/app.ts"]:::apps
|
|
266
|
+
contexts["Per-surface ctx"]:::core
|
|
267
|
+
casesRuntime["Case instances"]:::cases
|
|
268
|
+
|
|
269
|
+
casesSlot --> bootstrap
|
|
270
|
+
providersSlot --> bootstrap
|
|
271
|
+
packagesSlot --> bootstrap
|
|
272
|
+
bootstrap --> contexts
|
|
273
|
+
contexts --> casesRuntime
|
|
274
|
+
|
|
275
|
+
classDef pkg fill:#efe7d2,stroke:#8a6d1d,color:#2f2508;
|
|
276
|
+
classDef core fill:#dbe9ff,stroke:#2b6cb0,color:#0b2545;
|
|
277
|
+
classDef cases fill:#dff3e4,stroke:#2f855a,color:#0f2f1f;
|
|
278
|
+
classDef apps fill:#ffe2d5,stroke:#c05621,color:#4a1f10;
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
### 4.4 Project Bootstrap and Incremental Adoption
|
|
282
|
+
|
|
283
|
+
APP supports both greenfield projects and incremental adoption inside existing codebases.
|
|
284
|
+
|
|
285
|
+
For a new APP project:
|
|
286
|
+
|
|
287
|
+
- the minimum practical structure is `core/`, `cases/`, and at least one host in `apps/`
|
|
288
|
+
- `packages/` remains part of the canonical layer model, but it may start empty until shared project code is actually needed
|
|
289
|
+
- a host app may start with a single `registry.ts`, a single `app.ts`, and one or more Cases
|
|
290
|
+
|
|
291
|
+
For an existing project:
|
|
292
|
+
|
|
293
|
+
- adoption may be incremental and bounded to a subset of the repository
|
|
294
|
+
- a project may introduce APP Cases and host registries without migrating all legacy code at once
|
|
295
|
+
- legacy code may remain outside APP grammar while new or refactored capability slices adopt APP
|
|
296
|
+
- conformance should be evaluated on the APP-managed area, not on unrelated legacy areas
|
|
297
|
+
|
|
298
|
+
APP does not require a big-bang migration. New capability work may begin in APP while older structures coexist during transition.
|
|
299
|
+
|
|
300
|
+
## 5. Core Types
|
|
301
|
+
|
|
302
|
+
APP defines the following shared types in `core/`:
|
|
303
|
+
|
|
304
|
+
- `Dict<T>` — generic key/value map (`Record<string, T>`)
|
|
305
|
+
- `AppSchema` — structural schema type. `AppSchema` is a **compatible subset of JSON Schema (Draft 2020-12)**. Every `AppSchema` value is a valid JSON Schema document — the keywords `type`, `description`, `properties`, `items`, `required`, `enum`, and `additionalProperties` are all standard JSON Schema keywords used with their standard semantics. However, not every JSON Schema is a valid `AppSchema`: the protocol recognizes only the keywords listed above. Additional JSON Schema keywords (e.g., `format`, `minimum`, `pattern`, `oneOf`, `$ref`) are permitted in host extensions but are not guaranteed to be understood by canonical APP tooling. This controlled subset keeps the protocol simple, avoids coupling to a JSON Schema runtime, and ensures that MCP tool schemas can be derived from `AppSchema` without transformation.
|
|
306
|
+
- `AppBaseContext` — shared base context for all surfaces. Contains only genuinely cross-cutting concerns: `correlationId` (required — the identity of the context, analogous to OpenTelemetry's traceId), `executionId?` (step-level identity within an operation), `tenantId?`, `userId?`, `logger` (required), `config?`. Defined in `core/shared/app_base_context.ts`.
|
|
307
|
+
- Per-surface contexts extend `AppBaseContext` with surface-specific infrastructure: `ApiContext` (httpClient, db, auth, storage, cache, cases, packages), `UiContext` (general visual runtime), `WebContext` (browser/web runtime), `MobileContext` (mobile runtime), `StreamContext` (eventBus, queue, db, cache, cases, packages), `AgenticContext` (cases, packages, mcp). `BaseDomainCase` receives no context (pure by definition). Each surface defines its own canonical grammar — see Section 5.
|
|
308
|
+
- `ValueObject<TProps>` — base class for immutable, value-comparable, serializable domain objects. Uses `Object.freeze` internally.
|
|
309
|
+
- `DomainExample<TInput, TOutput>` — typed semantic example for domain surfaces.
|
|
310
|
+
|
|
311
|
+
`Dict` and `AppSchema` are defined in `domain.case.ts` (canonical source). `AppBaseContext` is defined in `core/shared/app_base_context.ts`. Per-surface contexts are defined alongside their respective base classes. Host contracts are defined in `core/shared/app_host_contracts.ts`.
|
|
312
|
+
|
|
313
|
+
### 5.1 Shared Infrastructure Contracts
|
|
314
|
+
|
|
315
|
+
APP defines minimal infrastructure contracts in `core/shared/app_infra_contracts.ts`. These are protocol-level interfaces with semantically explicit names that illustrate good integration boundaries when a capability has sufficiently convergent meaning across stacks.
|
|
316
|
+
|
|
317
|
+
These contracts are intentionally partial. APP does not aim to define a complete or final model of application infrastructure. Their purpose is to provide a small set of stable examples for host-to-Case integration, not to freeze how every project must model infrastructure.
|
|
318
|
+
|
|
319
|
+
Host projects may extend these contracts, wrap them differently, or keep adjacent capabilities host-defined as long as the canonical APP surface semantics are preserved.
|
|
320
|
+
|
|
321
|
+
- `AppHttpClient` — `request(config): Promise<unknown>` (outbound HTTP transport)
|
|
322
|
+
- `AppStorageClient` — `get(key): Promise<unknown>`, `set(key, value): Promise<void>` (persistent storage)
|
|
323
|
+
- `AppCache` — `get(key): Promise<unknown>`, `set(key, value, ttl?): Promise<void>` (cache with optional TTL)
|
|
324
|
+
- `AppEventPublisher` — `publish(event, payload): Promise<void>` (event publication; consume side lives in stream surface)
|
|
325
|
+
|
|
326
|
+
`AppLogger` is defined in `core/shared/app_base_context.ts` alongside `AppBaseContext`.
|
|
327
|
+
|
|
328
|
+
Capabilities such as `auth`, `db`, and `queue` remain deliberately host-defined. APP does not require canonical minimal interfaces for them, and projects may model them freely according to language, framework, runtime, and domain needs.
|
|
329
|
+
|
|
330
|
+
> Eligibility criteria for any additional shared infrastructure contract: (1) primary operation is convergent across implementations, (2) interface describes generic infrastructure not domain logic, (3) capability name has stable non-ambiguous meaning within APP. APP is not obligated to standardize a capability merely because it is common.
|
|
331
|
+
|
|
332
|
+
### 5.2 Shared Structural Contracts
|
|
333
|
+
|
|
334
|
+
APP defines canonical data shapes in `core/shared/app_structural_contracts.ts` that cross all surfaces:
|
|
335
|
+
|
|
336
|
+
- `AppError` — `code: string`, `message: string`, `details?: unknown` (structured error interface)
|
|
337
|
+
- `AppCaseError` — throwable error class that extends `Error` and implements `AppError`. Surfaces should throw `AppCaseError` for business errors (validation, authorization, composition failures). Common codes: `VALIDATION_FAILED`, `UNAUTHORIZED`, `NOT_FOUND`, `CONFLICT`, `COMPOSITION_FAILED`, `INTERNAL`
|
|
338
|
+
- `AppResult<T>` — `success: boolean`, `data?: T`, `error?: AppError` (canonical result wrapper)
|
|
339
|
+
- `StreamFailureEnvelope<T>` — canonical dead-letter failure shape for stream runtimes (`caseName`, `surface`, `originalEvent`, `lastError`, `attempts`, timestamps, `correlationId`)
|
|
340
|
+
- `AppPaginationParams` — `page?: number`, `limit?: number`, `cursor?: string` (pagination input; supports both offset and cursor strategies)
|
|
341
|
+
- `AppPaginatedResult<T>` — `items: T[]`, `total?`, `page?`, `limit?`, `cursor?`, `hasMore?` (paginated result wrapper)
|
|
342
|
+
|
|
343
|
+
Error handling pattern: surfaces throw `AppCaseError` for business errors. The `BaseApiCase.execute()` pipeline catches `AppCaseError` and returns `{ success: false, error }` as a structured `ApiResponse`. Unexpected runtime errors (not `AppCaseError`) re-throw — the host/adapter decides how to handle them. This separation allows consumers (hosts, agents, adapters) to distinguish between expected failures and unexpected crashes without parsing error messages.
|
|
344
|
+
|
|
345
|
+
### 5.3 Host Contracts
|
|
346
|
+
|
|
347
|
+
APP defines minimal host contracts in `core/shared/app_host_contracts.ts` for registry and typing. This working draft extends that host-contract model for agentic apps:
|
|
348
|
+
|
|
349
|
+
- `AppCaseSurfaces` — describes the surfaces available for a Case within a registry. Each key is a canonical surface name (`domain`, `api`, `ui`, `web`, `mobile`, `stream`, `agentic`) and the value is a constructor. Only surfaces the app needs are present.
|
|
350
|
+
- `AppRegistry` — the unified per-app registry interface with three canonical slots: `_cases`, `_providers`, `_packages`.
|
|
351
|
+
- `AgenticRegistry` — the normative extension of `AppRegistry` for hosts that publish agentic capabilities. It derives catalogs and tool resolution from registered `agentic` surfaces rather than from parallel metadata stores.
|
|
352
|
+
- `InferCasesMap` — utility type that derives an instance map from `registry._cases`. Converts constructors to their instance types, preserving the literal key structure for full autocomplete in `_composition`.
|
|
353
|
+
|
|
354
|
+
Normative slot semantics:
|
|
355
|
+
|
|
356
|
+
- `_cases` contains only Case surfaces imported from `cases/`.
|
|
357
|
+
- `_providers` contains host-mounted providers or adapters that are injected into direct context properties.
|
|
358
|
+
- `_packages` contains app-selected shared libraries from `packages/`, exposed to contextual surfaces via `ctx.packages`.
|
|
359
|
+
|
|
360
|
+
> Registries export constructors for `_cases`, not instances. The host instantiates on demand, passing the appropriate context. This is compatible with all deployment models.
|
|
361
|
+
|
|
362
|
+
When a host claims app-level agentic conformance, `AgenticRegistry` adds the
|
|
363
|
+
following required behaviors on top of `AppRegistry`:
|
|
364
|
+
|
|
365
|
+
- `listAgenticCases()` — enumerate the registered Cases that actually expose an `agentic` surface in that host
|
|
366
|
+
- `getAgenticSurface(ref)` — resolve the registered `agentic` surface constructor for a Case reference
|
|
367
|
+
- `instantiateAgentic(ref, ctx)` — instantiate the `agentic` surface with the current `AgenticContext`
|
|
368
|
+
- `buildCatalog(ctx)` — derive the normalized tool/catalog view from the registered `agentic` surfaces
|
|
369
|
+
- `resolveTool(toolName, ctx)` — resolve an externally visible tool name to a catalog entry using the MCP fallback rules defined by the protocol
|
|
370
|
+
- `listMcpEnabledTools(ctx)` — return only the catalog entries that are eligible for MCP publication
|
|
371
|
+
|
|
372
|
+
`AgenticRegistry` does not introduce new registry slots. `_cases` remains the
|
|
373
|
+
source of truth for published capabilities, `_providers` remains the source of
|
|
374
|
+
runtime adapters, and `_packages` remains the source of host-selected shared
|
|
375
|
+
project code.
|
|
376
|
+
|
|
377
|
+
### 5.4 Promotion and Evolution Boundaries
|
|
378
|
+
|
|
379
|
+
APP distinguishes between protocol evolution, shared project code, and capability-local code.
|
|
380
|
+
|
|
381
|
+
Rules:
|
|
382
|
+
|
|
383
|
+
- adding a new canonical surface base class in `core/` changes APP grammar and is therefore a protocol evolution event, not routine project customization
|
|
384
|
+
- projects MUST NOT introduce an ad hoc additional canonical surface locally and still describe the result as baseline APP conformance
|
|
385
|
+
- any proposal for a new canonical surface requires issue, RFC, `spec.md` update, and release acceptance before it becomes part of APP
|
|
386
|
+
- `core/shared/` is reserved for protocol-level contracts, structural shapes, contexts, and host contracts with cross-project semantic meaning
|
|
387
|
+
- project-specific adapters, wrappers, utilities, SDK clients, and design systems belong in `packages/`, not in `core/shared/`
|
|
388
|
+
- capability-specific structures remain inside the owning Case unless they are truly cross-project protocol contracts
|
|
389
|
+
|
|
390
|
+
This boundary keeps `core/` small and protocol-owned, while `packages/` remains the extensibility layer for project-level sharing.
|
|
391
|
+
|
|
392
|
+
## 6. Surfaces
|
|
393
|
+
|
|
394
|
+
APP currently defines seven canonical surfaces.
|
|
395
|
+
|
|
396
|
+
Not every Case needs every surface.
|
|
397
|
+
|
|
398
|
+
For now, `agentic.case.ts` is optional.
|
|
399
|
+
If present, it must follow the APP agentic protocol and map back to canonical execution logic.
|
|
400
|
+
|
|
401
|
+
APP strongly recommends that every surface expose a self-contained `test()` method, but this is a good practice rather than a baseline conformance requirement.
|
|
402
|
+
|
|
403
|
+
### 6.1 Domain Surface
|
|
404
|
+
|
|
405
|
+
File:
|
|
406
|
+
|
|
407
|
+
```text
|
|
408
|
+
<case>.domain.case.ts
|
|
409
|
+
```
|
|
410
|
+
|
|
411
|
+
Purpose:
|
|
412
|
+
|
|
413
|
+
- pure semantics
|
|
414
|
+
- invariants
|
|
415
|
+
- validation rules
|
|
416
|
+
- value objects
|
|
417
|
+
- domain structures
|
|
418
|
+
- input/output schema (structural contracts)
|
|
419
|
+
- semantic examples
|
|
420
|
+
|
|
421
|
+
The domain surface is the **semantic source of truth** of a Case. Other surfaces — especially `agentic.case.ts` — may derive descriptions, schemas, and examples from it.
|
|
422
|
+
|
|
423
|
+
Base contract: `BaseDomainCase<TInput, TOutput>`
|
|
424
|
+
|
|
425
|
+
Required members:
|
|
426
|
+
|
|
427
|
+
- `caseName()` — canonical Case name
|
|
428
|
+
- `description()` — semantic description of the capability
|
|
429
|
+
- `inputSchema()` — structural input contract (`AppSchema`)
|
|
430
|
+
- `outputSchema()` — structural output contract (`AppSchema`)
|
|
431
|
+
|
|
432
|
+
Recommended members:
|
|
433
|
+
|
|
434
|
+
- `test()` — validates schemas, invariants, and examples internally
|
|
435
|
+
|
|
436
|
+
Optional members:
|
|
437
|
+
|
|
438
|
+
- `validate(input)` — pure input validation (must throw on invalid input)
|
|
439
|
+
- `invariants()` — list of domain invariants
|
|
440
|
+
- `valueObjects()` — map of exposed value objects
|
|
441
|
+
- `enums()` — map of exposed enums
|
|
442
|
+
- `examples()` — semantic examples (`DomainExample<TInput, TOutput>`)
|
|
443
|
+
|
|
444
|
+
Utility:
|
|
445
|
+
|
|
446
|
+
- `definition()` — returns consolidated domain metadata for tooling and derivation
|
|
447
|
+
|
|
448
|
+
Integration model:
|
|
449
|
+
|
|
450
|
+
> The domain surface is consumed **manually** by other surfaces. The protocol does not auto-wire `domain.validate()` into the API pipeline or any other surface pipeline. This is by design: the domain is a semantic source of truth for humans, agents, and tooling — not a runtime middleware. Each surface decides if and how to consume domain artifacts. The `agentic` surface demonstrates derived consumption via `domain()` method.
|
|
451
|
+
|
|
452
|
+
Forbidden:
|
|
453
|
+
|
|
454
|
+
- IO
|
|
455
|
+
- HTTP
|
|
456
|
+
- persistence
|
|
457
|
+
- logging
|
|
458
|
+
- UI rendering
|
|
459
|
+
- arbitrary side effects
|
|
460
|
+
|
|
461
|
+
### 6.2 API Surface
|
|
462
|
+
|
|
463
|
+
File:
|
|
464
|
+
|
|
465
|
+
```text
|
|
466
|
+
<case>.api.case.ts
|
|
467
|
+
```
|
|
468
|
+
|
|
469
|
+
Purpose:
|
|
470
|
+
|
|
471
|
+
- input parsing
|
|
472
|
+
- authorization
|
|
473
|
+
- orchestration
|
|
474
|
+
- backend execution
|
|
475
|
+
- response mapping
|
|
476
|
+
|
|
477
|
+
Base contract: `BaseApiCase<TInput, TOutput>`
|
|
478
|
+
|
|
479
|
+
Required members:
|
|
480
|
+
|
|
481
|
+
- `handler(input)` — capability entrypoint, returns `ApiResponse<TOutput>`
|
|
482
|
+
|
|
483
|
+
Optional members:
|
|
484
|
+
|
|
485
|
+
- `router()` — transport bindings (HTTP routes, gRPC definitions, CLI commands)
|
|
486
|
+
|
|
487
|
+
Recommended members:
|
|
488
|
+
|
|
489
|
+
- `test()` — internal test of the capability
|
|
490
|
+
|
|
491
|
+
Protected hooks (all optional):
|
|
492
|
+
|
|
493
|
+
- `_validate(input)` — input validation before execution
|
|
494
|
+
- `_authorize(input)` — authorization check
|
|
495
|
+
- `_repository()` — canonical persistence/integration slot (no cross-case calls)
|
|
496
|
+
- `_service(input)` — atomic business logic (Case atômico; optional hook)
|
|
497
|
+
- `_composition(input)` — cross-case orchestration via `ctx.cases` (Case composto; optional hook)
|
|
498
|
+
|
|
499
|
+
> `handler` is the capability entrypoint — it receives business input and returns business result. It is not an HTTP endpoint. Transport bindings (HTTP routes, gRPC, CLI) live in `router()` or in the adapter/host. The `router()` delegates to `handler()` and never contains business logic.
|
|
500
|
+
>
|
|
501
|
+
> `_service` and `_composition` are mutually exclusive as the primary execution slot. Atomic Cases implement `_service`; composed Cases implement `_composition`. Both hooks are optional individually, but the `execute()` pipeline requires that at least one of them exist. If `_composition` exists, it is used; otherwise `_service`.
|
|
502
|
+
|
|
503
|
+
### 6.3 Visual Surfaces
|
|
504
|
+
|
|
505
|
+
APP defines a family of three canonical visual surfaces:
|
|
506
|
+
|
|
507
|
+
- `ui.case.ts` — visual surface generalista
|
|
508
|
+
- `web.case.ts` — visual surface especializada para runtimes web
|
|
509
|
+
- `mobile.case.ts` — visual surface especializada para runtimes mobile
|
|
510
|
+
|
|
511
|
+
These visual surfaces share the same semantic grammar:
|
|
512
|
+
|
|
513
|
+
```text
|
|
514
|
+
view <-> _viewmodel <-> _service <-> _repository
|
|
515
|
+
```
|
|
516
|
+
|
|
517
|
+
Normative interpretation:
|
|
518
|
+
|
|
519
|
+
- APP standardizes the semantic slots and responsibilities of the visual family
|
|
520
|
+
- specialized visual surfaces (`web`, `mobile`) are not required to reuse the same concrete technical contract as `ui`
|
|
521
|
+
- hosts may model platform-specific runtime concerns in their own surface contexts and host-defined extensions
|
|
522
|
+
- direct cross-case orchestration from visual surfaces is discouraged in all three variants
|
|
523
|
+
|
|
524
|
+
#### 6.3.1 UI Surface
|
|
525
|
+
|
|
526
|
+
File:
|
|
527
|
+
|
|
528
|
+
```text
|
|
529
|
+
<case>.ui.case.ts
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
Purpose:
|
|
533
|
+
|
|
534
|
+
- present interface to the user
|
|
535
|
+
- manage local state via viewmodel
|
|
536
|
+
- access data via repository
|
|
537
|
+
- execute local business logic via service
|
|
538
|
+
|
|
539
|
+
Base contract: `BaseUiCase<TState>`
|
|
540
|
+
|
|
541
|
+
Required members:
|
|
542
|
+
|
|
543
|
+
- `view()` — visual entrypoint, the self-contained visual unit (form, table, sidebar, appbar, widget)
|
|
544
|
+
|
|
545
|
+
Protected hooks:
|
|
546
|
+
|
|
547
|
+
- `_viewmodel()` — transforms state and data into a presentation model for the view
|
|
548
|
+
- `_service()` — local business logic (state behavior, client-side validation, local data transformation)
|
|
549
|
+
- `_repository()` — data access (API calls, local storage, cache reads)
|
|
550
|
+
- `setState(partial)` — state updater
|
|
551
|
+
|
|
552
|
+
Recommended members:
|
|
553
|
+
|
|
554
|
+
- `test()` — internal test of the capability
|
|
555
|
+
|
|
556
|
+
> The view is a self-contained, live visual unit. Framework lifecycle details (render, mount, dismount) live inside `view()` as implementation concerns — the protocol does not dictate lifecycle hooks.
|
|
557
|
+
>
|
|
558
|
+
> `ui.case.ts` does not include `_composition`. Direct cross-case orchestration from UI is discouraged.
|
|
559
|
+
>
|
|
560
|
+
> The pattern of separating a UIPresenter + UICase within the same `ui.case.ts` file is allowed as an optional internal structure. The protocol freezes the semantic slots, not the internal class organization.
|
|
561
|
+
|
|
562
|
+
#### 6.3.2 Web Surface
|
|
563
|
+
|
|
564
|
+
File:
|
|
565
|
+
|
|
566
|
+
```text
|
|
567
|
+
<case>.web.case.ts
|
|
568
|
+
```
|
|
569
|
+
|
|
570
|
+
Purpose:
|
|
571
|
+
|
|
572
|
+
- present interface to the user in web runtimes
|
|
573
|
+
- manage local state via viewmodel
|
|
574
|
+
- access data via repository
|
|
575
|
+
- execute local business logic via service
|
|
576
|
+
|
|
577
|
+
Base contract: `BaseWebCase<TState>`
|
|
578
|
+
|
|
579
|
+
Required members:
|
|
580
|
+
|
|
581
|
+
- `view()` — visual entrypoint, the self-contained visual unit for a web runtime
|
|
582
|
+
|
|
583
|
+
Protected hooks:
|
|
584
|
+
|
|
585
|
+
- `_viewmodel()` — transforms state and data into a presentation model for the view
|
|
586
|
+
- `_service()` — local business logic (state behavior, client-side validation, local data transformation)
|
|
587
|
+
- `_repository()` — data access (API calls, local storage, cache reads)
|
|
588
|
+
- `setState(partial)` — state updater
|
|
589
|
+
|
|
590
|
+
Recommended members:
|
|
591
|
+
|
|
592
|
+
- `test()` — internal test of the capability
|
|
593
|
+
|
|
594
|
+
> `web.case.ts` shares the APP visual grammar but may use its own context contract, browser/session details, routing model, or SSR/CSR concerns. It is not required to reuse the `ui.case.ts` contract.
|
|
595
|
+
>
|
|
596
|
+
> `web.case.ts` does not include `_composition`. Direct cross-case orchestration from Web is discouraged.
|
|
597
|
+
|
|
598
|
+
#### 6.3.3 Mobile Surface
|
|
599
|
+
|
|
600
|
+
File:
|
|
601
|
+
|
|
602
|
+
```text
|
|
603
|
+
<case>.mobile.case.ts
|
|
604
|
+
```
|
|
605
|
+
|
|
606
|
+
Purpose:
|
|
607
|
+
|
|
608
|
+
- present interface to the user in mobile runtimes
|
|
609
|
+
- manage local state via viewmodel
|
|
610
|
+
- access data via repository
|
|
611
|
+
- execute local business logic via service
|
|
612
|
+
|
|
613
|
+
Base contract: `BaseMobileCase<TState>`
|
|
614
|
+
|
|
615
|
+
Required members:
|
|
616
|
+
|
|
617
|
+
- `view()` — visual entrypoint, the self-contained visual unit for a mobile runtime
|
|
618
|
+
|
|
619
|
+
Protected hooks:
|
|
620
|
+
|
|
621
|
+
- `_viewmodel()` — transforms state and data into a presentation model for the view
|
|
622
|
+
- `_service()` — local business logic (state behavior, client-side validation, local data transformation)
|
|
623
|
+
- `_repository()` — data access (API calls, local persistence, cache reads, device-backed data access)
|
|
624
|
+
- `setState(partial)` — state updater
|
|
625
|
+
|
|
626
|
+
Recommended members:
|
|
627
|
+
|
|
628
|
+
- `test()` — internal test of the capability
|
|
629
|
+
|
|
630
|
+
> `mobile.case.ts` shares the APP visual grammar but may use its own context contract, navigation model, device services, app lifecycle concerns, or offline behavior. It is not required to reuse the `web.case.ts` contract.
|
|
631
|
+
>
|
|
632
|
+
> `mobile.case.ts` does not include `_composition`. Direct cross-case orchestration from Mobile is discouraged.
|
|
633
|
+
|
|
634
|
+
### 6.4 Stream Surface
|
|
635
|
+
|
|
636
|
+
File:
|
|
637
|
+
|
|
638
|
+
```text
|
|
639
|
+
<case>.stream.case.ts
|
|
640
|
+
```
|
|
641
|
+
|
|
642
|
+
Purpose:
|
|
643
|
+
|
|
644
|
+
- event consumption
|
|
645
|
+
- publication
|
|
646
|
+
- declarative recovery
|
|
647
|
+
- idempotency
|
|
648
|
+
- pipelines
|
|
649
|
+
|
|
650
|
+
Canonical event shape: `StreamEvent<T>` — `type` (required), `payload` (required), `idempotencyKey?` (optional — deduplication key for at-least-once brokers such as SQS, Kafka, EventBridge), `metadata?` (optional).
|
|
651
|
+
|
|
652
|
+
Base contract: `BaseStreamCase<TInput, TOutput>`
|
|
653
|
+
|
|
654
|
+
Required members:
|
|
655
|
+
|
|
656
|
+
- `handler(event)` — capability entrypoint, receives `StreamEvent<TInput>`
|
|
657
|
+
|
|
658
|
+
Optional members:
|
|
659
|
+
|
|
660
|
+
- `subscribe()` — transport bindings (topic subscriptions, queue listeners)
|
|
661
|
+
- `recoveryPolicy()` — declarative recovery metadata (`AppStreamRecoveryPolicy`)
|
|
662
|
+
|
|
663
|
+
Recommended members:
|
|
664
|
+
|
|
665
|
+
- `test()` — internal test of the capability
|
|
666
|
+
|
|
667
|
+
Protected hooks:
|
|
668
|
+
|
|
669
|
+
- `_consume(event)` — initial event consumption
|
|
670
|
+
- `_repository()` — canonical persistence/integration slot (idempotência, checkpoints)
|
|
671
|
+
- `_service(input)` — atomic business logic (Case atômico)
|
|
672
|
+
- `_composition(event)` — cross-case orchestration via `ctx.cases` (Case composto)
|
|
673
|
+
- `_publish(output)` — result publication
|
|
674
|
+
|
|
675
|
+
> `handler` is the capability entrypoint for stream — it receives business events and processes them. Transport bindings (topic subscriptions, queue listeners) live in `subscribe()` or in the adapter/host.
|
|
676
|
+
>
|
|
677
|
+
> `_service` and `_composition` are mutually exclusive as the primary execution slot. The atomic pipeline flows: `_consume → _service → _publish`. When `_composition` is defined, the pipeline delegates to it directly.
|
|
678
|
+
>
|
|
679
|
+
> `recoveryPolicy()` is a contract declaration, not an implementation hook. It expresses the intended recovery semantics of the capability; the host app validates and materializes those semantics in the chosen runtime.
|
|
680
|
+
>
|
|
681
|
+
> The default pipeline in `BaseStreamCase` must not implement production-grade retry, delay scheduling, or dead-letter delivery. When recovery is declared, failure handling belongs to the host/runtime.
|
|
682
|
+
|
|
683
|
+
Declarative recovery contract:
|
|
684
|
+
|
|
685
|
+
```ts
|
|
686
|
+
export interface AppStreamRecoveryPolicy {
|
|
687
|
+
retry?: {
|
|
688
|
+
maxAttempts: number;
|
|
689
|
+
backoffMs?: number;
|
|
690
|
+
multiplier?: number;
|
|
691
|
+
maxBackoffMs?: number;
|
|
692
|
+
jitter?: boolean;
|
|
693
|
+
retryableErrors?: string[];
|
|
694
|
+
};
|
|
695
|
+
|
|
696
|
+
deadLetter?: {
|
|
697
|
+
destination: string;
|
|
698
|
+
includeFailureMetadata?: boolean;
|
|
699
|
+
};
|
|
700
|
+
}
|
|
701
|
+
```
|
|
702
|
+
|
|
703
|
+
Dead-letter structural contract:
|
|
704
|
+
|
|
705
|
+
```ts
|
|
706
|
+
export interface StreamFailureEnvelope<T = unknown> {
|
|
707
|
+
caseName: string;
|
|
708
|
+
surface: "stream";
|
|
709
|
+
originalEvent: StreamEvent<T>;
|
|
710
|
+
lastError: { message: string; code?: string; stack?: string };
|
|
711
|
+
attempts: number;
|
|
712
|
+
firstAttemptAt: string;
|
|
713
|
+
lastAttemptAt: string;
|
|
714
|
+
correlationId: string;
|
|
715
|
+
}
|
|
716
|
+
```
|
|
717
|
+
|
|
718
|
+
Normative recovery rules:
|
|
719
|
+
|
|
720
|
+
- `BaseStreamCase` MAY declare `recoveryPolicy(): AppStreamRecoveryPolicy`.
|
|
721
|
+
- `recoveryPolicy()` MUST return deterministic, serializable, side-effect-free data and MUST NOT depend on event payload.
|
|
722
|
+
- `recoveryPolicy()` MUST NOT perform I/O and MUST NOT contain callbacks or runtime-bound closures.
|
|
723
|
+
- `retry.maxAttempts` MUST mean the total number of execution attempts, including the first one. `maxAttempts: 1` means fail-fast.
|
|
724
|
+
- `retryableErrors`, when declared, MUST contain logical, stable error codes. Hosts and apps MUST NOT decide retryability from free-form error messages.
|
|
725
|
+
- When `retryableErrors` is declared, only matching extracted error codes MAY be treated as retryable. Errors without a matching code MUST be treated as non-retryable.
|
|
726
|
+
- `deadLetter.destination` MUST be a logical identifier, not a vendor-specific infrastructure address.
|
|
727
|
+
- Logical dead-letter destinations MUST be bound by the app host, not by the Case and not by `core/`.
|
|
728
|
+
- If a Stream Case does not declare `recoveryPolicy()`, the protocol defines no recovery guarantee for that Case. Any retry, redelivery, or dead-letter behavior is implementation-defined unless declared elsewhere by the app/runtime.
|
|
729
|
+
- If a Stream Case declares `recoveryPolicy()`, the declared recovery semantics become part of the Case contract.
|
|
730
|
+
- The app, as composition root, MUST validate at bootstrap that its chosen runtime can honor the declared recovery semantics before registering the stream surface.
|
|
731
|
+
- The runtime MAY translate the declared policy to platform-specific configuration, but it MUST NOT weaken or discard the declared semantics.
|
|
732
|
+
- If the runtime cannot satisfy the declared semantics, the app MUST refuse to register that stream surface.
|
|
733
|
+
- `StreamFailureEnvelope` is the minimum structural dead-letter shape when failure metadata is emitted.
|
|
734
|
+
- Circuit breaker is outside the canonical `BaseStreamCase` contract in v1. Hosts, providers, or adapters may implement it separately.
|
|
735
|
+
|
|
736
|
+
Recovery flow overview:
|
|
737
|
+
|
|
738
|
+
```mermaid
|
|
739
|
+
flowchart LR
|
|
740
|
+
broker["Broker / Event Source"]:::apps --> host["App Runtime"]:::apps
|
|
741
|
+
host --> handler["handler(event)"]:::surface
|
|
742
|
+
handler --> pipeline["pipeline"]:::surface
|
|
743
|
+
pipeline --> service["_service or _composition"]:::cases
|
|
744
|
+
service -->|success| done["ack / complete"]:::core
|
|
745
|
+
service -->|failure| policy{"recoveryPolicy()?"}:::core
|
|
746
|
+
policy -->|no| fail["runtime-defined failure path"]:::apps
|
|
747
|
+
policy -->|yes| runtime["runtime executes retry / dead-letter semantics"]:::apps
|
|
748
|
+
runtime --> done
|
|
749
|
+
|
|
750
|
+
classDef surface fill:#edf2f7,stroke:#4a5568,color:#1a202c;
|
|
751
|
+
classDef core fill:#dbe9ff,stroke:#2b6cb0,color:#0b2545;
|
|
752
|
+
classDef cases fill:#dff3e4,stroke:#2f855a,color:#0f2f1f;
|
|
753
|
+
classDef apps fill:#ffe2d5,stroke:#c05621,color:#4a1f10;
|
|
754
|
+
```
|
|
755
|
+
|
|
756
|
+
### 6.5 Agentic Surface
|
|
757
|
+
|
|
758
|
+
File:
|
|
759
|
+
|
|
760
|
+
```text
|
|
761
|
+
<case>.agentic.case.ts
|
|
762
|
+
```
|
|
763
|
+
|
|
764
|
+
Purpose:
|
|
765
|
+
|
|
766
|
+
- semantic discovery
|
|
767
|
+
- execution context for agents
|
|
768
|
+
- structured prompt metadata
|
|
769
|
+
- tool exposure
|
|
770
|
+
- policy enforcement
|
|
771
|
+
- RAG hints and retrieval scope
|
|
772
|
+
- MCP integration
|
|
773
|
+
|
|
774
|
+
Base contract: `BaseAgenticCase<TInput, TOutput>`
|
|
775
|
+
|
|
776
|
+
Required members:
|
|
777
|
+
|
|
778
|
+
- `discovery()` — `AgenticDiscovery` (name, description, category, tags, aliases, capabilities, intents)
|
|
779
|
+
- `context()` — `AgenticExecutionContext` (auth, tenant, dependencies, preconditions, constraints)
|
|
780
|
+
- `prompt()` — `AgenticPrompt` (purpose, whenToUse, whenNotToUse, constraints, reasoningHints, expectedOutcome)
|
|
781
|
+
- `tool()` — `AgenticToolContract` (name, description, inputSchema, outputSchema, isMutating, requiresConfirmation, execute)
|
|
782
|
+
|
|
783
|
+
Optional members:
|
|
784
|
+
|
|
785
|
+
- `mcp()` — `AgenticMcpContract` (enabled, name, title, description, metadata) — Case-level MCP exposure config with normative fallback to `tool`
|
|
786
|
+
- `rag()` — `AgenticRagContract` (topics, resources, hints, scope, mode)
|
|
787
|
+
- `policy()` — `AgenticPolicy` (requireConfirmation, requireAuth, requireTenant, riskLevel, executionMode, limits)
|
|
788
|
+
- `examples()` — `AgenticExample[]` (name, description, input, output, notes)
|
|
789
|
+
|
|
790
|
+
Recommended members:
|
|
791
|
+
|
|
792
|
+
- `test()` — validates the agentic surface (definition integrity, tool execution, contract consistency)
|
|
793
|
+
|
|
794
|
+
Utility:
|
|
795
|
+
|
|
796
|
+
- `definition()` — returns the consolidated `AgenticDefinition` object
|
|
797
|
+
- `execute(input)` — shortcut for `tool().execute(input, ctx)`
|
|
798
|
+
- `isMcpEnabled()` — checks MCP readiness
|
|
799
|
+
- `requiresConfirmation()` — checks both policy and tool contract
|
|
800
|
+
- `caseName()` — resolved from discovery or domain fallback
|
|
801
|
+
|
|
802
|
+
Domain derivation:
|
|
803
|
+
|
|
804
|
+
The agentic surface supports an optional connection to `domain.case.ts` via the protected `domain()` method. When provided, the following can be derived from the domain instead of being defined manually:
|
|
805
|
+
|
|
806
|
+
- `domainDescription()` — description
|
|
807
|
+
- `domainCaseName()` — canonical name
|
|
808
|
+
- `domainInputSchema()` — input schema
|
|
809
|
+
- `domainOutputSchema()` — output schema
|
|
810
|
+
- `domainExamples()` — examples (only those with defined output are converted)
|
|
811
|
+
|
|
812
|
+
This reduces semantic duplication and prevents drift between the domain source of truth and the agentic tool contract.
|
|
813
|
+
|
|
814
|
+
Invariants:
|
|
815
|
+
|
|
816
|
+
> The agentic tool contract must execute the canonical Case implementation, not a shadow implementation.
|
|
817
|
+
>
|
|
818
|
+
> When domain derivation is used, the agentic surface consumes from the domain but never overrides canonical execution paths.
|
|
819
|
+
>
|
|
820
|
+
> The agentic surface has its own descriptive grammar (`discovery`, `context`, `prompt`, `tool`, `mcp`, `rag`, `policy`, `examples`). It does not carry execution slots (`_repository`, `_service`, `_composition`) — execution is delegated to `tool.execute()`, which points to the canonical surface implementation.
|
|
821
|
+
|
|
822
|
+
Case-level agentic operability is necessary but not sufficient for app-level
|
|
823
|
+
agentic conformance. An APP host becomes agentic only when it also satisfies the
|
|
824
|
+
registry and runtime responsibilities defined in §8 for `apps/agent/`.
|
|
825
|
+
|
|
826
|
+
Execution policy:
|
|
827
|
+
|
|
828
|
+
> `executionMode` is a declarative execution policy defined by the Case. Agents may consume this field for planning, UX, and interaction flow. However, enforcement must not depend solely on agent cooperation. The primary enforcement responsibility belongs to the runtime, adapter, gateway, or other host execution layer that mediates tool execution. APP does not mandate a specific enforcement mechanism, but implementations must ensure that the declared policy is respected before execution proceeds.
|
|
829
|
+
>
|
|
830
|
+
> Mode semantics:
|
|
831
|
+
>
|
|
832
|
+
> - `suggest-only`: the capability may be suggested or prepared, but execution must not proceed automatically
|
|
833
|
+
> - `manual-approval`: execution requires explicit approval before proceeding
|
|
834
|
+
> - `direct-execution`: execution may proceed without an additional approval step, subject to other policies
|
|
835
|
+
>
|
|
836
|
+
> Policy precedence: when multiple policy fields apply, the more restrictive interpretation prevails.
|
|
837
|
+
|
|
838
|
+
MCP exposure:
|
|
839
|
+
|
|
840
|
+
> `tool` is the canonical contract for agent execution. `mcp` is an optional
|
|
841
|
+
> Case-level MCP exposure configuration with normative fallback to `tool`.
|
|
842
|
+
>
|
|
843
|
+
> When `mcp` is defined, the MCP adapter constructs the exposed contract as follows:
|
|
844
|
+
>
|
|
845
|
+
> - `name`: uses `mcp.name` if provided, otherwise falls back to `tool.name`
|
|
846
|
+
> - `description`: uses `mcp.description` if provided, otherwise falls back to `tool.description`
|
|
847
|
+
> - `title`: uses `mcp.title` if provided; otherwise the adapter may derive a display title from `tool.name`
|
|
848
|
+
> - `inputSchema` and `outputSchema`: always derived from `tool`
|
|
849
|
+
> - `execute`: always delegates to `tool.execute()`
|
|
850
|
+
>
|
|
851
|
+
> `mcp` controls Case-level presence and presentation. It never redefines
|
|
852
|
+
> schemas or execution paths.
|
|
853
|
+
>
|
|
854
|
+
> Case-level `mcp()` metadata is not, by itself, a complete MCP runtime. Full
|
|
855
|
+
> app-level MCP publication is governed by §8 through `apps/agent/`, its
|
|
856
|
+
> registry/runtime responsibilities, and the concrete MCP adapter bound by the
|
|
857
|
+
> host in `_providers`.
|
|
858
|
+
|
|
859
|
+
## 7. Dependencies and Composition
|
|
860
|
+
|
|
861
|
+
A Case may depend on:
|
|
862
|
+
|
|
863
|
+
- `core`
|
|
864
|
+
- `core/shared`
|
|
865
|
+
- its own local `domain.case.ts`
|
|
866
|
+
|
|
867
|
+
Infrastructure concerns such as storage, HTTP, auth, queues, or other runtime services should be accessed through context and, when relevant, through protocol contracts in `core/shared/` or host-selected project abstractions exposed from `packages/`.
|
|
868
|
+
|
|
869
|
+
A Case must not directly import or depend on the internal files of another Case. This rule prohibits structural coupling between Case folders, not cross-case capability invocation.
|
|
870
|
+
|
|
871
|
+
If semantics or reusable code are shared across Cases, they should be promoted to the right layer:
|
|
872
|
+
|
|
873
|
+
- `core/shared` when the shared artifact is a protocol-level contract or structural shape
|
|
874
|
+
- `packages/` when the shared artifact is project-level code selected by hosts
|
|
875
|
+
- a clearer local semantic abstraction where ownership remains explicit when promotion is not yet justified
|
|
876
|
+
|
|
877
|
+
Special rule:
|
|
878
|
+
|
|
879
|
+
- `agentic.case.ts` may reference `api.case.ts` or `stream.case.ts` as the canonical execution entrypoint
|
|
880
|
+
|
|
881
|
+
### 7.1 Cross-Case Composition
|
|
882
|
+
|
|
883
|
+
APP allows both atomic and composed Cases. A composed Case orchestrates other Cases through the registry (`ctx.cases`) without direct imports between Case folders.
|
|
884
|
+
|
|
885
|
+
Canonical internal slots per execution surface:
|
|
886
|
+
|
|
887
|
+
- `handler` — public entrypoint, delegates to the appropriate execution slot
|
|
888
|
+
- `_repository` — persistence and local integrations (no cross-case calls)
|
|
889
|
+
- `_service` — atomic business logic (Case atômico)
|
|
890
|
+
- `_composition` — cross-case orchestration via registry (Case composto)
|
|
891
|
+
|
|
892
|
+
`_service` and `_composition` are mutually exclusive as the primary execution path. `handler` and `_repository` must not contain composition logic.
|
|
893
|
+
|
|
894
|
+
Composition is permitted in execution surfaces: `api.case.ts` and `stream.case.ts`. Direct orchestration from `ui.case.ts`, `web.case.ts`, and `mobile.case.ts` is discouraged. `domain.case.ts` remains isolated from cross-case orchestration. `agentic.case.ts` delegates execution to `tool.execute()` which points to the canonical surface — it does not carry `_service` or `_composition` slots.
|
|
895
|
+
|
|
896
|
+
Per-surface contexts that support composition (`ApiContext`, `StreamContext`) expose `cases?: Dict` for registry-based capability resolution. `AgenticContext` also exposes `cases?: Dict` for tool resolution, but the agentic surface does not use canonical execution slots. Contextual surfaces (`ApiContext`, `UiContext`, `WebContext`, `MobileContext`, `StreamContext`, `AgenticContext`) may also expose `packages?: Dict`, populated by the host from `registry._packages`.
|
|
897
|
+
|
|
898
|
+
## 8. Apps and Registry
|
|
899
|
+
|
|
900
|
+
### 8.1 Apps
|
|
901
|
+
|
|
902
|
+
Each app in `apps/` is a host that consumes Cases. A host is responsible for:
|
|
903
|
+
|
|
904
|
+
- bootstrap (server, framework, lambda handler, etc.)
|
|
905
|
+
- context factory (creating the appropriate per-surface context)
|
|
906
|
+
- registry (declaring which Cases and surfaces are loaded)
|
|
907
|
+
- deployment model (monolith, lambda, edge functions, grouped functions)
|
|
908
|
+
|
|
909
|
+
The protocol defines that `apps/` exists and that each app has an `app.ts` (bootstrap) and a `registry.ts` (Case registration). The protocol does not dictate the internal structure of each app — framework choice, function organization, routing strategy, and deployment model are project decisions.
|
|
910
|
+
|
|
911
|
+
A project typically has multiple apps. Common examples: `backend` (server or API functions), `portal` (customer-facing frontend), `admin` (internal management frontend), `lambdas` (serverless functions), `worker` (background job processor), `agent` (generic agentic host — AI runtime interface exposing tools via MCP or direct invocation).
|
|
912
|
+
|
|
913
|
+
All host apps share the same protocol responsibilities, but their `app.ts` implementations are not expected to be identical. `apps/backend/app.ts`, `apps/portal/app.ts`, `apps/agent/app.ts`, and `apps/worker/app.ts` all play the same semantic role as host entrypoints, yet each adapts bootstrap, routing, tool registration, rendering, or background execution to its runtime.
|
|
914
|
+
|
|
915
|
+
`agent` is the canonical generic host name for app-level agentic runtimes. A
|
|
916
|
+
project may still use names such as `chatbot` when the host is explicitly a
|
|
917
|
+
conversational specialization, but the generic protocol term is `agent`.
|
|
918
|
+
|
|
919
|
+
### 8.2 Registry
|
|
920
|
+
|
|
921
|
+
Each app has its own `registry.ts` that acts as the runtime composition root declaration. The canonical shape is:
|
|
922
|
+
|
|
923
|
+
```ts
|
|
924
|
+
export function createRegistry(config) {
|
|
925
|
+
return {
|
|
926
|
+
_cases: {
|
|
927
|
+
users: {
|
|
928
|
+
user_validate: { api: UserValidateApi },
|
|
929
|
+
user_register: { api: UserRegisterApi, stream: UserRegisterStream },
|
|
930
|
+
},
|
|
931
|
+
},
|
|
932
|
+
|
|
933
|
+
_providers: {
|
|
934
|
+
httpClient: new AxiosHttpAdapter(new AxiosClient(config.http)),
|
|
935
|
+
},
|
|
936
|
+
|
|
937
|
+
_packages: {
|
|
938
|
+
dateUtils: DateUtils,
|
|
939
|
+
designSystem: DesignSystem,
|
|
940
|
+
},
|
|
941
|
+
} as const;
|
|
942
|
+
}
|
|
943
|
+
```
|
|
944
|
+
|
|
945
|
+
Normative import rules for `registry.ts`:
|
|
946
|
+
|
|
947
|
+
- `_cases` imports only from `cases/`
|
|
948
|
+
- `_providers` is the only slot that binds runtime implementations to context properties
|
|
949
|
+
- `_packages` imports only from `packages/`
|
|
950
|
+
|
|
951
|
+
The `_cases` shape remains `domain → case → surfaces`. This same shape feeds `ctx.cases` for cross-case composition.
|
|
952
|
+
|
|
953
|
+
> Runtime registration belongs to each host app. No global `cases/cases.ts` is required for runtime. A project may optionally maintain a `cases/cases.ts` for tooling, documentation, or agent discovery, but no app imports it at runtime.
|
|
954
|
+
>
|
|
955
|
+
> This per-app design ensures zero cross-surface coupling: the backend never loads UI dependencies, the portal never loads API or Stream dependencies. Each app's import graph contains only what it needs.
|
|
956
|
+
>
|
|
957
|
+
> Runtime bindings for stream recovery also belong here. If a Stream Case declares a logical `deadLetter.destination`, the app host is responsible for mapping that logical identifier to the physical destination supported by its runtime.
|
|
958
|
+
|
|
959
|
+
#### 8.2.1 `AgenticRegistry`
|
|
960
|
+
|
|
961
|
+
When an app claims agentic-host conformance, its registry extends the baseline
|
|
962
|
+
`AppRegistry` contract with agentic publication and resolution behavior:
|
|
963
|
+
|
|
964
|
+
```ts
|
|
965
|
+
interface AgenticRegistry extends AppRegistry {
|
|
966
|
+
listAgenticCases(): AgenticCaseRef[];
|
|
967
|
+
getAgenticSurface(ref: AgenticCaseRef): AppCaseSurfaces["agentic"] | undefined;
|
|
968
|
+
instantiateAgentic(ref: AgenticCaseRef, ctx: AgenticContext): BaseAgenticCase<unknown, unknown>;
|
|
969
|
+
buildCatalog(ctx: AgenticContext): AgenticCatalogEntry[];
|
|
970
|
+
resolveTool(toolName: string, ctx: AgenticContext): AgenticCatalogEntry | undefined;
|
|
971
|
+
listMcpEnabledTools(ctx: AgenticContext): AgenticCatalogEntry[];
|
|
972
|
+
}
|
|
973
|
+
```
|
|
974
|
+
|
|
975
|
+
The type names above (`AgenticCaseRef`, `AgenticCatalogEntry`) describe
|
|
976
|
+
normative structural roles. Concrete language bindings may model them
|
|
977
|
+
idiomatically as long as the same responsibilities and resolution semantics are
|
|
978
|
+
preserved.
|
|
979
|
+
|
|
980
|
+
Normative semantics:
|
|
981
|
+
|
|
982
|
+
- `AgenticRegistry` MUST extend `AppRegistry`; it MUST NOT introduce a parallel source of truth for tools
|
|
983
|
+
- `listAgenticCases()` MUST only enumerate Cases that are actually registered in `_cases` with an `agentic` surface
|
|
984
|
+
- `instantiateAgentic()` MUST create fresh surface instances with the current `AgenticContext`; registries MUST NOT reuse boot-time runtime instances
|
|
985
|
+
- `buildCatalog()` MUST derive publication from the registered `agentic` surfaces and their declared definitions
|
|
986
|
+
- `resolveTool()` MUST apply the MCP fallback rules from §6.5 when mapping external tool names
|
|
987
|
+
- `listMcpEnabledTools()` MUST return only the entries whose MCP exposure is enabled or otherwise eligible under the host's publication strategy
|
|
988
|
+
|
|
989
|
+
#### 8.2.2 MCP adapter contract
|
|
990
|
+
|
|
991
|
+
When an app claims complete agentic-host conformance, APP also standardizes a
|
|
992
|
+
host-to-transport MCP boundary. The protocol contract belongs in `core/shared/`
|
|
993
|
+
(for example, `core/shared/app_mcp_contracts.ts`), while the concrete transport
|
|
994
|
+
implementation belongs in `registry._providers`.
|
|
995
|
+
|
|
996
|
+
Illustrative structural roles:
|
|
997
|
+
|
|
998
|
+
```ts
|
|
999
|
+
interface AppMcpServer {
|
|
1000
|
+
serverInfo(): AppMcpServerInfo;
|
|
1001
|
+
initialize(params?, parent?): Promise<AppMcpInitializeResult>;
|
|
1002
|
+
listTools(parent?): Promise<AppMcpToolDescriptor[]>;
|
|
1003
|
+
callTool(name: string, args: unknown, parent?): Promise<AppMcpCallResult>;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
abstract class BaseAppMcpAdapter {
|
|
1007
|
+
readonly transport: string;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
abstract class BaseAppMcpProcessAdapter extends BaseAppMcpAdapter {
|
|
1011
|
+
abstract serve(server: AppMcpServer): Promise<void>;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
interface AppMcpHttpExchange {
|
|
1015
|
+
method: string;
|
|
1016
|
+
path: string;
|
|
1017
|
+
headers: Record<string, string | undefined>;
|
|
1018
|
+
bodyText?: string;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
interface AppMcpHttpResponse {
|
|
1022
|
+
statusCode: number;
|
|
1023
|
+
headers?: Record<string, string>;
|
|
1024
|
+
bodyText?: string;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
abstract class BaseAppMcpHttpAdapter extends BaseAppMcpAdapter {
|
|
1028
|
+
readonly endpointPath: string;
|
|
1029
|
+
abstract handle(exchange, server: AppMcpServer): Promise<AppMcpHttpResponse | undefined>;
|
|
1030
|
+
}
|
|
1031
|
+
```
|
|
1032
|
+
|
|
1033
|
+
Normative semantics:
|
|
1034
|
+
|
|
1035
|
+
- abstract MCP contracts MAY live in `core/shared/` when they have protocol-level meaning
|
|
1036
|
+
- concrete MCP transport implementations MUST be bound through `registry._providers`
|
|
1037
|
+
- if more than one MCP transport is present, the host SHOULD bind them as named providers such as `registry._providers.mcpAdapters.stdio` and `registry._providers.mcpAdapters.http`
|
|
1038
|
+
- MCP transport providers MUST NOT introduce a parallel source of truth for catalogs or execution
|
|
1039
|
+
- `tools/list` and `tools/call` MUST be derived from the same `AgenticRegistry` catalog and canonical execution path used by the host
|
|
1040
|
+
- plain host HTTP routes do not count as a remote MCP boundary unless they implement MCP transport semantics
|
|
1041
|
+
- host apps remain free to choose MCP transport details such as stdio or Streamable HTTP
|
|
1042
|
+
|
|
1043
|
+
### 8.3 Context, `ctx.cases`, and `ctx.packages`
|
|
1044
|
+
|
|
1045
|
+
The host is responsible for creating per-surface contexts. When creating contextual surfaces, the host maps the unified registry into the context:
|
|
1046
|
+
|
|
1047
|
+
```ts
|
|
1048
|
+
function createApiContext(): ApiContext {
|
|
1049
|
+
return {
|
|
1050
|
+
correlationId: generateId(),
|
|
1051
|
+
logger,
|
|
1052
|
+
cases: buildCasesFromRegistry(registry._cases),
|
|
1053
|
+
httpClient: registry._providers.httpClient,
|
|
1054
|
+
packages: registry._packages,
|
|
1055
|
+
};
|
|
1056
|
+
}
|
|
1057
|
+
```
|
|
1058
|
+
|
|
1059
|
+
Normative rules:
|
|
1060
|
+
|
|
1061
|
+
- `ctx.cases` is derived from `registry._cases`
|
|
1062
|
+
- direct context properties (`ctx.httpClient`, `ctx.cache`, etc.) are derived from `registry._providers`
|
|
1063
|
+
- `ctx.packages` is derived from `registry._packages`
|
|
1064
|
+
- `cases/` MUST NOT import `packages/` directly
|
|
1065
|
+
- contextual Case surfaces MUST consume shared project libraries through `ctx.packages`
|
|
1066
|
+
|
|
1067
|
+
This means `ctx.cases` contains only the Cases and surfaces registered in that specific app, and `ctx.packages` contains only the packages that app chose to expose. A backend can expose API and Stream composition plus selected packages. A portal can expose `web` or `ui` cases plus a design system package. A mobile host can expose `mobile` or `ui` cases plus app-selected packages. Composition resolves only within the app's boundary.
|
|
1068
|
+
|
|
1069
|
+
`domain.case.ts` remains outside this runtime flow because it receives no context. Package consumption via context is a rule for contextual surfaces, not for pure domain code.
|
|
1070
|
+
|
|
1071
|
+
For `apps/agent/`, `AgenticContext` MUST also be materialized per execution from
|
|
1072
|
+
the same registry slots: `ctx.cases` from `_cases`, direct runtime properties
|
|
1073
|
+
from `_providers`, and shared project libraries from `_packages`.
|
|
1074
|
+
|
|
1075
|
+
### 8.4 Agentic Hosts
|
|
1076
|
+
|
|
1077
|
+
An app becomes an agentic host when it publishes agentic capabilities as
|
|
1078
|
+
governed runtime artifacts. The canonical generic host name is `apps/agent/`.
|
|
1079
|
+
|
|
1080
|
+
APP recognizes three agentic-host publication profiles:
|
|
1081
|
+
|
|
1082
|
+
- **local agentic conformance** — the host exposes an HTTP agentic boundary plus an MCP local transport such as `stdio`
|
|
1083
|
+
- **remote agentic conformance** — the host exposes an HTTP agentic boundary plus a remote MCP boundary over a network transport such as Streamable HTTP
|
|
1084
|
+
- **cross-client complete conformance** — the host exposes HTTP, local MCP, and remote MCP from the same catalog and canonical execution path
|
|
1085
|
+
|
|
1086
|
+
Plain HTTP routes for health, catalog inspection, or ad hoc tool execution do
|
|
1087
|
+
not count as a remote MCP boundary unless they implement MCP transport
|
|
1088
|
+
semantics.
|
|
1089
|
+
|
|
1090
|
+
When a host claims agentic conformance, its `app.ts` MUST expose or clearly
|
|
1091
|
+
implement the following responsibilities:
|
|
1092
|
+
|
|
1093
|
+
- `bootstrap(config)` — load the registry, bind runtime adapters, and start the agentic runtime for the chosen deployment model
|
|
1094
|
+
- `createAgenticContext(parent?)` — materialize a fresh `AgenticContext` for one execution using the current registry state
|
|
1095
|
+
- `buildAgentCatalog(parent?)` — build the host-visible catalog from the registered `agentic` surfaces
|
|
1096
|
+
- `buildSystemPrompt(parent?)` — compose the host-level prompt automatically from the registered tool prompt fragments and runtime policy
|
|
1097
|
+
- `resolveTool(toolName, parent?)` — resolve an external tool name to a published capability using `AgenticRegistry`
|
|
1098
|
+
- `executeTool(toolName, input, parent?)` — enforce policy, confirmation, and runtime checks before delegating to canonical execution
|
|
1099
|
+
- `initializeMcp(params?, parent?)` — negotiate the MCP session using the host-supported protocol version and declared capabilities
|
|
1100
|
+
- `listMcpTools(parent?)` — publish the MCP-visible subset of the catalog using the Case-level fallback rules from §6.5
|
|
1101
|
+
- `listMcpResources(parent?)` — publish MCP resources that expose the richer semantic projection of the catalog
|
|
1102
|
+
- `readMcpResource(uri, parent?)` — read the full projected semantic payload for one published MCP resource
|
|
1103
|
+
- `callMcpTool(name, input, parent?)` — execute an MCP tool call through the same policy and canonical execution path used by the host
|
|
1104
|
+
- `publishMcp()` — hand the host MCP contract to the concrete adapter registered in `_providers`
|
|
1105
|
+
- `validateAgenticRuntime()` — reject startup or publication when the host cannot honor declared agentic semantics
|
|
1106
|
+
|
|
1107
|
+
Recommended optional responsibilities:
|
|
1108
|
+
|
|
1109
|
+
- `startAgentHost()` — separate transport/runtime startup from bootstrap when the environment benefits from it
|
|
1110
|
+
- `startMcpTransport()` — separate MCP transport startup from bootstrap when the environment benefits from it
|
|
1111
|
+
|
|
1112
|
+
Normative runtime rules for agentic hosts:
|
|
1113
|
+
|
|
1114
|
+
- hosts MUST project the complete `AgenticDefinition` automatically from `AgenticRegistry`; publication MUST be registry-driven, not hand-curated per tool
|
|
1115
|
+
- published tools MUST resolve back to canonical execution via `ctx.cases`
|
|
1116
|
+
- hosts MUST enforce `requireConfirmation` and `executionMode`; enforcement MUST NOT rely on agent cooperation alone
|
|
1117
|
+
- exposed tool names MUST be unique after applying the MCP fallback resolution rules
|
|
1118
|
+
- hosts MUST reject tool definitions whose declared semantics cannot be honored by the runtime
|
|
1119
|
+
- MCP tool descriptors MUST include a semantic summary derived from Case-level `prompt`, `discovery`, `context`, and runtime policy data
|
|
1120
|
+
- the full projected `AgenticDefinition` MUST remain available through a richer host publication channel such as MCP resources and/or a host catalog mirror
|
|
1121
|
+
- the global system prompt MUST be assembled automatically from the registered tool prompt fragments and runtime policy; it MAY add host-level coordination, but it MUST NOT override per-Case semantics
|
|
1122
|
+
- HTTP and MCP boundaries MUST be derived from the same host catalog and policy enforcement rules
|
|
1123
|
+
- MCP adapters MUST be concrete providers bound in `_providers`; host runtimes MUST NOT embed transport-specific MCP logic in `core/shared/`
|
|
1124
|
+
- complete MCP publication MUST support the lifecycle/operation surface required by the chosen MCP transport, including `initialize`, `tools/list`, `resources/list`, `resources/read`, and `tools/call`
|
|
1125
|
+
- local agentic conformance MUST keep `stdio` startup separate from aggregate HTTP dev/process orchestration
|
|
1126
|
+
- remote agentic conformance MUST expose a dedicated MCP endpoint over the chosen transport; REST-style host routes are insufficient
|
|
1127
|
+
- cross-client complete conformance MUST keep local and remote MCP publication aligned to the same catalog, policy, and structured error semantics
|
|
1128
|
+
|
|
1129
|
+
### 8.5 Deployment models
|
|
1130
|
+
|
|
1131
|
+
The deployment model changes how `app.ts` consumes the registry, not the Cases themselves. APP supports any model — the choice is the project's.
|
|
1132
|
+
|
|
1133
|
+
#### Monolith
|
|
1134
|
+
|
|
1135
|
+
A single process loads all Cases from the registry, collects transport bindings (`router()`, `subscribe()`), and mounts a unified server.
|
|
1136
|
+
|
|
1137
|
+
```ts
|
|
1138
|
+
// apps/backend/app.ts — monolith
|
|
1139
|
+
import { registry } from "./registry";
|
|
1140
|
+
|
|
1141
|
+
for (const [domain, cases] of Object.entries(registry._cases)) {
|
|
1142
|
+
for (const [caseName, surfaces] of Object.entries(cases)) {
|
|
1143
|
+
if (surfaces.api) {
|
|
1144
|
+
const ctx = createApiContext();
|
|
1145
|
+
const instance = new surfaces.api(ctx);
|
|
1146
|
+
if (instance.router) instance.router();
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
}
|
|
1150
|
+
```
|
|
1151
|
+
|
|
1152
|
+
#### Lambda / Edge — one function per feature
|
|
1153
|
+
|
|
1154
|
+
Each feature (domain) becomes a single lambda function containing all Cases of that domain. The lambda resolves which Case to execute based on the incoming route or event type.
|
|
1155
|
+
|
|
1156
|
+
A feature is a domain group (e.g. `users`). The lambda "users" contains `user_validate` + `user_register`. On cold start, the lambda builds a route table from the `router()` of each Case in that feature. On invocation, it matches the path and delegates to the correct `handler()`.
|
|
1157
|
+
|
|
1158
|
+
```ts
|
|
1159
|
+
// apps/lambdas/app.ts — one lambda per feature
|
|
1160
|
+
import { registry } from "./registry";
|
|
1161
|
+
|
|
1162
|
+
export function createFeatureHttpHandler(featureName: string) {
|
|
1163
|
+
const featureCases = registry[featureName];
|
|
1164
|
+
const routeTable = buildRouteTable(featureCases);
|
|
1165
|
+
|
|
1166
|
+
return async (event) => {
|
|
1167
|
+
const route = routeTable.find(r => matches(r, event));
|
|
1168
|
+
const ctx = createApiContext(featureName);
|
|
1169
|
+
const instance = new route.CaseClass(ctx);
|
|
1170
|
+
return instance.handler(parseInput(event));
|
|
1171
|
+
};
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
// Each export becomes a lambda in the deploy config
|
|
1175
|
+
export const usersHttp = createFeatureHttpHandler("users");
|
|
1176
|
+
```
|
|
1177
|
+
|
|
1178
|
+
For stream events, the same model applies: the lambda builds a subscription map from `subscribe()` of each stream Case, and dispatches by event type.
|
|
1179
|
+
|
|
1180
|
+
```ts
|
|
1181
|
+
export function createFeatureStreamHandler(featureName: string) {
|
|
1182
|
+
const featureCases = registry[featureName];
|
|
1183
|
+
const subscriptionMap = buildSubscriptionMap(featureCases);
|
|
1184
|
+
|
|
1185
|
+
return async (sqsEvent) => {
|
|
1186
|
+
for (const record of sqsEvent.Records) {
|
|
1187
|
+
const event = JSON.parse(record.body);
|
|
1188
|
+
const entry = subscriptionMap.get(event.type);
|
|
1189
|
+
const ctx = createStreamContext(featureName);
|
|
1190
|
+
const instance = new entry.CaseClass(ctx);
|
|
1191
|
+
await instance.handler(event);
|
|
1192
|
+
}
|
|
1193
|
+
};
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
export const usersStream = createFeatureStreamHandler("users");
|
|
1197
|
+
```
|
|
1198
|
+
|
|
1199
|
+
#### Lambda — one function per Case
|
|
1200
|
+
|
|
1201
|
+
Each Case becomes its own lambda. Simpler routing (one path per function) but more deploy units.
|
|
1202
|
+
|
|
1203
|
+
```ts
|
|
1204
|
+
// Inline function — no feature grouping needed
|
|
1205
|
+
import { UserRegisterApi } from "../../cases/users/user_register/user_register.api.case";
|
|
1206
|
+
|
|
1207
|
+
export const handler = async (event) => {
|
|
1208
|
+
const ctx = createApiContext();
|
|
1209
|
+
const instance = new UserRegisterApi(ctx);
|
|
1210
|
+
return instance.handler(JSON.parse(event.body));
|
|
1211
|
+
};
|
|
1212
|
+
```
|
|
1213
|
+
|
|
1214
|
+
#### Hybrid / Grouped functions
|
|
1215
|
+
|
|
1216
|
+
Any combination is valid. A project might group high-traffic domains into dedicated lambdas and keep low-traffic domains in a single shared lambda. The Cases are unchanged — only the host wiring differs.
|
|
1217
|
+
|
|
1218
|
+
### 8.5 Transport bindings
|
|
1219
|
+
|
|
1220
|
+
Cases declare transport bindings through optional public methods:
|
|
1221
|
+
|
|
1222
|
+
- API surface: `router()` returns framework-specific route definitions (HTTP method, path, handler). The host collects these to mount routes.
|
|
1223
|
+
- Stream surface: `subscribe()` returns framework-specific subscription definitions (topic, queue, handler). The host collects these to mount event listeners.
|
|
1224
|
+
|
|
1225
|
+
These methods are **declarative** — they describe what the Case exposes, not how the framework implements it. The return type is `unknown` because the specific shape depends on the framework (Hono, Express, SQS, Kafka, etc.).
|
|
1226
|
+
|
|
1227
|
+
In a monolith, the host iterates all Cases and mounts all bindings at startup. In a lambda-per-feature model, the host uses these bindings to build route tables and subscription maps during cold start. In a lambda-per-Case model, the bindings may be unused since the function URL or event source mapping handles routing externally.
|
|
1228
|
+
|
|
1229
|
+
> `handler()` is the capability entrypoint — it receives business input and returns business result. `router()` and `subscribe()` are transport bindings — they bridge the framework to the handler. Transport bindings delegate to `handler()` and never contain business logic.
|
|
1230
|
+
|
|
1231
|
+
## 9. Conformance
|
|
1232
|
+
|
|
1233
|
+
An implementation is APP-aligned when it preserves these invariants:
|
|
1234
|
+
|
|
1235
|
+
1. Case is the primary unit of ownership.
|
|
1236
|
+
2. Cases are structurally predictable.
|
|
1237
|
+
3. Domain semantics stay pure.
|
|
1238
|
+
4. Cross-case coupling remains explicit and minimal.
|
|
1239
|
+
5. Agentic execution maps back to canonical code paths.
|
|
1240
|
+
6. If a surface exposes a self-contained conformance check, it uses the canonical `test(): Promise<void>` shape. Providing `test()` on every surface is strongly recommended as APP good practice, but it is not required for baseline APP alignment. See §9.1 for the canonical test model.
|
|
1241
|
+
|
|
1242
|
+
Formal conformance tooling is planned, but not yet defined.
|
|
1243
|
+
|
|
1244
|
+
APP allows stricter operational profiles on top of baseline alignment. A skill,
|
|
1245
|
+
host workflow, scaffold policy, or project convention may require additional
|
|
1246
|
+
support artifacts or stronger process discipline as long as canonical APP
|
|
1247
|
+
grammar and semantics are preserved.
|
|
1248
|
+
|
|
1249
|
+
Examples of stricter operational-profile requirements include:
|
|
1250
|
+
|
|
1251
|
+
- requiring `<case>.us.md` for new Cases or significant semantic changes
|
|
1252
|
+
- requiring `test()` on every surface created or modified by an agent
|
|
1253
|
+
- requiring explicit inspect/validate/review loops before task completion
|
|
1254
|
+
|
|
1255
|
+
These stricter profiles narrow how work is produced and validated; they do not
|
|
1256
|
+
change the APP protocol grammar itself.
|
|
1257
|
+
|
|
1258
|
+
### 9.1 Canonical Test Model
|
|
1259
|
+
|
|
1260
|
+
When a Case provides `test()`, that method is its self-contained proof of correctness. It is not a unit test in the xUnit sense — it is a **conformance test** that validates the surface contract from inside the Case itself.
|
|
1261
|
+
|
|
1262
|
+
**Recommendation:** APP strongly recommends that every surface provide `test()`, but leaves that choice to the project and the developer. When adopted, the test belongs to the Case, not to the test runner. A Case that passes `test()` is asserting that its own contract is internally consistent and that its public capabilities produce expected results for known inputs. The protocol does not mandate a test runner, assertion library, or isolation framework — `test()` throws on failure, returns on success.
|
|
1263
|
+
|
|
1264
|
+
**Canonical structure — phased, integrated, single method.**
|
|
1265
|
+
|
|
1266
|
+
When present, a `test()` method is organized in sequential phases. Each phase validates a layer of the Case. All phases run inside the same `test()` call. There is no separate test file — the test lives inside the surface class.
|
|
1267
|
+
|
|
1268
|
+
The phases follow the surface's own layering: structural integrity first, then individual slot behavior, then integrated execution. The exact phases depend on the surface type, but the pattern is consistent:
|
|
1269
|
+
|
|
1270
|
+
**Domain surface phases:**
|
|
1271
|
+
|
|
1272
|
+
```text
|
|
1273
|
+
Phase 1 — Definition integrity
|
|
1274
|
+
definition() returns valid caseName, description, inputSchema, outputSchema
|
|
1275
|
+
|
|
1276
|
+
Phase 2 — Validation behavior
|
|
1277
|
+
validate() accepts known-valid input without throwing
|
|
1278
|
+
validate() rejects known-invalid input (throws)
|
|
1279
|
+
|
|
1280
|
+
Phase 3 — Examples consistency
|
|
1281
|
+
examples() entries with valid=true pass validate()
|
|
1282
|
+
examples() entries with errors have expected output shape
|
|
1283
|
+
```
|
|
1284
|
+
|
|
1285
|
+
**API surface phases:**
|
|
1286
|
+
|
|
1287
|
+
```text
|
|
1288
|
+
Phase 1 — Slot availability
|
|
1289
|
+
At least one of _service or _composition is implemented
|
|
1290
|
+
_validate and _authorize are callable (if present)
|
|
1291
|
+
|
|
1292
|
+
Phase 2 — Validation and authorization
|
|
1293
|
+
_validate() accepts valid input without throwing
|
|
1294
|
+
_validate() rejects invalid input (throws)
|
|
1295
|
+
_authorize() completes without error (if present)
|
|
1296
|
+
|
|
1297
|
+
Phase 3 — Integrated execution
|
|
1298
|
+
handler() with known-valid input returns { success: true, data }
|
|
1299
|
+
data has expected shape
|
|
1300
|
+
```
|
|
1301
|
+
|
|
1302
|
+
**Stream surface phases:**
|
|
1303
|
+
|
|
1304
|
+
```text
|
|
1305
|
+
Phase 1 — Subscription shape
|
|
1306
|
+
subscribe() returns expected topic/binding
|
|
1307
|
+
|
|
1308
|
+
Phase 2 — Pipeline slots
|
|
1309
|
+
_consume() extracts payload correctly (if present)
|
|
1310
|
+
_service() processes extracted data (if present)
|
|
1311
|
+
|
|
1312
|
+
Phase 3 — Integrated execution
|
|
1313
|
+
handler() with synthetic event completes without error
|
|
1314
|
+
```
|
|
1315
|
+
|
|
1316
|
+
**UI surface phases:**
|
|
1317
|
+
|
|
1318
|
+
```text
|
|
1319
|
+
Phase 1 — View renders
|
|
1320
|
+
view() returns a non-null result
|
|
1321
|
+
|
|
1322
|
+
Phase 2 — Slot behavior
|
|
1323
|
+
_viewmodel() produces a valid presentation model (if present)
|
|
1324
|
+
_service() performs expected state transformations (if present)
|
|
1325
|
+
|
|
1326
|
+
Phase 3 — Integrated round-trip
|
|
1327
|
+
setState() + view() produces updated output
|
|
1328
|
+
```
|
|
1329
|
+
|
|
1330
|
+
**Agentic surface phases:**
|
|
1331
|
+
|
|
1332
|
+
```text
|
|
1333
|
+
Phase 1 — Definition integrity
|
|
1334
|
+
validateDefinition() passes (discovery, tool, prompt are consistent)
|
|
1335
|
+
|
|
1336
|
+
Phase 2 — Contract consistency
|
|
1337
|
+
tool.inputSchema matches expected shape
|
|
1338
|
+
prompt.purpose is non-empty
|
|
1339
|
+
mcp, if enabled, has valid name
|
|
1340
|
+
|
|
1341
|
+
Phase 3 — Tool execution
|
|
1342
|
+
tool.execute() with known input produces expected output
|
|
1343
|
+
```
|
|
1344
|
+
|
|
1345
|
+
**Key constraints:**
|
|
1346
|
+
|
|
1347
|
+
- If present, `test()` creates its own data internally — no external fixtures or dependency injection.
|
|
1348
|
+
- If present, `test()` uses `throw` for assertion — no dependency on assertion libraries.
|
|
1349
|
+
- If present, `test()` validates the surface as a whole — phases are conceptual organization, not separate methods.
|
|
1350
|
+
- If present, `test()` is synchronous in intent: phases run sequentially, each building on the previous.
|
|
1351
|
+
- A Case with multiple layers (e.g., API with `_validate`, `_authorize`, `_composition`) should test all layers in a single `test()` call. This is the "phased but integrated" model.
|
|
1352
|
+
- The protocol does not prescribe mocking. If a slot needs infrastructure (e.g., `_repository` needs a DB), the test may skip that slot or use a minimal in-memory substitute. The goal is contract verification, not full integration testing.
|
|
1353
|
+
|
|
1354
|
+
## 10. Non-Goals
|
|
1355
|
+
|
|
1356
|
+
APP does not currently define:
|
|
1357
|
+
|
|
1358
|
+
- a standard runtime
|
|
1359
|
+
- a framework-specific implementation
|
|
1360
|
+
- a package manager model
|
|
1361
|
+
- a production-ready MCP server format
|
|
1362
|
+
- an importable runtime library — APP is a protocol, not a framework. Base classes in `core/` are illustrative reference implementations, not runtime dependencies. Projects adopt the protocol by following the canonical structure, not by importing a package.
|
|
1363
|
+
- a CLI or scaffold tool — Case generation is delegated to AI-powered tooling (skill `/app`) and project-specific agent workflows, which adapt to the project's language and context. Static templates cannot match this flexibility.
|
|
1364
|
+
- lifecycle hooks (`onInit`, `onDestroy`, etc.) — Case lifecycle is managed by the host, not by the protocol. Lambda hosts have no lifecycle; monolith hosts may implement lifecycle management as host-specific infrastructure. The protocol intentionally does not prescribe lifecycle contracts to avoid coupling Cases to a specific hosting model.
|
|
1365
|
+
|
|
1366
|
+
## 11. Naming
|
|
1367
|
+
|
|
1368
|
+
Canonical terminology (resolved in Q11):
|
|
1369
|
+
|
|
1370
|
+
- **AI-First Programming** — the paradigm (conceptual layer)
|
|
1371
|
+
- **APP** (AI-First Programming Protocol) — the protocol (normative layer)
|
|
1372
|
+
|
|
1373
|
+
Positioning statement: *"APP is the protocol for the AI-First Programming paradigm."*
|
|
1374
|
+
|
|
1375
|
+
Terms evaluated and rejected:
|
|
1376
|
+
|
|
1377
|
+
- `AI-Driven Programming` — saturated by market/methodology usage (AWS AI-DLC, Softtek, IntechOpen, ACM); implies AI conducts the process rather than being a design priority
|
|
1378
|
+
- `AI-Oriented Programming` — in computational tradition, `-oriented` designates the system's structural atom (object in OOP, service in SOA); in APP the atom is the Case, not AI
|
|
1379
|
+
|
|
1380
|
+
APP does not claim exclusivity over the paradigm. It is the first normative expression, not the only one possible.
|
|
1381
|
+
|
|
1382
|
+
## 12. Open Work
|
|
1383
|
+
|
|
1384
|
+
### Closed in v0.0.4
|
|
1385
|
+
|
|
1386
|
+
- ~~Standalone example in `examples/typescript/`~~ — Task Manager project with 4 Cases, 5 surfaces each, 3 app hosts, `run.ts` with 18 passing tests
|
|
1387
|
+
- ~~Automated test runner for illustrative code~~ — `examples/typescript/run.ts` boots all hosts, runs full scenario, invokes `test()` on all 18 surfaces
|
|
1388
|
+
- ~~Validate stream recovery conformance~~ — `recoveryPolicy()` declarative contract (Q10), `StreamFailureEnvelope` structural shape, bootstrap compatibility validation, host-level dead-letter binding, rejection, and failure-envelope emission are now illustrated in `src/` and `examples/typescript/`
|
|
1389
|
+
- ~~Document cross-surface composition~~ — covered by `_composition` (Q6) + `_publish`/`subscribe` (core). Saga/outbox patterns are host-level implementation, not protocol scope
|
|
1390
|
+
- ~~Define `packages/` layer~~ — four canonical layers `packages/ → core/ → cases/ → apps/` (Q9), `AppRegistry` with `_cases`, `_providers`, `_packages`, `ctx.packages` in all contexts, plus initial static boundary validation via `npm run validate:boundaries`
|
|
1391
|
+
- ~~Validate an agentic host consuming agentic surfaces end-to-end~~ — the first end-to-end example used the legacy name `apps/chatbot/`; the canonical generic host name is now `apps/agent/`, which keeps the same protocol role while broadening beyond chat-specific runtimes
|
|
1392
|
+
- ~~Document APP-induced architectural properties~~ — canonical architectural properties, diagrams, and conformance levels are now formalized in `spec.md`, `docs/architectural-properties.md`, `docs/architecture.md`, and `docs/conformance.md`
|
|
1393
|
+
|
|
1394
|
+
### Closed in v0.0.5
|
|
1395
|
+
|
|
1396
|
+
- ~~Formalize AI-First Programming as the paradigm layer behind APP~~ — §2 now closes the paradigm hierarchy, declarations, and operational resolutions
|
|
1397
|
+
- ~~Clarify host-defined infrastructure scope~~ — `app_infra_contracts` is now explicitly framed as minimal illustrative integration contracts, while `auth`, `db`, and `queue` remain host-defined
|
|
1398
|
+
- ~~Define optional support artifact `<case>.us.md` and allow stricter operational profiles~~ — APP now recognizes `<case>.us.md` as a canonical support artifact and explicitly allows stricter operational profiles such as skill `/app`
|
|
1399
|
+
- ~~Realign baseline conformance around recommended `test()` with stricter profile-level enforcement~~ — baseline APP now treats `test()` as strongly recommended, while operational profiles may require it
|
|
1400
|
+
- ~~Publish the first canonical `/app` skill HML~~ — `docs/skill_v3.md` and mirrored `.codex` / `.claude` entrypoints now operationalize the current protocol version for agents
|
|
1401
|
+
|
|
1402
|
+
### Closed in v0.0.6
|
|
1403
|
+
|
|
1404
|
+
- ~~Promote the refined `/app` revision as the active operational skill~~ — `docs/skill_v5.md` became the current `/app` revision in that cycle, and mirrored `.codex` / `.claude` entrypoints were aligned to it
|
|
1405
|
+
|
|
1406
|
+
### Closed in v0.0.7
|
|
1407
|
+
|
|
1408
|
+
- ~~Package `/app` as an installable host-discoverable skill~~ — `skills/app/` now contains the canonical installable source, `.codex/skills/app/` and `.claude/skills/app/` are synchronized host mirrors, and `tooling/skill-app/` provides an npm/npx installer package
|
|
1409
|
+
|
|
1410
|
+
### Closed in v0.0.8
|
|
1411
|
+
|
|
1412
|
+
- ~~Publish a complete onboarding and operational documentation set for APP~~ — `README.md`, `docs/getting-started.md`, installation, usage, protocol, examples, FAQ, glossary, and spec-reading guides now provide a full path from first contact to operational use
|
|
1413
|
+
|
|
1414
|
+
### Closed in v0.0.9
|
|
1415
|
+
|
|
1416
|
+
- ~~Harden skill `/app` beyond HML into a stable operational release~~ — the canonical skill now includes a stronger onboarding entry point, concrete Case examples, and host-ready lifecycle docs aligned with the installable package
|
|
1417
|
+
- ~~Expand installable host coverage and lifecycle operations for `/app`~~ — the npm installer now supports install, update, upgrade, downgrade, and uninstall across Codex, Claude, GitHub Copilot, Windsurf, and generic Agent Skills-compatible hosts
|
|
1418
|
+
|
|
1419
|
+
### Closed in v0.0.10
|
|
1420
|
+
|
|
1421
|
+
- ~~Improve `/app` package discoverability and conversion~~ — the skill and npm package now explain APP as the protocol layer of the AI-First Programming Paradigm, present clearer result-oriented descriptions, and include faster prompt-based onboarding in the package and operational docs
|
|
1422
|
+
|
|
1423
|
+
### Closed in v0.0.11
|
|
1424
|
+
|
|
1425
|
+
- ~~Document APP project bootstrap, host-app addition, package introduction, and incremental adoption~~ — the working draft, `/app` skill, and active docs now explain how to start a new APP project, add host apps, classify additions across `cases/`, `packages/`, and `core/shared/`, and adopt APP incrementally inside existing projects
|
|
1426
|
+
|
|
1427
|
+
### Closed in v0.0.12
|
|
1428
|
+
|
|
1429
|
+
- ~~Formalize app-level agentic host contracts~~ — the working draft now defines `AgenticRegistry`, `apps/agent/` as the canonical generic host name for agentic apps, and the minimum runtime responsibilities of an agentic `app.ts`
|
|
1430
|
+
- ~~Close documentation drift between case-level and app-level agentic operability~~ — the architecture, philosophy, host-app, conformance, glossary, FAQ, and `/app` docs now distinguish clearly between `agentic.case.ts` and the host/runtime responsibilities required for a fully agentic app
|
|
1431
|
+
|
|
1432
|
+
### Closed in v1.0.0
|
|
1433
|
+
|
|
1434
|
+
- ~~Cut the first stable APP release~~ — the repository, skill package, release tooling, runtime headers, and canonical docs are now aligned on `v1.0.0`, and the first stable specification snapshot is published under `versions/v1.0.0.md`
|
|
1435
|
+
- ~~Expose CLI version discovery for the installable `/app` package~~ — `@app-protocol/skill-app` now supports `version`, `--version`, and `-v`, with canonical installer docs aligned to those entrypoints
|
|
1436
|
+
|
|
1437
|
+
### Closed in v1.1.2
|
|
1438
|
+
|
|
1439
|
+
- ~~Formalize visual surface specialization without collapsing platform contracts~~ — `ui` remains the general visual surface while `web` and `mobile` are now canonical specialized visual surfaces that share APP grammar without being forced into the same concrete contract
|
|
1440
|
+
- ~~Install the APP spec alongside the canonical `/app` skill~~ — the installable skill package now ships `spec.md` together with `SKILL.md`, and the operational profile requires agents to read both before acting
|
|
1441
|
+
- ~~Add release-visible version drift checks for the installable spec and active skill revision~~ — release verification now checks `docs/skill_v6.md`, the installable skill manifest requirements, and the synchronized `skills/app/spec.md`
|
|
1442
|
+
|
|
1443
|
+
### Open after v1.1.6
|
|
1444
|
+
|
|
1445
|
+
- Strengthen static conformance tooling beyond the initial boundary validator (`validate:boundaries`) with deeper registry and import-graph checks
|
|
1446
|
+
- Define and implement formal conformance tooling/workflow across static, review-level, and runtime checks
|
|
1447
|
+
- Generalize agent-host runtime validation beyond the reference implementations so the working-draft host contract becomes reusable conformance tooling
|
|
1448
|
+
|
|
1449
|
+
### v1.1.x+ — Materialization and Validation
|
|
1450
|
+
|
|
1451
|
+
- Generalize the reference MCP-capable agent host into reusable Canonical Capability Adapter tooling for APP projects
|
|
1452
|
+
- End-to-end agentic proof-of-concept (real agent consuming APP project tools without glue code)
|
|
1453
|
+
- Multi-language reference implementations (Python, Go, .NET) generated and maintained by skill `/app`
|
|
1454
|
+
- Real-world adoption cases with measurable gains
|