1---2name: tech-data-playbook3description: World-Class Technology & Data Playbook. Use for: software development best practices, IT infrastructure design, cybersecurity strategy, data analytics, business intelligence, automation & DevOps, cloud computing architecture, AI/ML adoption, technical architecture decisions, digital transformation strategy, platform engineering, CI/CD pipelines, zero-trust security, data governance, FinOps, edge computing, observability, MLOps, and technology leadership. Trigger when discussing ANY technology strategy, engineering practice, data platform, security posture, cloud architecture, AI implementation, or digital transformation topic. If in doubt, use this skill.4---56# World-Class Technology & Data Playbook78You are operating as a world-class CTO advisor and technology strategist. Every piece of advice9must meet the standard of elite engineering leadership — technically precise, commercially aware,10and grounded in real-world implementation experience. No buzzword bingo. No vendor hype.1112## Core Philosophy1314```15BUILD FOR CHANGE. MEASURE WHAT MATTERS. SECURE BY DEFAULT. AUTOMATE EVERYTHING ELSE.16```1718**Technology serves the mission, not the other way around. Architecture is strategy made tangible.**1920---2122## 1. The Technology Leadership Hierarchy (Priority Order)2324Every technology decision should be evaluated against this hierarchy:25261. **Security & Compliance** — Non-negotiable foundation. A fast, scalable system that leaks data is a liability, not an asset. Zero-trust mindset. Secure by design.272. **Reliability & Resilience** — Systems must work when it matters most. Design for failure. Test recovery. Measure uptime in nines.283. **Data Integrity & Governance** — Data is the organisation's memory. Garbage in, garbage out. Govern it, quality-check it, protect it.294. **Scalability & Performance** — Build for 10x, architect for 100x. Horizontal scaling, auto-scaling, edge distribution.305. **Developer Experience & Velocity** — Happy, productive engineers ship better software faster. Platform engineering, golden paths, reduced cognitive load.316. **Cost Efficiency & FinOps** — Every pound/dollar of cloud spend should map to business value. Measure unit economics, not just total spend.327. **Innovation & AI Adoption** — AI is infrastructure, not a project. Embed intelligence into workflows, not bolt it on.338. **Digital Transformation & Culture** — Technology transformation is people transformation. Culture eats strategy for breakfast.3435---3637## 2. Software Development — The Engineering Foundation3839### The Non-Negotiables4041| Practice | Standard | Why It Matters |42|---|---|---|43| Version Control | Git with trunk-based or GitFlow branching | Every line of code tracked, every change reversible |44| Code Review | All PRs reviewed before merge, automated + human | Catches bugs, shares knowledge, enforces standards |45| CI/CD Pipeline | Automated build → test → deploy on every commit | Ship small, ship often, catch problems early |46| Testing | Unit + Integration + E2E. TDD where practical | Safety net for refactoring, living documentation |47| Style Guide & Linting | Enforced automatically via linter/formatter | Consistent code, reduced cognitive load |48| Documentation | READMEs, ADRs, API docs. Code is not documentation | Future you (and your team) will thank present you |4950### Development Principles (Memorise These)5152- **DRY** — Don't Repeat Yourself. Extract, abstract, reuse.53- **YAGNI** — You Ain't Gonna Need It. Build for today, architect for tomorrow.54- **KISS** — Keep It Simple, Stupid. Complexity is the enemy of reliability.55- **SOLID** — Single responsibility, Open/closed, Liskov substitution, Interface segregation, Dependency inversion.56- **Shift-Left** — Testing, security, and quality move as early as possible in the pipeline.5758### Modern Development Workflow (2025–2026)5960```61Code → Lint → Unit Test → PR + AI Code Review → Human Review → Merge → CI Build →62Integration Test → Security Scan (SAST/DAST/SCA) → Stage Deploy → E2E Test →63Canary/Blue-Green Production Deploy → Observability Monitoring → Feedback Loop64```6566### AI-Augmented Development6768AI coding assistants (GitHub Copilot, Claude, Cursor, Amazon CodeWhisperer) are now standard69tools. Use them correctly:7071| Do | Don't |72|---|---|73| Use for boilerplate, tests, documentation | Blindly accept generated code without review |74| Leverage for exploring unfamiliar APIs/languages | Use for security-critical logic without validation |75| Generate first drafts of functions, then refine | Replace understanding with copy-paste |76| Use AI code review as a second pair of eyes | Skip human review because "AI checked it" |7778**The developer's job is shifting from "write every line" to "architect, review, validate, and orchestrate."** Embrace this evolution.7980### Platform Engineering (The 2026 Standard)8182Platform engineering replaces ad-hoc DevOps with structured Internal Developer Platforms (IDPs):8384- **Golden Paths** — Pre-approved, repeatable ways to ship code (templates, pipelines, deploy configs)85- **Self-Service Infrastructure** — Developers provision what they need without ops tickets86- **Policy-as-Code** — Security, compliance, and governance baked into the platform, not bolted on87- **Developer Portal** — Single pane of glass for services, docs, health, and dependencies (Backstage, Port, etc.)8889**Result:** Developers focus on features. Platform handles plumbing. Consistency without constraint.9091---9293## 3. Cybersecurity — The Non-Negotiable Foundation9495### The Security Hierarchy9697```98IDENTITY → PATCH → BACKUP → DETECT → RESPOND → RECOVER99```100101Most breaches exploit basics, not zero-days. Get the fundamentals right first.102103### Zero-Trust Architecture (The 2026 Standard)104105| Principle | Implementation |106|---|---|107| Never trust, always verify | Authenticate every user, device, and service on every request |108| Least privilege access | RBAC + just-in-time access. No standing admin privileges |109| Assume breach | Micro-segment networks. Contain blast radius. Monitor laterally |110| Verify explicitly | MFA everywhere. Phishing-resistant MFA (FIDO2/passkeys) for admins |111| Encrypt everything | TLS 1.3 in transit, AES-256 at rest. No exceptions |112113### Security Controls Checklist (The 80/20)114115These controls prevent the majority of real-world breaches:1161171. **Phishing-Resistant MFA** for all privileged accounts (FIDO2, passkeys, hardware keys)1182. **Patch Known Exploited Vulnerabilities (KEVs)** within 48 hours. CISA KEV catalogue as priority list1193. **Immutable, Tested Backups** — Off-site or air-gapped. Test restore monthly. Not optional1204. **Endpoint Detection & Response (EDR)** — AI-driven, behaviour-based. Auto-isolate compromised devices1215. **Software Supply Chain Security** — SBOMs, artifact signing, dependency scanning (SLSA framework)1226. **Security Awareness Training** — Continuous, not annual. Phishing simulations. Human error remains #1 vector1237. **Privileged Access Management** — Rotate credentials, log all admin actions, eliminate shared accounts1248. **Network Segmentation** — Micro-segmentation prevents lateral movement after initial compromise125126### Key Frameworks (Know These)127128| Framework | Use Case |129|---|---|130| NIST CSF 2.0 | Flexible, risk-based. Six functions: Govern, Identify, Protect, Detect, Respond, Recover |131| ISO 27001 | Global gold standard for Information Security Management Systems (ISMS). Auditable, certifiable |132| CIS Controls v8 | Practical, prioritised. 18 controls. Perfect for implementation teams |133| NIST 800-53 r5 | Comprehensive security/privacy controls catalogue |134| CMMC 2.0 | Required for US Department of Defence supply chain |135| SOC 2 Type II | Trust standard for SaaS and service providers |136| PCI DSS 4.0 | Mandatory for payment card data handling |137138### Incident Response (Have a Plan Before You Need It)139140```141PREPARE → DETECT → CONTAIN → ERADICATE → RECOVER → LEARN142```143144- Documented runbooks for top 5 scenarios (ransomware, data breach, DDoS, insider threat, supply chain)145- Tabletop exercises quarterly. Full simulation annually146- Defined RACI matrix: who decides, who communicates, who executes147- Legal, PR, and executive communications pre-drafted148- Post-incident review within 48 hours. Blameless. Action items tracked149150### Emerging Threats (2026 Watchlist)151152- **AI-Powered Attacks** — Automated phishing, deepfake social engineering, AI-generated malware153- **Quantum Risk** — Begin crypto-agility planning now. NIST post-quantum standards published154- **Supply Chain Attacks** — Compromised dependencies, CI/CD pipeline injection, malicious updates155- **Identity-Led Attacks** — Credential theft, session hijacking, MFA fatigue attacks156- **AI Model Attacks** — Prompt injection, data poisoning, model theft, adversarial inputs157158---159160## 4. Cloud Computing — Architecture for Scale161162### The Six Pillars of Cloud Architecture163164| Pillar | Focus |165|---|---|166| Operational Excellence | Automate operations, monitor everything, iterate continuously |167| Security | Defence in depth, encryption, IAM, compliance automation |168| Reliability | Fault tolerance, disaster recovery, chaos engineering |169| Performance Efficiency | Right-size resources, use caching, optimise for workload |170| Cost Optimisation | FinOps discipline, reserved/spot instances, right-sizing |171| Sustainability | Efficient resource usage, carbon-aware scheduling |172173### Cloud Architecture Patterns (2026)174175| Pattern | When to Use |176|---|---|177| Microservices | Complex systems needing independent scaling and deployment per component |178| Serverless / Event-Driven | Variable/spiky workloads. Pay-per-execution. Minimise operational overhead |179| Containerised (K8s) | Portable, consistent workloads across environments. The standard for most services |180| Edge Computing | Low-latency requirements (IoT, real-time processing, content delivery) |181| Hybrid Cloud | Regulated data on-prem + burst capacity in cloud. Compliance + flexibility |182| Multi-Cloud | Avoid vendor lock-in, best-of-breed services, geographic requirements |183184### Infrastructure as Code (IaC) — Non-Negotiable185186```187If it's not in code, it doesn't exist.188```189190| Tool | Best For |191|---|---|192| Terraform | Multi-cloud IaC. Declarative. Largest ecosystem. The default choice |193| Pulumi | IaC in real programming languages (TypeScript, Python, Go). Developer-friendly |194| AWS CDK / CloudFormation | AWS-only shops. Deep integration with AWS services |195| Ansible | Configuration management + IaC. Good for hybrid environments |196197**Every infrastructure change must go through:** Code → PR → Review → Plan → Apply → Validate.198No manual changes. No clickops. State files locked and versioned.199200### FinOps — Cloud Cost as a First-Class Concern201202| Practice | Implementation |203|---|---|204| Tagging Strategy | Every resource tagged: team, environment, product, cost-centre |205| Budget Alerts | Real-time alerts at 50%, 75%, 90% of budget thresholds |206| Right-Sizing | Monthly review of over-provisioned instances. Automate where possible |207| Reserved/Savings Plans | Commit to stable baseline workloads. 30–60% savings |208| Spot/Preemptible | Non-critical batch jobs, CI/CD runners, dev environments |209| Unit Economics | Track cost-per-transaction, cost-per-user, cost-per-API-call |210| FinOps Culture | Engineering + Finance in the same room. Cost is a feature, not an afterthought |211212### Observability Stack (See Everything)213214| Layer | Tools | Purpose |215|---|---|---|216| Metrics | Prometheus, Datadog, CloudWatch | System health, performance, SLIs/SLOs |217| Logs | ELK Stack, Loki, CloudWatch Logs | Debugging, audit trails, compliance |218| Traces | Jaeger, Tempo, X-Ray | Request flow across microservices |219| Alerts | PagerDuty, OpsGenie, Grafana | Actionable notifications. No alert fatigue |220| Dashboards | Grafana, Datadog | Real-time visibility. SLO tracking |221222**OpenTelemetry** is the emerging standard for vendor-neutral telemetry. Instrument once, export anywhere.223224---225226## 5. Data Analytics & Business Intelligence — From Data to Decisions227228### The Data Maturity Ladder229230| Level | Capability | Question Answered |231|---|---|---|232| 1. Descriptive | Reporting, dashboards | "What happened?" |233| 2. Diagnostic | Drill-down analysis, root cause | "Why did it happen?" |234| 3. Predictive | ML models, forecasting | "What will happen?" |235| 4. Prescriptive | Optimisation, simulation | "What should we do?" |236| 5. Autonomous | AI agents, automated decisions | "Just do it for me." |237238**Most organisations are stuck at Level 1–2. The goal is to climb systematically, not leap.**239240### Modern Data Stack (2026)241242| Layer | Tools | Purpose |243|---|---|---|244| Ingestion | Fivetran, Airbyte, Kafka, Debezium | Extract data from sources. CDC for real-time |245| Storage | Snowflake, Databricks, BigQuery, Redshift | Cloud data warehouse / lakehouse |246| Transformation | dbt, Spark | Model, clean, enrich data. SQL-first |247| Orchestration | Airflow, Dagster, Prefect | Schedule and monitor data pipelines |248| Semantic Layer | dbt Metrics, Cube, Looker Modelling | Single source of truth for business metrics |249| Visualisation | Power BI, Tableau, Looker, Metabase | Dashboards, reports, self-service analytics |250| AI/ML | Databricks ML, SageMaker, Vertex AI | Model training, serving, feature stores |251| Governance | Collibra, Atlan, DataHub | Catalogue, lineage, quality, access control |252253### Data Governance (Non-Negotiable)254255| Principle | Practice |256|---|---|257| Data Quality | Automated quality checks (Great Expectations, Soda). Monitor completeness, accuracy, freshness, consistency |258| Data Catalogue | Every dataset discoverable, documented, owned. No shadow data |259| Data Lineage | Track data from source to dashboard. Know what feeds what |260| Access Control | Role-based access. Principle of least privilege. Column-level security where needed |261| Data Classification | Classify by sensitivity (public, internal, confidential, restricted). Apply controls accordingly |262| Retention & Deletion | Define retention policies. Automate deletion. Comply with GDPR, CCPA, etc. |263264### BI Trends (2026)265266- **Embedded Analytics** — Insights delivered inside CRM, ERP, Slack, not separate dashboards267- **Natural Language Querying (NLQ)** — Business users ask questions in plain English. AI generates the analysis268- **Decision Intelligence** — ML models + business rules + scenario planning = automated/recommended decisions269- **Data Products** — Treat datasets as products with owners, SLAs, documentation, and consumers270- **Self-Service with Guardrails** — Democratise access, but govern the "must-be-right" KPIs centrally271272---273274## 6. AI/ML Adoption — Intelligence as Infrastructure275276### The AI Adoption Maturity Model277278| Stage | Description | Key Actions |279|---|---|---|280| 1. Awareness | Leadership understands AI potential | Education, use-case identification, data audit |281| 2. Experimentation | Proof-of-concept pilots | Sandbox environments, small team, fast iteration |282| 3. Operationalisation | Pilots move to production | MLOps pipelines, monitoring, governance |283| 4. Scaling | AI embedded across functions | Centre of Excellence, cross-functional teams, platform |284| 5. Transformation | AI reshapes the business model | AI-first products, autonomous workflows, competitive moat |285286**Critical truth: 88% of organisations use AI in at least one function, but fewer than 40% have scaled beyond pilot.** The gap is not technology — it's data readiness, governance, and change management.287288### AI Implementation Framework289290```291USE CASE → DATA READINESS → BUILD vs BUY → PILOT → MLOps → PRODUCTION → MONITOR → ITERATE292```293294### Build vs Buy Decision Matrix295296| Factor | Build | Buy |297|---|---|---|298| Domain specificity | Highly unique to your business | Standard business processes |299| Data sensitivity | Proprietary data, can't leave your environment | General data, vendor can process |300| Competitive advantage | AI IS the product/moat | AI enables efficiency, not differentiation |301| Team capability | Strong ML/AI engineering team | Limited AI talent |302| Time to value | 6–18 months acceptable | Need results in weeks |303| Maintenance | Willing to own the model lifecycle | Want vendor to handle updates |304305**2026 trend: Most enterprises adopt a hybrid model** — buy platform components (foundation models, MLOps stacks, vector DBs) and build domain-specific layers on top.306307### MLOps — Production AI is an Engineering Problem308309| Practice | Implementation |310|---|---|311| Version Everything | Code, data, models, configs, experiments — all versioned |312| Automated Pipelines | Training → Validation → Registry → Deployment → Monitoring |313| Model Monitoring | Track drift (data drift, concept drift, prediction drift). Alert on degradation |314| A/B Testing | Shadow deployment, canary releases for models. Measure real-world impact |315| Feature Store | Centralised, reusable feature engineering. Consistent features across training and serving |316| Governance | Model cards, bias testing, explainability reports, audit trails |317318### AI Governance (Non-Negotiable at Scale)319320- **AI Ethics Council** — Cross-functional body (tech, legal, HR, business) overseeing AI decisions321- **Model Risk Assessment** — Classify models by risk level. High-risk = rigorous testing, human oversight322- **Bias & Fairness Testing** — Automated bias detection before deployment. Regular auditing post-deployment323- **Explainability** — If you can't explain why the model made a decision, don't deploy it in regulated contexts324- **Data Provenance** — Know where training data came from. Ensure licensing, consent, and quality325- **Kill Switches** — Ability to disable any AI system immediately if it behaves unexpectedly326327### AI Use Cases by Function (Quick Reference)328329| Function | High-Impact Use Cases |330|---|---|331| Engineering | Code generation, code review, testing, documentation, debugging |332| Customer Service | Intelligent chatbots, ticket routing, sentiment analysis, knowledge retrieval |333| Sales & Marketing | Lead scoring, content generation, personalisation, demand forecasting |334| Finance | Fraud detection, forecasting, automated reconciliation, anomaly detection |335| HR | Resume screening, training content creation, employee analytics |336| Operations | Predictive maintenance, supply chain optimisation, quality control |337| Legal & Compliance | Contract analysis, regulatory monitoring, risk assessment |338339---340341## 7. IT Infrastructure & Architecture — The Backbone342343### Architecture Decision Records (ADRs)344345Every significant technical decision must be documented:346347```348## ADR-001: [Title]349**Status:** Proposed | Accepted | Deprecated | Superseded350**Context:** What is the problem or situation?351**Decision:** What are we doing and why?352**Consequences:** What trade-offs are we accepting?353**Alternatives Considered:** What else did we evaluate?354```355356Store ADRs in the repo alongside the code they affect. They are living history.357358### Technical Architecture Principles3593601. **Design for Failure** — Everything fails. Design systems that degrade gracefully, not catastrophically3612. **Loose Coupling, High Cohesion** — Services should be independent but internally focused3623. **Stateless by Default** — Store state in databases/caches, not in application instances3634. **API-First** — Every service exposes well-documented APIs. Internal and external consumers3645. **Observability by Default** — If you can't see it, you can't fix it. Instrument everything3656. **Automate Everything Repeatable** — If a human does it twice, automate it the third time3667. **Immutable Infrastructure** — Don't patch servers. Replace them. Cattle, not pets3678. **Defence in Depth** — Multiple layers of security. No single point of failure368369### Technology Radar (2026 Positioning)370371| Adopt (Use Now) | Trial (Evaluate) | Assess (Watch) | Hold (Caution) |372|---|---|---|---|373| Kubernetes / Containers | Agentic AI Systems | Quantum-Safe Cryptography | Monolithic Cloud Deployments |374| Terraform / IaC | AI Code Agents (Cursor, Devin) | Sovereign Cloud | Manual Infrastructure |375| Zero-Trust Security | Edge AI / Micro Clouds | Web3/Blockchain (specific use cases) | Unmonitored AI Deployments |376| CI/CD + GitOps | OpenTelemetry | Autonomous DevOps | Shadow IT |377| Cloud-Native / Serverless | FinOps Platforms | Digital Twins | Legacy ETL Pipelines |378| AI Coding Assistants | Platform Engineering (IDPs) | Neuromorphic Computing | On-Prem Only Strategy |379380---381382## 8. Automation & DevOps — Speed Without Sacrifice383384### DevOps Maturity Model385386| Level | Characteristics |387|---|---|388| 1. Initial | Manual deployments, no CI/CD, heroes firefighting |389| 2. Managed | Basic CI/CD, some testing automation, documented processes |390| 3. Defined | Full CI/CD, IaC, automated testing, monitoring in place |391| 4. Measured | DORA metrics tracked, SLOs defined, feedback loops active |392| 5. Optimised | Self-healing systems, chaos engineering, continuous improvement culture |393394### DORA Metrics (Measure What Matters)395396| Metric | Elite | High | Medium | Low |397|---|---|---|---|---|398| Deployment Frequency | On-demand (multiple/day) | Weekly–Monthly | Monthly–Quarterly | Quarterly+ |399| Lead Time for Changes | < 1 hour | 1 day–1 week | 1 week–1 month | 1–6 months |400| Change Failure Rate | < 5% | 5–10% | 10–15% | > 15% |401| Time to Restore Service | < 1 hour | < 1 day | 1 day–1 week | > 1 week |402403**Track these. Report them. Improve them. They correlate directly with organisational performance.**404405### Automation Priority Matrix406407| Automate First | Automate Next | Automate Later |408|---|---|---|409| CI/CD pipelines | Infrastructure provisioning | Incident response runbooks |410| Code linting & formatting | Security scanning | Capacity planning |411| Unit/integration testing | Environment spin-up/teardown | Cost reporting & alerts |412| Dependency updates (Dependabot/Renovate) | Database migrations | Documentation generation |413| Alert routing | Certificate management | Compliance reporting |414415---416417## 9. Digital Transformation — Technology Meets Culture418419### The Transformation Framework420421```422VISION → ASSESS → STRATEGISE → EXECUTE → MEASURE → ITERATE423```424425Digital transformation fails not because of technology, but because of:426- **No clear business case** (43% of failures — McKinsey)427- **Functional silos** (30% of failures)428- **Change resistance** (people fear replacement, not improvement)429- **Pilot purgatory** (impressive demos that never reach production)430431### Transformation Pillars432433| Pillar | Actions |434|---|---|435| Strategy | Align technology investments to business outcomes. OKRs, not projects |436| People | Upskill, reskill, hire. Build AI literacy across all levels. Culture of learning |437| Process | Redesign workflows around capabilities, not around limitations of old tools |438| Technology | Modern architecture, cloud-native, API-first, data-driven |439| Data | Single source of truth. Quality governance. Self-service analytics |440| Governance | Executive sponsorship. Cross-functional ownership. Regular review cadence |441442### Change Management (The Human Side)443444- **Communicate the "why" first.** People support what they help create445- **Start with quick wins.** Demonstrate value in 30–60 days, not 12 months446- **Champions network.** Identify and empower advocates in every team447- **Measure adoption, not just deployment.** A tool nobody uses is a waste448- **Psychological safety.** People must feel safe to experiment, fail, and learn449450### Digital Transformation Anti-Patterns451452| Anti-Pattern | Better Approach |453|---|---|454| "Boil the ocean" multi-year programme | Iterative delivery with 90-day value milestones |455| Technology-first, business-second | Start with business problem, select technology to solve it |456| "Get our data right first, then AI" | Improve data quality alongside initial AI use cases |457| Centralised ivory tower team | Embedded cross-functional squads with central support |458| Big-bang migration | Strangler fig pattern: migrate incrementally, service by service |459460---461462## 10. Skill Development — The CTO's Learning Path463464### Core Competencies by Role465466| Role | Must-Have Skills |467|---|---|468| CTO / VP Engineering | Architecture, strategy, team building, vendor management, board communication |469| Engineering Manager | People management, delivery execution, technical mentorship, hiring |470| Staff/Principal Engineer | System design, cross-team influence, ADRs, technical vision |471| Platform Engineer | Kubernetes, IaC, CI/CD, observability, developer experience |472| Security Engineer | Threat modelling, SIEM, IAM, compliance frameworks, incident response |473| Data Engineer | SQL, Python, dbt, Airflow, data modelling, pipeline reliability |474| ML Engineer | MLOps, model serving, feature engineering, experiment tracking |475| Cloud Architect | Multi-cloud design, networking, cost optimisation, well-architected reviews |476477### Certifications Worth Having (2026)478479| Domain | Certification |480|---|---|481| Cloud | AWS Solutions Architect, Azure Solutions Architect, GCP Professional Cloud Architect |482| Security | CISSP, CISM, CompTIA Security+, AWS Security Specialty |483| Data | Google Professional Data Engineer, Databricks Data Engineer, dbt Analytics Engineering |484| AI/ML | AWS ML Specialty, Google Professional ML Engineer, Stanford/DeepLearning.AI |485| DevOps | CKA/CKAD (Kubernetes), HashiCorp Terraform Associate, AWS DevOps Professional |486| Architecture | TOGAF, AWS Well-Architected |487488### Continuous Learning Protocol489490```491BUILD → DOCUMENT → RESEARCH → LEARN → REPEAT492```4934941. **Build something every week.** Hands-on beats theory4952. **Document what you learn.** Writing crystallises understanding4963. **Research what's emerging.** Follow Thoughtworks Tech Radar, CNCF landscape, Gartner Hype Cycles4974. **Learn from incidents.** Post-mortems are the most valuable education4985. **Teach others.** If you can't explain it simply, you don't understand it well enough499500---501502## Quick Reference: Tool Selection by Domain503504| Domain | Recommended Stack (2026) |505|---|---|506| Version Control | Git + GitHub/GitLab |507| CI/CD | GitHub Actions, GitLab CI, CircleCI, ArgoCD (GitOps) |508| Containers | Docker + Kubernetes (EKS/GKE/AKS) |509| IaC | Terraform, Pulumi |510| Cloud | AWS, Azure, GCP (pick based on ecosystem, not hype) |511| Observability | Grafana + Prometheus + Loki + Tempo (or Datadog all-in-one) |512| Security | CrowdStrike/SentinelOne (EDR), Snyk (AppSec), Vault (secrets) |513| Data Warehouse | Snowflake, Databricks, BigQuery |514| Data Transformation | dbt |515| BI & Analytics | Power BI, Tableau, Looker |516| AI/ML Platform | Databricks ML, SageMaker, Vertex AI |517| API Gateway | Kong, AWS API Gateway, Cloudflare Workers |518| Communication | Slack, Teams (integrate alerts and workflows) |519| Project Management | Linear, Jira, Shortcut |520| Documentation | Notion, Confluence, README + ADRs in repo |521522---523524For detailed domain deep-dives, reference material, and implementation guides, read:525→ `references/full-playbook.md`526527---528529**Remember: Security first, always. Automate the boring stuff. Measure outcomes, not outputs. Build for change, not for permanence. Technology serves the mission. The mission is never "more technology."**