Best of AutomationApril 2026

  1. 1
    Article
    Avatar of bunBun·6w

    Bun v1.3.12

    Bun v1.3.12 ships with a large set of new features and bugfixes. Highlights include native headless browser automation via Bun.WebView (WebKit and Chrome backends), terminal Markdown rendering with `bun ./file.md`, an in-process Bun.cron() scheduler, async stack traces for native errors, 2.3x faster URLPattern, 2x faster Bun.Glob.scan, cgroup-aware parallelism on Linux, TCP_DEFER_ACCEPT for Bun.serve(), HTTPS proxy CONNECT tunnel reuse, SIMD-optimized ANSI string utilities, upgraded JavaScriptCore engine with explicit resource management support, and over 120 bug fixes covering Node.js compatibility, memory leaks, crashes, and security issues.

  2. 2
    Article
    Avatar of swizecswizec.com·6w

    Frustration Driven Development

    Frustration is a powerful engineering signal. Instead of repeatedly doing the same manual task, great engineers use that annoyance as motivation to eliminate the problem permanently. Three concrete examples illustrate this: upgrading CI/CD runners to cut build times from 10 to 2 minutes instead of endless Slack debates; building a self-serve permissions UI so managers can grant roles without engineering involvement; and writing AI-assisted tests to cover complex invoicing edge cases that were impossible to reproduce manually. The core philosophy is that your job is to remove work, not just do it — build tools, scripts, dashboards, and automation that create durable value and eliminate recurring friction.

  3. 3
    Article
    Avatar of thevergeThe Verge·4w

    BEWARE SOFTWARE BRAIN

    Nilay Patel introduces the concept of 'software brain' — a worldview that reduces everything to databases, algorithms, and automatable loops — and argues it explains the growing gap between tech industry enthusiasm for AI and widespread public hostility toward it. Polling data shows majorities of Americans, especially Gen Z, view AI negatively despite heavy usage. Patel contends AI doesn't have a marketing problem; it has a fundamental mismatch problem: tech leaders want people to flatten their lives into databases to make AI useful, but most people find this dehumanizing. He draws parallels between software thinking and legal thinking, notes the limits of both when applied to messy human reality, and argues that asking people to make themselves 'legible to software' is a doomed proposition — especially when AI executives simultaneously warn of mass job displacement.

  4. 4
    Article
    Avatar of frankelA Java geek·6w

    A GitHub agentic workflow

    GitHub agentic workflows combine standard GitHub Actions with an AI agent (powered by Copilot) to handle semi-structured or unstructured data tasks. The author describes a real use case: automating the parsing of product release notes to generate upgrade analysis config files — something impossible with deterministic regex-based automation. Key steps covered include initializing workflows via the `gh aw` CLI extension, writing workflows in Markdown and compiling them to YAML, and using a fine-grained `GITHUB_COPILOT_TOKEN`. Practical pitfalls are shared: forgetting to compile Markdown to YAML before pushing, Windows/Linux line-ending issues requiring a `.gitattributes` fix, security concerns around auto-compiling workflows, and the inability to use GitHub Marketplace actions inside agentic workflows. The system prompt used at runtime is also shared, highlighting security hardening and prompt injection defenses.

  5. 5
    Article
    Avatar of collectionsCollections·6w

    Claude Code now supports automated routines triggered by schedule, API, or GitHub events

    Anthropic has launched Routines in Claude Code, a cloud-based automation feature currently in research preview for Pro, Max, Team, and Enterprise subscribers. Routines let you configure a task once — with a prompt, repo, and connectors — and have it run automatically on Anthropic's infrastructure without a local machine. Three trigger types are supported: scheduled (hourly/daily/weekly), API (HTTP POST with bearer token), and GitHub events (PRs, pushes, releases, issues). Multiple triggers can be combined on a single routine. Routines run fully autonomously with access to MCP servers, GitHub repos, and environment variables. Daily run limits vary by plan (5 for Pro, 15–25 for Max, 25 for Team/Enterprise) and run against subscription billing rather than API billing. Key caveats include LLM inference latency (2–15s per step), no pre-built OAuth connectors, and the need for careful prompt scoping since routines run unattended. Anthropic positions this as a developer-native alternative to tools like Make.com and n8n, with plain prompts and Git integration instead of a visual node editor.

  6. 6
    Article
    Avatar of collectionsCollections·5w

    OpenAI's Codex expands beyond coding with computer use, image generation, and scheduled automations

    OpenAI has expanded Codex into a general-purpose agent platform with background computer use (Mac only), an embedded browser, image generation, 90 new plugins, and persistent scheduled automations. A new Chronicle feature passively captures screenshots and builds context in the cloud — raising GDPR concerns and privacy risks. Codex now has 4 million weekly users, with 80%+ of OpenAI employees using it for non-coding tasks. Moonshot AI has open-sourced Kimi K2.6, an agentic coding model scoring 80.2% on SWE-Bench Verified and supporting Agent Swarm architectures with up to 300 sub-agents. A head-to-head comparison against Claude Opus 4.7 shows K2.6 scoring 68/100 vs 91/100 on a complex workflow spec, but at roughly 19% of the cost. K2.6 is practical for scaffolding and prototyping where cost matters; Claude Opus 4.7 remains stronger for correctness-critical work.

  7. 7
    Article
    Avatar of netflixNetflix TechBlog·4w

    Scaling Camera File Processing at Netflix

    Netflix's Media Production Suite (MPS) integrates FilmLight's API (FLAPI) to handle camera file processing at scale across hundreds of productions globally. The system automates inspection of camera metadata on ingest, generates VFX plates and deliverables using open standards like ACES and ASC FDL, and runs as serverless Docker-based functions on Netflix's Cosmos compute platform. By using CPU-only cloud instances and elastic scaling, Netflix achieves parallel processing of thousands of renders during peak workloads without fixed hardware constraints. The partnership with FilmLight allows Netflix to focus on workflow orchestration while leveraging FilmLight's deep camera format expertise, reducing manual effort and turnaround times for productions worldwide.

  8. 8
    Article
    Avatar of alexcloudstarAlex CloudStar·8w

    One-Person Startup in 2026: How Solo Founders Scale

    Solo founders are increasingly scaling to $1M+ ARR by combining AI agents, automation, and focused product strategies. Real examples like Base44 ($80M acquisition), Pieter Levels ($3-5M/year), and others show this is becoming a repeatable pattern. Key success factors include: using AI agents for customer-facing work (support, lead qualification, churn prevention), aggressive scope control, charging early, building systems instead of relying on hustle, and using contractors for non-core work. The practical playbook covers a 12-week launch sequence: build distribution first, validate pain with real conversations, ship an MVP with agentic coding tools, then automate operations as they emerge. Honest constraints are also addressed: single point of failure risk, enterprise credibility gaps, loneliness, and revenue ceilings without leverage.