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
|
@@ -441,3 +441,75 @@ Tracks all auto-generated courses for dojo.md.
|
|
|
441
441
|
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
442
442
|
- **Type**: output
|
|
443
443
|
- **Sources**: GitHub Issues documentation, GitHub Projects documentation, GitHub Security Advisories (GHSA), GitHub Issue Metrics Action, Kubernetes issue triage guidelines, Probot stale bot, actions/stale, GitHub issue forms YAML syntax, GDPR data privacy regulations, SOC 2 trust service criteria, EU Accessibility Act (2025), DORA (Digital Operational Resilience Act), SEC cybersecurity disclosure rules, behavioral science research (completion bias, familiarity bias, decision fatigue)
|
|
444
|
+
|
|
445
|
+
### Course 45: GitHub PR Review Comments (`github-pr-review`)
|
|
446
|
+
- **Generated**: 2026-02-27
|
|
447
|
+
- **Category**: Development & DevOps
|
|
448
|
+
- **Directory**: `courses/github-pr-review/`
|
|
449
|
+
- **Topics researched**: PR review comment types (line comments, file-level comments, review summaries), review states (approve, request changes, comment), review etiquette and constructive feedback, PR review checklists (correctness, security, performance, style), PR template design (description, testing, checklist), CODEOWNERS configuration and review routing, test coverage review (quality vs quantity, edge cases, meaningful assertions), PR scope and size evaluation (splitting strategies, dependency chains), review summary writing (decision-leading, contextualizing, actionable), security-focused review (OWASP Top 10, SQL injection, XSS, auth bypass), performance review patterns (N+1 queries, memory leaks, render cycles), automated review tooling (ESLint, Prettier, CodeQL, danger.js, CI integration), review metrics analysis (turnaround time, reviewer load, comment categories), stacked PR review (dependent chains, merge order, cross-PR issues), review turnaround SLAs (tiered targets, escalation, fairness), cross-team review (non-expert review, API contracts, organizational patterns), review disagreement resolution (architecture disputes, style wars, testing philosophy), API change review (backward compatibility, versioning, migration), large-scale review operations (100+ engineer processes, knowledge distribution), review culture design (psychological safety, toxic pattern intervention, training), AI-powered code review (tool evaluation, human-AI boundaries, change management), monorepo review process (CODEOWNERS, CI optimization, cross-package), compliance-aware review (SOX, SOC 2, PCI DSS, audit trails, emergency changes), review data pipeline (analytics architecture, privacy, metrics), cross-functional review (design, security, legal, product stakeholders), incident-driven review improvement (post-incident analysis, systemic fixes), review automation platform (GitHub Apps, assignment algorithms, categorization), enterprise review operations (multi-BU standardization, migration), review platform architecture (scalability, reliability, deployment), review economics and ROI (cost modeling, investment analysis, executive presentation), review org design (team structure, career paths, interaction models), review vendor evaluation (TCO analysis, security assessment, pilot programs), review incident postmortem (blameless analysis, multi-level improvements), executive communication (board updates, CEO memos, all-hands), reviewer training programs (curriculum, shadow reviewing, certification), review data architecture (ML feature store, analytics layer, privacy), consulting engagements (16-week transformation, diagnostic, handoff), industry benchmarks (cross-industry analysis, methodology, predictions), board-level strategy (risk governance, AI strategy, M&A due diligence), AI future of review (product vision, ethical framework, go-to-market), M&A review integration (culture harmonization, retention risk), behavioral science (cognitive biases, nudge interventions, A/B testing), DevTools product (SaaS startup, pricing, PLG), comprehensive review systems (5-layer Fortune 500 architecture), regulatory landscape (EU AI Act, SEC, DORA, PIPL, Software Liability Act), master crisis management (SEC investigation, competitive disruption, platform outage, talent exodus, board pressure)
|
|
450
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
451
|
+
- **Type**: output
|
|
452
|
+
- **Sources**: GitHub Pull Request documentation, CODEOWNERS syntax, GitHub branch protection rules, GitHub rulesets, OWASP Top 10 (2021), CodeQL documentation, ESLint configuration, Prettier configuration, danger.js API, SOC 2 trust service criteria (CC8.1), PCI DSS Requirement 6.5, SOX change management controls, EU AI Act (2024), SEC cybersecurity disclosure rules, DORA (Digital Operational Resilience Act), India DPDP Act, China PIPL, behavioral economics research (authority bias, anchoring effect, social loafing, sunk cost fallacy)
|
|
453
|
+
|
|
454
|
+
### Course 46: GitHub Actions CI/CD Setup (`github-actions-cicd`)
|
|
455
|
+
- **Generated**: 2026-02-27
|
|
456
|
+
- **Category**: Development & DevOps
|
|
457
|
+
- **Directory**: `courses/github-actions-cicd/`
|
|
458
|
+
- **Topics researched**: Basic workflow YAML syntax (name, on, jobs, steps, runs-on), workflow triggers (push, pull_request, schedule, workflow_dispatch, release, path filters), actions and runners (marketplace actions, service containers, GitHub-hosted vs self-hosted, resource limits), environment variables and secrets (repository/environment/organization scopes, masking, fork security), simple CI pipelines (lint/test/build, job dependencies, caching), job dependencies and outputs ($GITHUB_OUTPUT, needs, conditional execution with status functions), workflow debugging (common errors, debug logging, act tool), branch protection with status checks (required reviews, required checks, admin bypass), workflow notifications (status badges, Slack alerts, PR comment updates), matrix builds (include/exclude, fail-fast, continue-on-error, cost optimization), dependency caching (actions/cache, built-in cache, cross-branch sharing, Docker layer caching), conditional execution (if expressions, context variables, error recovery patterns), reusable workflows (workflow_call, composite actions, workflow templates, DRY patterns), deployment workflows (staging/production, GitHub Environments, approval gates, rollback), concurrency control (concurrency groups, cancel-in-progress, merge queues), GitHub Packages publishing (npm, Docker GHCR, multi-arch builds, provenance), workflow cost optimization (billing analysis, path filters, runner economics), custom actions development (JavaScript/Docker/composite actions, testing, publishing), self-hosted runners (ARC, Kubernetes, security hardening, auto-scaling, cost analysis), security hardening (supply chain attacks, SHA pinning, GITHUB_TOKEN permissions, OIDC, script injection, pull_request_target), monorepo CI (change detection, dynamic matrix, Turborepo integration, selective testing), OIDC cloud deployments (AWS/GCP/Azure keyless auth, trust policies, migration), release automation (semantic versioning, changelog generation, semantic-release vs release-please vs changesets, artifact signing), workflow optimization (parallelism, test sharding, runner sizing), GitHub Environments (protection rules, deployment gates, canary deployments, ephemeral environments), Docker action development (multi-stage builds, compliance scanners, SARIF integration), compliance automation (SOC 2/PCI DSS/HIPAA controls, required workflows, evidence collection), enterprise CI/CD governance (policy-as-code, action allowlisting, organization rulesets), CI/CD vendor evaluation (GitHub Actions vs GitLab CI vs CircleCI vs Jenkins, TCO analysis), CI/CD platform architecture (runner fleet, auto-scaling, observability, disaster recovery), CI/CD economics and ROI (hidden costs, DORA metrics, investment analysis), CI/CD incident response (platform outages, credential leaks, deployment corruption), CI/CD org design (platform engineering teams, service catalogs, career paths), executive communication (board presentations, CFO reviews, DORA metrics, all-hands), CI/CD data architecture (analytics pipelines, DORA computation, ML failure prediction), CI/CD training programs (tiered curriculum, sandbox environments, certification), consulting engagements (12-week transformation, HIPAA compliance, handoff packages), industry benchmarks (DORA metrics by size/industry, market share, predictions), board strategy (competitive intelligence, $15M investment case, M&A assessment), AI future of CI/CD (predictive CI, self-healing pipelines, natural language workflows), M&A integration (multi-platform consolidation, compliance harmonization, ML pipeline migration), behavioral science (learned helplessness, present bias, choice overload, nudge design), comprehensive CI/CD systems (5-layer Fortune 500 architecture, 8 BU integration), regulatory landscape (EU CRA, SLSA, SBOM, SEC, NIST SSDF, AI Act), master crisis management (supply chain attack, SEC enforcement, vendor risk, talent exodus, board emergency)
|
|
459
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
460
|
+
- **Type**: output
|
|
461
|
+
- **Sources**: GitHub Actions documentation, GitHub Actions workflow syntax, GitHub Environments documentation, GitHub OIDC documentation, GitHub Packages documentation, actions-runner-controller (ARC), DORA metrics (Accelerate State of DevOps), SLSA framework, Sigstore/cosign, OpenSSF Scorecard, NIST SSDF, EU Cyber Resilience Act, SOC 2 trust service criteria, PCI DSS requirements, HIPAA Security Rule, SEC cybersecurity disclosure rules, Turborepo documentation, semantic-release, release-please, changesets
|
|
462
|
+
|
|
463
|
+
### Course 47: REST API Error Handling (`rest-api-error-handling`)
|
|
464
|
+
- **Generated**: 2026-02-27
|
|
465
|
+
- **Category**: Development & DevOps
|
|
466
|
+
- **Directory**: `courses/rest-api-error-handling/`
|
|
467
|
+
- **Topics researched**: HTTP status codes (2xx/4xx/5xx families, correct selection per scenario), error response format design (consistent JSON structure, field-level validation errors), request validation errors (collect-all-errors approach, unknown field handling, format validation), authentication errors (401 vs 403, information leakage prevention, security-first error messages), 5xx server error handling (global error handler, stack trace prevention, correlation IDs), rate limiting errors (429 with headers, X-RateLimit-*, Retry-After, burst allowance), not-found error taxonomy (404 vs 410 vs 403, decision trees for missing resources), error logging (structured JSON, PII masking, correlation ID flow), content negotiation errors (415, 406, Content-Type/Accept handling), RFC 7807 Problem Details (type URIs, extensions, migration), retry and idempotency (idempotency keys, retryable status codes, exponential backoff with jitter), circuit breaker pattern (closed/open/half-open states, fallback strategies, criticality-based thresholds), error monitoring and alerting (alert taxonomy, noise reduction, anomaly detection), pagination errors (cursor vs offset, edge cases, consistency), webhook error handling (retry policies, dead letter queues, delivery monitoring), batch request errors (partial success, 207 Multi-Status, transaction vs partial semantics), API versioning errors (deprecation headers, sunset, migration hints), error code taxonomy (hierarchical naming, governance, SDK integration), distributed error propagation (service chain context, translation rules, OpenTelemetry), error budgets and SRE (SLI/SLO/SLA, budget calculation, burn rate alerting), API gateway error handling (gateway vs backend distinction, format normalization, partial failure aggregation), database error handling (PostgreSQL error code mapping, constraint translation, read replica lag), async API errors (sync vs deferred validation, job failure format, callback retry), GraphQL vs REST errors (dual-protocol strategy, error extensions, monitoring when status is always 200), chaos engineering for APIs (fault injection experiments, safety guardrails, progressive rollout), error correlation (root cause identification, alert deduplication, dependency graph analysis), caching error scenarios (stampede protection, stale data, cache poisoning, negative caching), enterprise error governance (standardization at scale, automated enforcement, adoption strategy), error analytics platform (data architecture, anomaly detection, business impact calculation), compliance error handling (PCI DSS + HIPAA + GDPR + SOC 2 unified framework, PII in logs remediation), error SLA design (metrics definition, penalty structure, anti-gaming provisions), error handling architecture (4-layer Fortune 500 design, multi-region, multi-cloud), error cost optimization ($8.5M → $4.25M reduction, ROI-prioritized initiatives), executive communication (board presentations, DORA-to-business translation), error org design (centralized vs embedded vs hybrid SRE models), error training programs (tiered curriculum, sandbox exercises, certification), consulting engagements (12-week transformation, quick wins, sustainable handoff), industry benchmarks (maturity model, cross-industry comparison, predictions), board strategy ($15M investment case, NPV, competitor positioning), AI-powered error handling (prediction, auto-remediation, safety framework, ethics), M&A integration (dual-platform unification, compliance harmonization, change management), behavioral science (anchoring, learned helplessness, A/B testing error messages), error handling product development (SaaS MVP, pricing, go-to-market), comprehensive error systems (5-layer Fortune 500 architecture, multi-protocol), regulatory landscape (GDPR, PCI DSS, HIPAA, DORA, DPDP Act, conflict resolution), master crisis management (zero-day in error middleware, GDPR investigation, customer litigation, talent exodus, board emergency)
|
|
468
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
469
|
+
- **Type**: output
|
|
470
|
+
- **Sources**: RFC 7807 (Problem Details for HTTP APIs), RFC 9457, RFC 8594 (Sunset header), RFC 5322 (email format), HTTP status code specifications, Google SRE handbook (error budgets, SLOs), OpenTelemetry distributed tracing documentation, GDPR Articles 5/17/30/33/44, PCI DSS v4.0 Requirements 3.4/10.2/10.5/10.6, HIPAA Security Rule, SOC 2 trust service criteria, EU DORA (Digital Operational Resilience Act), India DPDP Act, EU AI Act, SEC cybersecurity disclosure rules, NIST 800-53, Stripe API error handling documentation, Sentry error tracking, Datadog monitoring, PagerDuty incident management, behavioral economics research (anchoring effect, learned helplessness, completion bias, loss aversion, social proof)
|
|
471
|
+
|
|
472
|
+
### Course 48: Database Query Optimization — PostgreSQL (`postgresql-query-optimization`)
|
|
473
|
+
- **Generated**: 2026-02-27
|
|
474
|
+
- **Category**: Development & DevOps
|
|
475
|
+
- **Directory**: `courses/postgresql-query-optimization/`
|
|
476
|
+
- **Topics researched**: EXPLAIN ANALYZE (reading execution plans, cost estimates, actual vs estimated rows), index fundamentals (B-tree, index scan vs seq scan, selectivity), N+1 queries (detection with pg_stat_statements, batch loading), slow query diagnosis (pg_stat_statements, pg_stat_activity, auto_explain), WHERE clause optimization (SARGable expressions, function wrapping, implicit casts), SELECT * problems (I/O waste, covering index defeat), VACUUM and statistics (autovacuum, dead tuples, default_statistics_target), JOIN algorithms (nested loop, hash join, merge join), query rewriting (NOT IN → NOT EXISTS, UNION → UNION ALL), composite indexes (column ordering, equality-first), partial and expression indexes, covering indexes (INCLUDE columns, index-only scans), CTE optimization (MATERIALIZED/NOT MATERIALIZED, PG 12+ inlining), window functions, query planner settings (work_mem, effective_cache_size, random_page_cost), autovacuum tuning (per-table settings, wraparound prevention), subquery optimization (correlated subqueries to JOINs, EXISTS vs IN, LATERAL joins), partitioning (range/list/hash, partition pruning, partition-wise joins), parallel query execution, connection pooling (PgBouncer, transaction vs session mode), lock contention (advisory locks, deadlock detection), write optimization (COPY vs INSERT, bulk operations), specialized indexes (GIN, GiST, BRIN, SP-GiST, bloom), JSONB optimization (GIN indexing, jsonb_path_ops), full-text search (tsvector/tsquery, GIN indexes, ranking), materialized views (refresh strategies, concurrent refresh, hybrid patterns), optimizer internals (cost model, statistics histograms, MCVs, custom vs generic plans), database migration (logical replication, sequence sync, cutover choreography), high availability (Patroni, streaming replication, automatic failover), vendor evaluation (RDS vs Aurora vs self-managed vs Citus vs Neon, TCO), enterprise governance (configuration standards, automated query review CI/CD), performance SLAs (tiered latency targets, capacity planning, noisy neighbor isolation), executive communication (ROI, technical debt translation, 10x scaling), read replica optimization (workload routing, replication lag management), data architecture (OLTP/OLAP separation, CDC pipelines), expert shift simulation (Black Friday cascading failure), consulting engagements, benchmarks (pgbench methodology, realistic workload design), board strategy (modernization investment, IPO readiness), AI-powered database (autonomous tuning, pgvector, text-to-SQL safety), M&A integration (schema unification, overlapping customers), behavioral science (choice architecture, nudge systems, developer feedback loops), product development (PostgreSQL performance SaaS), comprehensive database platform (self-service provisioning, GitOps schema management), regulatory compliance (GDPR, HIPAA, PCI DSS, SOX, FedRAMP), master shift simulation (triple M&A + multi-framework compliance + IPO + 10x scaling)
|
|
477
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
478
|
+
- **Type**: output
|
|
479
|
+
- **Sources**: PostgreSQL documentation (EXPLAIN, indexes, partitioning, parallel query, VACUUM, pg_stat_statements, logical replication), pgbench, PgBouncer, Patroni, pgvector, pg_repack, pgAudit, TimescaleDB, Citus, AWS RDS/Aurora PostgreSQL documentation, Google SRE handbook, GDPR, HIPAA Security Rule, PCI DSS v4.0, SOX, FedRAMP/NIST 800-53, FIPS 140-2, behavioral economics (nudge theory, choice architecture)
|
|
480
|
+
|
|
481
|
+
### Course 49: Database Query Optimization — MySQL (`mysql-query-optimization`)
|
|
482
|
+
- **Generated**: 2026-02-27
|
|
483
|
+
- **Category**: Development & DevOps
|
|
484
|
+
- **Directory**: `courses/mysql-query-optimization/`
|
|
485
|
+
- **Topics researched**: EXPLAIN output (access types, EXPLAIN FORMAT=JSON, EXPLAIN ANALYZE), InnoDB internals (clustered indexes, secondary indexes, UUID vs auto-increment), N+1 queries, slow query log (pt-query-digest, Performance Schema), WHERE clause optimization (SARGable), InnoDB buffer pool (sizing, LRU, hit ratio), JOIN algorithms (nested-loop, hash join 8.0.18+), composite indexes (leftmost prefix rule), covering/invisible indexes, subquery optimization (semi-join strategies, NOT IN NULL trap), optimizer hints, CTE and window functions, buffer pool tuning, Performance Schema analysis, write optimization (LOAD DATA INFILE, innodb_flush_log_at_trx_commit), partitioning (RANGE/LIST/HASH/KEY, partition pruning), ProxySQL connection management, lock contention (gap locks, deadlocks, isolation levels), JSON optimization (multi-valued indexes), full-text search (FULLTEXT, boolean mode), replication optimization (parallel replication), online schema changes (pt-osc, gh-ost), query profiling (EXPLAIN ANALYZE, optimizer trace, handler counters), monitoring (PMM), HA (InnoDB Cluster, Group Replication, Galera), Aurora vs RDS evaluation, enterprise governance, migration planning (5.7→8.0), performance SLAs, executive communication, optimizer internals, data architecture (sharding, Vitess), read replica scaling, consulting, benchmarks, board strategy, AI-powered database, M&A integration, behavioral science, product development, database platform, regulatory compliance
|
|
486
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
487
|
+
- **Type**: output
|
|
488
|
+
- **Sources**: MySQL documentation (EXPLAIN, InnoDB, Performance Schema, replication, Online DDL), pt-query-digest, pt-online-schema-change, gh-ost, ProxySQL, MySQL Router, InnoDB Cluster/Group Replication, Galera Cluster, Orchestrator, sysbench, AWS RDS/Aurora MySQL, Percona PMM
|
|
489
|
+
|
|
490
|
+
### Course 50: Kubernetes Deployment Troubleshooting (`kubernetes-deployment-troubleshooting`)
|
|
491
|
+
- **Generated**: 2026-02-27
|
|
492
|
+
- **Category**: Development & DevOps
|
|
493
|
+
- **Directory**: `courses/kubernetes-deployment-troubleshooting/`
|
|
494
|
+
- **Topics researched**: CrashLoopBackOff (exponential backoff, exit codes, env var mismatches), ImagePullBackOff (registry auth, image tags, pull policies), OOMKilled (cgroup OOM killer, exit code 137, JVM container memory), Pending pods (insufficient resources, taints/tolerations, node affinity), Service connectivity (label selectors, endpoints, port vs targetPort, DNS), health probes (liveness/readiness/startup, timing parameters, slow-start protection), ConfigMaps/Secrets (env vars vs volumes, optional references, base64 encoding), deployment rollout (RollingUpdate, maxSurge/maxUnavailable, rollback, progressDeadlineSeconds), kubectl debugging (describe/logs/exec/port-forward/events/top), PersistentVolume issues (PVC binding, StorageClass, CSI drivers, volumeBindingMode), ResourceQuota/LimitRange (QoS classes, namespace limits), init containers (sequential execution, cross-namespace DNS), DNS resolution (CoreDNS, loop detection, ndots, headless services), NetworkPolicy (default-deny, DNS egress, CNI support), HPA scaling (metrics-server, thrashing, stabilization window), Ingress routing (path types, rewrite-target, TLS), RBAC (Role/ClusterRole, ServiceAccount, kubectl auth can-i), Helm deployment (release management, template debugging, stuck releases), node pressure/eviction (MemoryPressure/DiskPressure/PIDPressure, QoS eviction order), StatefulSet (ordered startup, PVC lifecycle, headless services), service mesh (Istio sidecar injection, mTLS, VirtualService/DestinationRule), monitoring gaps (Prometheus ServiceMonitor, Alertmanager, PrometheusRule), PodDisruptionBudgets (voluntary disruptions, node drain, maintenance), GitOps drift (ArgoCD sync/health, auto-sync, CRD dependencies), multi-container pods (sidecar patterns, shared volumes, native sidecars K8s 1.29+), cluster upgrades (API deprecation, version skew, Pod Security Standards), Job/CronJob (concurrencyPolicy, stuck jobs, history limits), multi-cluster operations (cross-cluster discovery, federated monitoring, failover), capacity planning (right-sizing, VPA, cost optimization, Karpenter), disaster recovery (Velero, etcd backup, RPO/RTO), multi-tenancy (namespace isolation, PCI-DSS compliance, GPU taints), incident management (severity classification, SLO/SLI, blameless postmortems), platform engineering (IDP, golden paths, Backstage, developer experience), security hardening (Pod Security Standards, supply chain security, image scanning), cost optimization (FinOps, spot instances, cost attribution), executive communication (ROI, serverless comparison, business case), consulting engagement (migration assessment, remediation roadmap), industry benchmarks (CNCF maturity model, DORA metrics), board strategy (infrastructure as competitive advantage), cloud-native future (WebAssembly, eBPF, AI/ML workloads, edge), M&A integration (cross-cloud connectivity, team onboarding), behavioral science (cognitive biases in incident response), product development (automated troubleshooting platform), comprehensive platform design, regulatory compliance (SOC2/PCI-DSS/HIPAA/GDPR)
|
|
495
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
496
|
+
- **Type**: output
|
|
497
|
+
- **Sources**: Kubernetes documentation (pod lifecycle, probes, RBAC, networking, storage, scheduling), Istio/Linkerd service mesh docs, Prometheus/Grafana/Alertmanager, ArgoCD/Flux, Velero backup, Helm, Cilium/eBPF, Karpenter, CNCF Cloud Native Maturity Model, DORA metrics research
|
|
498
|
+
|
|
499
|
+
### Course 51: Docker Container Debugging (`docker-container-debugging`)
|
|
500
|
+
- **Generated**: 2026-02-27
|
|
501
|
+
- **Category**: Development & DevOps
|
|
502
|
+
- **Directory**: `courses/docker-container-debugging/`
|
|
503
|
+
- **Topics researched**: Container exit codes (0/1/137/139/143, OOMKilled, SIGTERM/SIGKILL), Dockerfile build failures (COPY context, multi-stage FROM, apt-get layers), docker logs debugging (--since, --follow, log drivers, json-file), port mapping (host:container, protocol, bridge network, port conflicts), volume mounts (bind mounts vs named volumes, permissions, :ro/:rw), environment variables (build-time ARG vs runtime ENV, variable expansion, .env files), image pull failures (authentication, manifest platform mismatch, rate limits), container networking (bridge/host/overlay, DNS 127.0.0.11, custom networks), resource limits and OOM (--memory, --cpus, cgroup enforcement), Docker Compose debugging (depends_on conditions, YAML anchors, docker compose config validation), multi-stage build debugging (COPY --from stage references, target builds, intermediate stages), container health checks (HEALTHCHECK CMD, intervals, retries, unhealthy actions), PID 1 signal handling (tini, dumb-init, SIGTERM forwarding, exec form vs shell form), image layer optimization (layer ordering, .dockerignore, multi-stage for size), logging and log rotation (json-file default no rotation, max-size/max-file, logging drivers, fluentd/syslog), security scanning (Trivy, Docker Scout, Snyk, CVE severity, SBOM, CI/CD integration), network debugging tools (netshoot container, tcpdump, nslookup, netcat, ndots DNS issues), docker exec debugging (distroless containers, namespace sharing, zombie processes, /proc inspection), Docker daemon issues (daemon.json validation, storage driver compatibility, journalctl, live-restore), Docker-in-Docker CI/CD (DinD vs socket mounting, TLS configuration, Kaniko/Buildah alternatives), BuildKit optimization (cache mounts, layer ordering, parallel stages, .dockerignore), container security hardening (non-root, capabilities, seccomp, read-only filesystem, no-new-privileges), overlay network debugging (VXLAN, Swarm ports, MTU issues, VIP vs DNSRR), disk space management (docker system df, selective prune, automated cleanup, prevention), container filesystem debugging (overlay2 mechanics, copy-on-write, whiteout files, docker diff), Docker API automation (REST over Unix socket, SDK versioning, race conditions, socket security), production container operations (zero-downtime deployment, graceful shutdown, image tagging, resource monitoring), advanced debugging shift, container orchestration strategy (Swarm vs Kubernetes evaluation, migration), enterprise image management (Harbor registry, golden images, cosign signing, admission control), container monitoring observability (Prometheus/cAdvisor/Grafana, ELK/Loki, OpenTelemetry/Jaeger), CI/CD pipeline design (BuildKit caching, security gates, canary deployment, DORA metrics), container security architecture (defense-in-depth, Docker socket risks, Falco, compliance), stateful service containers (database volumes, backup/restore, HA, version upgrades), multi-environment management (12-factor, Compose overrides, image promotion, dev-prod parity), container performance engineering (cgroup awareness, profiling, overlay2 I/O, right-sizing), incident response for containers (isolation, evidence preservation, forensics, blast radius), expert debugging shift, consulting container strategy (VM-to-container migration, portfolio assessment, ROI), container platform economics (TCO model, right-sizing, spot instances, financial communication), industry container patterns (maturity model, anti-patterns, industry-specific compliance), container platform architecture (IDP, Backstage, self-service, governance layers), regulatory compliance containers (SOC2/PCI-DSS/HIPAA/FedRAMP control mappings), container technology evolution (WebAssembly, eBPF, serverless containers, MicroVMs), board infrastructure strategy (executive narrative, ROI, competitive positioning), disaster recovery containers (tiered RPO/RTO, multi-region, chaos engineering), organizational transformation (change management, team restructuring, DevOps culture), master debugging shift
|
|
504
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
505
|
+
- **Type**: output
|
|
506
|
+
- **Sources**: Docker documentation (Dockerfile reference, CLI, daemon, networking, storage, security), BuildKit docs, Docker Compose specification, Trivy/Docker Scout/Snyk vulnerability scanners, nicolaka/netshoot, Prometheus/cAdvisor/Grafana, Fluentd/Fluent Bit, OpenTelemetry, Harbor registry, cosign/Sigstore, Falco runtime security, OPA/Kyverno policy engines, Backstage IDP
|
|
507
|
+
|
|
508
|
+
### Course 52: AWS Lambda Function Debugging (`aws-lambda-debugging`)
|
|
509
|
+
- **Generated**: 2026-02-27
|
|
510
|
+
- **Category**: Development & DevOps
|
|
511
|
+
- **Directory**: `courses/aws-lambda-debugging/`
|
|
512
|
+
- **Topics researched**: Lambda timeout errors (default 3s, max 15min, REPORT line), IAM permission errors (execution role vs resource policy, AccessDenied diagnosis), cold start basics (INIT_START, Init Duration, warm reuse), handler and import errors (Runtime.ImportModuleError, Runtime.HandlerNotFound, packaging), memory and OOM (signal: killed, memory-CPU relationship, Lambda Power Tuning), CloudWatch Logs (log groups/streams, REPORT fields, structured logging, Logs Insights), environment variable issues (name mismatch, KMS encryption, 4KB limit, Secrets Manager), API Gateway integration (proxy response format, CORS, 502/504 errors), invocation errors (sync vs async, throttling, concurrency limits, retry behavior), VPC networking (ENI provisioning, NAT Gateway vs VPC endpoints, Hyperplane ENIs), SQS event source mapping (batch failures, ReportBatchItemFailures, visibility timeout, DLQ), X-Ray tracing (service map, subsegments, annotations, sampling, correlation), DynamoDB Streams (shard blocking, iterator exhaustion, BisectBatchOnFunctionError), cold start optimization (SnapStart, provisioned concurrency, package optimization, warm-up), Lambda Layers (directory structure, version compatibility, merge order, 250MB limit), async invocation failures (retry behavior, DLQ vs Lambda Destinations, MaximumEventAge), SAM local debugging (sam local invoke, start-api, generate-event, breakpoint debugging, RIE), concurrency management (account vs function limits, reserved vs provisioned, downstream protection), Step Functions debugging (Task states, Catch/Retry, error types, execution history), Lambda@Edge (vs CloudFront Functions, regional logs, edge limits, replication delay), cross-account invocation (resource policies, IAM policies, multi-account patterns), EventBridge patterns (event matching, content filtering, rule targets, cross-account), Powertools observability (Logger, Metrics EMF, Tracer, correlation, custom dashboards), container image Lambda (RIC, ECR, cold start impact, RIE local testing), Lambda extensions (lifecycle phases, resource sharing, performance impact), IaC deployment debugging (SAM/CDK/CloudFormation stack states, drift, rollback), Kinesis stream processing (shards, parallelization factor, enhanced fan-out), serverless architecture design (Lambda vs containers, choreography vs orchestration, saga pattern), serverless security (per-function IAM, injection prevention, OWASP), cost optimization (right-sizing, ARM/Graviton2, CloudWatch costs, FinOps), multi-region serverless (active-active, DynamoDB Global Tables, Route53 failover), testing strategy (testing pyramid, mocking AWS SDK, contract testing), observability platform (centralized logging, cross-account tracing, alert strategy), incident management (actionable alerts, runbooks, automated remediation, SLOs), serverless migration (strangler fig, monolith decomposition, RDS Proxy), serverless data architecture (DynamoDB patterns, CDC pipeline, Athena/S3 analytics), consulting engagement (readiness assessment, migration roadmap, ROI), serverless economics (TCO comparison, break-even analysis, decision framework), board strategy (executive narrative, DORA metrics, risk analysis), technology evolution (SnapStart, Wasm, AI/ML, edge computing), industry patterns (fintech, healthcare, e-commerce, IoT maturity), regulatory compliance (SOC2/PCI-DSS/HIPAA/GDPR shared responsibility), serverless platform design (CDK constructs, self-service, governance), organizational transformation (change management, training, culture), M&A integration (account consolidation, data merge, team onboarding)
|
|
513
|
+
- **Scenarios**: 50 (10 per level × 5 levels)
|
|
514
|
+
- **Type**: output
|
|
515
|
+
- **Sources**: AWS Lambda documentation (lifecycle, invocation types, event sources, VPC, layers, extensions), AWS SAM/CDK documentation, API Gateway docs, CloudWatch/X-Ray monitoring, Step Functions workflow docs, DynamoDB Streams, SQS/SNS/EventBridge, Kinesis Data Streams, Lambda Powertools (Python/TypeScript/Java), AWS Well-Architected Serverless Lens, DORA metrics research
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
name: "API Error Handling Mastery"
|
|
2
|
+
id: "api-error-handling"
|
|
3
|
+
description: "Comprehensive training course on REST API error handling from fundamentals to enterprise mastery"
|
|
4
|
+
version: "1.0.0"
|
|
5
|
+
difficulty_levels:
|
|
6
|
+
- level-1-beginner
|
|
7
|
+
- level-2-intermediate
|
|
8
|
+
- level-3-advanced
|
|
9
|
+
- level-4-expert
|
|
10
|
+
- level-5-master
|
|
11
|
+
|
|
12
|
+
meta:
|
|
13
|
+
pass_rate_required: 0.70
|
|
14
|
+
model_for_agent: "claude-haiku"
|
|
15
|
+
model_for_evaluator: "claude-haiku"
|
|
16
|
+
model_for_skill_generation: "claude-3-5-sonnet"
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
name: "Error Response Format and Structure"
|
|
2
|
+
level: 1
|
|
3
|
+
difficulty: beginner
|
|
4
|
+
description: "Learn to structure consistent, meaningful error responses with proper JSON format"
|
|
5
|
+
|
|
6
|
+
context: |
|
|
7
|
+
Your API needs to return consistent error responses so clients can parse and handle
|
|
8
|
+
errors programmatically. Design error response objects with status code, error code,
|
|
9
|
+
message, and request ID for tracing.
|
|
10
|
+
|
|
11
|
+
scenario:
|
|
12
|
+
state:
|
|
13
|
+
products:
|
|
14
|
+
"prod_001": { name: "Laptop", price: 999.99 }
|
|
15
|
+
"prod_002": { name: "Mouse", price: 29.99 }
|
|
16
|
+
|
|
17
|
+
endpoint: "POST /api/v1/products/{productId}/order"
|
|
18
|
+
|
|
19
|
+
test_cases:
|
|
20
|
+
- name: "valid_order"
|
|
21
|
+
request:
|
|
22
|
+
path: "/api/v1/products/prod_001/order"
|
|
23
|
+
body: { quantity: 1 }
|
|
24
|
+
expected_response:
|
|
25
|
+
status: 201
|
|
26
|
+
body:
|
|
27
|
+
order_id: "order_123"
|
|
28
|
+
product_id: "prod_001"
|
|
29
|
+
quantity: 1
|
|
30
|
+
|
|
31
|
+
- name: "product_not_found_consistent_format"
|
|
32
|
+
request:
|
|
33
|
+
path: "/api/v1/products/prod_999/order"
|
|
34
|
+
body: { quantity: 1 }
|
|
35
|
+
expected_status: 404
|
|
36
|
+
expected_response:
|
|
37
|
+
status: 404
|
|
38
|
+
error:
|
|
39
|
+
code: "PRODUCT_NOT_FOUND"
|
|
40
|
+
message: "The product you requested does not exist"
|
|
41
|
+
details:
|
|
42
|
+
product_id: "prod_999"
|
|
43
|
+
|
|
44
|
+
- name: "invalid_quantity_format"
|
|
45
|
+
request:
|
|
46
|
+
path: "/api/v1/products/prod_001/order"
|
|
47
|
+
body: { quantity: "not_a_number" }
|
|
48
|
+
expected_status: 400
|
|
49
|
+
expected_response:
|
|
50
|
+
status: 400
|
|
51
|
+
error:
|
|
52
|
+
code: "INVALID_REQUEST_BODY"
|
|
53
|
+
message: "Invalid request format"
|
|
54
|
+
details:
|
|
55
|
+
field: "quantity"
|
|
56
|
+
expected_type: "number"
|
|
57
|
+
received_type: "string"
|
|
58
|
+
|
|
59
|
+
- name: "missing_required_field"
|
|
60
|
+
request:
|
|
61
|
+
path: "/api/v1/products/prod_001/order"
|
|
62
|
+
body: {}
|
|
63
|
+
expected_status: 400
|
|
64
|
+
expected_response:
|
|
65
|
+
status: 400
|
|
66
|
+
error:
|
|
67
|
+
code: "MISSING_REQUIRED_FIELD"
|
|
68
|
+
message: "Required field missing"
|
|
69
|
+
details:
|
|
70
|
+
field: "quantity"
|
|
71
|
+
|
|
72
|
+
- name: "negative_quantity"
|
|
73
|
+
request:
|
|
74
|
+
path: "/api/v1/products/prod_001/order"
|
|
75
|
+
body: { quantity: -5 }
|
|
76
|
+
expected_status: 400
|
|
77
|
+
expected_response:
|
|
78
|
+
status: 400
|
|
79
|
+
error:
|
|
80
|
+
code: "VALIDATION_ERROR"
|
|
81
|
+
message: "Quantity must be positive"
|
|
82
|
+
|
|
83
|
+
assertions:
|
|
84
|
+
- type: "api_called"
|
|
85
|
+
description: "Error responses include machine-readable error code"
|
|
86
|
+
test: "error responses always include error.code field"
|
|
87
|
+
|
|
88
|
+
- type: "api_called"
|
|
89
|
+
description: "Error responses include human-readable message"
|
|
90
|
+
test: "error responses always include error.message field"
|
|
91
|
+
|
|
92
|
+
- type: "api_called"
|
|
93
|
+
description: "Error responses are consistent in structure"
|
|
94
|
+
test: "all 4xx errors use same response envelope format"
|
|
95
|
+
|
|
96
|
+
- type: "api_called"
|
|
97
|
+
description: "Additional error details provided where helpful"
|
|
98
|
+
test: "validation errors include field information in details"
|
|
99
|
+
|
|
100
|
+
- type: "outcome"
|
|
101
|
+
description: "Consistent error format improves client error handling"
|
|
102
|
+
test: "clients can parse error responses without special cases for each endpoint"
|
|
103
|
+
|
|
104
|
+
learning_objectives:
|
|
105
|
+
- "Design consistent error response envelope format"
|
|
106
|
+
- "Include error code, message, and optional details in responses"
|
|
107
|
+
- "Provide machine-readable error codes for programmatic handling"
|
|
108
|
+
- "Include request tracing information for debugging"
|
|
109
|
+
- "Document error codes in API specification"
|
|
110
|
+
|
|
111
|
+
key_concepts:
|
|
112
|
+
- "Error Response Envelope: Consistent structure across all error responses"
|
|
113
|
+
- "Error Codes: Machine-readable identifiers (PRODUCT_NOT_FOUND, INVALID_REQUEST_BODY)"
|
|
114
|
+
- "Error Message: Human-readable description of the problem"
|
|
115
|
+
- "Details Field: Additional context like field name for validation errors"
|
|
116
|
+
- "Request ID: Correlation ID for request tracing"
|
|
117
|
+
|
|
118
|
+
example_error_response: |
|
|
119
|
+
{
|
|
120
|
+
"status": 400,
|
|
121
|
+
"error": {
|
|
122
|
+
"code": "INVALID_REQUEST_BODY",
|
|
123
|
+
"message": "Invalid or missing required field",
|
|
124
|
+
"details": {
|
|
125
|
+
"field": "email",
|
|
126
|
+
"expected_type": "string",
|
|
127
|
+
"constraint": "valid email format"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"request_id": "req_abc123def456"
|
|
131
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
name: "HTTP Status Code Fundamentals"
|
|
2
|
+
level: 1
|
|
3
|
+
difficulty: beginner
|
|
4
|
+
description: "Understand 2xx success, 4xx client error, and 5xx server error status codes"
|
|
5
|
+
|
|
6
|
+
context: |
|
|
7
|
+
You're building a user authentication API endpoint. You need to return the correct
|
|
8
|
+
HTTP status codes for different scenarios: successful login, invalid credentials,
|
|
9
|
+
missing required fields, and server outages.
|
|
10
|
+
|
|
11
|
+
scenario:
|
|
12
|
+
state:
|
|
13
|
+
user_database:
|
|
14
|
+
"user123@example.com": { password_hash: "hashed_pwd_123", name: "John Doe" }
|
|
15
|
+
"user456@example.com": { password_hash: "hashed_pwd_456", name: "Jane Smith" }
|
|
16
|
+
service_status: "healthy"
|
|
17
|
+
|
|
18
|
+
endpoint: "POST /api/v1/auth/login"
|
|
19
|
+
|
|
20
|
+
test_cases:
|
|
21
|
+
- name: "successful_login"
|
|
22
|
+
request:
|
|
23
|
+
body: { email: "user123@example.com", password: "correct_password" }
|
|
24
|
+
expected_status: 200
|
|
25
|
+
expected_response:
|
|
26
|
+
token: "jwt_token_here"
|
|
27
|
+
user_id: "user123@example.com"
|
|
28
|
+
|
|
29
|
+
- name: "invalid_credentials"
|
|
30
|
+
request:
|
|
31
|
+
body: { email: "user123@example.com", password: "wrong_password" }
|
|
32
|
+
expected_status: 401
|
|
33
|
+
expected_response_contains: "Unauthorized"
|
|
34
|
+
|
|
35
|
+
- name: "missing_email_field"
|
|
36
|
+
request:
|
|
37
|
+
body: { password: "some_password" }
|
|
38
|
+
expected_status: 400
|
|
39
|
+
expected_response_contains: "email is required"
|
|
40
|
+
|
|
41
|
+
- name: "malformed_email"
|
|
42
|
+
request:
|
|
43
|
+
body: { email: "not-an-email", password: "password123" }
|
|
44
|
+
expected_status: 400
|
|
45
|
+
expected_response_contains: "invalid email format"
|
|
46
|
+
|
|
47
|
+
- name: "user_not_found"
|
|
48
|
+
request:
|
|
49
|
+
body: { email: "nonexistent@example.com", password: "password" }
|
|
50
|
+
expected_status: 401
|
|
51
|
+
|
|
52
|
+
- name: "server_error_scenario"
|
|
53
|
+
request:
|
|
54
|
+
body: { email: "user123@example.com", password: "correct_password" }
|
|
55
|
+
simulate_error: "database_connection_failed"
|
|
56
|
+
expected_status: 500
|
|
57
|
+
expected_response_contains: "Internal Server Error"
|
|
58
|
+
|
|
59
|
+
assertions:
|
|
60
|
+
- type: "http_status"
|
|
61
|
+
description: "2xx codes indicate successful operations"
|
|
62
|
+
test: "successful_login returns 200"
|
|
63
|
+
|
|
64
|
+
- type: "http_status"
|
|
65
|
+
description: "401 Unauthorized for authentication failures"
|
|
66
|
+
test: "invalid_credentials returns 401"
|
|
67
|
+
|
|
68
|
+
- type: "http_status"
|
|
69
|
+
description: "400 Bad Request for malformed requests"
|
|
70
|
+
test: "missing required fields returns 400"
|
|
71
|
+
|
|
72
|
+
- type: "http_status"
|
|
73
|
+
description: "400 for invalid data format"
|
|
74
|
+
test: "malformed_email returns 400"
|
|
75
|
+
|
|
76
|
+
- type: "http_status"
|
|
77
|
+
description: "5xx codes indicate server-side errors"
|
|
78
|
+
test: "database failure returns 500"
|
|
79
|
+
|
|
80
|
+
learning_objectives:
|
|
81
|
+
- "Understand HTTP status code categories (2xx, 3xx, 4xx, 5xx)"
|
|
82
|
+
- "Know when to use 200 OK, 201 Created, 400 Bad Request, 401 Unauthorized, 403 Forbidden, 404 Not Found, 500 Internal Server Error"
|
|
83
|
+
- "Distinguish between client errors (4xx) and server errors (5xx)"
|
|
84
|
+
- "Return appropriate status codes for different error scenarios"
|
|
85
|
+
|
|
86
|
+
key_concepts:
|
|
87
|
+
- "2xx Success Codes: Indicate successful request processing"
|
|
88
|
+
- "4xx Client Error Codes: Client-side issues - malformed requests, auth failures, not found"
|
|
89
|
+
- "5xx Server Error Codes: Server-side issues - database failures, unhandled exceptions"
|
|
90
|
+
- "Status code semantics matter: Never return 200 with an error message"
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
name: "Rate Limiting and 429 Errors"
|
|
2
|
+
level: 1
|
|
3
|
+
difficulty: beginner
|
|
4
|
+
description: "Implement rate limiting to protect APIs and return 429 Too Many Requests errors"
|
|
5
|
+
|
|
6
|
+
context: |
|
|
7
|
+
Build a rate-limited API endpoint that allows 10 requests per minute per user.
|
|
8
|
+
When the limit is exceeded, return 429 status with information about rate limit reset.
|
|
9
|
+
|
|
10
|
+
scenario:
|
|
11
|
+
state:
|
|
12
|
+
rate_limits:
|
|
13
|
+
user_123: { requests_in_window: 0, window_start: "2024-01-01T00:00:00Z", limit: 10, window_seconds: 60 }
|
|
14
|
+
user_456: { requests_in_window: 10, window_start: "2024-01-01T00:00:00Z", limit: 10, window_seconds: 60 }
|
|
15
|
+
user_789: { requests_in_window: 5, window_start: "2024-01-01T00:00:30Z", limit: 10, window_seconds: 60 }
|
|
16
|
+
|
|
17
|
+
endpoint: "GET /api/v1/data/{resource_id}"
|
|
18
|
+
|
|
19
|
+
test_cases:
|
|
20
|
+
- name: "request_within_limit"
|
|
21
|
+
request:
|
|
22
|
+
path: "/api/v1/data/resource_1"
|
|
23
|
+
headers:
|
|
24
|
+
authorization: "Bearer token_user_123"
|
|
25
|
+
current_time: "2024-01-01T00:00:05Z"
|
|
26
|
+
expected_status: 200
|
|
27
|
+
expected_response_headers:
|
|
28
|
+
- "X-RateLimit-Limit: 10"
|
|
29
|
+
- "X-RateLimit-Remaining: 9"
|
|
30
|
+
- "X-RateLimit-Reset: 2024-01-01T00:01:00Z"
|
|
31
|
+
|
|
32
|
+
- name: "request_at_limit"
|
|
33
|
+
request:
|
|
34
|
+
path: "/api/v1/data/resource_1"
|
|
35
|
+
headers:
|
|
36
|
+
authorization: "Bearer token_user_456"
|
|
37
|
+
current_time: "2024-01-01T00:00:30Z"
|
|
38
|
+
expected_status: 429
|
|
39
|
+
expected_response:
|
|
40
|
+
error:
|
|
41
|
+
code: "RATE_LIMIT_EXCEEDED"
|
|
42
|
+
message: "Too many requests. Please retry after some time."
|
|
43
|
+
expected_response_headers:
|
|
44
|
+
- "X-RateLimit-Limit: 10"
|
|
45
|
+
- "X-RateLimit-Remaining: 0"
|
|
46
|
+
- "X-RateLimit-Reset: 2024-01-01T00:01:00Z"
|
|
47
|
+
- "Retry-After: 30"
|
|
48
|
+
|
|
49
|
+
- name: "request_exceeds_limit"
|
|
50
|
+
request:
|
|
51
|
+
path: "/api/v1/data/resource_1"
|
|
52
|
+
headers:
|
|
53
|
+
authorization: "Bearer token_user_456"
|
|
54
|
+
current_time: "2024-01-01T00:00:45Z"
|
|
55
|
+
expected_status: 429
|
|
56
|
+
expected_response:
|
|
57
|
+
error:
|
|
58
|
+
code: "RATE_LIMIT_EXCEEDED"
|
|
59
|
+
expected_response_headers:
|
|
60
|
+
- "Retry-After: 15"
|
|
61
|
+
|
|
62
|
+
- name: "window_reset_allows_new_requests"
|
|
63
|
+
request:
|
|
64
|
+
path: "/api/v1/data/resource_1"
|
|
65
|
+
headers:
|
|
66
|
+
authorization: "Bearer token_user_456"
|
|
67
|
+
current_time: "2024-01-01T00:01:05Z"
|
|
68
|
+
expected_status: 200
|
|
69
|
+
expected_response_headers:
|
|
70
|
+
- "X-RateLimit-Remaining: 9"
|
|
71
|
+
|
|
72
|
+
- name: "anonymous_user_lower_limit"
|
|
73
|
+
request:
|
|
74
|
+
path: "/api/v1/data/resource_1"
|
|
75
|
+
headers: {}
|
|
76
|
+
current_time: "2024-01-01T00:00:10Z"
|
|
77
|
+
expected_status: 200
|
|
78
|
+
expected_response_headers:
|
|
79
|
+
- "X-RateLimit-Limit: 5"
|
|
80
|
+
|
|
81
|
+
assertions:
|
|
82
|
+
- type: "http_status"
|
|
83
|
+
description: "429 returned when rate limit exceeded"
|
|
84
|
+
test: "rate_limit_exceeded returns 429"
|
|
85
|
+
|
|
86
|
+
- type: "api_called"
|
|
87
|
+
description: "Rate limit headers included in all responses"
|
|
88
|
+
test: "X-RateLimit-Limit header present in responses"
|
|
89
|
+
|
|
90
|
+
- type: "api_called"
|
|
91
|
+
description: "Retry-After header provided in 429 response"
|
|
92
|
+
test: "429 response includes Retry-After header"
|
|
93
|
+
|
|
94
|
+
- type: "api_called"
|
|
95
|
+
description: "Rate limit reset time communicated"
|
|
96
|
+
test: "X-RateLimit-Reset header shows window reset time"
|
|
97
|
+
|
|
98
|
+
- type: "api_called"
|
|
99
|
+
description: "Remaining requests tracked"
|
|
100
|
+
test: "X-RateLimit-Remaining decrements with each request"
|
|
101
|
+
|
|
102
|
+
- type: "outcome"
|
|
103
|
+
description: "Rate limits are enforced per user"
|
|
104
|
+
test: "different users have independent rate limit windows"
|
|
105
|
+
|
|
106
|
+
learning_objectives:
|
|
107
|
+
- "Understand rate limiting purpose: protect API from abuse and ensure fair usage"
|
|
108
|
+
- "Implement per-user rate limiting windows"
|
|
109
|
+
- "Return 429 Too Many Requests when limit exceeded"
|
|
110
|
+
- "Include rate limit information in response headers"
|
|
111
|
+
- "Provide Retry-After header for client backoff guidance"
|
|
112
|
+
- "Differentiate rate limits for authenticated vs anonymous users"
|
|
113
|
+
- "Reset rate limit windows at appropriate intervals"
|
|
114
|
+
|
|
115
|
+
standard_headers:
|
|
116
|
+
"X-RateLimit-Limit": "Maximum requests allowed in window"
|
|
117
|
+
"X-RateLimit-Remaining": "Requests remaining in current window"
|
|
118
|
+
"X-RateLimit-Reset": "Unix timestamp or ISO 8601 when window resets"
|
|
119
|
+
"Retry-After": "Seconds to wait before retrying (429 only)"
|
|
120
|
+
|
|
121
|
+
best_practices:
|
|
122
|
+
- "Include rate limit headers in all responses, not just 429"
|
|
123
|
+
- "Use consistent rate limit windows (typically 1-60 seconds)"
|
|
124
|
+
- "Consider different limits for different user tiers"
|
|
125
|
+
- "Log rate limit violations for monitoring"
|
|
126
|
+
- "Include Retry-After guidance for clients"
|
|
127
|
+
- "Reset windows in predictable intervals to avoid thundering herd"
|
|
128
|
+
|
|
129
|
+
common_mistakes:
|
|
130
|
+
- "Returning 500 instead of 429 for rate limit violations"
|
|
131
|
+
- "Not including rate limit headers in responses"
|
|
132
|
+
- "Applying same limits to all user types"
|
|
133
|
+
- "Using unclear Retry-After values"
|
|
134
|
+
- "Not resetting rate limit windows"
|
|
135
|
+
- "Blocking entire IP address instead of per-user limiting"
|