dojo.md 0.1.0 → 0.2.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/courses/GENERATION_LOG.md +72 -0
- package/courses/api-error-handling/course.yaml +16 -0
- package/courses/api-error-handling/scenarios/level-1/error-response-format.yaml +131 -0
- package/courses/api-error-handling/scenarios/level-1/http-status-codes-basics.yaml +90 -0
- package/courses/api-error-handling/scenarios/level-1/rate-limiting-basics.yaml +135 -0
- package/courses/api-error-handling/scenarios/level-1/request-validation-errors.yaml +208 -0
- package/courses/api-error-handling/scenarios/level-2/circuit-breaker-pattern.yaml +189 -0
- package/courses/api-error-handling/scenarios/level-2/idempotency-retry-logic.yaml +159 -0
- package/courses/api-error-handling/scenarios/level-2/rfc-7807-problem-details.yaml +178 -0
- package/courses/api-error-handling/scenarios/level-2/webhook-error-handling.yaml +211 -0
- package/courses/api-error-handling/scenarios/level-3/distributed-tracing-errors.yaml +275 -0
- package/courses/aws-lambda-debugging/course.yaml +11 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/api-gateway-integration.yaml +71 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/cloudwatch-logs-basics.yaml +64 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/cold-start-basics.yaml +70 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/environment-variable-issues.yaml +72 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/first-debugging-shift.yaml +73 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/handler-import-errors.yaml +71 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/iam-permission-errors.yaml +68 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/invocation-errors.yaml +72 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/lambda-timeout-errors.yaml +65 -0
- package/courses/aws-lambda-debugging/scenarios/level-1/memory-and-oom.yaml +70 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/async-invocation-failures.yaml +72 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/cold-start-optimization.yaml +76 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/dynamodb-streams-debugging.yaml +70 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/intermediate-debugging-shift.yaml +71 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/lambda-concurrency-management.yaml +70 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/lambda-layers-debugging.yaml +76 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/sam-local-debugging.yaml +74 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/sqs-event-source.yaml +72 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/vpc-networking-issues.yaml +71 -0
- package/courses/aws-lambda-debugging/scenarios/level-2/xray-tracing.yaml +62 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/advanced-debugging-shift.yaml +72 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/container-image-lambda.yaml +79 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/cross-account-invocation.yaml +72 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/eventbridge-patterns.yaml +79 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/iac-deployment-debugging.yaml +68 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/kinesis-stream-processing.yaml +64 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/lambda-at-edge.yaml +64 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/lambda-extensions-debugging.yaml +67 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/powertools-observability.yaml +79 -0
- package/courses/aws-lambda-debugging/scenarios/level-3/step-functions-debugging.yaml +80 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/cost-optimization-strategy.yaml +67 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/expert-debugging-shift.yaml +62 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/incident-management-serverless.yaml +61 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/multi-region-serverless.yaml +67 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/observability-platform-design.yaml +71 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/serverless-architecture-design.yaml +64 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/serverless-data-architecture.yaml +66 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/serverless-migration-strategy.yaml +65 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/serverless-security-design.yaml +60 -0
- package/courses/aws-lambda-debugging/scenarios/level-4/serverless-testing-strategy.yaml +62 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/board-serverless-strategy.yaml +63 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/consulting-serverless-adoption.yaml +57 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/industry-serverless-patterns.yaml +62 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/ma-serverless-integration.yaml +75 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/master-debugging-shift.yaml +61 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/organizational-serverless-transformation.yaml +65 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/regulatory-serverless.yaml +61 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/serverless-economics.yaml +65 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/serverless-future-technology.yaml +66 -0
- package/courses/aws-lambda-debugging/scenarios/level-5/serverless-platform-design.yaml +71 -0
- package/courses/docker-container-debugging/course.yaml +11 -0
- package/courses/docker-container-debugging/scenarios/level-1/container-exit-codes.yaml +59 -0
- package/courses/docker-container-debugging/scenarios/level-1/container-networking-basics.yaml +69 -0
- package/courses/docker-container-debugging/scenarios/level-1/docker-logs-debugging.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-1/dockerfile-build-failures.yaml +71 -0
- package/courses/docker-container-debugging/scenarios/level-1/environment-variable-issues.yaml +74 -0
- package/courses/docker-container-debugging/scenarios/level-1/first-debugging-shift.yaml +70 -0
- package/courses/docker-container-debugging/scenarios/level-1/image-pull-failures.yaml +68 -0
- package/courses/docker-container-debugging/scenarios/level-1/port-mapping-issues.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-1/resource-limits-oom.yaml +70 -0
- package/courses/docker-container-debugging/scenarios/level-1/volume-mount-problems.yaml +66 -0
- package/courses/docker-container-debugging/scenarios/level-2/container-health-checks.yaml +73 -0
- package/courses/docker-container-debugging/scenarios/level-2/docker-compose-debugging.yaml +66 -0
- package/courses/docker-container-debugging/scenarios/level-2/docker-exec-debugging.yaml +71 -0
- package/courses/docker-container-debugging/scenarios/level-2/image-layer-optimization.yaml +81 -0
- package/courses/docker-container-debugging/scenarios/level-2/intermediate-debugging-shift.yaml +73 -0
- package/courses/docker-container-debugging/scenarios/level-2/logging-and-log-rotation.yaml +76 -0
- package/courses/docker-container-debugging/scenarios/level-2/multi-stage-build-debugging.yaml +76 -0
- package/courses/docker-container-debugging/scenarios/level-2/network-debugging-tools.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-2/pid1-signal-handling.yaml +71 -0
- package/courses/docker-container-debugging/scenarios/level-2/security-scanning-basics.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-3/advanced-debugging-shift.yaml +77 -0
- package/courses/docker-container-debugging/scenarios/level-3/buildkit-optimization.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-3/container-filesystem-debugging.yaml +70 -0
- package/courses/docker-container-debugging/scenarios/level-3/container-security-hardening.yaml +74 -0
- package/courses/docker-container-debugging/scenarios/level-3/disk-space-management.yaml +74 -0
- package/courses/docker-container-debugging/scenarios/level-3/docker-api-automation.yaml +72 -0
- package/courses/docker-container-debugging/scenarios/level-3/docker-daemon-issues.yaml +73 -0
- package/courses/docker-container-debugging/scenarios/level-3/docker-in-docker-ci.yaml +69 -0
- package/courses/docker-container-debugging/scenarios/level-3/overlay-network-debugging.yaml +70 -0
- package/courses/docker-container-debugging/scenarios/level-3/production-container-ops.yaml +71 -0
- package/courses/docker-container-debugging/scenarios/level-4/cicd-pipeline-design.yaml +66 -0
- package/courses/docker-container-debugging/scenarios/level-4/container-monitoring-observability.yaml +63 -0
- package/courses/docker-container-debugging/scenarios/level-4/container-orchestration-strategy.yaml +62 -0
- package/courses/docker-container-debugging/scenarios/level-4/container-performance-engineering.yaml +64 -0
- package/courses/docker-container-debugging/scenarios/level-4/container-security-architecture.yaml +66 -0
- package/courses/docker-container-debugging/scenarios/level-4/enterprise-image-management.yaml +58 -0
- package/courses/docker-container-debugging/scenarios/level-4/expert-debugging-shift.yaml +63 -0
- package/courses/docker-container-debugging/scenarios/level-4/incident-response-containers.yaml +70 -0
- package/courses/docker-container-debugging/scenarios/level-4/multi-environment-management.yaml +65 -0
- package/courses/docker-container-debugging/scenarios/level-4/stateful-service-containers.yaml +65 -0
- package/courses/docker-container-debugging/scenarios/level-5/board-infrastructure-strategy.yaml +58 -0
- package/courses/docker-container-debugging/scenarios/level-5/consulting-container-strategy.yaml +61 -0
- package/courses/docker-container-debugging/scenarios/level-5/container-platform-architecture.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-5/container-platform-economics.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-5/container-technology-evolution.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-5/disaster-recovery-containers.yaml +66 -0
- package/courses/docker-container-debugging/scenarios/level-5/industry-container-patterns.yaml +71 -0
- package/courses/docker-container-debugging/scenarios/level-5/master-debugging-shift.yaml +62 -0
- package/courses/docker-container-debugging/scenarios/level-5/organizational-transformation.yaml +67 -0
- package/courses/docker-container-debugging/scenarios/level-5/regulatory-compliance-containers.yaml +61 -0
- package/courses/github-actions-cicd/course.yaml +10 -0
- package/courses/github-actions-cicd/scenarios/level-1/actions-and-runners.yaml +58 -0
- package/courses/github-actions-cicd/scenarios/level-1/basic-workflow-syntax.yaml +52 -0
- package/courses/github-actions-cicd/scenarios/level-1/branch-protection-checks.yaml +63 -0
- package/courses/github-actions-cicd/scenarios/level-1/environment-variables-secrets.yaml +65 -0
- package/courses/github-actions-cicd/scenarios/level-1/first-cicd-shift.yaml +62 -0
- package/courses/github-actions-cicd/scenarios/level-1/job-dependencies-outputs.yaml +62 -0
- package/courses/github-actions-cicd/scenarios/level-1/simple-ci-pipeline.yaml +57 -0
- package/courses/github-actions-cicd/scenarios/level-1/workflow-debugging.yaml +90 -0
- package/courses/github-actions-cicd/scenarios/level-1/workflow-status-notifications.yaml +59 -0
- package/courses/github-actions-cicd/scenarios/level-1/workflow-triggers.yaml +56 -0
- package/courses/github-actions-cicd/scenarios/level-2/concurrency-control.yaml +58 -0
- package/courses/github-actions-cicd/scenarios/level-2/conditional-execution.yaml +60 -0
- package/courses/github-actions-cicd/scenarios/level-2/custom-actions-development.yaml +55 -0
- package/courses/github-actions-cicd/scenarios/level-2/dependency-caching.yaml +58 -0
- package/courses/github-actions-cicd/scenarios/level-2/deployment-workflows.yaml +61 -0
- package/courses/github-actions-cicd/scenarios/level-2/github-packages-publishing.yaml +59 -0
- package/courses/github-actions-cicd/scenarios/level-2/intermediate-cicd-shift.yaml +68 -0
- package/courses/github-actions-cicd/scenarios/level-2/matrix-builds.yaml +59 -0
- package/courses/github-actions-cicd/scenarios/level-2/reusable-workflows.yaml +61 -0
- package/courses/github-actions-cicd/scenarios/level-2/workflow-cost-optimization.yaml +61 -0
- package/courses/github-actions-cicd/scenarios/level-3/advanced-cicd-shift.yaml +64 -0
- package/courses/github-actions-cicd/scenarios/level-3/compliance-automation.yaml +68 -0
- package/courses/github-actions-cicd/scenarios/level-3/docker-action-development.yaml +65 -0
- package/courses/github-actions-cicd/scenarios/level-3/github-environments.yaml +65 -0
- package/courses/github-actions-cicd/scenarios/level-3/monorepo-ci.yaml +68 -0
- package/courses/github-actions-cicd/scenarios/level-3/oidc-cloud-deployments.yaml +55 -0
- package/courses/github-actions-cicd/scenarios/level-3/release-automation.yaml +61 -0
- package/courses/github-actions-cicd/scenarios/level-3/security-hardening.yaml +63 -0
- package/courses/github-actions-cicd/scenarios/level-3/self-hosted-runners.yaml +60 -0
- package/courses/github-actions-cicd/scenarios/level-3/workflow-optimization.yaml +59 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-data-architecture.yaml +63 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-economics-roi.yaml +63 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-executive-communication.yaml +58 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-incident-response.yaml +60 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-org-design.yaml +59 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-platform-architecture.yaml +63 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-training-program.yaml +65 -0
- package/courses/github-actions-cicd/scenarios/level-4/cicd-vendor-evaluation.yaml +59 -0
- package/courses/github-actions-cicd/scenarios/level-4/enterprise-cicd-governance.yaml +55 -0
- package/courses/github-actions-cicd/scenarios/level-4/expert-cicd-shift.yaml +60 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-ai-future.yaml +63 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-behavioral-science.yaml +70 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-board-strategy.yaml +56 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-consulting-engagement.yaml +61 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-industry-benchmarks.yaml +63 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-ma-integration.yaml +73 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-product-development.yaml +68 -0
- package/courses/github-actions-cicd/scenarios/level-5/cicd-regulatory-landscape.yaml +72 -0
- package/courses/github-actions-cicd/scenarios/level-5/comprehensive-cicd-system.yaml +66 -0
- package/courses/github-actions-cicd/scenarios/level-5/master-cicd-shift.yaml +76 -0
- package/courses/github-pr-review/scenarios/level-2/api-change-review.yaml +82 -0
- package/courses/github-pr-review/scenarios/level-2/automated-review-tooling.yaml +53 -0
- package/courses/github-pr-review/scenarios/level-2/cross-team-review.yaml +61 -0
- package/courses/github-pr-review/scenarios/level-2/intermediate-review-shift.yaml +66 -0
- package/courses/github-pr-review/scenarios/level-2/performance-review-patterns.yaml +99 -0
- package/courses/github-pr-review/scenarios/level-2/review-disagreement-resolution.yaml +64 -0
- package/courses/github-pr-review/scenarios/level-2/review-metrics-analysis.yaml +63 -0
- package/courses/github-pr-review/scenarios/level-2/review-turnaround-sla.yaml +54 -0
- package/courses/github-pr-review/scenarios/level-2/stacked-pr-review.yaml +65 -0
- package/courses/github-pr-review/scenarios/level-3/advanced-review-shift.yaml +65 -0
- package/courses/github-pr-review/scenarios/level-3/ai-powered-review.yaml +58 -0
- package/courses/github-pr-review/scenarios/level-3/compliance-review-process.yaml +64 -0
- package/courses/github-pr-review/scenarios/level-3/cross-functional-review.yaml +60 -0
- package/courses/github-pr-review/scenarios/level-3/incident-driven-review.yaml +63 -0
- package/courses/github-pr-review/scenarios/level-3/large-scale-review-operations.yaml +55 -0
- package/courses/github-pr-review/scenarios/level-3/monorepo-review-process.yaml +68 -0
- package/courses/github-pr-review/scenarios/level-3/review-automation-platform.yaml +61 -0
- package/courses/github-pr-review/scenarios/level-3/review-culture-design.yaml +62 -0
- package/courses/github-pr-review/scenarios/level-3/review-data-pipeline.yaml +62 -0
- package/courses/github-pr-review/scenarios/level-4/enterprise-review-operations.yaml +61 -0
- package/courses/github-pr-review/scenarios/level-4/expert-review-shift.yaml +62 -0
- package/courses/github-pr-review/scenarios/level-4/review-data-architecture.yaml +69 -0
- package/courses/github-pr-review/scenarios/level-4/review-economics-roi.yaml +63 -0
- package/courses/github-pr-review/scenarios/level-4/review-executive-communication.yaml +61 -0
- package/courses/github-pr-review/scenarios/level-4/review-incident-postmortem.yaml +69 -0
- package/courses/github-pr-review/scenarios/level-4/review-org-design.yaml +62 -0
- package/courses/github-pr-review/scenarios/level-4/review-platform-architecture.yaml +64 -0
- package/courses/github-pr-review/scenarios/level-4/review-training-program.yaml +66 -0
- package/courses/github-pr-review/scenarios/level-4/review-vendor-evaluation.yaml +76 -0
- package/courses/github-pr-review/scenarios/level-5/comprehensive-review-system.yaml +68 -0
- package/courses/github-pr-review/scenarios/level-5/master-review-shift.yaml +73 -0
- package/courses/github-pr-review/scenarios/level-5/review-ai-future.yaml +69 -0
- package/courses/github-pr-review/scenarios/level-5/review-behavioral-science.yaml +66 -0
- package/courses/github-pr-review/scenarios/level-5/review-board-strategy.yaml +62 -0
- package/courses/github-pr-review/scenarios/level-5/review-consulting-engagement.yaml +62 -0
- package/courses/github-pr-review/scenarios/level-5/review-devtools-product.yaml +71 -0
- package/courses/github-pr-review/scenarios/level-5/review-industry-benchmarks.yaml +64 -0
- package/courses/github-pr-review/scenarios/level-5/review-ma-integration.yaml +76 -0
- package/courses/github-pr-review/scenarios/level-5/review-regulatory-landscape.yaml +78 -0
- package/courses/kubernetes-deployment-troubleshooting/course.yaml +12 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/configmap-secret-issues.yaml +69 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/crashloopbackoff.yaml +68 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/deployment-rollout.yaml +56 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/first-troubleshooting-shift.yaml +65 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/health-probe-failures.yaml +70 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/imagepullbackoff.yaml +57 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/kubectl-debugging-basics.yaml +56 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/oomkilled.yaml +70 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/pending-pods.yaml +68 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-1/service-not-reachable.yaml +66 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/dns-resolution-failures.yaml +63 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/helm-deployment-failures.yaml +63 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/hpa-scaling-issues.yaml +62 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/ingress-routing-issues.yaml +63 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/init-container-failures.yaml +63 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/intermediate-troubleshooting-shift.yaml +66 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/network-policy-blocking.yaml +67 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/persistent-volume-issues.yaml +69 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/rbac-permission-denied.yaml +57 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-2/resource-quota-limits.yaml +64 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/advanced-troubleshooting-shift.yaml +69 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/cluster-upgrade-failures.yaml +71 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/gitops-drift-detection.yaml +62 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/job-cronjob-failures.yaml +67 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/monitoring-alerting-gaps.yaml +64 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/multi-container-debugging.yaml +68 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/node-pressure-evictions.yaml +70 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/pod-disruption-budgets.yaml +59 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/service-mesh-debugging.yaml +64 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-3/statefulset-troubleshooting.yaml +69 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/capacity-planning.yaml +65 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/cost-optimization.yaml +57 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/disaster-recovery-design.yaml +56 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/executive-communication.yaml +62 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/expert-troubleshooting-shift.yaml +65 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/incident-management-process.yaml +59 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/multi-cluster-operations.yaml +62 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/multi-tenancy-design.yaml +55 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/platform-engineering.yaml +59 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-4/security-hardening.yaml +58 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/behavioral-science.yaml +62 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/board-strategy.yaml +61 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/cloud-native-future.yaml +65 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/comprehensive-platform.yaml +57 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/consulting-engagement.yaml +62 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/industry-benchmarks.yaml +58 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/ma-integration.yaml +62 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/master-troubleshooting-shift.yaml +73 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/product-development.yaml +65 -0
- package/courses/kubernetes-deployment-troubleshooting/scenarios/level-5/regulatory-compliance.yaml +76 -0
- package/courses/mysql-query-optimization/course.yaml +11 -0
- package/courses/mysql-query-optimization/scenarios/level-1/buffer-pool-basics.yaml +65 -0
- package/courses/mysql-query-optimization/scenarios/level-1/explain-basics.yaml +66 -0
- package/courses/mysql-query-optimization/scenarios/level-1/first-optimization-shift.yaml +78 -0
- package/courses/mysql-query-optimization/scenarios/level-1/innodb-index-fundamentals.yaml +68 -0
- package/courses/mysql-query-optimization/scenarios/level-1/join-basics.yaml +66 -0
- package/courses/mysql-query-optimization/scenarios/level-1/n-plus-one-queries.yaml +67 -0
- package/courses/mysql-query-optimization/scenarios/level-1/query-rewriting-basics.yaml +66 -0
- package/courses/mysql-query-optimization/scenarios/level-1/select-star-problems.yaml +68 -0
- package/courses/mysql-query-optimization/scenarios/level-1/slow-query-diagnosis.yaml +65 -0
- package/courses/mysql-query-optimization/scenarios/level-1/where-clause-optimization.yaml +65 -0
- package/courses/mysql-query-optimization/scenarios/level-2/buffer-pool-tuning.yaml +64 -0
- package/courses/mysql-query-optimization/scenarios/level-2/composite-index-design.yaml +71 -0
- package/courses/mysql-query-optimization/scenarios/level-2/covering-and-invisible-indexes.yaml +69 -0
- package/courses/mysql-query-optimization/scenarios/level-2/cte-and-window-functions.yaml +78 -0
- package/courses/mysql-query-optimization/scenarios/level-2/intermediate-optimization-shift.yaml +68 -0
- package/courses/mysql-query-optimization/scenarios/level-2/join-optimization.yaml +67 -0
- package/courses/mysql-query-optimization/scenarios/level-2/performance-schema-analysis.yaml +69 -0
- package/courses/mysql-query-optimization/scenarios/level-2/query-optimizer-hints.yaml +74 -0
- package/courses/mysql-query-optimization/scenarios/level-2/subquery-optimization.yaml +70 -0
- package/courses/mysql-query-optimization/scenarios/level-2/write-optimization.yaml +63 -0
- package/courses/mysql-query-optimization/scenarios/level-3/advanced-optimization-shift.yaml +71 -0
- package/courses/mysql-query-optimization/scenarios/level-3/connection-management.yaml +67 -0
- package/courses/mysql-query-optimization/scenarios/level-3/full-text-search.yaml +77 -0
- package/courses/mysql-query-optimization/scenarios/level-3/json-optimization.yaml +87 -0
- package/courses/mysql-query-optimization/scenarios/level-3/lock-contention-analysis.yaml +68 -0
- package/courses/mysql-query-optimization/scenarios/level-3/monitoring-alerting.yaml +63 -0
- package/courses/mysql-query-optimization/scenarios/level-3/online-schema-changes.yaml +79 -0
- package/courses/mysql-query-optimization/scenarios/level-3/partitioning-strategies.yaml +83 -0
- package/courses/mysql-query-optimization/scenarios/level-3/query-profiling-deep-dive.yaml +84 -0
- package/courses/mysql-query-optimization/scenarios/level-3/replication-optimization.yaml +66 -0
- package/courses/mysql-query-optimization/scenarios/level-4/aurora-vs-rds-evaluation.yaml +61 -0
- package/courses/mysql-query-optimization/scenarios/level-4/data-architecture.yaml +62 -0
- package/courses/mysql-query-optimization/scenarios/level-4/database-migration-planning.yaml +59 -0
- package/courses/mysql-query-optimization/scenarios/level-4/enterprise-governance.yaml +50 -0
- package/courses/mysql-query-optimization/scenarios/level-4/executive-communication.yaml +54 -0
- package/courses/mysql-query-optimization/scenarios/level-4/expert-optimization-shift.yaml +67 -0
- package/courses/mysql-query-optimization/scenarios/level-4/high-availability-architecture.yaml +60 -0
- package/courses/mysql-query-optimization/scenarios/level-4/optimizer-internals.yaml +62 -0
- package/courses/mysql-query-optimization/scenarios/level-4/performance-sla-design.yaml +52 -0
- package/courses/mysql-query-optimization/scenarios/level-4/read-replica-scaling.yaml +51 -0
- package/courses/mysql-query-optimization/scenarios/level-5/ai-database-future.yaml +45 -0
- package/courses/mysql-query-optimization/scenarios/level-5/behavioral-science.yaml +44 -0
- package/courses/mysql-query-optimization/scenarios/level-5/benchmark-design.yaml +47 -0
- package/courses/mysql-query-optimization/scenarios/level-5/board-strategy.yaml +48 -0
- package/courses/mysql-query-optimization/scenarios/level-5/comprehensive-platform.yaml +49 -0
- package/courses/mysql-query-optimization/scenarios/level-5/consulting-engagement.yaml +52 -0
- package/courses/mysql-query-optimization/scenarios/level-5/ma-database-integration.yaml +47 -0
- package/courses/mysql-query-optimization/scenarios/level-5/master-optimization-shift.yaml +56 -0
- package/courses/mysql-query-optimization/scenarios/level-5/product-development.yaml +48 -0
- package/courses/mysql-query-optimization/scenarios/level-5/regulatory-compliance.yaml +48 -0
- package/courses/postgresql-query-optimization/course.yaml +11 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/explain-analyze-basics.yaml +80 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/first-optimization-shift.yaml +77 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/index-fundamentals.yaml +76 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/join-basics.yaml +73 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/n-plus-one-queries.yaml +62 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/query-rewriting-basics.yaml +69 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/select-star-problems.yaml +69 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/slow-query-diagnosis.yaml +63 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/vacuum-and-statistics.yaml +62 -0
- package/courses/postgresql-query-optimization/scenarios/level-1/where-clause-optimization.yaml +74 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/autovacuum-tuning.yaml +76 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/composite-index-design.yaml +81 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/covering-indexes.yaml +74 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/cte-optimization.yaml +83 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/intermediate-optimization-shift.yaml +66 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/join-optimization.yaml +72 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/partial-and-expression-indexes.yaml +75 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/query-planner-settings.yaml +62 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/subquery-optimization.yaml +67 -0
- package/courses/postgresql-query-optimization/scenarios/level-2/window-function-optimization.yaml +63 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/advanced-optimization-shift.yaml +71 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/connection-pooling.yaml +60 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/full-text-search-optimization.yaml +66 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/jsonb-optimization.yaml +88 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/lock-contention-analysis.yaml +80 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/materialized-view-optimization.yaml +73 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/parallel-query-execution.yaml +74 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/partitioning-strategies.yaml +71 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/specialized-index-types.yaml +67 -0
- package/courses/postgresql-query-optimization/scenarios/level-3/write-optimization.yaml +65 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/data-architecture-analytics.yaml +64 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/database-executive-communication.yaml +64 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/database-migration-planning.yaml +57 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/enterprise-database-governance.yaml +52 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/expert-optimization-shift.yaml +73 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/high-availability-architecture.yaml +62 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/optimizer-internals.yaml +69 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/performance-sla-design.yaml +58 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/read-replica-optimization.yaml +62 -0
- package/courses/postgresql-query-optimization/scenarios/level-4/vendor-evaluation.yaml +73 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/comprehensive-database-system.yaml +70 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-ai-future.yaml +81 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-behavioral-science.yaml +63 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-board-strategy.yaml +77 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-consulting-engagement.yaml +61 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-industry-benchmarks.yaml +64 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-ma-integration.yaml +71 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-product-development.yaml +72 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/database-regulatory-landscape.yaml +76 -0
- package/courses/postgresql-query-optimization/scenarios/level-5/master-optimization-shift.yaml +66 -0
- package/courses/rest-api-error-handling/course.yaml +11 -0
- package/courses/rest-api-error-handling/scenarios/level-1/authentication-errors.yaml +71 -0
- package/courses/rest-api-error-handling/scenarios/level-1/content-negotiation-errors.yaml +63 -0
- package/courses/rest-api-error-handling/scenarios/level-1/error-logging-basics.yaml +63 -0
- package/courses/rest-api-error-handling/scenarios/level-1/error-response-format.yaml +58 -0
- package/courses/rest-api-error-handling/scenarios/level-1/first-error-handling-shift.yaml +67 -0
- package/courses/rest-api-error-handling/scenarios/level-1/http-status-codes.yaml +46 -0
- package/courses/rest-api-error-handling/scenarios/level-1/not-found-errors.yaml +52 -0
- package/courses/rest-api-error-handling/scenarios/level-1/rate-limiting-errors.yaml +56 -0
- package/courses/rest-api-error-handling/scenarios/level-1/request-validation-errors.yaml +59 -0
- package/courses/rest-api-error-handling/scenarios/level-1/server-error-handling.yaml +55 -0
- package/courses/rest-api-error-handling/scenarios/level-2/api-versioning-errors.yaml +66 -0
- package/courses/rest-api-error-handling/scenarios/level-2/batch-request-errors.yaml +61 -0
- package/courses/rest-api-error-handling/scenarios/level-2/circuit-breaker-pattern.yaml +52 -0
- package/courses/rest-api-error-handling/scenarios/level-2/error-code-taxonomy.yaml +62 -0
- package/courses/rest-api-error-handling/scenarios/level-2/error-monitoring-alerting.yaml +53 -0
- package/courses/rest-api-error-handling/scenarios/level-2/intermediate-error-shift.yaml +69 -0
- package/courses/rest-api-error-handling/scenarios/level-2/pagination-errors.yaml +66 -0
- package/courses/rest-api-error-handling/scenarios/level-2/retry-and-idempotency.yaml +60 -0
- package/courses/rest-api-error-handling/scenarios/level-2/rfc7807-problem-details.yaml +60 -0
- package/courses/rest-api-error-handling/scenarios/level-2/webhook-error-handling.yaml +55 -0
- package/courses/rest-api-error-handling/scenarios/level-3/advanced-error-shift.yaml +72 -0
- package/courses/rest-api-error-handling/scenarios/level-3/api-gateway-errors.yaml +71 -0
- package/courses/rest-api-error-handling/scenarios/level-3/async-api-errors.yaml +67 -0
- package/courses/rest-api-error-handling/scenarios/level-3/caching-error-scenarios.yaml +65 -0
- package/courses/rest-api-error-handling/scenarios/level-3/chaos-engineering-apis.yaml +62 -0
- package/courses/rest-api-error-handling/scenarios/level-3/database-error-handling.yaml +79 -0
- package/courses/rest-api-error-handling/scenarios/level-3/distributed-error-propagation.yaml +63 -0
- package/courses/rest-api-error-handling/scenarios/level-3/error-budgets-sre.yaml +61 -0
- package/courses/rest-api-error-handling/scenarios/level-3/error-correlation.yaml +58 -0
- package/courses/rest-api-error-handling/scenarios/level-3/graphql-vs-rest-errors.yaml +73 -0
- package/courses/rest-api-error-handling/scenarios/level-4/compliance-error-handling.yaml +65 -0
- package/courses/rest-api-error-handling/scenarios/level-4/enterprise-error-governance.yaml +62 -0
- package/courses/rest-api-error-handling/scenarios/level-4/error-analytics-platform.yaml +65 -0
- package/courses/rest-api-error-handling/scenarios/level-4/error-cost-optimization.yaml +63 -0
- package/courses/rest-api-error-handling/scenarios/level-4/error-executive-communication.yaml +60 -0
- package/courses/rest-api-error-handling/scenarios/level-4/error-handling-architecture.yaml +67 -0
- package/courses/rest-api-error-handling/scenarios/level-4/error-org-design.yaml +68 -0
- package/courses/rest-api-error-handling/scenarios/level-4/error-sla-design.yaml +65 -0
- package/courses/rest-api-error-handling/scenarios/level-4/error-training-program.yaml +61 -0
- package/courses/rest-api-error-handling/scenarios/level-4/expert-error-shift.yaml +63 -0
- package/courses/rest-api-error-handling/scenarios/level-5/comprehensive-error-system.yaml +68 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-ai-future.yaml +75 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-behavioral-science.yaml +73 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-board-strategy.yaml +60 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-consulting-engagement.yaml +58 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-industry-benchmarks.yaml +72 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-ma-integration.yaml +68 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-product-development.yaml +66 -0
- package/courses/rest-api-error-handling/scenarios/level-5/error-regulatory-landscape.yaml +80 -0
- package/courses/rest-api-error-handling/scenarios/level-5/master-error-shift.yaml +73 -0
- package/courses/terraform-infrastructure-setup/course.yaml +11 -0
- package/courses/terraform-infrastructure-setup/scenarios/level-1/terraform-init-errors.yaml +72 -0
- package/dist/cli/commands/add.d.ts.map +1 -1
- package/dist/cli/commands/add.js +6 -5
- package/dist/cli/commands/add.js.map +1 -1
- package/dist/cli/commands/generate.d.ts.map +1 -1
- package/dist/cli/commands/generate.js +4 -0
- package/dist/cli/commands/generate.js.map +1 -1
- package/dist/cli/commands/list.d.ts.map +1 -1
- package/dist/cli/commands/list.js +6 -18
- package/dist/cli/commands/list.js.map +1 -1
- package/dist/cli/commands/train.d.ts.map +1 -1
- package/dist/cli/commands/train.js +18 -18
- package/dist/cli/commands/train.js.map +1 -1
- package/dist/cli/index.js +93 -55
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/run-demo.js +2 -1
- package/dist/cli/run-demo.js.map +1 -1
- package/dist/cli/setup.d.ts +18 -0
- package/dist/cli/setup.d.ts.map +1 -0
- package/dist/cli/setup.js +154 -0
- package/dist/cli/setup.js.map +1 -0
- package/dist/engine/agent-bridge.d.ts +5 -2
- package/dist/engine/agent-bridge.d.ts.map +1 -1
- package/dist/engine/agent-bridge.js +36 -9
- package/dist/engine/agent-bridge.js.map +1 -1
- package/dist/engine/loader.d.ts +21 -0
- package/dist/engine/loader.d.ts.map +1 -1
- package/dist/engine/loader.js +54 -1
- package/dist/engine/loader.js.map +1 -1
- package/dist/engine/training-loop.d.ts.map +1 -1
- package/dist/engine/training-loop.js +1 -0
- package/dist/engine/training-loop.js.map +1 -1
- package/dist/engine/training.d.ts.map +1 -1
- package/dist/engine/training.js +1 -0
- package/dist/engine/training.js.map +1 -1
- package/dist/generator/skill-generator.d.ts +1 -1
- package/dist/generator/skill-generator.d.ts.map +1 -1
- package/dist/generator/skill-generator.js +21 -2
- package/dist/generator/skill-generator.js.map +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +11 -26
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/session-manager.d.ts +9 -4
- package/dist/mcp/session-manager.d.ts.map +1 -1
- package/dist/mcp/session-manager.js +65 -28
- package/dist/mcp/session-manager.js.map +1 -1
- package/dist/types/schemas.d.ts +38 -13
- package/dist/types/schemas.d.ts.map +1 -1
- package/dist/types/schemas.js +9 -5
- package/dist/types/schemas.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-vendor-evaluation
|
|
3
|
+
level: 4
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Evaluate CI/CD platforms — conduct a thorough comparison of GitHub Actions vs GitLab CI vs CircleCI vs Jenkins for enterprise adoption"
|
|
7
|
+
tags: [github, actions, vendor-evaluation, GitLab, CircleCI, Jenkins, expert]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
Your company is evaluating CI/CD platforms for a 500-engineer
|
|
13
|
+
organization. The current state: 60% use GitHub Actions, 25% use
|
|
14
|
+
Jenkins (legacy), and 15% use CircleCI (from an acquisition). The
|
|
15
|
+
CTO wants to consolidate to a single platform within 12 months.
|
|
16
|
+
|
|
17
|
+
Evaluation criteria (weighted by importance):
|
|
18
|
+
1. Feature completeness (25%): Workflow capabilities, integrations
|
|
19
|
+
2. Security (20%): OIDC, secret management, supply chain, audit
|
|
20
|
+
3. Scalability (15%): Concurrent jobs, runner management, performance
|
|
21
|
+
4. Cost (15%): Per-minute pricing, storage, data transfer
|
|
22
|
+
5. Developer experience (15%): YAML syntax, debugging, documentation
|
|
23
|
+
6. Enterprise features (10%): SSO, audit logs, compliance, governance
|
|
24
|
+
|
|
25
|
+
Platforms to evaluate:
|
|
26
|
+
A. GitHub Actions (current primary)
|
|
27
|
+
B. GitLab CI/CD (considered for integrated DevOps platform)
|
|
28
|
+
C. CircleCI (current secondary from acquisition)
|
|
29
|
+
D. Jenkins (current legacy, considering modern alternatives)
|
|
30
|
+
|
|
31
|
+
Scale requirements:
|
|
32
|
+
- 500 engineers, 200 repos
|
|
33
|
+
- 2,000 workflow runs per day
|
|
34
|
+
- Multi-cloud deployment (AWS, GCP, Azure)
|
|
35
|
+
- SOC 2 + PCI DSS compliance required
|
|
36
|
+
- Must support self-hosted runners for compliance
|
|
37
|
+
- Monorepo support needed for 3 teams
|
|
38
|
+
|
|
39
|
+
Task: Conduct the complete vendor evaluation. Write: the evaluation
|
|
40
|
+
matrix (score each platform on each criterion with justification),
|
|
41
|
+
the total cost of ownership analysis (3-year TCO including migration),
|
|
42
|
+
the risk assessment for each platform (vendor lock-in, outage history,
|
|
43
|
+
feature roadmap), the migration plan from the current 3-platform state
|
|
44
|
+
to the recommended single platform, and the executive recommendation
|
|
45
|
+
with decision rationale. Include the pilot program design.
|
|
46
|
+
|
|
47
|
+
assertions:
|
|
48
|
+
- type: llm_judge
|
|
49
|
+
criteria: "Evaluation matrix is rigorous — each platform is scored on all 6 criteria with specific justifications (not generic), scores reflect real platform differences, and the weights are applied correctly to produce a weighted total"
|
|
50
|
+
weight: 0.35
|
|
51
|
+
description: "Rigorous evaluation matrix"
|
|
52
|
+
- type: llm_judge
|
|
53
|
+
criteria: "TCO analysis is complete — includes license/usage costs, migration effort (engineering hours), training costs, ongoing maintenance, and accounts for the different pricing models (per-minute vs per-user vs self-hosted). 3-year projection for all 4 options"
|
|
54
|
+
weight: 0.35
|
|
55
|
+
description: "Complete TCO analysis"
|
|
56
|
+
- type: llm_judge
|
|
57
|
+
criteria: "Executive recommendation is clear and defensible — makes a specific choice (not 'it depends'), addresses vendor lock-in risk, includes a migration timeline from 3 platforms to 1, and the pilot program validates the choice before full commitment"
|
|
58
|
+
weight: 0.30
|
|
59
|
+
description: "Clear executive recommendation"
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: enterprise-cicd-governance
|
|
3
|
+
level: 4
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Design enterprise CI/CD governance — standardize workflows, enforce policies, and manage GitHub Actions across a large organization"
|
|
7
|
+
tags: [github, actions, enterprise, governance, policy, standardization, expert]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the Director of Platform Engineering at a 500-engineer company
|
|
13
|
+
with 200+ repositories across 3 GitHub Enterprise organizations
|
|
14
|
+
(legacy from acquisitions). The CEO has mandated CI/CD standardization
|
|
15
|
+
after 3 incidents caused by inconsistent deployment practices.
|
|
16
|
+
|
|
17
|
+
Current chaos:
|
|
18
|
+
- 200+ repos with 400+ unique workflow files
|
|
19
|
+
- No standard deployment process (some repos deploy on merge, some
|
|
20
|
+
need manual approval, some have no CI at all)
|
|
21
|
+
- 15% of repos have no branch protection
|
|
22
|
+
- Third-party actions are used without vetting (supply chain risk)
|
|
23
|
+
- No visibility into CI/CD costs per team
|
|
24
|
+
- Different teams use different cloud providers with no standard auth
|
|
25
|
+
- Compliance requirements differ by BU (SOC 2, PCI, HIPAA)
|
|
26
|
+
|
|
27
|
+
Governance requirements:
|
|
28
|
+
1. Policy layer: Define what's allowed and required across all repos
|
|
29
|
+
2. Platform layer: Provide standard workflows teams can adopt
|
|
30
|
+
3. Enforcement layer: Automatically detect and remediate violations
|
|
31
|
+
4. Visibility layer: Dashboard showing compliance status per repo
|
|
32
|
+
5. Exception layer: Process for teams to request policy exceptions
|
|
33
|
+
|
|
34
|
+
Task: Design the enterprise CI/CD governance framework. Write: the
|
|
35
|
+
policy document (required controls for all repos, with BU-specific
|
|
36
|
+
extensions), the platform offerings (standard reusable workflows,
|
|
37
|
+
approved action allowlist, shared runner pools), the enforcement
|
|
38
|
+
automation (organization rulesets, required workflows, action
|
|
39
|
+
allowlist), the compliance dashboard design, and the exception
|
|
40
|
+
process. Include: the migration plan for the 200+ repos and the
|
|
41
|
+
organizational model (centralized platform team vs federated ownership).
|
|
42
|
+
|
|
43
|
+
assertions:
|
|
44
|
+
- type: llm_judge
|
|
45
|
+
criteria: "Governance framework is comprehensive — covers policy definition, platform standardization, automated enforcement, visibility dashboards, and exception handling. The 5 layers work together cohesively"
|
|
46
|
+
weight: 0.35
|
|
47
|
+
description: "Comprehensive governance framework"
|
|
48
|
+
- type: llm_judge
|
|
49
|
+
criteria: "Enforcement is automated not manual — uses GitHub organization rulesets, required workflows, action allowlists (only approved actions can be used), and automated compliance scanning. Non-compliant repos are detected and flagged automatically"
|
|
50
|
+
weight: 0.35
|
|
51
|
+
description: "Automated enforcement"
|
|
52
|
+
- type: llm_judge
|
|
53
|
+
criteria: "Migration plan is realistic for 200+ repos — phased approach (not big-bang), provides standard workflows that teams can adopt incrementally, handles the 3-org consolidation, and includes success metrics"
|
|
54
|
+
weight: 0.30
|
|
55
|
+
description: "Realistic migration plan"
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: expert-cicd-shift
|
|
3
|
+
level: 4
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Expert CI/CD shift — navigate vendor crises, compliance emergencies, and organizational challenges simultaneously"
|
|
7
|
+
tags: [github, actions, shift-simulation, crisis, vendor, compliance, expert]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the VP of Platform Engineering during a week where 4 crises
|
|
13
|
+
converge on the CI/CD platform.
|
|
14
|
+
|
|
15
|
+
Crisis 1 — GitHub pricing change:
|
|
16
|
+
GitHub announced a 60% price increase for Actions minutes effective
|
|
17
|
+
in 90 days. Your current spend is $1.6M/year, projected to become
|
|
18
|
+
$2.56M/year. The CFO wants options: optimize, migrate to self-hosted,
|
|
19
|
+
or switch vendors. You need a cost mitigation plan by Friday.
|
|
20
|
+
|
|
21
|
+
Crisis 2 — Compliance audit finding:
|
|
22
|
+
The SOC 2 auditor discovered that 12% of production deployments have
|
|
23
|
+
no associated PR or code review (they were deployed via manual
|
|
24
|
+
workflow_dispatch triggers). This violates the change management
|
|
25
|
+
control. The auditor is asking for a corrective action plan within
|
|
26
|
+
2 weeks. The CTO wants to know how this happened.
|
|
27
|
+
|
|
28
|
+
Crisis 3 — Platform team attrition:
|
|
29
|
+
3 of your 15 platform engineers (including the runner fleet expert
|
|
30
|
+
and the reusable workflow architect) gave notice this week. They're
|
|
31
|
+
joining a competitor. Critical knowledge is at risk:
|
|
32
|
+
- Runner auto-scaling configuration (undocumented)
|
|
33
|
+
- Custom GitHub App for deployment orchestration (single maintainer)
|
|
34
|
+
- Vault integration for secret management (complex setup)
|
|
35
|
+
|
|
36
|
+
Crisis 4 — Developer revolt:
|
|
37
|
+
An internal blog post titled "Our CI/CD is Broken" got 200 upvotes.
|
|
38
|
+
Key complaints: "CI takes 30 minutes," "deployments fail randomly
|
|
39
|
+
and no one investigates," "the platform team says they'll fix it but
|
|
40
|
+
nothing changes." The CEO forwarded it asking for your response.
|
|
41
|
+
|
|
42
|
+
Task: Handle all 4 crises. For each, write: the immediate triage
|
|
43
|
+
(what to do today), the 2-week action plan, the 90-day resolution,
|
|
44
|
+
and the stakeholder communication. Then write the integrated strategy
|
|
45
|
+
memo showing how these crises are interconnected and the unified
|
|
46
|
+
approach to resolving them while maintaining team morale.
|
|
47
|
+
|
|
48
|
+
assertions:
|
|
49
|
+
- type: llm_judge
|
|
50
|
+
criteria: "Cost mitigation plan is practical — analyzes options (optimize existing workflows, expand self-hosted, partial vendor migration), provides specific savings projections for each, and the recommendation balances cost with migration risk within the 90-day window"
|
|
51
|
+
weight: 0.35
|
|
52
|
+
description: "Practical cost mitigation"
|
|
53
|
+
- type: llm_judge
|
|
54
|
+
criteria: "Compliance remediation is achievable — addresses the workflow_dispatch bypass with branch protection and required approvals, provides the corrective action plan within the 2-week deadline, and prevents recurrence through automated enforcement"
|
|
55
|
+
weight: 0.35
|
|
56
|
+
description: "Achievable compliance remediation"
|
|
57
|
+
- type: llm_judge
|
|
58
|
+
criteria: "Integrated strategy connects all crises — shows how attrition impacts the other 3 crises (knowledge loss makes optimization harder), how the developer revolt is connected to underinvestment, and the unified approach addresses root causes rather than symptoms"
|
|
59
|
+
weight: 0.30
|
|
60
|
+
description: "Integrated crisis strategy"
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-ai-future
|
|
3
|
+
level: 5
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Design the future of AI-powered CI/CD — architect intelligent pipelines that predict, prevent, and self-heal"
|
|
7
|
+
tags: [github, actions, AI, ML, intelligent-pipelines, future, master]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the VP of AI/ML at a CI/CD platform company designing the
|
|
13
|
+
next generation of intelligent CI/CD. Your platform serves 5,000
|
|
14
|
+
organizations running 10M pipeline executions per month. You need to
|
|
15
|
+
design the AI system that defines CI/CD in 2028-2030.
|
|
16
|
+
|
|
17
|
+
Current AI capabilities (baseline):
|
|
18
|
+
- Predictive test selection: 60% test reduction, 95% fault detection
|
|
19
|
+
- Flaky test detection: Identifies flaky tests with 85% accuracy
|
|
20
|
+
- Basic failure classification: Categorizes failures (infra/code/dep)
|
|
21
|
+
- Cost recommendations: Suggests caching and parallelism improvements
|
|
22
|
+
|
|
23
|
+
Target capabilities (next 3 years):
|
|
24
|
+
1. Predictive CI: Before running CI, predict which tests will fail
|
|
25
|
+
based on the code diff, reducing CI from 20 min to 3 min
|
|
26
|
+
2. Self-healing pipelines: Automatically fix common failures (retry
|
|
27
|
+
transient errors, update cached dependencies, adjust timeouts)
|
|
28
|
+
3. Intelligent deployment: Predict deployment risk, automatically
|
|
29
|
+
choose deployment strategy (canary % based on risk), and auto-
|
|
30
|
+
rollback before users are impacted
|
|
31
|
+
4. Natural language pipelines: "Deploy to staging with extra load
|
|
32
|
+
testing" → generates and executes the workflow
|
|
33
|
+
5. Cross-organization learning: Learn patterns from anonymized data
|
|
34
|
+
across all customers to improve recommendations
|
|
35
|
+
|
|
36
|
+
Constraints:
|
|
37
|
+
- Customer pipeline code must never leave their tenant
|
|
38
|
+
- False positives in test selection must be < 1% (missing a real
|
|
39
|
+
failure is unacceptable)
|
|
40
|
+
- Natural language pipeline generation must be reviewed before
|
|
41
|
+
execution (no autonomous deployment without approval)
|
|
42
|
+
- Cross-org learning must use differential privacy
|
|
43
|
+
|
|
44
|
+
Task: Design the AI-powered CI/CD system. Write: the product vision
|
|
45
|
+
(what CI/CD looks like in 2030), the ML architecture (models,
|
|
46
|
+
training, inference, privacy), the safety framework (preventing AI
|
|
47
|
+
from causing deployments of broken code), the ethical considerations
|
|
48
|
+
(cross-org learning, developer surveillance), and the go-to-market
|
|
49
|
+
roadmap. Include the key technical challenges and proposed solutions.
|
|
50
|
+
|
|
51
|
+
assertions:
|
|
52
|
+
- type: llm_judge
|
|
53
|
+
criteria: "Product vision is compelling and specific — describes concrete developer experiences in 2030 (not vague AI promises), shows the progression from current capabilities to target state, and acknowledges what AI cannot do (domain-specific testing, business logic validation)"
|
|
54
|
+
weight: 0.35
|
|
55
|
+
description: "Compelling specific vision"
|
|
56
|
+
- type: llm_judge
|
|
57
|
+
criteria: "ML architecture handles constraints — solves the privacy problem (federated learning or on-tenant models), achieves <1% false negative rate in test selection with confidence calibration, and the natural language pipeline generation includes human-in-the-loop review"
|
|
58
|
+
weight: 0.35
|
|
59
|
+
description: "Constraint-handling ML architecture"
|
|
60
|
+
- type: llm_judge
|
|
61
|
+
criteria: "Safety framework prevents AI-caused outages — defines clear boundaries (AI suggests, humans approve for production), includes circuit breakers for self-healing (rate limits on automated fixes), and addresses the ethical concerns of cross-org learning with differential privacy"
|
|
62
|
+
weight: 0.30
|
|
63
|
+
description: "Outage-preventing safety framework"
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-behavioral-science
|
|
3
|
+
level: 5
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Apply behavioral science to CI/CD — use psychology and behavioral economics to improve developer adoption and reduce CI friction"
|
|
7
|
+
tags: [github, actions, behavioral-science, psychology, developer-experience, master]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the Head of Developer Experience applying behavioral science
|
|
13
|
+
to CI/CD. Despite having excellent CI/CD infrastructure, developer
|
|
14
|
+
behavior isn't changing. You have the tools, but adoption and best
|
|
15
|
+
practices are lagging.
|
|
16
|
+
|
|
17
|
+
Observed behavioral patterns:
|
|
18
|
+
1. Learned helplessness: After years of slow, flaky CI, developers
|
|
19
|
+
don't trust the system even after improvements. 60% still run
|
|
20
|
+
tests locally before pushing (wasting 30 min/day) because "CI
|
|
21
|
+
might be broken again."
|
|
22
|
+
|
|
23
|
+
2. Present bias: Developers skip writing tests and security scans
|
|
24
|
+
to ship faster now, even though this causes 3x more incidents
|
|
25
|
+
later. The cost is delayed and distributed; the benefit is
|
|
26
|
+
immediate and personal.
|
|
27
|
+
|
|
28
|
+
3. Choice overload: The platform team offers 15 different workflow
|
|
29
|
+
templates, 8 runner types, and 12 optional integrations.
|
|
30
|
+
Developers choose the default (minimal) configuration 80% of
|
|
31
|
+
the time, missing valuable features.
|
|
32
|
+
|
|
33
|
+
4. Social proof gap: Teams with excellent CI/CD practices are
|
|
34
|
+
invisible. Teams don't know what "good" looks like because
|
|
35
|
+
there's no benchmarking or sharing of best practices.
|
|
36
|
+
|
|
37
|
+
5. Status quo bias: Teams resist migrating from Jenkins to GitHub
|
|
38
|
+
Actions (even when Actions is objectively better) because "Jenkins
|
|
39
|
+
works and we know it."
|
|
40
|
+
|
|
41
|
+
6. Feedback delay: When CI catches a bug, the feedback appears
|
|
42
|
+
15 minutes after the push. Developers have context-switched and
|
|
43
|
+
the feedback feels like an interruption rather than a helpful
|
|
44
|
+
catch.
|
|
45
|
+
|
|
46
|
+
Data available:
|
|
47
|
+
- 2 years of CI/CD usage data across 800 engineers
|
|
48
|
+
- Developer experience surveys (quarterly)
|
|
49
|
+
- A/B testing capability (workflow and UI modifications)
|
|
50
|
+
|
|
51
|
+
Task: Design a behavioral intervention program for CI/CD. For each
|
|
52
|
+
bias, write: the evidence from your data, the behavioral intervention
|
|
53
|
+
(nudge, default optimization, or environmental design), the
|
|
54
|
+
implementation in GitHub Actions (workflow changes, notifications,
|
|
55
|
+
gamification), and the A/B test design. Then write the unified
|
|
56
|
+
"Behavioral CI/CD" framework and the ethical considerations.
|
|
57
|
+
|
|
58
|
+
assertions:
|
|
59
|
+
- type: llm_judge
|
|
60
|
+
criteria: "Interventions are behavior-specific — addresses learned helplessness with trust-building (CI reliability dashboard, streak counters), present bias with immediate feedback and CI-as-a-service defaults, choice overload with opinionated defaults and progressive disclosure"
|
|
61
|
+
weight: 0.35
|
|
62
|
+
description: "Behavior-specific interventions"
|
|
63
|
+
- type: llm_judge
|
|
64
|
+
criteria: "Implementation is practical in GitHub Actions — interventions are embedded in the CI/CD workflow itself (not separate tools), uses workflow summary annotations, PR comments, Slack notifications, and gamification elements that fit the developer workflow"
|
|
65
|
+
weight: 0.35
|
|
66
|
+
description: "Practical GitHub Actions implementation"
|
|
67
|
+
- type: llm_judge
|
|
68
|
+
criteria: "A/B test designs are rigorous — each has a clear hypothesis, control group, sample size consideration, success metric, and duration. Ethical considerations address developer privacy and the line between nudging and manipulation"
|
|
69
|
+
weight: 0.30
|
|
70
|
+
description: "Rigorous A/B test designs"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-board-strategy
|
|
3
|
+
level: 5
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Board-level CI/CD strategy — present CI/CD as a strategic capability to the board of a public company"
|
|
7
|
+
tags: [github, actions, board, strategy, governance, competitive-advantage, master]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the CTO of a $5B public technology company presenting to the
|
|
13
|
+
board of directors. The board has 3 CI/CD-related agenda items.
|
|
14
|
+
|
|
15
|
+
Agenda Item 1 — Competitive intelligence:
|
|
16
|
+
A competitor just published that they deploy 500 times per day with
|
|
17
|
+
99.99% success rate. Your company deploys 50 times per day with 95%
|
|
18
|
+
success. The board asks: "Are we falling behind? Is this a risk to
|
|
19
|
+
our market position?"
|
|
20
|
+
Your data: Your company releases features 40% faster year-over-year,
|
|
21
|
+
but the competitor's absolute velocity is 10x yours. However, your
|
|
22
|
+
change failure rate is improving while theirs has been static.
|
|
23
|
+
|
|
24
|
+
Agenda Item 2 — $15M infrastructure investment:
|
|
25
|
+
You're requesting $15M over 3 years to build an internal developer
|
|
26
|
+
platform with CI/CD at its core. The investment includes: platform
|
|
27
|
+
engineering team (20 FTEs), self-hosted runner infrastructure, custom
|
|
28
|
+
tooling, and AI-powered pipeline optimization.
|
|
29
|
+
The board asks: "What's the ROI? When does this pay back? What if
|
|
30
|
+
we just use GitHub Actions as-is without the platform investment?"
|
|
31
|
+
|
|
32
|
+
Agenda Item 3 — M&A technology assessment:
|
|
33
|
+
The company is acquiring a 500-engineer competitor. Due diligence
|
|
34
|
+
reveals: they use GitLab CI self-hosted, have no deployment
|
|
35
|
+
automation (manual deploys), and their CI takes 2 hours per run.
|
|
36
|
+
The board asks: "What's the integration risk? Timeline? Cost?"
|
|
37
|
+
|
|
38
|
+
Task: Prepare the board materials. For each agenda item, write: the
|
|
39
|
+
1-page board brief, the data visualizations (described in text), the
|
|
40
|
+
Q&A preparation (5 likely questions and answers), and the governance
|
|
41
|
+
recommendations. End with a unified strategic narrative connecting
|
|
42
|
+
all 3 items.
|
|
43
|
+
|
|
44
|
+
assertions:
|
|
45
|
+
- type: llm_judge
|
|
46
|
+
criteria: "Competitive analysis is nuanced — doesn't panic about the 10x gap, explains that absolute deploy frequency is less important than rate of improvement and change failure rate, and connects CI/CD velocity to business outcomes (time-to-market, customer satisfaction)"
|
|
47
|
+
weight: 0.35
|
|
48
|
+
description: "Nuanced competitive analysis"
|
|
49
|
+
- type: llm_judge
|
|
50
|
+
criteria: "Investment case is board-ready — presents the $15M as a 3-year investment with clear payback timeline, quantifies the 'do nothing' risk (cost of not investing), and the ROI model includes both tangible returns (cost savings) and intangible (developer productivity, talent retention)"
|
|
51
|
+
weight: 0.35
|
|
52
|
+
description: "Board-ready investment case"
|
|
53
|
+
- type: llm_judge
|
|
54
|
+
criteria: "M&A assessment is realistic — quantifies the integration risk (timeline, cost, talent retention risk during migration), proposes a phased approach, and connects the platform investment (Item 2) to faster M&A integration capability"
|
|
55
|
+
weight: 0.30
|
|
56
|
+
description: "Realistic M&A assessment"
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-consulting-engagement
|
|
3
|
+
level: 5
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Lead a CI/CD consulting engagement — diagnose and transform a client's broken CI/CD infrastructure as an external consultant"
|
|
7
|
+
tags: [github, actions, consulting, transformation, engagement, master]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're a senior DevOps consultant hired for a 12-week, $200K
|
|
13
|
+
engagement to transform CI/CD at a 300-engineer healthcare company.
|
|
14
|
+
They're 18 months into a failed GitHub Actions migration from Jenkins
|
|
15
|
+
and are about to lose their largest customer ($40M contract) due to
|
|
16
|
+
compliance gaps.
|
|
17
|
+
|
|
18
|
+
Client diagnostic findings (Week 1):
|
|
19
|
+
- 200 repos: 80 still on Jenkins, 100 on GitHub Actions (inconsistent
|
|
20
|
+
config), 20 with no CI at all
|
|
21
|
+
- Average deployment: 2 per week (target: 10 per day)
|
|
22
|
+
- Failed deployments: 30% (target: < 5%)
|
|
23
|
+
- Mean time to recovery: 6 hours (target: < 30 minutes)
|
|
24
|
+
- No automated security scanning (HIPAA violation risk)
|
|
25
|
+
- Self-hosted runners run on unpatched VMs with shared credentials
|
|
26
|
+
- The Jenkins→Actions migration was led by one person who left
|
|
27
|
+
- No documentation of the current CI/CD architecture
|
|
28
|
+
- The compliance team manually generates audit reports (2 weeks/quarter)
|
|
29
|
+
- Developer satisfaction with CI/CD: 18% (industry benchmark: 65%)
|
|
30
|
+
|
|
31
|
+
Client stakeholders:
|
|
32
|
+
- CTO: "We need to pass the HIPAA audit in 90 days or we lose the
|
|
33
|
+
customer. Fix this."
|
|
34
|
+
- VP Engineering: "My teams are demoralized. They've been promised a
|
|
35
|
+
'better CI/CD' for 18 months and things got worse."
|
|
36
|
+
- CISO: "I have no visibility into what's deployed or how. Our
|
|
37
|
+
security posture is unacceptable."
|
|
38
|
+
- Engineering Manager: "The last consultant just wrote a document.
|
|
39
|
+
We need someone who will actually help us fix things."
|
|
40
|
+
|
|
41
|
+
Task: Design the complete consulting engagement. Write: the client
|
|
42
|
+
diagnostic report (executive summary with quantified risk), the
|
|
43
|
+
12-week transformation roadmap (phased with weekly deliverables),
|
|
44
|
+
the quick wins for Weeks 1-3 (building credibility and addressing
|
|
45
|
+
the HIPAA audit deadline), the technical implementation plan (complete
|
|
46
|
+
the Jenkins migration, standardize Actions, fix security), and the
|
|
47
|
+
handoff package (documentation, training, maintenance runbooks).
|
|
48
|
+
|
|
49
|
+
assertions:
|
|
50
|
+
- type: llm_judge
|
|
51
|
+
criteria: "Diagnostic report quantifies risk — connects CI/CD failures to business impact ($40M customer at risk), identifies the root cause of the failed migration (single person, no documentation, no plan), and presents findings without blame"
|
|
52
|
+
weight: 0.35
|
|
53
|
+
description: "Risk-quantifying diagnostic"
|
|
54
|
+
- type: llm_judge
|
|
55
|
+
criteria: "Roadmap addresses the HIPAA deadline — Weeks 1-3 focus on the most critical compliance gaps (security scanning, audit trails, runner security), Weeks 4-8 complete the migration, Weeks 9-12 establish sustainability, and the 90-day HIPAA audit timeline is achievable"
|
|
56
|
+
weight: 0.35
|
|
57
|
+
description: "HIPAA-focused roadmap"
|
|
58
|
+
- type: llm_judge
|
|
59
|
+
criteria: "Handoff package ensures sustainability — includes documentation of all CI/CD architecture, runbooks for common operations, training curriculum for the team, and a monitoring dashboard so the client can maintain the system after the consultant leaves"
|
|
60
|
+
weight: 0.30
|
|
61
|
+
description: "Sustainability-ensuring handoff"
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-industry-benchmarks
|
|
3
|
+
level: 5
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Publish CI/CD benchmarks — create the definitive 'State of CI/CD' report with cross-industry analysis and DORA insights"
|
|
7
|
+
tags: [github, actions, benchmarks, DORA, research, industry-analysis, master]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the Head of Research at a developer tools company publishing
|
|
13
|
+
the annual "State of CI/CD 2026" report. This report is read by
|
|
14
|
+
60,000+ engineering leaders. You have data from 3,000 organizations.
|
|
15
|
+
|
|
16
|
+
Raw data highlights:
|
|
17
|
+
- DORA metrics by company size:
|
|
18
|
+
| Metric | Startup | Mid-market | Enterprise |
|
|
19
|
+
|---------------------|---------|-----------|------------|
|
|
20
|
+
| Deploy frequency | 12/day | 3/day | 2/week |
|
|
21
|
+
| Lead time | 1 hr | 8 hrs | 5 days |
|
|
22
|
+
| MTTR | 15 min | 1 hr | 8 hrs |
|
|
23
|
+
| Change failure rate | 5% | 8% | 15% |
|
|
24
|
+
|
|
25
|
+
- CI/CD platform market share:
|
|
26
|
+
GitHub Actions: 62% | GitLab CI: 18% | Jenkins: 12% |
|
|
27
|
+
CircleCI: 4% | Other: 4%
|
|
28
|
+
|
|
29
|
+
- Key correlations:
|
|
30
|
+
Teams with CI under 10 min: 3x more deploys, 50% lower failure rate
|
|
31
|
+
Teams using OIDC: 75% fewer credential incidents
|
|
32
|
+
Teams with automated rollback: 80% lower MTTR
|
|
33
|
+
Monorepo teams: 2x CI cost but 1.5x deployment frequency
|
|
34
|
+
|
|
35
|
+
- Emerging trends:
|
|
36
|
+
AI in CI/CD: 28% using AI for test selection, 15% for failure
|
|
37
|
+
prediction, 8% for automated remediation
|
|
38
|
+
Platform engineering: 45% have dedicated platform teams (up from 12%)
|
|
39
|
+
Supply chain security: 52% pin actions by SHA (up from 8%)
|
|
40
|
+
|
|
41
|
+
- Industry breakdown (deployment frequency):
|
|
42
|
+
SaaS: 15/day | E-commerce: 8/day | Fintech: 3/day |
|
|
43
|
+
Healthcare: 1/day | Government: 2/month | Gaming: 20/day
|
|
44
|
+
|
|
45
|
+
Task: Write the "State of CI/CD 2026" report. Include: the executive
|
|
46
|
+
summary, the benchmarking methodology, the DORA metrics analysis by
|
|
47
|
+
company size and industry, the emerging trends analysis (AI, platform
|
|
48
|
+
engineering, supply chain), the strategic recommendations, and the
|
|
49
|
+
predictions for 2027-2028.
|
|
50
|
+
|
|
51
|
+
assertions:
|
|
52
|
+
- type: llm_judge
|
|
53
|
+
criteria: "Methodology is credible — describes sample selection, survey design, data validation, limitations (survivorship bias, self-reporting), and statistical significance. Acknowledges correlation ≠ causation for the key findings"
|
|
54
|
+
weight: 0.35
|
|
55
|
+
description: "Credible methodology"
|
|
56
|
+
- type: llm_judge
|
|
57
|
+
criteria: "Analysis reveals actionable insights — explains why enterprise DORA metrics lag (compliance overhead, organizational complexity), identifies the 10-minute CI threshold as a tipping point, and provides specific recommendations by company size"
|
|
58
|
+
weight: 0.35
|
|
59
|
+
description: "Actionable insight analysis"
|
|
60
|
+
- type: llm_judge
|
|
61
|
+
criteria: "Predictions are specific and bold — makes concrete predictions about AI adoption rates, platform engineering growth, GitHub Actions market share evolution, and the decline of Jenkins, with reasoning grounded in the trend data"
|
|
62
|
+
weight: 0.30
|
|
63
|
+
description: "Specific bold predictions"
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-ma-integration
|
|
3
|
+
level: 5
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "M&A CI/CD integration — consolidate CI/CD platforms and practices across acquired companies"
|
|
7
|
+
tags: [github, actions, M&A, integration, consolidation, migration, master]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the CTO overseeing CI/CD integration for 3 recently acquired
|
|
13
|
+
companies. Each uses a different CI/CD platform and has different
|
|
14
|
+
engineering practices. The board expects full integration within 18
|
|
15
|
+
months.
|
|
16
|
+
|
|
17
|
+
Parent company (1,000 engineers):
|
|
18
|
+
- GitHub Actions with sophisticated platform team
|
|
19
|
+
- DORA Elite: 50 deploys/day, 2hr lead time, 15min MTTR, 2% CFR
|
|
20
|
+
- Fully automated, OIDC auth, compliance automation
|
|
21
|
+
- Cost: $2M/year for CI/CD infrastructure
|
|
22
|
+
|
|
23
|
+
Acquisition A — SaaS startup (200 engineers):
|
|
24
|
+
- CircleCI with custom orbs
|
|
25
|
+
- Fast but fragile: 30 deploys/day but 15% failure rate
|
|
26
|
+
- No security scanning, no compliance controls
|
|
27
|
+
- 80 repos, all on CircleCI
|
|
28
|
+
- Cost: $400K/year
|
|
29
|
+
|
|
30
|
+
Acquisition B — Enterprise software (300 engineers):
|
|
31
|
+
- Jenkins on-premise (50+ plugins, custom Groovy pipelines)
|
|
32
|
+
- Slow but stable: 2 deploys/week, 3% failure rate
|
|
33
|
+
- Heavy compliance (SOX, HIPAA), manual audit processes
|
|
34
|
+
- 120 repos on Bitbucket + Jenkins
|
|
35
|
+
- Cost: $800K/year (hardware + maintenance)
|
|
36
|
+
|
|
37
|
+
Acquisition C — AI/ML company (150 engineers):
|
|
38
|
+
- Mix of GitHub Actions (for apps) and custom Python scripts (for
|
|
39
|
+
ML pipelines)
|
|
40
|
+
- ML model training uses separate GPU pipeline outside CI/CD
|
|
41
|
+
- Jupyter notebooks deployed via manual process
|
|
42
|
+
- 40 repos on GitHub + internal GitLab for ML experiments
|
|
43
|
+
- Cost: $300K/year
|
|
44
|
+
|
|
45
|
+
Integration constraints:
|
|
46
|
+
- Must consolidate to GitHub Actions within 18 months
|
|
47
|
+
- Cannot disrupt any acquisition's shipping velocity during migration
|
|
48
|
+
- Must achieve SOX + HIPAA compliance for all entities
|
|
49
|
+
- Must retain 90% of acquired engineering talent
|
|
50
|
+
- Budget: $3M for migration (separate from ongoing costs)
|
|
51
|
+
- ML pipeline integration is the most technically complex
|
|
52
|
+
|
|
53
|
+
Task: Design the M&A CI/CD integration strategy. Write: the assessment
|
|
54
|
+
of each acquisition's CI/CD maturity, the migration plan for each
|
|
55
|
+
(CircleCI → Actions, Jenkins → Actions, custom scripts → Actions),
|
|
56
|
+
the compliance harmonization plan (bringing all entities to SOX + HIPAA),
|
|
57
|
+
the ML pipeline integration strategy, and the talent retention plan.
|
|
58
|
+
Include: the 18-month timeline with quarterly milestones and the $3M
|
|
59
|
+
budget allocation.
|
|
60
|
+
|
|
61
|
+
assertions:
|
|
62
|
+
- type: llm_judge
|
|
63
|
+
criteria: "Migration plans are tailored — CircleCI migration is relatively straightforward (similar paradigm), Jenkins migration requires complete rethinking (Groovy → YAML), ML pipeline migration needs custom approach (GPU runners, notebook deployment), and each has a specific timeline"
|
|
64
|
+
weight: 0.35
|
|
65
|
+
description: "Tailored migration plans"
|
|
66
|
+
- type: llm_judge
|
|
67
|
+
criteria: "Compliance harmonization is realistic — addresses the gap between startup's no-compliance and enterprise's heavy compliance, proposes a unified compliance framework that works for all entities, and the timeline achieves SOX + HIPAA compliance within the 18-month window"
|
|
68
|
+
weight: 0.35
|
|
69
|
+
description: "Realistic compliance harmonization"
|
|
70
|
+
- type: llm_judge
|
|
71
|
+
criteria: "Budget allocation and timeline are justified — the $3M is distributed across the 3 acquisitions proportionally to migration complexity, the timeline accounts for parallel workstreams, and the talent retention plan addresses flight risk during migration disruption"
|
|
72
|
+
weight: 0.30
|
|
73
|
+
description: "Justified budget and timeline"
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
id: cicd-product-development
|
|
3
|
+
level: 5
|
|
4
|
+
course: github-actions-cicd
|
|
5
|
+
type: output
|
|
6
|
+
description: "Build a CI/CD product — design and launch a CI/CD SaaS startup competing in the developer tools market"
|
|
7
|
+
tags: [github, actions, product, startup, SaaS, go-to-market, master]
|
|
8
|
+
|
|
9
|
+
state: {}
|
|
10
|
+
|
|
11
|
+
trigger: |
|
|
12
|
+
You're the co-founder/CTO of a startup building "PipelineHQ" — a
|
|
13
|
+
next-generation CI/CD platform. You've raised $8M in seed funding
|
|
14
|
+
and have 18 months of runway. Your thesis: GitHub Actions is powerful
|
|
15
|
+
but enterprise teams need better observability, cost management, and
|
|
16
|
+
governance on top of it.
|
|
17
|
+
|
|
18
|
+
Market analysis:
|
|
19
|
+
- TAM: $12B (CI/CD and DevOps tools market)
|
|
20
|
+
- SAM: $3B (CI/CD platforms and add-ons)
|
|
21
|
+
- SOM: $300M (GitHub Actions ecosystem tools)
|
|
22
|
+
- Competitors: Harness ($2B valuation), Buildkite ($200M), Earthly
|
|
23
|
+
($20M), Depot ($5M), Trunk ($30M)
|
|
24
|
+
- Gap: No single tool combines Actions analytics + cost management +
|
|
25
|
+
governance in a developer-friendly package
|
|
26
|
+
|
|
27
|
+
Product vision:
|
|
28
|
+
1. Cost Intelligence: Real-time per-team cost tracking, optimization
|
|
29
|
+
recommendations, budget enforcement
|
|
30
|
+
2. Pipeline Analytics: DORA metrics, failure patterns, bottleneck
|
|
31
|
+
detection, workflow performance trending
|
|
32
|
+
3. Governance: Policy-as-code for Actions, action allowlisting,
|
|
33
|
+
compliance automation, audit reporting
|
|
34
|
+
4. Developer Experience: Smart caching, predictive failures, auto-
|
|
35
|
+
retry with root cause analysis
|
|
36
|
+
|
|
37
|
+
Technical constraints:
|
|
38
|
+
- Must work with GitHub Actions (not replace it)
|
|
39
|
+
- GitHub App integration (webhook-based, no code injection)
|
|
40
|
+
- Customer workflow data stays in their GitHub (privacy)
|
|
41
|
+
- Must handle 10,000+ workflow runs/day per customer
|
|
42
|
+
|
|
43
|
+
Go-to-market:
|
|
44
|
+
- 18-month runway ($8M, burn rate $450K/month)
|
|
45
|
+
- 10-person engineering team
|
|
46
|
+
- Need $2M ARR to raise Series A
|
|
47
|
+
- PLG + enterprise sales motion
|
|
48
|
+
|
|
49
|
+
Task: Design the complete product strategy. Write: the MVP roadmap
|
|
50
|
+
(3-month scope for first paying customer), the technical architecture
|
|
51
|
+
(GitHub App, webhook processing, analytics engine), the pricing
|
|
52
|
+
strategy (free/team/enterprise tiers), the GTM plan (PLG adoption
|
|
53
|
+
loop, enterprise sales playbook), and the competitive positioning.
|
|
54
|
+
Include the financial projection and Series A pitch narrative.
|
|
55
|
+
|
|
56
|
+
assertions:
|
|
57
|
+
- type: llm_judge
|
|
58
|
+
criteria: "MVP scope is achievable in 3 months by 10 engineers — focuses on one killer feature (likely cost intelligence or analytics, not all 4), has a clear first customer profile, and the scope decision is justified with competitive analysis"
|
|
59
|
+
weight: 0.35
|
|
60
|
+
description: "Achievable MVP scope"
|
|
61
|
+
- type: llm_judge
|
|
62
|
+
criteria: "Technical architecture is sound — GitHub App with webhook processing handles the scale, respects data privacy constraints, the analytics engine can process 10K+ runs/day, and the architecture supports the product roadmap beyond MVP"
|
|
63
|
+
weight: 0.35
|
|
64
|
+
description: "Sound technical architecture"
|
|
65
|
+
- type: llm_judge
|
|
66
|
+
criteria: "Financial projection reaches $2M ARR in 18 months — PLG funnel conversion assumptions are realistic, pricing tiers incentivize upgrade, enterprise sales pipeline is modeled, and the burn rate / runway math is consistent"
|
|
67
|
+
weight: 0.30
|
|
68
|
+
description: "Realistic financial projection"
|