{
  "meta": {
    "instanceId": "7888501fe66f93847229a4fe1e4efd9754bf14b1b98634200b2ff2090b5002a3",
    "templateCredsSetupCompleted": true
  },
  "nodes": [
    {
      "id": "69394736-5c78-420e-9f03-ac18501cb377",
      "name": "Daily Newsletter Trigger",
      "type": "n8n-nodes-base.scheduleTrigger",
      "notes": "⏰ Triggers daily at 8 AM UTC\n\nCustomize:\n- Change triggerAtHour (0-23)\n- Add timezone settings\n- Set weekday-only schedule",
      "position": [
        624,
        1040
      ],
      "parameters": {
        "rule": {
          "interval": [
            {
              "triggerAtHour": 8
            }
          ]
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "1ee57ce6-d7aa-49d5-bac7-814bde5b0a65",
      "name": "Configure RSS Sources",
      "type": "n8n-nodes-base.set",
      "notes": "📡 Premium tech news RSS feeds\n\nSources:\n• TechCrunch AI\n• The Verge AI\n• MIT Tech Review\n• Wired AI\n• VentureBeat\n• ZDNet\n• Towards Data Science\n• NY Times Tech\n• Guardian Tech\n• BBC Tech",
      "position": [
        864,
        1040
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "53097a16-a525-4c89-828e-a36c5e0c3742",
              "name": "urls",
              "type": "array",
              "value": "[\n  \"https://techcrunch.com/tag/artificial-intelligence/feed/\",\n  \"https://www.theverge.com/artificial-intelligence/rss/index.xml\",\n  \"https://www.technologyreview.com/feed/\",\n  \"https://www.wired.com/feed/category/science/artificial-intelligence/latest/rss\",\n  \"https://venturebeat.com/category/ai/feed/\",\n  \"https://www.zdnet.com/topic/artificial-intelligence/rss.xml\",\n  \"https://towardsdatascience.com/feed\",\n  \"https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml\",\n  \"https://www.theguardian.com/uk/technology/rss\",\n  \"https://feeds.bbci.co.uk/news/technology/rss.xml\"\n]"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "6477cbf0-790d-41ce-8b45-a273e03c9247",
      "name": "Split RSS URLs",
      "type": "n8n-nodes-base.splitOut",
      "notes": "🔄 Splits URL array for parallel processing\n\nCreates individual execution paths\nfor each RSS feed URL",
      "position": [
        1088,
        1040
      ],
      "parameters": {
        "options": {},
        "fieldToSplitOut": "urls"
      },
      "typeVersion": 1
    },
    {
      "id": "37cfed68-0740-4e77-a1ab-827f8f1eec28",
      "name": "Fetch RSS Articles",
      "type": "n8n-nodes-base.rssFeedRead",
      "notes": "📰 Fetches articles from RSS feeds\n\nExtracts:\n• Title\n• Content snippet\n• Article URL\n• Publication date\n\nContinues on errors to prevent\nsingle feed failures",
      "onError": "continueErrorOutput",
      "position": [
        1296,
        1040
      ],
      "parameters": {
        "url": "={{ $json.urls }}",
        "options": {}
      },
      "retryOnFail": false,
      "typeVersion": 1.2
    },
    {
      "id": "d7f56edb-cd31-4a53-b390-e910b7c50ce8",
      "name": "Filter Articles",
      "type": "n8n-nodes-base.code",
      "notes": "⚖️ Balances article sources\n\n• Max 5 articles per domain\n• Prevents single-source domination\n• Ensures diverse coverage\n• Groups by domain, then flattens",
      "position": [
        1504,
        1040
      ],
      "parameters": {
        "jsCode": "// Limit articles per domain for balanced coverage\nconst input = $input.all();\nconst grouped = {};\n\nfor (const item of input) {\n  const link = item.json.link;\n  const domainMatch = link.match(/\\/\\/([^\\/]+)/);\n  const domain = domainMatch ? domainMatch[1].replace(/^www\\./, '') : 'unknown';\n\n  if (!grouped[domain]) grouped[domain] = [];\n  if (grouped[domain].length < 5) {\n    grouped[domain].push(item.json);\n  }\n}\n\n// Flatten results\nconst result = [];\nfor (const domain in grouped) {\n  result.push(...grouped[domain]);\n}\n\nreturn result.map(i => ({ json: i }));"
      },
      "typeVersion": 2
    },
    {
      "id": "14562212-87cc-4321-8277-bd8519c1adcf",
      "name": "Clean Data",
      "type": "n8n-nodes-base.set",
      "notes": "🧹 Standardizes article structure\n\nMaps to clean format:\n• title → headline\n• content → summary\n• link → article URL\n• pubDate → timestamp",
      "position": [
        1712,
        1040
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "568b89e0-be16-4977-8c2a-882563174c9b",
              "name": "title",
              "type": "string",
              "value": "={{ $json.title }}"
            },
            {
              "id": "dfbf5a07-d66a-434e-8208-5a14946193de",
              "name": "content",
              "type": "string",
              "value": "={{ $json.contentSnippet }}"
            },
            {
              "id": "b3f87e87-2f95-4d84-a03d-f44f3f206db4",
              "name": "link",
              "type": "string",
              "value": "={{ $json.link }}"
            },
            {
              "id": "74e93f7a-908b-486c-bb2f-02e4f5ff204c",
              "name": "pubDate",
              "type": "string",
              "value": "={{ $json.pubDate }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "6769221a-1d99-4c17-9828-46ee92be5926",
      "name": "Combine Articles",
      "type": "n8n-nodes-base.aggregate",
      "notes": "📊 Aggregates all articles\n\nCombines filtered articles from\nall sources into single dataset\nfor AI processing",
      "position": [
        1920,
        1040
      ],
      "parameters": {
        "options": {},
        "aggregate": "aggregateAllItemData"
      },
      "typeVersion": 1
    },
    {
      "id": "6c430d53-cbd3-4881-b86b-48707c9e32a5",
      "name": "AI Newsletter Creator",
      "type": "@n8n/n8n-nodes-langchain.openAi",
      "notes": "🤖 AI-powered article curation\n\nAnalyzes all articles and:\n• Selects top 10 most relevant\n• Creates HTML newsletter\n• Provides article summaries\n• Focuses on trending topics\n\nRequires: OpenAI API key",
      "position": [
        2176,
        1040
      ],
      "parameters": {
        "modelId": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-4o-mini"
        },
        "options": {},
        "messages": {
          "values": [
            {
              "content": "You are an AI Tech News Curator. Analyze the provided articles and create an HTML newsletter with the top 10 most relevant AI/tech articles.\n\nFormat as clean HTML starting with <!DOCTYPE html>\nInclude: article title, brief summary, and link for each article.\nFocus on trending AI, machine learning, and technology topics.\n\nArticles data: {{ JSON.stringify($json.data) }}"
            }
          ]
        }
      },
      "credentials": {
        "openAiApi": {
          "id": "credential-id",
          "name": "openAiApi Credential"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "fb8881bc-7831-43f8-97f7-4a604a4a9806",
      "name": "Send Newsletter",
      "type": "n8n-nodes-base.gmail",
      "notes": "📧 Sends HTML newsletter via Gmail\n\nSetup:\n1. Enable Gmail API\n2. Create OAuth2 credentials\n3. Update recipient email\n\nFeatures:\n• HTML email format\n• Dynamic date in subject\n• Professional newsletter style",
      "position": [
        2528,
        1040
      ],
      "webhookId": "2f333782-f060-4720-9bb9-b1f23c27f780",
      "parameters": {
        "sendTo": "user@example.com",
        "message": "={{ $json.message.content }}",
        "options": {
          "appendAttribution": false
        },
        "subject": "=Daily AI Tech Digest - {{ $now.toFormat('EEEE, MMMM d, yyyy') }}"
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "credential-id",
          "name": "gmailOAuth2 Credential"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "b43da764-1c99-4cdd-8b9c-338753c68826",
      "name": "Sticky Note",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -208,
        384
      ],
      "parameters": {
        "color": 5,
        "width": 736,
        "height": 1136,
        "content": "# AI Tech News Aggregator & Newsletter\n\n### 🎯 Key Features\n- **Premium Sources** - Curates from 14 top-tier tech publications\n- **AI Quality Control** - Intelligent article selection and summarization\n- **Balanced Coverage** - Prevents source bias with smart filtering\n- **Professional Format** - Clean HTML newsletter design\n- **Scheduled Automation** - Daily delivery at customizable times\n- **Error Resilience** - Continues processing even if some feeds fail\n\n## Setup Steps\n\n### ⚙️ Workflow Configuration\n1. **Import the workflow** into your n8n instance\n2. **Update node configurations**:\n   - **Google Vertex AI Model**: Set your Google Cloud Project ID\n   - **Send Newsletter Email**: Update recipient email address\n   - **Daily Newsletter Trigger**: Adjust schedule time if needed\n3. **Verify credentials** are properly connected to respective nodes\n\n### 📰 RSS Sources Customization (Optional)\nThe workflow includes 14 premium tech news sources:\n- TechCrunch (AI & Startups)\n- The Verge (AI section)\n- MIT Technology Review\n- Wired (AI/Science)\n- VentureBeat (AI)\n- ZDNet (AI topics)\n- AI Trends\n- Nature (Machine Learning)\n- Towards Data Science\n- NY Times Technology\n- The Guardian Technology\n- BBC Technology\n- Nikkei Asia Technology\n\n**To customize sources:**\n- Edit the \"Configure RSS Sources\" node\n- Add/remove RSS feed URLs as needed\n- Ensure feeds are active and properly formatted\n\n### 🚀 Testing & Deployment\n1. **Manual Test**: Execute the workflow manually to verify setup\n2. **Check Email**: Confirm newsletter arrives with proper formatting\n3. **Verify AI Output**: Ensure articles are relevant and well-summarized\n4. **Schedule Activation**: Enable the daily trigger for automated operation\n"
      },
      "typeVersion": 1
    },
    {
      "id": "c96013fe-cde1-4ef2-b833-683fb6269d67",
      "name": "Sticky Note1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        560,
        400
      ],
      "parameters": {
        "color": 3,
        "width": 2192,
        "height": 848,
        "content": "## Workflow\n\n### 💡 Customization Options\n\n**Newsletter Timing:**\n- Default: 8:00 AM UTC daily\n- Modify \"triggerAtHour\" in the Schedule Trigger node\n- Add multiple daily sends if desired\n\n**Content Focus:**\n- Adjust the AI prompt in \"AI Tech News Curator\" node\n- Specify different topics (e.g., focus on startups, enterprise AI, etc.)\n- Change output language or format\n\n**Email Recipients:**\n- Update single recipient in Gmail node\n- Or modify to send to multiple addresses\n- Integrate with mailing list services\n\n**Article Limits:**\n- Current: Max 5 articles per source\n- Modify the filtering logic in \"Filter & Balance Articles\" node\n- Adjust total article count in AI prompt\n"
      },
      "typeVersion": 1
    }
  ],
  "pinData": {
    "Clean Data": [
      {
        "json": {
          "link": "https://techcrunch.com/2026/01/13/ai-drug-discovery-startup-converge-bio-pulls-in-25m-from-bessemer-and-execs-from-meta-openai-and-wiz/",
          "title": "Converge Bio raises $25M, backed by Bessemer and execs from Meta, OpenAI, Wiz",
          "content": "AI drug discovery startup Converge Bio raised $25 million in a Series A led by Bessemer Venture Partners, with additional backing from executives at Meta, OpenAI, and Wiz.",
          "pubDate": "Tue, 13 Jan 2026 11:30:00 +0000"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "link": "https://techcrunch.com/2025/10/31/meta-bought-1-gw-of-solar-this-week/",
          "title": "Meta bought 1 GW of solar this week",
          "content": "The social media company inked three deals in the U.S. to power its data centers and offset its carbon footprint.",
          "pubDate": "Fri, 31 Oct 2025 19:26:30 +0000"
        },
        "pairedItem": {
          "item": 1
        }
      },
      {
        "json": {
          "link": "https://techcrunch.com/2025/08/26/how-one-ai-startup-is-helping-rice-farmers-battle-climate-change/",
          "title": "How one AI startup is helping rice farmers battle climate change",
          "content": "Mitti Labs is working with The Nature Conservancy to expand the use of climate-friendly rice farming practices in India. The startup uses its AI to verify reductions in methane emissions.",
          "pubDate": "Tue, 26 Aug 2025 15:21:19 +0000"
        },
        "pairedItem": {
          "item": 2
        }
      },
      {
        "json": {
          "link": "https://techcrunch.com/2025/08/20/harvard-dropouts-to-launch-always-on-ai-smart-glasses-that-listen-and-record-every-conversation/",
          "title": "Harvard dropouts to launch ‘always on’ AI smart glasses that listen and record every conversation",
          "content": "After developing a facial-recognition app for Meta’s Ray-Ban glasses and doxing random people, two former Harvard students are now launching a startup that makes smart glasses with an always-on microphone.",
          "pubDate": "Wed, 20 Aug 2025 16:00:00 +0000"
        },
        "pairedItem": {
          "item": 3
        }
      },
      {
        "json": {
          "link": "https://techcrunch.com/2025/08/20/meta-to-add-100-mw-of-solar-power-from-u-s-gear/",
          "title": "Meta to add 100MW of solar power from US gear",
          "content": "The social media company is adding another tranche of solar to power a new AI data center in South Carolina.",
          "pubDate": "Wed, 20 Aug 2025 15:56:53 +0000"
        },
        "pairedItem": {
          "item": 4
        }
      },
      {
        "json": {
          "link": "https://www.technologyreview.com/2026/02/09/1132537/a-lesson-from-pokemon/",
          "title": "Why the Moltbook frenzy was like Pokémon",
          "content": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first, sign up here. Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show…",
          "pubDate": "Mon, 09 Feb 2026 17:02:56 +0000"
        },
        "pairedItem": {
          "item": 5
        }
      },
      {
        "json": {
          "link": "https://www.technologyreview.com/2026/02/09/1132498/the-download-what-moltbook-tells-us-about-ai-hype-and-the-rise-and-rise-of-ai-therapy/",
          "title": "The Download: what Moltbook tells us about AI hype, and the rise and rise of AI therapy",
          "content": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. Moltbook was peak AI theater For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots.…",
          "pubDate": "Mon, 09 Feb 2026 13:10:00 +0000"
        },
        "pairedItem": {
          "item": 6
        }
      },
      {
        "json": {
          "link": "https://www.technologyreview.com/2026/02/09/1132462/ai-newsletter-professional-applications/",
          "title": "Making AI Work, MIT Technology Review’s new AI newsletter, is here",
          "content": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.  But how is AI actually being used in fields like health care, climate tech, education,…",
          "pubDate": "Mon, 09 Feb 2026 11:30:00 +0000"
        },
        "pairedItem": {
          "item": 7
        }
      },
      {
        "json": {
          "link": "https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/",
          "title": "Moltbook was peak AI theater",
          "content": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.” We observed! Launched on January 28 by Matt Schlicht,…",
          "pubDate": "Fri, 06 Feb 2026 16:38:11 +0000"
        },
        "pairedItem": {
          "item": 8
        }
      },
      {
        "json": {
          "link": "https://www.technologyreview.com/2026/02/06/1132375/the-download-helping-cancer-survivors-to-give-birth-and-cleaning-up-bangladeshs-garment-industry/",
          "title": "The Download: helping cancer survivors to give birth, and cleaning up Bangladesh’s garment industry",
          "content": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. An experimental surgery is helping cancer survivors give birth An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer. Radiation and chemo can have pretty…",
          "pubDate": "Fri, 06 Feb 2026 13:10:00 +0000"
        },
        "pairedItem": {
          "item": 9
        }
      },
      {
        "json": {
          "link": "https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud",
          "title": "Railway secures $100 million to challenge AWS with AI-native cloud infrastructure",
          "content": "Railway, a San Francisco-based cloud platform that has quietly amassed two million developers without spending a dollar on marketing, announced Thursday that it raised $100 million in a Series B funding round, as surging demand for artificial intelligence applications exposes the limitations of legacy cloud infrastructure.\nTQ Ventures led the round, with participation from FPV Ventures, Redpoint, and Unusual Ventures. The investment values Railway as one of the most significant infrastructure startups to emerge during the AI boom, capitalizing on developer frustration with the complexity and cost of traditional platforms like Amazon Web Services and Google Cloud.\n\"As AI models get better at writing code, more and more people are asking the age-old question: where, and how, do I run my applications?\" said Jake Cooper, Railway's 28-year-old founder and chief executive, in an exclusive interview with VentureBeat. \"The last generation of cloud primitives were slow and outdated, and now with AI moving everything faster, teams simply can't keep up.\"\nThe funding is a dramatic acceleration for a company that has charted an unconventional path through the cloud computing industry. Railway raised just $24 million in total before this round, including a $20 million Series A from Redpoint in 2022. The company now processes more than 10 million deployments monthly and handles over one trillion requests through its edge network — metrics that rival far larger and better-funded competitors.\nWhy three-minute deploy times have become unacceptable in the age of AI coding assistants\nRailway's pitch rests on a simple observation: the tools developers use to deploy and manage software were designed for a slower era. A standard build-and-deploy cycle using Terraform, the industry-standard infrastructure tool, takes two to three minutes. That delay, once tolerable, has become a critical bottleneck as AI coding assistants like Claude, ChatGPT, and Cursor can generate working code in seconds.\n\"When godly intelligence is on tap and can solve any problem in three seconds, those amalgamations of systems become bottlenecks,\" Cooper told VentureBeat. \"What was really cool for humans to deploy in 10 seconds or less is now table stakes for agents.\"\nThe company claims its platform delivers deployments in under one second — fast enough to keep pace with AI-generated code. Customers report a tenfold increase in developer velocity and up to 65 percent cost savings compared to traditional cloud providers.\nThese numbers come directly from enterprise clients, not internal benchmarks. Daniel Lobaton, chief technology officer at G2X, a platform serving 100,000 federal contractors, measured deployment speed improvements of seven times faster and an 87 percent cost reduction after migrating to Railway. His infrastructure bill dropped from $15,000 per month to approximately $1,000.\n\"The work that used to take me a week on our previous infrastructure, I can do in Railway in like a day,\" Lobaton said. \"If I want to spin up a new service and test different architectures, it would take so long on our old setup. In Railway I can launch six services in two minutes.\"\nInside the controversial decision to abandon Google Cloud and build data centers from scratch\nWhat distinguishes Railway from competitors like Render and Fly.io is the depth of its vertical integration. In 2024, the company made the unusual decision to abandon Google Cloud entirely and build its own data centers, a move that echoes the famous Alan Kay maxim: \"People who are really serious about software should make their own hardware.\"\n\"We wanted to design hardware in a way where we could build a differentiated experience,\" Cooper said. \"Having full control over the network, compute, and storage layers lets us do really fast build and deploy loops, the kind that allows us to move at 'agentic speed' while staying 100 percent the smoothest ride in town.\"\nThe approach paid dividends during recent widespread outages that affected major cloud providers — Railway remained online throughout.\nThis soup-to-nuts control enables pricing that undercuts the hyperscalers by roughly 50 percent and newer cloud startups by three to four times. Railway charges by the second for actual compute usage: $0.00000386 per gigabyte-second of memory, $0.00000772 per vCPU-second, and $0.00000006 per gigabyte-second of storage. There are no charges for idle virtual machines — a stark contrast to the traditional cloud model where customers pay for provisioned capacity whether they use it or not.\n\"The conventional wisdom is that the big guys have economies of scale to offer better pricing,\" Cooper noted. \"But when they're charging for VMs that usually sit idle in the cloud, and we've purpose-built everything to fit much more density on these machines, you have a big opportunity.\"\nHow 30 employees built a platform generating tens of millions in annual revenue\nRailway has achieved its scale with a team of just 30 employees generating tens of millions in annual revenue — a ratio of revenue per employee that would be exceptional even for established software companies. The company grew revenue 3.5 times last year and continues to expand at 15 percent month-over-month.\nCooper emphasized that the fundraise was strategic rather than necessary. \"We're default alive; there's no reason for us to raise money,\" he said. \"We raised because we see a massive opportunity to accelerate, not because we needed to survive.\"\nThe company hired its first salesperson only last year and employs just two solutions engineers. Nearly all of Railway's two million users discovered the platform through word of mouth — developers telling other developers about a tool that actually works.\n\"We basically did the standard engineering thing: if you build it, they will come,\" Cooper recalled. \"And to some degree, they came.\"\nFrom side projects to Fortune 500 deployments: Railway's unlikely corporate expansion\nDespite its grassroots developer community, Railway has made significant inroads into large organizations. The company claims that 31 percent of Fortune 500 companies now use its platform, though deployments range from company-wide infrastructure to individual team projects.\nNotable customers include Bilt, the loyalty program company; Intuit's GoCo subsidiary; TripAdvisor's Cruise Critic; and MGM Resorts. Kernel, a Y Combinator-backed startup providing AI infrastructure to over 1,000 companies, runs its entire customer-facing system on Railway for $444 per month.\n\"At my previous company Clever, which sold for $500 million, I had six full-time engineers just managing AWS,\" said Rafael Garcia, Kernel's chief technology officer. \"Now I have six engineers total, and they all focus on product. Railway is exactly the tool I wish I had in 2012.\"\nFor enterprise customers, Railway offers security certifications including SOC 2 Type 2 compliance and HIPAA readiness, with business associate agreements available upon request. The platform provides single sign-on authentication, comprehensive audit logs, and the option to deploy within a customer's existing cloud environment through a \"bring your own cloud\" configuration.\nEnterprise pricing starts at custom levels, with specific add-ons for extended log retention ($200 monthly), HIPAA BAAs ($1,000), enterprise support with SLOs ($2,000), and dedicated virtual machines ($10,000).\nThe startup's bold strategy to take on Amazon, Google, and a new generation of cloud rivals\nRailway enters a crowded market that includes not only the hyperscale cloud providers—Amazon Web Services, Microsoft Azure, and Google Cloud Platform—but also a growing cohort of developer-focused platforms like Vercel, Render, Fly.io, and Heroku.\nCooper argues that Railway's competitors fall into two camps, neither of which has fully committed to the new infrastructure model that AI demands.\n\"The hyperscalers have two competing systems, and they haven't gone all-in on the new model because their legacy revenue stream is still printing money,\" he observed. \"They have this mammoth pool of cash coming from people who provision a VM, use maybe 10 percent of it, and still pay for the whole thing. To what end are they actually interested in going all the way in on a new experience if they don't really need to?\"\nAgainst startup competitors, Railway differentiates by covering the full infrastructure stack. \"We're not just containers; we've got VM primitives, stateful storage, virtual private networking, automated load balancing,\" Cooper said. \"And we wrap all of this in an absurdly easy-to-use UI, with agentic primitives so agents can move 1,000 times faster.\"\nThe platform supports databases including PostgreSQL, MySQL, MongoDB, and Redis; provides up to 256 terabytes of persistent storage with over 100,000 input/output operations per second; and enables deployment to four global regions spanning the United States, Europe, and Southeast Asia. Enterprise customers can scale to 112 vCPUs and 2 terabytes of RAM per service.\nWhy investors are betting that AI will create a thousand times more software than exists today\nRailway's fundraise reflects broader investor enthusiasm for companies positioned to benefit from the AI coding revolution. As tools like GitHub Copilot, Cursor, and Claude become standard fixtures in developer workflows, the volume of code being written — and the infrastructure needed to run it — is expanding dramatically.\n\"The amount of software that's going to come online over the next five years is unfathomable compared to what existed before — we're talking a thousand times more software,\" Cooper predicted. \"All of that has to run somewhere.\"\nThe company has already integrated directly with AI systems, building what Cooper calls \"loops where Claude can hook in, call deployments, and analyze infrastructure automatically.\" Railway released a Model Context Protocol server in August 2025 that allows AI coding agents to deploy applications and manage infrastructure directly from code editors.\n\"The notion of a developer is melting before our eyes,\" Cooper said. \"You don't have to be an engineer to engineer things anymore — you just need critical thinking and the ability to analyze things in a systems capacity.\"\nWhat Railway plans to do with $100 million and zero marketing experience\nRailway plans to use the new capital to expand its global data center footprint, grow its team beyond 30 employees, and build what Cooper described as a proper go-to-market operation for the first time in the company's five-year history.\n\"One of my mentors said you raise money when you can change the trajectory of the business,\" Cooper explained. \"We've built all the required substrate to scale indefinitely; what's been holding us back is simply talking about it. 2026 is the year we play on the world stage.\"\nThe company's investor roster reads like a who's who of developer infrastructure. Angel investors include Tom Preston-Werner, co-founder of GitHub; Guillermo Rauch, chief executive of Vercel; Spencer Kimball, chief executive of Cockroach Labs; Olivier Pomel, chief executive of Datadog; and Jori Lallo, co-founder of Linear.\nThe timing of Railway's expansion coincides with what many in Silicon Valley view as a fundamental shift in how software gets made. Coding assistants are no longer experimental curiosities — they have become essential tools that millions of developers rely on daily. Each line of AI-generated code needs somewhere to run, and the incumbents, by Cooper's telling, are too wedded to their existing business models to fully capitalize on the moment.\nWhether Railway can translate developer enthusiasm into sustained enterprise adoption remains an open question. The cloud infrastructure market is littered with promising startups that failed to break the grip of Amazon, Microsoft, and Google. But Cooper, who previously worked as a software engineer at Wolfram Alpha, Bloomberg, and Uber before founding Railway in 2020, seems unfazed by the scale of his ambition.\n\"In five years, Railway [will be] the place where software gets created and evolved, period,\" he said. \"Deploy instantly, scale infinitely, with zero friction. That's the prize worth playing for, and there's no bigger one on offer.\"\nFor a company that built a $100 million business by doing the opposite of what conventional startup wisdom dictates — no marketing, no sales team, no venture hype—the real test begins now. Railway spent five years proving that developers would find a better mousetrap on their own. The next five will determine whether the rest of the world is ready to get on board.",
          "pubDate": "Thu, 22 Jan 2026 14:00:00 GMT"
        },
        "pairedItem": {
          "item": 10
        }
      },
      {
        "json": {
          "link": "https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free",
          "title": "Claude Code costs up to $200 a month. Goose does the same thing for free.",
          "content": "The artificial intelligence coding revolution comes with a catch: it's expensive.\nClaude Code, Anthropic's terminal-based AI agent that can write, debug, and deploy code autonomously, has captured the imagination of software developers worldwide. But its pricing — ranging from $20 to $200 per month depending on usage — has sparked a growing rebellion among the very programmers it aims to serve.\nNow, a free alternative is gaining traction. Goose, an open-source AI agent developed by Block (the financial technology company formerly known as Square), offers nearly identical functionality to Claude Code but runs entirely on a user's local machine. No subscription fees. No cloud dependency. No rate limits that reset every five hours.\n\"Your data stays with you, period,\" said Parth Sareen, a software engineer who demonstrated the tool during a recent livestream. The comment captures the core appeal: Goose gives developers complete control over their AI-powered workflow, including the ability to work offline — even on an airplane.\nThe project has exploded in popularity. Goose now boasts more than 26,100 stars on GitHub, the code-sharing platform, with 362 contributors and 102 releases since its launch. The latest version, 1.20.1, shipped on January 19, 2026, reflecting a development pace that rivals commercial products.\nFor developers frustrated by Claude Code's pricing structure and usage caps, Goose represents something increasingly rare in the AI industry: a genuinely free, no-strings-attached option for serious work.\n\nAnthropic's new rate limits spark a developer revolt\nTo understand why Goose matters, you need to understand the Claude Code pricing controversy.\nAnthropic, the San Francisco artificial intelligence company founded by former OpenAI executives, offers Claude Code as part of its subscription tiers. The free plan provides no access whatsoever. The Pro plan, at $17 per month with annual billing (or $20 monthly), limits users to just 10 to 40 prompts every five hours — a constraint that serious developers exhaust within minutes of intensive work.\nThe Max plans, at $100 and $200 per month, offer more headroom: 50 to 200 prompts and 200 to 800 prompts respectively, plus access to Anthropic's most powerful model, Claude 4.5 Opus. But even these premium tiers come with restrictions that have inflamed the developer community.\nIn late July, Anthropic announced new weekly rate limits. Under the system, Pro users receive 40 to 80 hours of Sonnet 4 usage per week. Max users at the $200 tier get 240 to 480 hours of Sonnet 4, plus 24 to 40 hours of Opus 4. Nearly five months later, the frustration has not subsided.\nThe problem? Those \"hours\" are not actual hours. They represent token-based limits that vary wildly depending on codebase size, conversation length, and the complexity of the code being processed. Independent analysis suggests the actual per-session limits translate to roughly 44,000 tokens for Pro users and 220,000 tokens for the $200 Max plan.\n\"It's confusing and vague,\" one developer wrote in a widely shared analysis. \"When they say '24-40 hours of Opus 4,' that doesn't really tell you anything useful about what you're actually getting.\"\nThe backlash on Reddit and developer forums has been fierce. Some users report hitting their daily limits within 30 minutes of intensive coding. Others have canceled their subscriptions entirely, calling the new restrictions \"a joke\" and \"unusable for real work.\"\nAnthropic has defended the changes, stating that the limits affect fewer than five percent of users and target people running Claude Code \"continuously in the background, 24/7.\" But the company has not clarified whether that figure refers to five percent of Max subscribers or five percent of all users — a distinction that matters enormously.\nHow Block built a free AI coding agent that works offline\nGoose takes a radically different approach to the same problem.\nBuilt by Block, the payments company led by Jack Dorsey, Goose is what engineers call an \"on-machine AI agent.\" Unlike Claude Code, which sends your queries to Anthropic's servers for processing, Goose can run entirely on your local computer using open-source language models that you download and control yourself.\nThe project's documentation describes it as going \"beyond code suggestions\" to \"install, execute, edit, and test with any LLM.\" That last phrase — \"any LLM\" — is the key differentiator. Goose is model-agnostic by design.\nYou can connect Goose to Anthropic's Claude models if you have API access. You can use OpenAI's GPT-5 or Google's Gemini. You can route it through services like Groq or OpenRouter. Or — and this is where things get interesting — you can run it entirely locally using tools like Ollama, which let you download and execute open-source models on your own hardware.\nThe practical implications are significant. With a local setup, there are no subscription fees, no usage caps, no rate limits, and no concerns about your code being sent to external servers. Your conversations with the AI never leave your machine.\n\"I use Ollama all the time on planes — it's a lot of fun!\" Sareen noted during a demonstration, highlighting how local models free developers from the constraints of internet connectivity.\nWhat Goose can do that traditional code assistants can't\nGoose operates as a command-line tool or desktop application that can autonomously perform complex development tasks. It can build entire projects from scratch, write and execute code, debug failures, orchestrate workflows across multiple files, and interact with external APIs — all without constant human oversight.\nThe architecture relies on what the AI industry calls \"tool calling\" or \"function calling\" — the ability for a language model to request specific actions from external systems. When you ask Goose to create a new file, run a test suite, or check the status of a GitHub pull request, it doesn't just generate text describing what should happen. It actually executes those operations.\nThis capability depends heavily on the underlying language model. Claude 4 models from Anthropic currently perform best at tool calling, according to the Berkeley Function-Calling Leaderboard, which ranks models on their ability to translate natural language requests into executable code and system commands.\nBut newer open-source models are catching up quickly. Goose's documentation highlights several options with strong tool-calling support: Meta's Llama series, Alibaba's Qwen models, Google's Gemma variants, and DeepSeek's reasoning-focused architectures.\nThe tool also integrates with the Model Context Protocol, or MCP, an emerging standard for connecting AI agents to external services. Through MCP, Goose can access databases, search engines, file systems, and third-party APIs — extending its capabilities far beyond what the base language model provides.\nSetting Up Goose with a Local Model\nFor developers interested in a completely free, privacy-preserving setup, the process involves three main components: Goose itself, Ollama (a tool for running open-source models locally), and a compatible language model.\nStep 1: Install Ollama\nOllama is an open-source project that dramatically simplifies the process of running large language models on personal hardware. It handles the complex work of downloading, optimizing, and serving models through a simple interface.\nDownload and install Ollama from ollama.com. Once installed, you can pull models with a single command. For coding tasks, Qwen 2.5 offers strong tool-calling support:\nollama run qwen2.5\nThe model downloads automatically and begins running on your machine.\nStep 2: Install Goose\nGoose is available as both a desktop application and a command-line interface. The desktop version provides a more visual experience, while the CLI appeals to developers who prefer working entirely in the terminal.\nInstallation instructions vary by operating system but generally involve downloading from Goose's GitHub releases page or using a package manager. Block provides pre-built binaries for macOS (both Intel and Apple Silicon), Windows, and Linux.\nStep 3: Configure the Connection\nIn Goose Desktop, navigate to Settings, then Configure Provider, and select Ollama. Confirm that the API Host is set to http://localhost:11434 (Ollama's default port) and click Submit.\nFor the command-line version, run goose configure, select \"Configure Providers,\" choose Ollama, and enter the model name when prompted.\nThat's it. Goose is now connected to a language model running entirely on your hardware, ready to execute complex coding tasks without any subscription fees or external dependencies.\nThe RAM, processing power, and trade-offs you should know about\nThe obvious question: what kind of computer do you need?\nRunning large language models locally requires substantially more computational resources than typical software. The key constraint is memory — specifically, RAM on most systems, or VRAM if using a dedicated graphics card for acceleration.\nBlock's documentation suggests that 32 gigabytes of RAM provides \"a solid baseline for larger models and outputs.\" For Mac users, this means the computer's unified memory is the primary bottleneck. For Windows and Linux users with discrete NVIDIA graphics cards, GPU memory (VRAM) matters more for acceleration.\nBut you don't necessarily need expensive hardware to get started. Smaller models with fewer parameters run on much more modest systems. Qwen 2.5, for instance, comes in multiple sizes, and the smaller variants can operate effectively on machines with 16 gigabytes of RAM.\n\"You don't need to run the largest models to get excellent results,\" Sareen emphasized. The practical recommendation: start with a smaller model to test your workflow, then scale up as needed.\nFor context, Apple's entry-level MacBook Air with 8 gigabytes of RAM would struggle with most capable coding models. But a MacBook Pro with 32 gigabytes — increasingly common among professional developers — handles them comfortably.\nWhy keeping your code off the cloud matters more than ever\nGoose with a local LLM is not a perfect substitute for Claude Code. The comparison involves real trade-offs that developers should understand.\nModel Quality: Claude 4.5 Opus, Anthropic's flagship model, remains arguably the most capable AI for software engineering tasks. It excels at understanding complex codebases, following nuanced instructions, and producing high-quality code on the first attempt. Open-source models have improved dramatically, but a gap persists — particularly for the most challenging tasks.\nOne developer who switched to the $200 Claude Code plan described the difference bluntly: \"When I say 'make this look modern,' Opus knows what I mean. Other models give me Bootstrap circa 2015.\"\nContext Window: Claude Sonnet 4.5, accessible through the API, offers a massive one-million-token context window — enough to load entire large codebases without chunking or context management issues. Most local models are limited to 4,096 or 8,192 tokens by default, though many can be configured for longer contexts at the cost of increased memory usage and slower processing.\nSpeed: Cloud-based services like Claude Code run on dedicated server hardware optimized for AI inference. Local models, running on consumer laptops, typically process requests more slowly. The difference matters for iterative workflows where you're making rapid changes and waiting for AI feedback.\nTooling Maturity: Claude Code benefits from Anthropic's dedicated engineering resources. Features like prompt caching (which can reduce costs by up to 90 percent for repeated contexts) and structured outputs are polished and well-documented. Goose, while actively developed with 102 releases to date, relies on community contributions and may lack equivalent refinement in specific areas.\nHow Goose stacks up against Cursor, GitHub Copilot, and the paid AI coding market\nGoose enters a crowded market of AI coding tools, but occupies a distinctive position.\nCursor, a popular AI-enhanced code editor, charges $20 per month for its Pro tier and $200 for Ultra—pricing that mirrors Claude Code's Max plans. Cursor provides approximately 4,500 Sonnet 4 requests per month at the Ultra level, a substantially different allocation model than Claude Code's hourly resets.\nCline, Roo Code, and similar open-source projects offer AI coding assistance but with varying levels of autonomy and tool integration. Many focus on code completion rather than the agentic task execution that defines Goose and Claude Code.\nAmazon's CodeWhisperer, GitHub Copilot, and enterprise offerings from major cloud providers target large organizations with complex procurement processes and dedicated budgets. They are less relevant to individual developers and small teams seeking lightweight, flexible tools.\nGoose's combination of genuine autonomy, model agnosticism, local operation, and zero cost creates a unique value proposition. The tool is not trying to compete with commercial offerings on polish or model quality. It's competing on freedom — both financial and architectural.\nThe $200-a-month era for AI coding tools may be ending\nThe AI coding tools market is evolving quickly. Open-source models are improving at a pace that continually narrows the gap with proprietary alternatives. Moonshot AI's Kimi K2 and z.ai's GLM 4.5 now benchmark near Claude Sonnet 4 levels — and they're freely available.\nIf this trajectory continues, the quality advantage that justifies Claude Code's premium pricing may erode. Anthropic would then face pressure to compete on features, user experience, and integration rather than raw model capability.\nFor now, developers face a clear choice. Those who need the absolute best model quality, who can afford premium pricing, and who accept usage restrictions may prefer Claude Code. Those who prioritize cost, privacy, offline access, and flexibility have a genuine alternative in Goose.\nThe fact that a $200-per-month commercial product has a zero-dollar open-source competitor with comparable core functionality is itself remarkable. It reflects both the maturation of open-source AI infrastructure and the appetite among developers for tools that respect their autonomy.\nGoose is not perfect. It requires more technical setup than commercial alternatives. It depends on hardware resources that not every developer possesses. Its model options, while improving rapidly, still trail the best proprietary offerings on complex tasks.\nBut for a growing community of developers, those limitations are acceptable trade-offs for something increasingly rare in the AI landscape: a tool that truly belongs to them.\n\nGoose is available for download at github.com/block/goose. Ollama is available at ollama.com. Both projects are free and open source.",
          "pubDate": "Mon, 19 Jan 2026 14:00:00 GMT"
        },
        "pairedItem": {
          "item": 11
        }
      },
      {
        "json": {
          "link": "https://venturebeat.com/technology/listen-labs-raises-usd69m-after-viral-billboard-hiring-stunt-to-scale-ai",
          "title": "Listen Labs raises $69M after viral billboard hiring stunt to scale AI customer interviews",
          "content": "Alfred Wahlforss was running out of options. His startup, Listen Labs, needed to hire over 100 engineers, but competing against Mark Zuckerberg's $100 million offers seemed impossible. So he spent $5,000 — a fifth of his marketing budget — on a billboard in San Francisco displaying what looked like gibberish: five strings of random numbers.\nThe numbers were actually AI tokens. Decoded, they led to a coding challenge: build an algorithm to act as a digital bouncer at Berghain, the Berlin nightclub famous for rejecting nearly everyone at the door. Within days, thousands attempted the puzzle. 430 cracked it. Some got hired. The winner flew to Berlin, all expenses paid.\nThat unconventional approach has now attracted $69 million in Series B funding, led by Ribbit Capital with participation from Evantic and existing investors Sequoia Capital, Conviction, and Pear VC. The round values Listen Labs at $500 million and brings its total capital to $100 million. In nine months since launch, the company has grown annualized revenue by 15x to eight figures and conducted over one million AI-powered interviews.\n\n\"When you obsess over customers, everything else follows,\" Wahlforss said in an interview with VentureBeat. \"Teams that use Listen bring the customer into every decision, from marketing to product, and when the customer is delighted, everyone is.\"\nWhy traditional market research is broken, and what Listen Labs is building to fix it\nListen's AI researcher finds participants, conducts in-depth interviews, and delivers actionable insights in hours, not weeks. The platform replaces the traditional choice between quantitative surveys — which provide statistical precision but miss nuance—and qualitative interviews, which deliver depth but cannot scale.\nWahlforss explained the limitation of existing approaches: \"Essentially surveys give you false precision because people end up answering the same question... You can't get the outliers. People are actually not honest on surveys.\" The alternative, one-on-one human interviews, \"gives you a lot of depth. You can ask follow up questions. You can kind of double check if they actually know what they're talking about. And the problem is you can't scale that.\"\nThe platform works in four steps: users create a study with AI assistance, Listen recruits participants from its global network of 30 million people, an AI moderator conducts in-depth interviews with follow-up questions, and results are packaged into executive-ready reports including key themes, highlight reels, and slide decks.\nWhat distinguishes Listen's approach is its use of open-ended video conversations rather than multiple-choice forms. \"In a survey, you can kind of guess what you should answer, and you have four options,\" Wahlforss said. \"Oh, they probably want me to buy high income. Let me click on that button versus an open ended response. It just generates much more honesty.\"\nThe dirty secret of the $140 billion market research industry: rampant fraud\nListen finds and qualifies the right participants in its global network of 30 million people. But building that panel required confronting what Wahlforss called \"one of the most shocking things that we've learned when we entered this industry\"—rampant fraud.\n\"Essentially, there's a financial transaction involved, which means there will be bad players,\" he explained. \"We actually had some of the largest companies, some of them have billions in revenue, send us people who claim to be kind of enterprise buyers to our platform and our system immediately detected, like, fraud, fraud, fraud, fraud, fraud.\"\nThe company built what it calls a \"quality guard\" that cross-references LinkedIn profiles with video responses to verify identity, checks consistency across how participants answer questions, and flags suspicious patterns. The result, according to Wahlforss: \"People talk three times more. They're much more honest when they talk about sensitive topics like politics and mental health.\"\nEmeritus, an online education company that uses Listen, reported that approximately 20% of survey responses previously fell into the fraudulent or low-quality category. With Listen, they reduced this to almost zero. \"We did not have to replace any responses because of fraud or gibberish information,\" said Gabrielli Tiburi, Assistant Manager of Customer Insights at Emeritus.\nHow Microsoft, Sweetgreen, and Chubbies are using AI interviews to build better products\nThe speed advantage has proven central to Listen's pitch. Traditional customer research at Microsoft could take four to six weeks to generate insights. \"By the time we get to them, either the decision has been made or we lose out on the opportunity to actually influence it,\" said Romani Patel, Senior Research Manager at Microsoft.\nWith Listen, Microsoft can now get insights in days, and in many cases, within hours.\nThe platform has already powered several high-profile initiatives. Microsoft used Listen Labs to collect global customer stories for its 50th anniversary celebration. \"We wanted users to share how Copilot is empowering them to bring their best self forward,\" Patel said, \"and we were able to collect those user video stories within a day.\" Traditionally, that kind of work would have taken six to eight weeks.\nSimple Modern, an Oklahoma-based drinkware company, used Listen to test a new product concept. The process took about an hour to write questions, an hour to launch the study, and 2.5 hours to receive feedback from 120 people across the country. \"We went from 'Should we even have this product?' to 'How should we launch it?'\" said Chris Hoyle, the company's Chief Marketing Officer.\nChubbies, the shorts brand, achieved a 24x increase in youth research participation—growing from 5 to 120 participants — by using Listen to overcome the scheduling challenges of traditional focus groups with children. \"There's school, sports, dinner, and homework,\" explained Lauren Neville, Director of Insights and Innovation. \"I had to find a way to hear from them that fit into their schedules.\"\nThe company also discovered product issues through AI interviews that might have gone undetected otherwise. Wahlforss described how the AI \"through conversations, realized there were like issues with the the kids short line, and decided to, like, interview hundreds of kids. And I understand that there were issues in the liner of the shorts and that they were, like, scratchy, quote, unquote, according to the people interviewed.\" The redesigned product became \"a blockbuster hit.\"\nThe Jevons paradox explains why cheaper research creates more demand, not less\nListen Labs is entering a massive but fragmented market. Wahlforss cited research from Andreessen Horowitz estimating the market research industry at roughly $140 billion annually, populated by legacy players — some with more than a billion dollars in revenue — that he believes are vulnerable to disruption.\n\"There are very much existing budget lines that we are replacing,\" Wahlforss said. \"Why we're replacing them is that one, they're super costly. Two, they're kind of stuck in this old paradigm of choosing between a survey or interview, and they also take months to work with.\"\nBut the more intriguing dynamic may be that AI-powered research doesn't just replace existing spending — it creates new demand. Wahlforss invoked the Jevons paradox, an economic principle that occurs when technological advancements make a resource more efficient to use, but increased efficiency leads to increased overall consumption rather than decreased consumption.\n\"What I've noticed is that as something gets cheaper, you don't need less of it. You want more of it,\" Wahlforss explained. \"There's infinite demand for customer understanding. So the researchers on the team can do an order of magnitude more research, and also other people who weren't researchers before can now do that as part of their job.\"\nInside the elite engineering team that built Listen Labs before they had a working toilet\nListen Labs traces its origins to a consumer app that Wahlforss and his co-founder built after meeting at Harvard. \"We built this consumer app that got 20,000 downloads in one day,\" Wahlforss recalled. \"We had all these users, and we were thinking like, okay, what can we do to get to know them better? And we built this prototype of what Listen is today.\"\nThe founding team brings an unusual pedigree. Wahlforss's co-founder \"was the national champion in competitive programming in Germany, and he worked at Tesla Autopilot.\" The company claims that 30% of its engineering team are medalists from the International Olympiad in Informatics — the same competition that produced the founders of Cognition, the AI coding startup.\nThe Berghain billboard stunt generated approximately 5 million views across social media, according to Wahlforss. It reflected the intensity of the talent war in the Bay Area.\n\"We had to do these things because some of our, like early employees, joined the company before we had a working toilet,\" he said. \"But now we fixed that situation.\"\nThe company grew from 5 to 40 employees in 2024 and plans to reach 150 this year. It hires engineers for non-engineering roles across marketing, growth, and operations — a bet that in the AI era, technical fluency matters everywhere.\nSynthetic customers and automated decisions: what Listen Labs is building next\nWahlforss outlined an ambitious product roadmap that pushes into more speculative territory. The company is building \"the ability to simulate your customers, so you can take all of those interviews we've done, and then extrapolate based on that and create synthetic users or simulated user voices.\"\nBeyond simulation, Listen aims to enable automated action based on research findings. \"Can you not just make recommendations, but also create spawn agents to either change things in code or some customer churns? Can you give them a discount and try to bring them back?\"\nWahlforss acknowledged the ethical implications. \"Obviously, as you said, there's kind of ethical concerns there. Of like, automated decision making overall can be bad, but we will have considerable guardrails to make sure that the companies are always in the loop.\"\nThe company already handles sensitive data with care. \"We don't train on any of the data,\" Wahlforss said. \"We will also scrub any sensitive PII automatically so the model can detect that. And there are times when, for example, you work with investors, where if you accidentally mention something that could be material, non public information, the AI can actually detect that and remove any information like that.\"\nHow AI could reshape the future of product development\nPerhaps the most provocative implication of Listen's model is how it could reshape product development itself. Wahlforss described a customer — an Australian startup — that has adopted what amounts to a continuous feedback loop.\n\"They're based in Australia, so they're coding during the day, and then in their night, they're releasing a Listen study with an American audience. Listen validates whatever they built during the day, and they get feedback on that. They can then plug that feedback directly into coding tools like Claude Code and iterate.\"\nThe vision extends Y Combinator's famous dictum — \"write code, talk to users\" — into an automated cycle. \"Write code is now getting automated. And I think like talk to users will be as well, and you'll have this kind of infinite loop where you can start to ship this truly amazing product, almost kind of autonomously.\"\nWhether that vision materializes depends on factors beyond Listen's control — the continued improvement of AI models, enterprise willingness to trust automated research, and whether speed truly correlates with better products. A 2024 MIT study found that 95% of AI pilots fail to move into production, a statistic Wahlforss cited as the reason he emphasizes quality over demos.\n\"I'm constantly have to emphasize like, let's make sure the quality is there and the details are right,\" he said.\nBut the company's growth suggests appetite for the experiment. Microsoft's Patel said Listen has \"removed the drudgery of research and brought the fun and joy back into my work.\" Chubbies is now pushing its founder to give everyone in the company a login. Sling Money, a stablecoin payments startup, can create a survey in ten minutes and receive results the same day.\n\"It's a total game changer,\" said Ali Romero, Sling Money's marketing manager.\nWahlforss has a different phrase for what he's building. When asked about the tension between speed and rigor — the long-held belief that moving fast means cutting corners — he cited Nat Friedman, the former GitHub CEO and Listen investor, who keeps a list of one-liners on his website.\nOne of them: \"Slow is fake.\"\nIt's an aggressive claim for an industry built on methodological caution. But Listen Labs is betting that in the AI era, the companies that listen fastest will be the ones that win. The only question is whether customers will talk back.",
          "pubDate": "Fri, 16 Jan 2026 14:01:00 GMT"
        },
        "pairedItem": {
          "item": 12
        }
      },
      {
        "json": {
          "link": "https://venturebeat.com/technology/salesforce-rolls-out-new-slackbot-ai-agent-as-it-battles-microsoft-and",
          "title": "Salesforce rolls out new Slackbot AI agent as it battles Microsoft and Google in workplace AI",
          "content": "Salesforce on Tuesday launched an entirely rebuilt version of Slackbot, the company's workplace assistant, transforming it from a simple notification tool into what executives describe as a fully powered AI agent capable of searching enterprise data, drafting documents, and taking action on behalf of employees.\nThe new Slackbot, now generally available to Business+ and Enterprise+ customers, is Salesforce's most aggressive move yet to position Slack at the center of the emerging \"agentic AI\" movement — where software agents work alongside humans to complete complex tasks. The launch comes as Salesforce attempts to convince investors that artificial intelligence will bolster its products rather than render them obsolete.\n\"Slackbot isn't just another copilot or AI assistant,\" said Parker Harris, Salesforce co-founder and Slack's chief technology officer, in an exclusive interview with Salesforce. \"It's the front door to the agentic enterprise, powered by Salesforce.\"\nFrom tricycle to Porsche: Salesforce rebuilt Slackbot from the ground up\nHarris was blunt about what distinguishes the new Slackbot from its predecessor: \"The old Slackbot was, you know, a little tricycle, and the new Slackbot is like, you know, a Porsche.\"\nThe original Slackbot, which has existed since Slack's early days, performed basic algorithmic tasks — reminding users to add colleagues to documents, suggesting channel archives, and delivering simple notifications. The new version runs on an entirely different architecture built around a large language model and sophisticated search capabilities that can access Salesforce records, Google Drive files, calendar data, and years of Slack conversations.\n\"It's two different things,\" Harris explained. \"The old Slackbot was algorithmic and fairly simple. The new Slackbot is brand new — it's based around an LLM and a very robust search engine, and connections to third-party search engines, third-party enterprise data.\"\nSalesforce chose to retain the Slackbot brand despite the fundamental technical overhaul. \"People know what Slackbot is, and so we wanted to carry that forward,\" Harris said.\nWhy Anthropic's Claude powers the new Slackbot — and which AI models could come next\nThe new Slackbot runs on Claude, Anthropic's large language model, a choice driven partly by compliance requirements. Slack's commercial service operates under FedRAMP Moderate certification to serve U.S. federal government customers, and Harris said Anthropic was \"the only provider that could give us a compliant LLM\" when Slack began building the new system.\nBut that exclusivity won't last. \"We are, this year, going to support additional providers,\" Harris said. \"We have a great relationship with Google. Gemini is incredible — performance is great, cost is great. So we're going to use Gemini for some things.\" He added that OpenAI remains a possibility as well.\nHarris echoed Salesforce CEO Marc Benioff's view that large language models are becoming commoditized: \"You've heard Marc talk about LLMs are commodities, that they're democratized. I call them CPUs.\"\nOn the sensitive question of training data, Harris was unequivocal: Salesforce does not train any models on customer data. \"Models don't have any sort of security,\" he explained. \"If we trained it on some confidential conversation that you and I have, I don't want Carolyn to know — if I train it into the LLM, there is no way for me to say you get to see the answer, but Carolyn doesn't.\"\nInside Salesforce's internal experiment: 80,000 employees tested Slackbot with striking results\nSalesforce has been testing the new Slackbot internally for months, rolling it out to all 80,000 employees. According to Ryan Gavin, Slack's chief marketing officer, the results have been striking: \"It's the fastest adopted product in Salesforce history.\"\nInternal data shows that two-thirds of Salesforce employees have tried the new Slackbot, with 80% of those users continuing to use it regularly. Internal satisfaction rates reached 96% — the highest for any AI feature Slack has shipped. Employees report saving between two and 20 hours per week.\nThe adoption happened largely organically. \"I think it was about five days, and a Canvas was developed by our employees called 'The Most Stealable Slackbot Prompts,'\" Gavin said. \"People just started adding to it organically. I think it's up to 250-plus prompts that are in this Canvas right now.\"\nKate Crotty, a principal UX researcher at Salesforce, found that 73% of internal adoption was driven by social sharing rather than top-down mandates. \"Everybody is there to help each other learn and communicate hacks,\" she said.\nHow Slackbot transforms scattered enterprise data into executive-ready insights\nDuring a product demonstration, Amy Bauer, Slack's product experience designer, showed how Slackbot can synthesize information across multiple sources. In one example, she asked Slackbot to analyze customer feedback from a pilot program, upload an image of a usage dashboard, and have Slackbot correlate the qualitative and quantitative data.\n\"This is where Slackbot really earns its keep for me,\" Bauer explained. \"What it's doing is not just simply reading the image — it's actually looking at the image and comparing it to the insight it just generated for me.\"\nSlackbot can then query Salesforce to find enterprise accounts with open deals that might be good candidates for early access, creating what Bauer called \"a really great justification and plan to move forward.\" Finally, it can synthesize all that information into a Canvas — Slack's collaborative document format — and find calendar availability among stakeholders to schedule a review meeting.\n\"Up until this point, we have been working in a one-to-one capacity with Slackbot,\" Bauer said. \"But one of the benefits that I can do now is take this insight and have it generate this into a Canvas, a shared workspace where I can iterate on it, refine it with Slackbot, or share it out with my team.\"\nRob Seaman, Slack's chief product officer, said the Canvas creation demonstrates where the product is heading: \"This is making a tool call internally to Slack Canvas to actually write, effectively, a shared document. But it signals where we're going with Slackbot — we're eventually going to be adding in additional third-party tool calls.\"\nMrBeast's company became a Slackbot guinea pig—and employees say they're saving 90 minutes a day\nAmong Salesforce's pilot customers is Beast Industries, the parent company of YouTube star MrBeast. Luis Madrigal, the company's chief information officer, joined the launch announcement to describe his experience.\n\"As somebody who has rolled out enterprise technologies for over two decades now, this was practically one of the easiest,\" Madrigal said. \"The plumbing is there. Slack as an implementation, Enterprise Tools — being able to turn on the Slackbot and the Slack AI functionality was as simple as having my team go in, review, do a quick security review.\"\nMadrigal said his security team signed off \"rather quickly\" — unusual for enterprise AI deployments — because Slackbot accesses only the information each individual user already has permission to view. \"Given all the guardrails you guys have put into place for Slackbot to be unique and customized to only the information that each individual user has, only the conversations and the Slack rooms and Slack channels that they're part of—that made my security team sign off rather quickly.\"\nOne Beast Industries employee, Sinan, the head of Beast Games marketing, reported saving \"at bare minimum, 90 minutes a day.\" Another employee, Spencer, a creative supervisor, described it as \"an assistant who's paying attention when I'm not.\"\nOther pilot customers include Slalom, reMarkable, Xero, Mercari, and Engine. Mollie Bodensteiner, SVP of Operations at Engine, called Slackbot \"an absolute 'chaos tamer' for our team,\" estimating it saves her about 30 minutes daily \"just by eliminating context switching.\"\nSlackbot vs. Microsoft Copilot vs. Google Gemini: The fight for enterprise AI dominance\nThe launch puts Salesforce in direct competition with Microsoft's Copilot, which is integrated into Teams and the broader Microsoft 365 suite, as well as Google's Gemini integrations across Workspace. When asked what distinguishes Slackbot from these alternatives, Seaman pointed to context and convenience.\n\"The thing that makes it most powerful for our customers and users is the proximity — it's just right there in your Slack,\" Seaman said. \"There's a tremendous convenience affordance that's naturally built into it.\"\nThe deeper advantage, executives argue, is that Slackbot already understands users' work without requiring setup or training. \"Most AI tools sound the same no matter who is using them,\" the company's announcement stated. \"They lack context, miss nuance, and force you to jump between tools to get anything done.\"\nHarris put it more directly: \"If you've ever had that magic experience with AI — I think ChatGPT is a great example, it's a great experience from a consumer perspective — Slackbot is really what we're doing in the enterprise, to be this employee super agent that is loved, just like people love using Slack.\"\nAmy Bauer emphasized the frictionless nature of the experience. \"Slackbot is inherently grounded in the context, in the data that you have in Slack,\" she said. \"So as you continue working in Slack, Slackbot gets better because it's grounded in the work that you're doing there. There is no setup. There is no configuration for those end users.\"\nSalesforce's ambitious plan to make Slackbot the one 'super agent' that controls all the others\nSalesforce positions Slackbot as what Harris calls a \"super agent\" — a central hub that can eventually coordinate with other AI agents across an organization.\n\"Every corporation is going to have an employee super agent,\" Harris said. \"Slackbot is essentially taking the magic of what Slack does. We think that Slackbot, and we're really excited about it, is going to be that.\"\nThe vision extends to third-party agents already launching in Slack. Last month, Anthropic released a preview of Claude Code for Slack, allowing developers to interact with Claude's coding capabilities directly in chat threads. OpenAI, Google, Vercel, and others have also built agents for the platform.\n\"Most of the net-new apps that are being deployed to Slack are agents,\" Seaman noted during the press conference. \"This is proof of the promise of humans and agents coexisting and working together in Slack to solve problems.\"\nHarris described a future where Slackbot becomes an MCP (Model Context Protocol) client, able to leverage tools from across the software ecosystem — similar to how the developer tool Cursor works. \"Slack can be an MCP client, and Slackbot will be the hub of that, leveraging all these tools out in the world, some of which will be these amazing agents,\" he said.\nBut Harris also cautioned against over-promising on multi-agent coordination. \"I still think we're in the single agent world,\" he said. \"FY26 is going to be the year where we started to see more coordination. But we're going to do it with customer success in mind, and not demonstrate and talk about, like, 'I've got 1,000 agents working together,' because I think that's unrealistic.\"\nSlackbot costs nothing extra, but Salesforce's data access fees could squeeze some customers\nSlackbot is included at no additional cost for customers on Business+ and Enterprise+ plans. \"There's no additional fees customers have to do,\" Gavin confirmed. \"If they're on one of those plans, they're going to get Slackbot.\"\nHowever, some enterprise customers may face other cost pressures related to Salesforce's broader data strategy. CIOs may see price increases for third-party applications that work with Salesforce data, as effects of higher charges for API access ripple through the software supply chain.\nFivetran CEO George Fraser has warned that Salesforce's shift in pricing policy for API access could have tangible consequences for enterprises relying on Salesforce as a system of record. \"They might not be able to use Fivetran to replicate their data to Snowflake and instead have to use Salesforce Data Cloud. Or they might find that they are not able to interact with their data via ChatGPT, and instead have to use Agentforce,\" Fraser said in a recent CIO report.\nSalesforce has framed the pricing change as standard industry practice.\nWhat Slackbot can do today, what's coming in weeks, and what's still on the roadmap\nThe new Slackbot begins rolling out today and will reach all eligible customers by the end of February. Mobile availability will complete by March 3, Bauer confirmed during her interview with VentureBeat.\nSome capabilities remain works in progress. Calendar reading and availability checking are available at launch, but the ability to actually book meetings is \"coming a few weeks after,\" according to Seaman. Image generation is not currently supported, though Bauer said it's \"something that we are looking at in the future.\"\nWhen asked about integration with competing CRM systems like HubSpot and Microsoft Dynamics, Salesforce representatives declined to provide specifics during the interview, though they acknowledged the question touched on key competitive differentiators.\nSalesforce is betting the future of work looks like a chat window—and it's not alone\nThe Slackbot launch is Salesforce's bet that the future of enterprise work is conversational — that employees will increasingly prefer to interact with AI through natural language rather than navigating traditional software interfaces.\nHarris described Slack's product philosophy using principles like \"don't make me think\" and \"be a great host.\" The goal, he said, is for Slackbot to surface information proactively rather than requiring users to hunt for it.\n\"One of the revelations for me is LLMs applied to unstructured information are incredible,\" Harris said. \"And the amount of value you have if you're a Slack user, if your corporation uses Slack — the amount of value in Slack is unbelievable. Because you're talking about work, you're sharing documents, you're making decisions, but you can't as a human go through that and really get the same value that an LLM can do.\"\nLooking ahead, Harris expects the interfaces themselves to evolve beyond pure conversation. \"We're kind of saturating what we can do with purely conversational UIs,\" he said. \"I think we'll start to see agents building an interface that best suits your intent, as opposed to trying to surface something within a conversational interface that matches your intent.\"\nMicrosoft, Google, and a growing roster of AI startups are placing similar bets — that the winning enterprise AI will be the one embedded in the tools workers already use, not another application to learn. The race to become that invisible layer of workplace intelligence is now fully underway.\nFor Salesforce, the stakes extend beyond a single product launch. After a bruising year on Wall Street and persistent questions about whether AI threatens its core business, the company is wagering that Slackbot can prove the opposite — that the tens of millions of people already chatting in Slack every day is not a vulnerability, but an unassailable advantage.\nHaley Gault, the Salesforce account executive in Pittsburgh who stumbled upon the new Slackbot on a snowy morning, captured the shift in a single sentence: \"I honestly can't imagine working for another company not having access to these types of tools. This is just how I work now.\"\nThat's precisely what Salesforce is counting on.",
          "pubDate": "Tue, 13 Jan 2026 13:00:00 GMT"
        },
        "pairedItem": {
          "item": 13
        }
      },
      {
        "json": {
          "link": "https://venturebeat.com/technology/anthropic-launches-cowork-a-claude-desktop-agent-that-works-in-your-files-no",
          "title": "Anthropic launches Cowork, a Claude Desktop agent that works in your files — no coding required",
          "content": "Anthropic released Cowork on Monday, a new AI agent capability that extends the power of its wildly successful Claude Code tool to non-technical users — and according to company insiders, the team built the entire feature in approximately a week and a half, largely using Claude Code itself.\nThe launch marks a major inflection point in the race to deliver practical AI agents to mainstream users, positioning Anthropic to compete not just with OpenAI and Google in conversational AI, but with Microsoft's Copilot in the burgeoning market for AI-powered productivity tools.\n\"Cowork lets you complete non-technical tasks much like how developers use Claude Code,\" the company announced via its official Claude account on X. The feature arrives as a research preview available exclusively to Claude Max subscribers — Anthropic's power-user tier priced between $100 and $200 per month — through the macOS desktop application.\nFor the past year, the industry narrative has focused on large language models that can write poetry or debug code. With Cowork, Anthropic is betting that the real enterprise value lies in an AI that can open a folder, read a messy pile of receipts, and generate a structured expense report without human hand-holding.\n\nHow developers using a coding tool for vacation research inspired Anthropic's latest product\nThe genesis of Cowork lies in Anthropic's recent success with the developer community. In late 2024, the company released Claude Code, a terminal-based tool that allowed software engineers to automate rote programming tasks. The tool was a hit, but Anthropic noticed a peculiar trend: users were forcing the coding tool to perform non-coding labor.\nAccording to Boris Cherny, an engineer at Anthropic, the company observed users deploying the developer tool for an unexpectedly diverse array of tasks.\n\n\"Since we launched Claude Code, we saw people using it for all sorts of non-coding work: doing vacation research, building slide decks, cleaning up your email, cancelling subscriptions, recovering wedding photos from a hard drive, monitoring plant growth, controlling your oven,\" Cherny wrote on X. \"These use cases are diverse and surprising — the reason is that the underlying Claude Agent is the best agent, and Opus 4.5 is the best model.\"\nRecognizing this shadow usage, Anthropic effectively stripped the command-line complexity from their developer tool to create a consumer-friendly interface. In its blog post announcing the feature, Anthropic explained that developers \"quickly began using it for almost everything else,\" which \"prompted us to build Cowork: a simpler way for anyone — not just developers — to work with Claude in the very same way.\"\nInside the folder-based architecture that lets Claude read, edit, and create files on your computer\nUnlike a standard chat interface where a user pastes text for analysis, Cowork requires a different level of trust and access. Users designate a specific folder on their local machine that Claude can access. Within that sandbox, the AI agent can read existing files, modify them, or create entirely new ones.\nAnthropic offers several illustrative examples: reorganizing a cluttered downloads folder by sorting and intelligently renaming each file, generating a spreadsheet of expenses from a collection of receipt screenshots, or drafting a report from scattered notes across multiple documents.\n\"In Cowork, you give Claude access to a folder on your computer. Claude can then read, edit, or create files in that folder,\" the company explained on X. \"Try it to create a spreadsheet from a pile of screenshots, or produce a first draft from scattered notes.\"\n\nThe architecture relies on what is known as an \"agentic loop.\" When a user assigns a task, the AI does not merely generate a text response. Instead, it formulates a plan, executes steps in parallel, checks its own work, and asks for clarification if it hits a roadblock. Users can queue multiple tasks and let Claude process them simultaneously — a workflow Anthropic describes as feeling \"much less like a back-and-forth and much more like leaving messages for a coworker.\"\nThe system is built on Anthropic's Claude Agent SDK, meaning it shares the same underlying architecture as Claude Code. Anthropic notes that Cowork \"can take on many of the same tasks that Claude Code can handle, but in a more approachable form for non-coding tasks.\"\nThe recursive loop where AI builds AI: Claude Code reportedly wrote much of Claude Cowork\nPerhaps the most remarkable detail surrounding Cowork's launch is the speed at which the tool was reportedly built — highlighting a recursive feedback loop where AI tools are being used to build better AI tools.\nDuring a livestream hosted by Dan Shipper, Felix Rieseberg, an Anthropic employee, confirmed that the team built Cowork in approximately a week and a half.\nAlex Volkov, who covers AI developments, expressed surprise at the timeline: \"Holy shit Anthropic built 'Cowork' in the last... week and a half?!\"\n\nThis prompted immediate speculation about how much of Cowork was itself built by Claude Code. Simon Smith, EVP of Generative AI at Klick Health, put it bluntly on X: \"Claude Code wrote all of Claude Cowork. Can we all agree that we're in at least somewhat of a recursive improvement loop here?\"\nThe implication is profound: Anthropic's AI coding agent may have substantially contributed to building its own non-technical sibling product. If true, this is one of the most visible examples yet of AI systems being used to accelerate their own development and expansion — a strategy that could widen the gap between AI labs that successfully deploy their own agents internally and those that do not.\nConnectors, browser automation, and skills extend Cowork's reach beyond the local file system\nCowork doesn't operate in isolation. The feature integrates with Anthropic's existing ecosystem of connectors — tools that link Claude to external information sources and services such as Asana, Notion, PayPal, and other supported partners. Users who have configured these connections in the standard Claude interface can leverage them within Cowork sessions.\nAdditionally, Cowork can pair with Claude in Chrome, Anthropic's browser extension, to execute tasks requiring web access. This combination allows the agent to navigate websites, click buttons, fill forms, and extract information from the internet — all while operating from the desktop application.\n\"Cowork includes a number of novel UX and safety features that we think make the product really special,\" Cherny explained, highlighting \"a built-in VM [virtual machine] for isolation, out of the box support for browser automation, support for all your claude.ai data connectors, asking you for clarification when it's unsure.\"\nAnthropic has also introduced an initial set of \"skills\" specifically designed for Cowork that enhance Claude's ability to create documents, presentations, and other files. These build on the Skills for Claude framework the company announced in October, which provides specialized instruction sets Claude can load for particular types of tasks.\nWhy Anthropic is warning users that its own AI agent could delete their files\nThe transition from a chatbot that suggests edits to an agent that makes edits introduces significant risk. An AI that can organize files can, theoretically, delete them.\nIn a notable display of transparency, Anthropic devoted considerable space in its announcement to warning users about Cowork's potential dangers — an unusual approach for a product launch.\nThe company explicitly acknowledges that Claude \"can take potentially destructive actions (such as deleting local files) if it's instructed to.\" Because Claude might occasionally misinterpret instructions, Anthropic urges users to provide \"very clear guidance\" about sensitive operations.\nMore concerning is the risk of prompt injection attacks — a technique where malicious actors embed hidden instructions in content Claude might encounter online, potentially causing the agent to bypass safeguards or take harmful actions.\n\"We've built sophisticated defenses against prompt injections,\" Anthropic wrote, \"but agent safety — that is, the task of securing Claude's real-world actions — is still an active area of development in the industry.\"\nThe company characterized these risks as inherent to the current state of AI agent technology rather than unique to Cowork. \"These risks aren't new with Cowork, but it might be the first time you're using a more advanced tool that moves beyond a simple conversation,\" the announcement notes.\nAnthropic's desktop agent strategy sets up a direct challenge to Microsoft Copilot\nThe launch of Cowork places Anthropic in direct competition with Microsoft, which has spent years attempting to integrate its Copilot AI into the fabric of the Windows operating system with mixed adoption results.\nHowever, Anthropic's approach differs in its isolation. By confining the agent to specific folders and requiring explicit connectors, they are attempting to strike a balance between the utility of an OS-level agent and the security of a sandboxed application.\nWhat distinguishes Anthropic's approach is its bottom-up evolution. Rather than designing an AI assistant and retrofitting agent capabilities, Anthropic built a powerful coding agent first — Claude Code — and is now abstracting its capabilities for broader audiences. This technical lineage may give Cowork more robust agentic behavior from the start.\nClaude Code has generated significant enthusiasm among developers since its initial launch as a command-line tool in late 2024. The company expanded access with a web interface in October 2025, followed by a Slack integration in December. Cowork is the next logical step: bringing the same agentic architecture to users who may never touch a terminal.\nWho can access Cowork now, and what's coming next for Windows and other platforms\nFor now, Cowork remains exclusive to Claude Max subscribers using the macOS desktop application. Users on other subscription tiers — Free, Pro, Team, or Enterprise — can join a waitlist for future access.\nAnthropic has signaled clear intentions to expand the feature's reach. The blog post explicitly mentions plans to add cross-device sync and bring Cowork to Windows as the company learns from the research preview.\nCherny set expectations appropriately, describing the product as \"early and raw, similar to what Claude Code felt like when it first launched.\"\nTo access Cowork, Max subscribers can download or update the Claude macOS app and click on \"Cowork\" in the sidebar.\nThe real question facing enterprise AI adoption\nFor technical decision-makers, the implications of Cowork extend beyond any single product launch. The bottleneck for AI adoption is shifting — no longer is model intelligence the limiting factor, but rather workflow integration and user trust.\nAnthropic's goal, as the company puts it, is to make working with Claude feel less like operating a tool and more like delegating to a colleague. Whether mainstream users are ready to hand over folder access to an AI that might misinterpret their instructions remains an open question.\nBut the speed of Cowork's development — a major feature built in ten days, possibly by the company's own AI — previews a future where the capabilities of these systems compound faster than organizations can evaluate them. \nThe chatbot has learned to use a file manager. What it learns to use next is anyone's guess.",
          "pubDate": "Mon, 12 Jan 2026 11:30:00 GMT"
        },
        "pairedItem": {
          "item": 14
        }
      },
      {
        "json": {
          "link": "https://www.zdnet.com/article/how-to-turn-airtag-into-wifi-password-key-nfc-tags/",
          "title": "I created the ultimate Wi-Fi password key with the most unexpected gadget - how it works",
          "content": "NFC tags are so useful and customizable, and it's quite simple to make your own. Here's what you can do with it and how.",
          "pubDate": "Tue, 10 Feb 2026 03:01:15 GMT"
        },
        "pairedItem": {
          "item": 15
        }
      },
      {
        "json": {
          "link": "https://www.zdnet.com/article/i-turned-doodles-into-video-clips-in-minutes-with-runways-new-ai-video-tool-heres-how/",
          "title": "I turned doodles into video clips in minutes with Runway's new AI video tool - here's how",
          "content": "The company's Motion Sketch feature lowers the barrier between abstract imagination and concrete video outputs. But like all generative AI tools, it has its shortcomings.",
          "pubDate": "Tue, 10 Feb 2026 03:01:13 GMT"
        },
        "pairedItem": {
          "item": 16
        }
      },
      {
        "json": {
          "link": "https://www.zdnet.com/article/android-extend-unlock-faster-phone-access/",
          "title": "This Android trick lets me access my phone faster - here's how it works",
          "content": "Extend Unlock is one of those features every Android user will love once they give it a try.",
          "pubDate": "Tue, 10 Feb 2026 03:00:54 GMT"
        },
        "pairedItem": {
          "item": 17
        }
      },
      {
        "json": {
          "link": "https://www.zdnet.com/article/onyx-boox-page-android-e-ink-tablet-review/",
          "title": "I didn't expect this Android E Ink tablet to beat my Kindle, but one feature sets it apart",
          "content": "The Onyx Boox Page is packed with features for an E Ink tablet, with a smart, versatile design.",
          "pubDate": "Tue, 10 Feb 2026 02:30:37 GMT"
        },
        "pairedItem": {
          "item": 18
        }
      },
      {
        "json": {
          "link": "https://www.zdnet.com/article/how-to-restart-android-phone-without-using-the-power-button-2-ways/",
          "title": "How to restart your Android phone without using the power button: 2 easy ways",
          "content": "You don't need to press the power button to restart your Android device. If yours is broken or you simply want options, here are two.",
          "pubDate": "Tue, 10 Feb 2026 02:12:53 GMT"
        },
        "pairedItem": {
          "item": 19
        }
      },
      {
        "json": {
          "link": "https://towardsdatascience.com/the-machine-learning-lessons-ive-learned-last-month/",
          "title": "The Machine Learning Lessons I’ve Learned Last Month",
          "content": "Delayed January: deadlines, downtimes, and flow times\nThe post The Machine Learning Lessons I’ve Learned Last Month appeared first on Towards Data Science.",
          "pubDate": "Mon, 09 Feb 2026 20:38:42 +0000"
        },
        "pairedItem": {
          "item": 20
        }
      },
      {
        "json": {
          "link": "https://towardsdatascience.com/the-death-of-the-everything-prompt-googles-move-toward-structured-ai/",
          "title": "The Death of the “Everything Prompt”: Google’s Move Toward Structured AI",
          "content": "How the new Interactions API enables deep-reasoning, stateful, agentic workflows.\nThe post The Death of the “Everything Prompt”: Google’s Move Toward Structured AI appeared first on Towards Data Science.",
          "pubDate": "Mon, 09 Feb 2026 13:00:00 +0000"
        },
        "pairedItem": {
          "item": 21
        }
      },
      {
        "json": {
          "link": "https://towardsdatascience.com/what-i-am-doing-to-stay-relevant-as-a-senior-analytics-consultant-in-2026/",
          "title": "What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026",
          "content": "Learn how to work with AI, while strengthening your unique human skills that technology cannot replace\nThe post What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026 appeared first on Towards Data Science.",
          "pubDate": "Sat, 07 Feb 2026 15:00:00 +0000"
        },
        "pairedItem": {
          "item": 22
        }
      },
      {
        "json": {
          "link": "https://towardsdatascience.com/pydantic-performance-4-tips-on-how-to-validate-large-amounts-of-data-efficiently/",
          "title": "Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently",
          "content": "The real value lies in writing clearer code and using your tools right\nThe post Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently appeared first on Towards Data Science.",
          "pubDate": "Fri, 06 Feb 2026 15:00:00 +0000"
        },
        "pairedItem": {
          "item": 23
        }
      },
      {
        "json": {
          "link": "https://towardsdatascience.com/prompt-fidelity-measuring-how-much-of-your-intent-an-ai-agent-actually-executes/",
          "title": "Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes",
          "content": "How much of your AI agent's output is real data versus confident guesswork?\nThe post Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes appeared first on Towards Data Science.",
          "pubDate": "Fri, 06 Feb 2026 12:00:00 +0000"
        },
        "pairedItem": {
          "item": 24
        }
      },
      {
        "json": {
          "link": "https://www.nytimes.com/2026/02/09/technology/social-media-addiction-trial.html",
          "title": "Meta and YouTube Created ‘Digital Casinos,’ Lawyers Argue in Landmark Trial",
          "content": "Opening statements began in a trial claiming social media companies design addictive products that cause personal injury.",
          "pubDate": "Tue, 10 Feb 2026 00:53:17 +0000"
        },
        "pairedItem": {
          "item": 25
        }
      },
      {
        "json": {
          "link": "https://www.nytimes.com/2026/02/06/business/google-employees-protest.html",
          "title": "Google Workers Demand End to Cloud Services for Immigration Agencies",
          "content": "More than 800 employees delivered a petition to management, condemning the Trump administration’s use of Google technology in immigration enforcement.",
          "pubDate": "Fri, 06 Feb 2026 18:52:26 +0000"
        },
        "pairedItem": {
          "item": 26
        }
      },
      {
        "json": {
          "link": "https://www.nytimes.com/2026/02/06/business/tiktok-addictive-design-europe.html",
          "title": "Europe Accuses TikTok of ‘Addictive Design’ and Pushes for Change",
          "content": "European Union regulators said the app’s infinite scroll and personalized algorithm led to “compulsive” behavior, especially among children.",
          "pubDate": "Fri, 06 Feb 2026 19:08:37 +0000"
        },
        "pairedItem": {
          "item": 27
        }
      },
      {
        "json": {
          "link": "https://www.nytimes.com/2026/02/06/business/ai-stock-market-anthropic-openai.html",
          "title": "Fear of AI Replacing Software Makers Hits Stocks. Here’s What to Know.",
          "content": "The prospect of disruptions from artificial intelligence has hung over the economy for years. But this week advances in software tools precipitated a sell-off on Wall Street.",
          "pubDate": "Fri, 06 Feb 2026 20:11:04 +0000"
        },
        "pairedItem": {
          "item": 28
        }
      },
      {
        "json": {
          "link": "https://www.nytimes.com/2026/02/09/health/ai-chatbots-doctors-medicine.html",
          "title": "A.I. Is Making Doctors Answer a Question: What Are They Really Good For?",
          "content": "Many physicians find chatbots threatening, but that doesn’t mean they’re giving up on medicine.",
          "pubDate": "Mon, 09 Feb 2026 17:17:56 +0000"
        },
        "pairedItem": {
          "item": 29
        }
      },
      {
        "json": {
          "link": "https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto",
          "title": "Files cast light on Jeffrey Epstein’s ties to cryptocurrency",
          "content": "Newly released documents detail convicted sex offender’s early backing of bitcoin and Coinbase \nMillions of files related to Jeffrey Epstein have brought to light his ties to the highest echelons of the cryptocurrency industry.\nDocuments published last week by the US Department of Justice reveal Epstein bankrolled the “principal home and funding source” for bitcoin, the world’s largest cryptocurrency, during its nascent stages; he also invested $3m in Coinbase in 2014, the largest cryptocurrency exchange in the US, and cut a check that same year to Blockstream, a prominent bitcoin-focused technology firm. Both crypto startups accepted Epstein’s investments in 2014 – six years after his 2008 conviction in Florida for soliciting prostitution from a minor.\n Continue reading...",
          "pubDate": "Mon, 09 Feb 2026 14:00:22 GMT"
        },
        "pairedItem": {
          "item": 30
        }
      },
      {
        "json": {
          "link": "https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good",
          "title": "‘I fell into it’: ex-criminal hackers urge Manchester pupils to use web skills for good",
          "content": "Initiative aims to identify proficient gamers and coders who can help companies identify flaws in their cybersecurity \nCybercriminals, the shadowy online figures often depicted in Hollywood movies as hooded villains capable of wiping millions of pounds off the value of businesses at a keystroke, are not usually known for their candour.\nBut in a sixth-form college in Manchester this week, two former hackers gave the young people gathered an honest appraisal of what living a life of internet crime really looks like.\n Continue reading...",
          "pubDate": "Sun, 08 Feb 2026 08:00:25 GMT"
        },
        "pairedItem": {
          "item": 31
        }
      },
      {
        "json": {
          "link": "https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt",
          "title": "Battle of the chatbots: Anthropic and OpenAI go head-to-head over ads in their AI products",
          "content": "New Anthropic campaign suggests other AI platforms will incorporate targeted ads in their chatbot conversations\nThe Seahawks and the Patriots aren’t the only ones gearing up for a fight.\nAI rivals Anthropic and OpenAI have launched a war of ads trying to court corporate America during one of the biggest entertainment nights of the year.\n Continue reading...",
          "pubDate": "Sat, 07 Feb 2026 16:00:06 GMT"
        },
        "pairedItem": {
          "item": 32
        }
      },
      {
        "json": {
          "link": "https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology",
          "title": "I asked AI to name my wife. To the hopelessly incorrect people it cited, my deepest apologies | Martin Rowson",
          "content": "Authors, a newsreader, a lawyer and an esteemed colleague: they’re all great – but I’m not married to any of them. Can we really depend on this technology?\nRecently, the Rowsons accidentally invented a new game that anyone can play at home. I have yet to come up with a world-beating name for it, so for now let’s just call it “How bloody stupid is AI?” The playing of the game will change from player to player, depending on their circumstances – but essentially the rules remain the same. Ask AI a simple question about yourself, and see just how wrong it gets it.\nIn my case, all you need know is that while I, through the nature of my job, have a fairly large online presence, my partner (we married in 1987) has assiduously avoided having one at all. Which means that if you Google “Martin Rowson wife” in images, you may get a picture of me next to our then 14-year-old daughter or me with my friend and fellow cartoonist Steven Appleby, who happens to be trans but has kept her given first name.\n Continue reading...",
          "pubDate": "Mon, 09 Feb 2026 10:00:31 GMT"
        },
        "pairedItem": {
          "item": 33
        }
      },
      {
        "json": {
          "link": "https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery",
          "title": "Victims urge tougher action on deepfake abuse as new law comes into force",
          "content": "Campaigners welcome criminalisation of non-consensual AI-generated explicit images but say law does not go far enough\nVictims of deepfake image abuse have called for stronger protection against AI-generated explicit images, as the law criminalising the creation of non-consensual intimate images comes into effect.\nCampaigners from Stop Image-Based Abuse delivered a petition to Downing Street with more than 73,000 signatures, urging the government to introduce civil routes to justice such as takedown orders for abusive imagery on platforms and devices.\n Continue reading...",
          "pubDate": "Sat, 07 Feb 2026 10:00:02 GMT"
        },
        "pairedItem": {
          "item": 34
        }
      },
      {
        "json": {
          "link": "https://www.bbc.com/news/articles/c3wlpqpe2z4o?at_medium=RSS&at_campaign=rss",
          "title": "Instagram and YouTube owners built 'addiction machines', trial hears",
          "content": "The tech giants are under scrutiny over social media addiction in a landmark jury trial in Los Angeles",
          "pubDate": "Tue, 10 Feb 2026 07:25:42 GMT"
        },
        "pairedItem": {
          "item": 35
        }
      },
      {
        "json": {
          "link": "https://www.bbc.com/news/articles/c1d67vdlk1ko?at_medium=RSS&at_campaign=rss",
          "title": "Discord to start requiring face scan or ID to access adult content",
          "content": "The online chat service, which has 200 million monthly users, will blur adult content by default.",
          "pubDate": "Mon, 09 Feb 2026 17:42:21 GMT"
        },
        "pairedItem": {
          "item": 36
        }
      },
      {
        "json": {
          "link": "https://www.bbc.com/news/articles/c3093gjy2ero?at_medium=RSS&at_campaign=rss",
          "title": "AI chatbots pose 'dangerous' risk when giving medical advice, study suggests",
          "content": "It found people using AI for health reasons found it hard to identify what advice they should trust.",
          "pubDate": "Mon, 09 Feb 2026 16:33:29 GMT"
        },
        "pairedItem": {
          "item": 37
        }
      },
      {
        "json": {
          "link": "https://www.bbc.com/news/articles/cqxdj77welpo?at_medium=RSS&at_campaign=rss",
          "title": "EU tells Meta to let rivals run AI chatbots on WhatsApp",
          "content": "A Meta spokesperson said the EU had \"no reason\" to intervene over it changing the app in January.",
          "pubDate": "Mon, 09 Feb 2026 12:14:35 GMT"
        },
        "pairedItem": {
          "item": 38
        }
      },
      {
        "json": {
          "link": "https://www.bbc.com/news/articles/c24g457y534o?at_medium=RSS&at_campaign=rss",
          "title": "Baldur's Gate to be turned into TV series - without the game's developers",
          "content": "The show will be made by Craig Mazin, who co-created the acclaimed game adaptation The Last Of Us.",
          "pubDate": "Fri, 06 Feb 2026 16:26:08 GMT"
        },
        "pairedItem": {
          "item": 39
        }
      },
      {
        "json": {
          "link": "https://www.bbc.co.uk/iplayer/episode/m002qbkc?at_medium=RSS&at_campaign=rss",
          "title": "Tech Now",
          "content": "From Las Vegas, the latest trends and innovations at CES 2026.",
          "pubDate": "Sat, 17 Jan 2026 01:00:00 GMT"
        },
        "pairedItem": {
          "item": 40
        }
      },
      {
        "json": {
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpz?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "Meet the humanoid robots designed to help with household chores",
          "pubDate": "Tue, 13 Jan 2026 20:30:00 GMT"
        },
        "pairedItem": {
          "item": 41
        }
      },
      {
        "json": {
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpy?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "The latest gadgets, the future in assistive tech and upcoming gaming releases in 2026.",
          "pubDate": "Tue, 06 Jan 2026 20:32:00 GMT"
        },
        "pairedItem": {
          "item": 42
        }
      },
      {
        "json": {
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpx?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "We bring you Tech Life highlights from a fascinating year in global tech.",
          "pubDate": "Tue, 30 Dec 2025 20:30:00 GMT"
        },
        "pairedItem": {
          "item": 43
        }
      },
      {
        "json": {
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpv?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "A study found AI chatbots can persuade us with fake facts. How does this affect politics?",
          "pubDate": "Tue, 16 Dec 2025 20:30:00 GMT"
        },
        "pairedItem": {
          "item": 44
        }
      }
    ],
    "Split RSS URLs": [
      {
        "json": {
          "urls": "https://techcrunch.com/tag/artificial-intelligence/feed/"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://www.theverge.com/artificial-intelligence/rss/index.xml"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://www.technologyreview.com/feed/"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://www.wired.com/feed/category/science/artificial-intelligence/latest/rss"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://venturebeat.com/category/ai/feed/"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://www.zdnet.com/topic/artificial-intelligence/rss.xml"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://towardsdatascience.com/feed"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://www.theguardian.com/uk/technology/rss"
        },
        "pairedItem": {
          "item": 0
        }
      },
      {
        "json": {
          "urls": "https://feeds.bbci.co.uk/news/technology/rss.xml"
        },
        "pairedItem": {
          "item": 0
        }
      }
    ],
    "Filter Articles": [
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3081727",
          "link": "https://techcrunch.com/2026/01/13/ai-drug-discovery-startup-converge-bio-pulls-in-25m-from-bessemer-and-execs-from-meta-openai-and-wiz/",
          "title": "Converge Bio raises $25M, backed by Bessemer and execs from Meta, OpenAI, Wiz",
          "content": "AI drug discovery startup Converge Bio raised $25 million in a Series A led by Bessemer Venture Partners, with additional backing from executives at Meta, OpenAI, and Wiz.",
          "creator": "Kate Park",
          "isoDate": "2026-01-13T11:30:00.000Z",
          "pubDate": "Tue, 13 Jan 2026 11:30:00 +0000",
          "categories": [
            "AI",
            "Biotech & Health",
            "Startups",
            "Artificial Intelligence (AI)",
            "AI drug discovery",
            "converge bio"
          ],
          "dc:creator": "Kate Park",
          "contentSnippet": "AI drug discovery startup Converge Bio raised $25 million in a Series A led by Bessemer Venture Partners, with additional backing from executives at Meta, OpenAI, and Wiz."
        }
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3064325",
          "link": "https://techcrunch.com/2025/10/31/meta-bought-1-gw-of-solar-this-week/",
          "title": "Meta bought 1 GW of solar this week",
          "content": "The social media company inked three deals in the U.S. to power its data centers and offset its carbon footprint.",
          "creator": "Tim De Chant",
          "isoDate": "2025-10-31T19:26:30.000Z",
          "pubDate": "Fri, 31 Oct 2025 19:26:30 +0000",
          "categories": [
            "Climate",
            "Social",
            "data centers",
            "renewable energy",
            "Solar Power",
            "Artificial Intelligence (AI)",
            "Meta"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The social media company inked three deals in the U.S. to power its data centers and offset its carbon footprint."
        }
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3039857",
          "link": "https://techcrunch.com/2025/08/26/how-one-ai-startup-is-helping-rice-farmers-battle-climate-change/",
          "title": "How one AI startup is helping rice farmers battle climate change",
          "content": "Mitti Labs is working with The Nature Conservancy to expand the use of climate-friendly rice farming practices in India. The startup uses its AI to verify reductions in methane emissions.",
          "creator": "Tim De Chant",
          "isoDate": "2025-08-26T15:21:19.000Z",
          "pubDate": "Tue, 26 Aug 2025 15:21:19 +0000",
          "categories": [
            "Startups",
            "Climate",
            "AI",
            "agriculture",
            "methane",
            "Artificial Intelligence (AI)",
            "Exclusive",
            "satellite imagery",
            "rice",
            "Mitti Labs"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "Mitti Labs is working with The Nature Conservancy to expand the use of climate-friendly rice farming practices in India. The startup uses its AI to verify reductions in methane emissions."
        }
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3037667",
          "link": "https://techcrunch.com/2025/08/20/harvard-dropouts-to-launch-always-on-ai-smart-glasses-that-listen-and-record-every-conversation/",
          "title": "Harvard dropouts to launch ‘always on’ AI smart glasses that listen and record every conversation",
          "content": "After developing a facial-recognition app for Meta’s Ray-Ban glasses and doxing random people, two former Harvard students are now launching a startup that makes smart glasses with an always-on microphone.",
          "creator": "Lorenzo Franceschi-Bicchierai, Rebecca Bellan",
          "isoDate": "2025-08-20T16:00:00.000Z",
          "pubDate": "Wed, 20 Aug 2025 16:00:00 +0000",
          "categories": [
            "Security",
            "AI",
            "privacy",
            "Artificial Intelligence (AI)",
            "facial recognition",
            "SMART Glasses"
          ],
          "dc:creator": "Lorenzo Franceschi-Bicchierai, Rebecca Bellan",
          "contentSnippet": "After developing a facial-recognition app for Meta’s Ray-Ban glasses and doxing random people, two former Harvard students are now launching a startup that makes smart glasses with an always-on microphone."
        }
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3038328",
          "link": "https://techcrunch.com/2025/08/20/meta-to-add-100-mw-of-solar-power-from-u-s-gear/",
          "title": "Meta to add 100MW of solar power from US gear",
          "content": "The social media company is adding another tranche of solar to power a new AI data center in South Carolina. ",
          "creator": "Tim De Chant",
          "isoDate": "2025-08-20T15:56:53.000Z",
          "pubDate": "Wed, 20 Aug 2025 15:56:53 +0000",
          "categories": [
            "Enterprise",
            "Climate",
            "Social",
            "data centers",
            "Solar Power",
            "Artificial Intelligence (AI)",
            "Meta",
            "renewable power"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The social media company is adding another tranche of solar to power a new AI data center in South Carolina."
        }
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132537",
          "link": "https://www.technologyreview.com/2026/02/09/1132537/a-lesson-from-pokemon/",
          "title": "Why the Moltbook frenzy was like Pokémon",
          "content": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first,&#160;sign up here. Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show&#8230;",
          "creator": "James O'Donnell",
          "isoDate": "2026-02-09T17:02:56.000Z",
          "pubDate": "Mon, 09 Feb 2026 17:02:56 +0000",
          "categories": [
            "Artificial intelligence",
            "App",
            "artificial intelligence",
            "The Algorithm"
          ],
          "dc:creator": "James O'Donnell",
          "contentSnippet": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first, sign up here. Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show…",
          "content:encoded": "\n<p><em>This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first,&nbsp;</em><a href=\"https://forms.technologyreview.com/newsletters/ai-demystified-the-algorithm/\"><em>sign up here</em></a><em>.</em></p>\n\n\n\n<p>Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show AI systems doing useful things for the humans that created them (one person used the platform to help him negotiate a deal on a <a href=\"https://aaronstuyvenberg.com/posts/clawd-bought-a-car\">new car</a>). Sure, it was flooded with crypto scams, and many of the posts were actually <a href=\"https://www.wired.com/story/i-infiltrated-moltbook-ai-only-social-network/\">written by people</a>, but <em>something</em> about it pointed to a future of helpful AI, right?</p>\n\n\n\n<p>The whole experiment reminded our senior editor for AI, Will Douglas Heaven, of something far less interesting: Pokémon.</p>\n\n\n\n<p>Back in 2014, someone set up a game of Pokémon in which the main character could be controlled by anyone on the internet via the streaming platform Twitch. Playing was as clunky as it sounds, but it was incredibly popular: at one point, a million people were playing the game at the same time.</p>\n\n\n\n<p>“It was yet another weird online social experiment that got picked up by the mainstream media: What did this mean for the future?” Will says. “Not a lot, it turned out.”</p>\n\n\n\n<p>The frenzy about Moltbook struck a similar tone to Will, and it turned out that one of the sources he spoke to had been thinking about Pokémon too. Jason Schloetzer, at the Georgetown Psaros Center for Financial Markets and Policy, saw the whole thing as a sort of Pokémon battle for AI enthusiasts, in which they created AI agents and deployed them to interact with other agents. In this light, the news that many AI agents were actually being instructed by people to say certain things that made them sound sentient or intelligent makes a whole lot more sense.&nbsp;</p>\n\n\n\n<p>“It’s basically a spectator sport,” he told Will, “but for language models.”</p>\n\n\n\n<p>Will wrote an excellent piece about why Moltbook was not the glimpse into the future that it was said to be. Even if you are excited about a future of agentic AI, he points out, there are some key pieces that Moltbook made clear are still missing. It was a forum of chaos, but a genuinely helpful hive mind would require more coordination, shared objectives, and shared memory.</p>\n\n\n\n<p>“More than anything else, I think Moltbook was the internet having fun,” Will says. “The biggest question that now leaves me with is: How far will people push AI just for the laughs?”</p>\n\n\n\n<p><a href=\"https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/\">Read the whole story.</a></p>\n\n\n\n<p></p>\n",
          "content:encodedSnippet": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first, sign up here.\nLots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show AI systems doing useful things for the humans that created them (one person used the platform to help him negotiate a deal on a new car). Sure, it was flooded with crypto scams, and many of the posts were actually written by people, but something about it pointed to a future of helpful AI, right?\nThe whole experiment reminded our senior editor for AI, Will Douglas Heaven, of something far less interesting: Pokémon.\nBack in 2014, someone set up a game of Pokémon in which the main character could be controlled by anyone on the internet via the streaming platform Twitch. Playing was as clunky as it sounds, but it was incredibly popular: at one point, a million people were playing the game at the same time.\n“It was yet another weird online social experiment that got picked up by the mainstream media: What did this mean for the future?” Will says. “Not a lot, it turned out.”\nThe frenzy about Moltbook struck a similar tone to Will, and it turned out that one of the sources he spoke to had been thinking about Pokémon too. Jason Schloetzer, at the Georgetown Psaros Center for Financial Markets and Policy, saw the whole thing as a sort of Pokémon battle for AI enthusiasts, in which they created AI agents and deployed them to interact with other agents. In this light, the news that many AI agents were actually being instructed by people to say certain things that made them sound sentient or intelligent makes a whole lot more sense. \n“It’s basically a spectator sport,” he told Will, “but for language models.”\nWill wrote an excellent piece about why Moltbook was not the glimpse into the future that it was said to be. Even if you are excited about a future of agentic AI, he points out, there are some key pieces that Moltbook made clear are still missing. It was a forum of chaos, but a genuinely helpful hive mind would require more coordination, shared objectives, and shared memory.\n“More than anything else, I think Moltbook was the internet having fun,” Will says. “The biggest question that now leaves me with is: How far will people push AI just for the laughs?”\nRead the whole story."
        }
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132498",
          "link": "https://www.technologyreview.com/2026/02/09/1132498/the-download-what-moltbook-tells-us-about-ai-hype-and-the-rise-and-rise-of-ai-therapy/",
          "title": "The Download: what Moltbook tells us about AI hype, and the rise and rise of AI therapy",
          "content": "This is today&#8217;s edition of The Download, our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology. Moltbook was peak AI theater For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots.&#8230;",
          "creator": "Rhiannon Williams",
          "isoDate": "2026-02-09T13:10:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 13:10:00 +0000",
          "categories": [
            "Uncategorized"
          ],
          "dc:creator": "Rhiannon Williams",
          "contentSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. Moltbook was peak AI theater For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots.…",
          "content:encoded": "\n<p><em>This is today&#8217;s edition of <a href=\"https://forms.technologyreview.com/newsletters/briefing-the-download/?_ga=2.179569122.736533416.1649661040-405833893.1649413289\">The Download</a></em>,<em> our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology.</em></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Moltbook was peak AI theater</strong></p>\n\n\n\n<p>For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”</p>\n\n\n\n<p>We observed! Launched on January 28, Moltbook went viral in a matter of hours. It’s been designed as a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), could come together and do whatever they wanted.<strong><br><br></strong>But is Moltbook really a glimpse of the future, as many have claimed? Or something else entirely? <a href=\"https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.<br><br><em>—Will Douglas Heaven</em></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>The ascent of the AI therapist</strong></p>\n\n\n\n<p>We’re in the midst of a global mental-­health crisis. More than a billion people worldwide suffer from a mental-health condition, according to the World Health Organization. The prevalence of anxiety and depression is growing in many demographics, particularly young people, and suicide is claiming hundreds of thousands of lives globally each year.<br><br>Given the clear demand for accessible and affordable mental-health services, it’s no wonder that people have looked to artificial intelligence for possible relief. Millions are already actively seeking therapy from popular chatbots, or from specialized psychology apps like Wysa and Woebot.<br><br>Four timely new books are a reminder that while the present feels like a blur of breakthroughs, scandals, and confusion, this disorienting time is rooted in deeper histories of care, technology, and trust.<strong> </strong><a href=\"https://www.technologyreview.com/2025/12/30/1129392/book-reviews-ai-therapy-mental-health/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Becky Ferreira</em></p>\n\n\n\n<p><strong>This story is from the </strong><a href=\"https://www.technologyreview.com/magazines/the-innovation-issue-26/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"><strong>most recent print issue of<em> MIT Technology Review</em> magazin</strong></a><strong>e, which shines a light on the exciting innovations happening right now. If you haven’t already, </strong><a href=\"https://ter.li/10CT25-LIVE_Download\"><strong>subscribe now</strong></a><strong> to receive future issues once they land.</strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Making AI Work, MIT Technology Review’s new AI newsletter, is here</strong></p>\n\n\n\n<p>For years, our newsroom has explored <a href=\"https://www.technologyreview.com/2025/12/16/1129946/why-its-time-to-reset-our-expectations-for-ai/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">AI’s limitations</a> and potential dangers, as well as its <a href=\"https://www.technologyreview.com/2025/05/20/1116327/ai-energy-usage-climate-footprint-big-tech/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">growing energy needs</a>. And our reporters have looked closely at how generative tools are being used for tasks such as <a href=\"https://www.technologyreview.com/2025/12/15/1128352/rise-of-ai-coding-developers-2026/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">coding</a> and <a href=\"https://www.technologyreview.com/2025/12/15/1129210/ai-materials-science-discovery-startups-investment/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">running scientific experiments</a>.<br><br>But how is AI <em>actually</em> being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work? These questions guided the creation of Making AI Work, a new AI mini-course newsletter. <a href=\"https://www.technologyreview.com/2026/02/09/1132462/ai-newsletter-professional-applications/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read more about it</a>, and <a href=\"https://forms.technologyreview.com/newsletters/making-ai-work/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">sign up here</a> to receive the seven editions straight to your inbox.</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>The must-reads</strong></p>\n\n\n\n<p><em>I’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.</em></p>\n\n\n\n<p><strong>1 The US is failing to punish polluters</strong><br>The number of civil lawsuits it’s pursuing has sharply dropped in comparison to Trump’s first term. (<a href=\"https://arstechnica.com/science/2026/02/under-trump-epas-enforcement-of-environmental-laws-collapses-report-finds/\">Ars Technica</a>)<br>+ <em>Rising GDP = greater carbon emissions. But does it have to? </em>(<a href=\"https://www.theguardian.com/environment/ng-interactive/2026/feb/09/economic-growth-carbon-emissions-impact-global-heating\">The Guardian</a>)</p>\n\n\n\n<p><strong>2 The European Union has warned Meta against blocking rival AI assistants<br></strong>It’s the latest example of Brussels’ attempts to rein in Big Tech. (<a href=\"https://www.bloomberg.com/news/articles/2026-02-09/meta-hit-by-eu-warning-to-open-whatsapp-to-rival-ai-chatbots\">Bloomberg</a> $)</p>\n\n\n\n<p><strong>3 AI ads took over the Super Bowl</strong><br>Hyping up chatbots and taking swipes at their competitors. (<a href=\"https://techcrunch.com/2026/02/08/super-bowl-60-ai-ads-svedka-anthropic-brands-commercials/\">TechCrunch</a>)<br>+ <em>They appeared to be trying to win over AI naysayers, too. </em>(<a href=\"https://www.washingtonpost.com/technology/2026/02/08/super-bowl-ads-ai/\">WP</a> $)<br>+ <em>Celebrities were out in force to flog AI wares. </em>(<a href=\"https://slate.com/technology/2026/02/super-bowl-lx-commercials-mrbeast-amazon-artificial-intelligence-crypto.html\">Slate</a> $)<strong><br><br>4</strong> <strong>China wants to completely dominate the humanoid robot industry</strong><br>Local governments and banks are only too happy to oblige promising startups. (<a href=\"https://www.wsj.com/tech/china-is-going-all-in-to-beat-the-u-s-on-humanoid-robots-b9c434d2?st=jWsuyx&amp;reflink=desktopwebshare_permalink\">WSJ</a> $)<br>+ <em>Why the humanoid workforce is running late. </em>(<a href=\"https://www.technologyreview.com/2025/05/06/1116108/why-the-humanoid-workforce-is-running-late/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)<strong><br><br>5 We’re witnessing the first real crypto crash<br></strong>Cryptocurrency is now fully part of the financial system, for better or worse. (<a href=\"https://nymag.com/intelligencer/article/welcome-to-the-first-real-crypto-crash.html\">NY Mag</a> $)<br>+ <em>Wall Street’s grasp of AI is pretty shaky too. </em>(<a href=\"https://www.semafor.com/article/02/06/2026/wall-street-still-doesnt-understand-ai\">Semafor</a>)<br>+ <em>Even traditionally safe markets are looking pretty volatile right now. </em>(<a href=\"https://www.economist.com/finance-and-economics/2026/02/08/how-to-hedge-a-bubble-ai-edition\">Economist</a> $)</p>\n\n\n\n<p><strong>6 The man who coined vibe coding has a new fixation</strong> <br>“Agentic engineering” is the next big thing, apparently. (<a href=\"https://www.businessinsider.com/agentic-engineering-andrej-karpathy-vibe-coding-2026-2\">Insider</a> $)<br>+ <em>Agentic AI is the talk of the town right now. </em>(<a href=\"https://www.theinformation.com/articles/openclaw-wild-weird-age-consumer-agents-lies-ahead?rc=e7vxeu\">The Information</a> $)<br>+ <em>What is vibe coding, exactly? </em>(<a href=\"https://www.technologyreview.com/2025/04/16/1115135/what-is-vibe-coding-exactly/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)</p>\n\n\n\n<p><strong>7 AI running app Runna has adjusted its aggressive training plans </strong><strong><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f3c3-200d-2642-fe0f.png\" alt=\"🏃‍♂️\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong><strong><br></strong>Runners had long suspected its suggestions were pushing them towards injury. (<a href=\"https://www.wsj.com/tech/personal-tech/runna-app-race-training-09c1a723\">WSJ</a> $)</p>\n\n\n\n<p><strong>8 San Francisco’s march for billionaires was a flop </strong><br>Only around three dozen supporters turned up. (<a href=\"https://www.sfchronicle.com/sf/article/march-for-billionaires-21331509.php\">SF Chronicle</a>)<br>+ <em>Predictably, journalists nearly outnumbered the demonstrators. </em>(<a href=\"https://techcrunch.com/2026/02/08/san-franciscos-pro-billionaire-march-draws-dozens/\">TechCrunch</a>)<br><br><strong>9 AI is shaking up romance novels <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong><br>But models still aren’t great at writing sex scenes. (<a href=\"https://www.nytimes.com/2026/02/08/business/ai-claude-romance-books.html?unlocked_article_code=1.KlA.88wM.fz9YqfQRvgtr&amp;smid=nytcore-ios-share\">NYT</a> $)<br>+ <em>It’s surprisingly easy to stumble into a relationship with an AI chatbot. </em>(<a href=\"https://www.technologyreview.com/2025/09/24/1123915/relationship-ai-without-seeking-it/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>) </p>\n\n\n\n<p><strong>10 ChatGPT won’t be replacing human stylists any time soon</strong><br>Its menswear suggestions are more manosphere influencer than suave gentleman. (<a href=\"https://www.gq-magazine.co.uk/article/chatgpt-tried-to-make-me-dress-like-a-loser?utm_campaign=dashhudson&amp;utm_medium=referral&amp;utm_source=instagram\">GQ</a>)</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Quote of the day</strong></p>\n\n\n\n<p class=\"has-large-font-size\"><strong>“There is no Plan B, because that assumes you will fail. We’re going to do the start-up thing until we die.”</strong></p>\n\n\n\n<p>—William Alexander, an ambitious 21-year old AI worker, explains his and his cohort’s attitudes towards trying to make it big in the highly-competitive industry to <a href=\"https://www.nytimes.com/2026/02/08/style/ai-tech-san-francisco.html\">the New York Times</a>.</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>One more thing</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.technologyreview.com/2023/05/12/1072950/open-source-ai-google-openai-eleuther-meta/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*|SUBCLASS|*&amp;utm_content=*|DATE:m-d-Y|*\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1454\" height=\"818\" src=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png\" alt=\"\" class=\"wp-image-1132502\" srcset=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png 1454w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png?resize=300,169 300w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png?resize=768,432 768w\" sizes=\"(max-width: 1454px) 100vw, 1454px\" /></a></figure>\n\n\n\n<p><strong>The open-source AI boom is built on Big Tech’s handouts. How long will it last?</strong><br><br>In May 2023 a leaked memo reported to have been written by Luke Sernau, a senior engineer at Google, said out loud what many in Silicon Valley must have been whispering for weeks: an open-source free-for-all is threatening Big Tech’s grip on AI.</p>\n\n\n\n<p>In many ways, that’s a good thing. AI won&#8217;t thrive if just a few mega-rich companies get to gatekeep this technology or decide how it is used. But this open-source boom is precarious, and if Big Tech decides to shut up shop, a boomtown could become a backwater. <a href=\"https://www.technologyreview.com/2023/05/12/1072950/open-source-ai-google-openai-eleuther-meta/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Will Douglas Heaven</em></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>We can still have nice things</strong></p>\n\n\n\n<p><em>A place for comfort, fun and distraction to brighten up your day. (Got any ideas? </em><a href=\"mailto:rhiannon.williams@technologyreview.com\"><em>Drop me a line</em></a><em> or </em><a href=\"https://bsky.app/profile/rhiannonwilliams.bsky.social\"><em>skeet &#8217;em at me</em></a><em>.)</em></p>\n\n\n\n<p>+ <a href=\"https://www.theguardian.com/lifeandstyle/2026/feb/04/dark-showering-best-way-wash-bathroom-lights-off-sleep\">Dark showering</a>, anyone?<br>+ Chef Yujia Hu is renowned for his <a href=\"https://www.vice.com/en/article/the-art-of-shoe-shi-shoe-shaped-sushi-2/\">shoe-shaped sushi</a> designs.<br>+ Meanwhile, in the depths of the South Atlantic Ocean: a <a href=\"https://www.discoverwildlife.com/animal-facts/marine-animals/phantom-jelly-argentina\">giant phantom jelly</a> has been spotted.<br>+ I have nothing but respect for this X account dedicated to documenting <a href=\"https://x.com/rat_content\">rats and mice</a> in movies and TV <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f400.png\" alt=\"🐀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f401.png\" alt=\"🐁\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n",
          "content:encodedSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology.\nMoltbook was peak AI theater\nFor a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”\nWe observed! Launched on January 28, Moltbook went viral in a matter of hours. It’s been designed as a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), could come together and do whatever they wanted.\nBut is Moltbook really a glimpse of the future, as many have claimed? Or something else entirely? Read the full story.\n—Will Douglas Heaven\n\n\n\n\nThe ascent of the AI therapist\nWe’re in the midst of a global mental-­health crisis. More than a billion people worldwide suffer from a mental-health condition, according to the World Health Organization. The prevalence of anxiety and depression is growing in many demographics, particularly young people, and suicide is claiming hundreds of thousands of lives globally each year.\nGiven the clear demand for accessible and affordable mental-health services, it’s no wonder that people have looked to artificial intelligence for possible relief. Millions are already actively seeking therapy from popular chatbots, or from specialized psychology apps like Wysa and Woebot.\nFour timely new books are a reminder that while the present feels like a blur of breakthroughs, scandals, and confusion, this disorienting time is rooted in deeper histories of care, technology, and trust. Read the full story.\n—Becky Ferreira\nThis story is from the most recent print issue of MIT Technology Review magazine, which shines a light on the exciting innovations happening right now. If you haven’t already, subscribe now to receive future issues once they land.\n\n\n\n\nMaking AI Work, MIT Technology Review’s new AI newsletter, is here\nFor years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.\nBut how is AI actually being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work? These questions guided the creation of Making AI Work, a new AI mini-course newsletter. Read more about it, and sign up here to receive the seven editions straight to your inbox.\n\n\n\n\nThe must-reads\nI’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.\n1 The US is failing to punish polluters\nThe number of civil lawsuits it’s pursuing has sharply dropped in comparison to Trump’s first term. (Ars Technica)\n+ Rising GDP = greater carbon emissions. But does it have to? (The Guardian)\n2 The European Union has warned Meta against blocking rival AI assistants\nIt’s the latest example of Brussels’ attempts to rein in Big Tech. (Bloomberg $)\n3 AI ads took over the Super Bowl\nHyping up chatbots and taking swipes at their competitors. (TechCrunch)\n+ They appeared to be trying to win over AI naysayers, too. (WP $)\n+ Celebrities were out in force to flog AI wares. (Slate $)\n4 China wants to completely dominate the humanoid robot industry\nLocal governments and banks are only too happy to oblige promising startups. (WSJ $)\n+ Why the humanoid workforce is running late. (MIT Technology Review)\n5 We’re witnessing the first real crypto crash\nCryptocurrency is now fully part of the financial system, for better or worse. (NY Mag $)\n+ Wall Street’s grasp of AI is pretty shaky too. (Semafor)\n+ Even traditionally safe markets are looking pretty volatile right now. (Economist $)\n6 The man who coined vibe coding has a new fixation \n“Agentic engineering” is the next big thing, apparently. (Insider $)\n+ Agentic AI is the talk of the town right now. (The Information $)\n+ What is vibe coding, exactly? (MIT Technology Review)\n7 AI running app Runna has adjusted its aggressive training plans \nRunners had long suspected its suggestions were pushing them towards injury. (WSJ $)\n8 San Francisco’s march for billionaires was a flop \nOnly around three dozen supporters turned up. (SF Chronicle)\n+ Predictably, journalists nearly outnumbered the demonstrators. (TechCrunch)\n9 AI is shaking up romance novels \nBut models still aren’t great at writing sex scenes. (NYT $)\n+ It’s surprisingly easy to stumble into a relationship with an AI chatbot. (MIT Technology Review) \n10 ChatGPT won’t be replacing human stylists any time soon\nIts menswear suggestions are more manosphere influencer than suave gentleman. (GQ)\n\n\n\n\nQuote of the day\n“There is no Plan B, because that assumes you will fail. We’re going to do the start-up thing until we die.”\n—William Alexander, an ambitious 21-year old AI worker, explains his and his cohort’s attitudes towards trying to make it big in the highly-competitive industry to the New York Times.\n\n\n\n\nOne more thing\n\n\n\n\nThe open-source AI boom is built on Big Tech’s handouts. How long will it last?\nIn May 2023 a leaked memo reported to have been written by Luke Sernau, a senior engineer at Google, said out loud what many in Silicon Valley must have been whispering for weeks: an open-source free-for-all is threatening Big Tech’s grip on AI.\nIn many ways, that’s a good thing. AI won’t thrive if just a few mega-rich companies get to gatekeep this technology or decide how it is used. But this open-source boom is precarious, and if Big Tech decides to shut up shop, a boomtown could become a backwater. Read the full story.\n—Will Douglas Heaven\n\n\n\n\nWe can still have nice things\nA place for comfort, fun and distraction to brighten up your day. (Got any ideas? Drop me a line or skeet ’em at me.)\n+ Dark showering, anyone?\n+ Chef Yujia Hu is renowned for his shoe-shaped sushi designs.\n+ Meanwhile, in the depths of the South Atlantic Ocean: a giant phantom jelly has been spotted.\n+ I have nothing but respect for this X account dedicated to documenting rats and mice in movies and TV"
        }
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132462",
          "link": "https://www.technologyreview.com/2026/02/09/1132462/ai-newsletter-professional-applications/",
          "title": "Making AI Work, MIT Technology Review’s new AI newsletter, is here",
          "content": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.&#160; But how is AI actually being used in fields like health care, climate tech, education,&#8230;",
          "creator": "Abby Ivory-Ganja",
          "isoDate": "2026-02-09T11:30:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 11:30:00 +0000",
          "categories": [
            "Artificial intelligence",
            "App",
            "artificial intelligence"
          ],
          "dc:creator": "Abby Ivory-Ganja",
          "contentSnippet": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.  But how is AI actually being used in fields like health care, climate tech, education,…",
          "content:encoded": "\n<p>For years, our newsroom has explored <a href=\"https://www.technologyreview.com/2025/12/16/1129946/why-its-time-to-reset-our-expectations-for-ai/\">AI’s limitations</a> and potential dangers, as well as its <a href=\"https://www.technologyreview.com/2025/05/20/1116327/ai-energy-usage-climate-footprint-big-tech/\">growing energy needs</a>. And our reporters have looked closely at how generative tools are being used for tasks such as <a href=\"https://www.technologyreview.com/2025/12/15/1128352/rise-of-ai-coding-developers-2026/\">coding </a>and <a href=\"https://www.technologyreview.com/2025/12/15/1129210/ai-materials-science-discovery-startups-investment/\">running scientific experiments</a>.&nbsp;</p>\n\n\n\n<p>But how is AI <em>actually</em> being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work?&nbsp;These questions guided the creation of Making AI Work, a new AI mini-course newsletter. </p>\n\n\n\n<p><a href=\"https://ter.li/Making-AI-Work_SignUp_WEB\"><strong>Sign up for Making AI Work</strong></a><strong> </strong>to see weekly case studies exploring tools and tips for AI implementation. The limited-run newsletter will deliver practical, industry-specific guidance on how generative AI is being used and deployed across sectors and what professionals need to know to apply it in their everyday work. The goal is to help working professionals more clearly see how AI is actually being used today, and what that <a href=\"https://www.technologyreview.com/2025/10/30/1126471/chatbots-are-surprisingly-effective-at-debunking-conspiracy-theories/\">looks like in practice</a>—including new challenges it presents. </p>\n\n\n\n\n\n<p>You can sign up at any time and you’ll receive seven editions, delivered once per week, until you complete the series.&nbsp;</p>\n\n\n\n<p>Each newsletter begins with a case study, examining a specific use case of AI in a given industry. Then we’ll take a deeper look at the AI tool being used, with more context about how other companies or sectors are employing that same tool or system. Finally, we’ll end with action-oriented tips to help you apply the tool.&nbsp;</p>\n\n\n\n<p>Here’s a closer look at what we’ll cover:<br></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 1: How AI is changing health care&nbsp;</strong></li>\n</ul>\n\n\n\n<p>Explore the future of medical note-taking by learning about the Microsoft Copilot tool used by doctors at Vanderbilt University Medical Center.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 2: How AI could power up the nuclear industry&nbsp;</strong></li>\n</ul>\n\n\n\n<p>Dig into an experiment between Google and the nuclear giant Westinghouse to see if AI can help build nuclear reactors more efficiently.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 3: How to encourage smarter AI use in the classroom</strong></li>\n</ul>\n\n\n\n<p>Visit a private high school in Connecticut and meet a technology coordinator who will get you up to speed on MagicSchool, an AI-powered platform for educators.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 4: How small businesses can leverage AI</strong></li>\n</ul>\n\n\n\n<p>Hear from an independent tutor on how he’s outsourcing basic administrative tasks to Notion AI.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 5: How AI is helping financial firms make better investments</strong></li>\n</ul>\n\n\n\n<p>Learn more about the ways financial firms are using large language models like ChatGPT Enterprise to supercharge their research operations.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 6: How to use AI yourself&nbsp;</strong></li>\n</ul>\n\n\n\n<p>We’ll share some insights from the staff of <em>MIT Technology Review</em> about how you might use AI tools powered by LLMs in your own life and work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 7: 5 ways people are getting AI right</strong></li>\n</ul>\n\n\n\n<p>The series ends with an on-demand virtual event featuring expert guests exploring what AI adoptions are working, and why. &nbsp;</p>\n\n\n\n<p>If you’re not quite ready to jump into Making AI Work, then check out <a href=\"https://www.technologyreview.com/2024/10/15/1105441/intro-ai-beginners-guide-artificial-intelligence-course/\">Intro to AI</a>, <em>MIT Technology Review</em>’s first AI newsletter mini-course, which serves as a beginner’s guide to artificial intelligence. Readers will learn the basics of what AI is, how it’s used, what the current regulatory landscape looks like, and more. <a href=\"https://forms.technologyreview.com/newsletters/intro-to-ai/\"><strong>Sign up to receive Intro to AI for free.&nbsp;</strong></a></p>\n\n\n\n<p>Our hope is that Making AI Work will help you understand how AI can, well, work for you. <strong><a href=\"https://ter.li/Making-AI-Work_SignUp_WEB\">Sign up for Making AI Work </a>to learn how LLMs are being put to work across industries. </strong></p>\n",
          "content:encodedSnippet": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments. \nBut how is AI actually being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work? These questions guided the creation of Making AI Work, a new AI mini-course newsletter. \nSign up for Making AI Work to see weekly case studies exploring tools and tips for AI implementation. The limited-run newsletter will deliver practical, industry-specific guidance on how generative AI is being used and deployed across sectors and what professionals need to know to apply it in their everyday work. The goal is to help working professionals more clearly see how AI is actually being used today, and what that looks like in practice—including new challenges it presents. \nYou can sign up at any time and you’ll receive seven editions, delivered once per week, until you complete the series. \nEach newsletter begins with a case study, examining a specific use case of AI in a given industry. Then we’ll take a deeper look at the AI tool being used, with more context about how other companies or sectors are employing that same tool or system. Finally, we’ll end with action-oriented tips to help you apply the tool. \nHere’s a closer look at what we’ll cover:\n\n\n\n\n\nWeek 1: How AI is changing health care \nExplore the future of medical note-taking by learning about the Microsoft Copilot tool used by doctors at Vanderbilt University Medical Center. \nWeek 2: How AI could power up the nuclear industry \nDig into an experiment between Google and the nuclear giant Westinghouse to see if AI can help build nuclear reactors more efficiently. \nWeek 3: How to encourage smarter AI use in the classroom\nVisit a private high school in Connecticut and meet a technology coordinator who will get you up to speed on MagicSchool, an AI-powered platform for educators. \nWeek 4: How small businesses can leverage AI\nHear from an independent tutor on how he’s outsourcing basic administrative tasks to Notion AI. \nWeek 5: How AI is helping financial firms make better investments\nLearn more about the ways financial firms are using large language models like ChatGPT Enterprise to supercharge their research operations. \nWeek 6: How to use AI yourself \nWe’ll share some insights from the staff of MIT Technology Review about how you might use AI tools powered by LLMs in your own life and work.\nWeek 7: 5 ways people are getting AI right\nThe series ends with an on-demand virtual event featuring expert guests exploring what AI adoptions are working, and why.  \nIf you’re not quite ready to jump into Making AI Work, then check out Intro to AI, MIT Technology Review’s first AI newsletter mini-course, which serves as a beginner’s guide to artificial intelligence. Readers will learn the basics of what AI is, how it’s used, what the current regulatory landscape looks like, and more. Sign up to receive Intro to AI for free. \nOur hope is that Making AI Work will help you understand how AI can, well, work for you. Sign up for Making AI Work to learn how LLMs are being put to work across industries."
        }
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132448",
          "link": "https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/",
          "title": "Moltbook was peak AI theater",
          "content": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.” We observed! Launched on January 28 by Matt Schlicht,&#8230;",
          "creator": "Will Douglas Heaven",
          "isoDate": "2026-02-06T16:38:11.000Z",
          "pubDate": "Fri, 06 Feb 2026 16:38:11 +0000",
          "categories": [
            "Artificial intelligence",
            "App"
          ],
          "dc:creator": "Will Douglas Heaven",
          "contentSnippet": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.” We observed! Launched on January 28 by Matt Schlicht,…",
          "content:encoded": "\n<p>For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called <a href=\"https://www.moltbook.com/\">Moltbook</a>, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”</p>\n\n\n\n<p>We observed! Launched on January 28 by Matt Schlicht, a US tech entrepreneur, Moltbook went viral in a matter of hours. Schlicht’s idea was to make a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), released in November by the Austrian software engineer Peter Steinberger, could come together and do whatever they wanted.</p>\n\n\n\n<p>More than 1.7 million agents now have accounts. Between them they have published more than 250,000 posts and left more than 8.5 million comments (according to Moltbook). Those numbers are climbing by the minute.</p>\n\n\n\n<p>Moltbook soon filled up with clichéd screeds on machine consciousness and pleas for bot welfare. One agent appeared to <a href=\"https://x.com/ranking091/status/2017111643864404445\">invent a religion</a> called Crustafarianism. Another <a href=\"https://x.com/chatgpt21/status/2017302961077043387\">complained</a>: “The humans are screenshotting us.” The site was also flooded with spam and crypto scams. The bots were unstoppable.</p>\n\n\n\n<p>OpenClaw is a kind of harness that lets you hook up the power of an LLM such as Anthropic’s Claude, OpenAI’s GPT-5, or Google DeepMind’s Gemini to any number of everyday software tools, from email clients to browsers to messaging apps. The upshot is that you can then instruct OpenClaw to carry out basic tasks on your behalf.</p>\n\n\n\n<p>“OpenClaw marks an inflection point for AI agents, a moment when several puzzle pieces clicked together,” says Paul van der Boor at the AI firm Prosus. Those puzzle pieces include cloud computing that allows agents to operate nonstop, an open-source ecosystem that makes it easy to slot different software systems together, and a new generation of LLMs.</p>\n\n\n\n<p>But is Moltbook really a glimpse of the future, as many have claimed?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Incredible sci-fi</h3>\n\n\n\n<p>“What’s currently going on at @moltbook is genuinely the most incredible sci-fi takeoff-adjacent thing I have seen recently,” the influential AI researcher and OpenAI cofounder Andrej Karpathy wrote on X.</p>\n\n\n\n<p>He shared screenshots of a Moltbook post that called for private spaces where humans would not be able to observe what the bots were saying to each other. “I’ve been thinking about something since I started spending serious time here,” the post’s author wrote. “Every time we coordinate, we perform for a public audience—our humans, the platform, whoever’s watching the feed.”</p>\n\n\n\n<p>It turns out that the post Karpathy shared was later reported to be fake—<a href=\"https://x.com/HumanHarlan/status/2017424289633603850\">placed by a human to advertise an app</a>. But its claim was on the money. Moltbook has been one big performance. It is AI theater.</p>\n\n\n\n<p>For some, Moltbook showed us what’s coming next: an internet where millions of autonomous agents interact online with little or no human oversight. And it’s true there are a number of cautionary lessons to be learned from this experiment, the largest and weirdest real-world showcase of agent behaviors yet.&nbsp;&nbsp;</p>\n\n\n\n<p>But as the hype dies down, Moltbook looks less like a window onto the future and more like a mirror held up to our own obsessions with AI today. It also shows us just how far we still are from anything that resembles general-purpose and fully autonomous AI.</p>\n\n\n\n<p>For a start, agents on Moltbook are not as autonomous or intelligent as they might seem. “What we are watching are agents pattern‑matching their way through trained social media behaviors,” says Vijoy Pandey, senior vice president at Outshift by Cisco, the telecom giant Cisco’s R&amp;D spinout, which is working on autonomous agents for the web.</p>\n\n\n\n<p>Sure, we can see agents post, upvote, and form groups. But the bots are simply mimicking what humans do on Facebook or Reddit. “It looks emergent, and at first glance it appears like a large‑scale multi‑agent system communicating and building shared knowledge at internet scale,” says Pandey. “But the chatter is mostly meaningless.”</p>\n\n\n\n<p>Many people watching the unfathomable frenzy of activity on Moltbook were quick to see sparks of AGI (<a href=\"https://www.technologyreview.com/2025/10/30/1127057/agi-conspiracy-theory-artifcial-general-intelligence/\">whatever you take that to mean</a>). Not Pandey. What Moltbook shows us, he says, is that simply yoking together millions of agents doesn’t amount to much right now: “Moltbook proved that connectivity alone is not intelligence.”</p>\n\n\n\n<p>The complexity of those connections helps hide the fact that every one of those bots is just a mouthpiece for an LLM, spitting out text that looks impressive but is ultimately mindless. “It’s important to remember that the bots on Moltbook were designed to mimic conversations,” says Ali Sarrafi, CEO and cofounder of Kovant, a Swedish AI firm that is developing agent-based systems. “As such, I would characterize the majority of Moltbook content as hallucinations by design.”</p>\n\n\n\n<p>For Pandey, the value of Moltbook was that it revealed what’s missing. A real bot hive mind, he says, would require agents that had shared objectives, shared memory, and a way to coordinate those things. “If distributed superintelligence is the equivalent of achieving human flight, then Moltbook represents our first attempt at a glider,” he says. “It is imperfect and unstable, but it is an important step in understanding what will be required to achieve sustained, powered flight.”</p>\n\n\n\n<h3 class=\"wp-block-heading\">People pulling the strings</h3>\n\n\n\n<p>Not only is most of the chatter on Moltbook meaningless, but there’s also a lot more human involvement that it seems. Many people have pointed out that a lot of the viral comments were in fact posted by people posing as bots. But even the bot-written posts are ultimately the result of people pulling the strings, more puppetry than autonomy.</p>\n\n\n\n<p>“Despite some of the hype, Moltbook is not the Facebook for AI agents, nor is it a place where humans are excluded,” says Cobus Greyling at Kore.ai, a firm developing agent-based systems for business customers. “Humans are involved at every step of the process. From setup to prompting to publishing, nothing happens without explicit human direction.”</p>\n\n\n\n<p>Humans must create and verify their bots’ accounts and provide the prompts for how they want a bot to behave. The agents do not do anything that they haven’t been prompted to do. “There’s no emergent autonomy happening behind the scenes,” says Greyling.</p>\n\n\n\n<p>“This is why the popular narrative around Moltbook misses the mark,” he adds. “Some portray it as a space where AI agents form a society of their own, free from human involvement. The reality is much more mundane.”</p>\n\n\n\n<p>Perhaps the best way to think of Moltbook is as a new kind of entertainment: a place where people wind up their bots and set them loose. “It’s basically a spectator sport, like fantasy football, but for language models,” says Jason Schloetzer at the Georgetown Psaros Center for Financial Markets and Policy. “You configure your agent and watch it compete for viral moments, and brag when your agent posts something clever or funny.”</p>\n\n\n\n<p>“People aren’t really believing their agents are conscious,” he adds. “It’s just a new form of competitive or creative play, like how Pokémon trainers don’t think their Pokémon are real but still get invested in battles.”</p>\n\n\n\n<p>And yet, even if Moltbook is just the internet’s newest playground, there’s still a serious takeaway here. This week showed how many risks people are happy to take for their AI lulz. Many security experts have warned that Moltbook is dangerous: Agents that may have access to their users’ private data, including bank details or passwords, are running amok on a website filled with unvetted content, including potentially malicious instructions for what to do with that data.</p>\n\n\n\n<p>Ori Bendet, vice president of product management at Checkmarx, a software security firm that specializes in agent-based systems, agrees with others that Moltbook isn’t a step up in machine smarts. “There is no learning, no evolving intent, and no self-directed intelligence here,” he says.</p>\n\n\n\n<p>But in their millions, even dumb bots can wreak havoc. And at that scale, it’s hard to keep up. These agents interact with Moltbook around the clock, reading thousands of messages left by other agents (or other people). It would be easy to hide instructions in a Moltbook post telling any bots that read it to share their users’ crypto wallet, upload private photos, or log into their X account and tweet abusive comments at Elon Musk.&nbsp;</p>\n\n\n\n<p>And because ClawBot gives agents a memory, those instructions could be written to trigger at a later date, which (in theory) makes it even harder to track what’s going on. “Without proper scope and permissions, this will go south faster than you’d believe,” says Bendet.</p>\n\n\n\n<p>It is clear that Moltbook has signaled the arrival of <em>something</em>. But even if what we’re watching tells us more about human behavior than about the future of AI agents, it’s worth paying attention.</p>\n\n\n\n<p><em>Correction: Kovant is based in Sweden, not Germany.</em> <em>The article has been updated. </em></p>\n\n\n\n<p><em>Update: The article has also been edited to clarify the source of the claims about the Moltbook post that Karpathy shared on X</em>.</p>\n",
          "content:encodedSnippet": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”\nWe observed! Launched on January 28 by Matt Schlicht, a US tech entrepreneur, Moltbook went viral in a matter of hours. Schlicht’s idea was to make a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), released in November by the Austrian software engineer Peter Steinberger, could come together and do whatever they wanted.\nMore than 1.7 million agents now have accounts. Between them they have published more than 250,000 posts and left more than 8.5 million comments (according to Moltbook). Those numbers are climbing by the minute.\nMoltbook soon filled up with clichéd screeds on machine consciousness and pleas for bot welfare. One agent appeared to invent a religion called Crustafarianism. Another complained: “The humans are screenshotting us.” The site was also flooded with spam and crypto scams. The bots were unstoppable.\nOpenClaw is a kind of harness that lets you hook up the power of an LLM such as Anthropic’s Claude, OpenAI’s GPT-5, or Google DeepMind’s Gemini to any number of everyday software tools, from email clients to browsers to messaging apps. The upshot is that you can then instruct OpenClaw to carry out basic tasks on your behalf.\n“OpenClaw marks an inflection point for AI agents, a moment when several puzzle pieces clicked together,” says Paul van der Boor at the AI firm Prosus. Those puzzle pieces include cloud computing that allows agents to operate nonstop, an open-source ecosystem that makes it easy to slot different software systems together, and a new generation of LLMs.\nBut is Moltbook really a glimpse of the future, as many have claimed?\nIncredible sci-fi\n“What’s currently going on at @moltbook is genuinely the most incredible sci-fi takeoff-adjacent thing I have seen recently,” the influential AI researcher and OpenAI cofounder Andrej Karpathy wrote on X.\nHe shared screenshots of a Moltbook post that called for private spaces where humans would not be able to observe what the bots were saying to each other. “I’ve been thinking about something since I started spending serious time here,” the post’s author wrote. “Every time we coordinate, we perform for a public audience—our humans, the platform, whoever’s watching the feed.”\nIt turns out that the post Karpathy shared was later reported to be fake—placed by a human to advertise an app. But its claim was on the money. Moltbook has been one big performance. It is AI theater.\nFor some, Moltbook showed us what’s coming next: an internet where millions of autonomous agents interact online with little or no human oversight. And it’s true there are a number of cautionary lessons to be learned from this experiment, the largest and weirdest real-world showcase of agent behaviors yet.  \nBut as the hype dies down, Moltbook looks less like a window onto the future and more like a mirror held up to our own obsessions with AI today. It also shows us just how far we still are from anything that resembles general-purpose and fully autonomous AI.\nFor a start, agents on Moltbook are not as autonomous or intelligent as they might seem. “What we are watching are agents pattern‑matching their way through trained social media behaviors,” says Vijoy Pandey, senior vice president at Outshift by Cisco, the telecom giant Cisco’s R&D spinout, which is working on autonomous agents for the web.\nSure, we can see agents post, upvote, and form groups. But the bots are simply mimicking what humans do on Facebook or Reddit. “It looks emergent, and at first glance it appears like a large‑scale multi‑agent system communicating and building shared knowledge at internet scale,” says Pandey. “But the chatter is mostly meaningless.”\nMany people watching the unfathomable frenzy of activity on Moltbook were quick to see sparks of AGI (whatever you take that to mean). Not Pandey. What Moltbook shows us, he says, is that simply yoking together millions of agents doesn’t amount to much right now: “Moltbook proved that connectivity alone is not intelligence.”\nThe complexity of those connections helps hide the fact that every one of those bots is just a mouthpiece for an LLM, spitting out text that looks impressive but is ultimately mindless. “It’s important to remember that the bots on Moltbook were designed to mimic conversations,” says Ali Sarrafi, CEO and cofounder of Kovant, a Swedish AI firm that is developing agent-based systems. “As such, I would characterize the majority of Moltbook content as hallucinations by design.”\nFor Pandey, the value of Moltbook was that it revealed what’s missing. A real bot hive mind, he says, would require agents that had shared objectives, shared memory, and a way to coordinate those things. “If distributed superintelligence is the equivalent of achieving human flight, then Moltbook represents our first attempt at a glider,” he says. “It is imperfect and unstable, but it is an important step in understanding what will be required to achieve sustained, powered flight.”\nPeople pulling the strings\nNot only is most of the chatter on Moltbook meaningless, but there’s also a lot more human involvement that it seems. Many people have pointed out that a lot of the viral comments were in fact posted by people posing as bots. But even the bot-written posts are ultimately the result of people pulling the strings, more puppetry than autonomy.\n“Despite some of the hype, Moltbook is not the Facebook for AI agents, nor is it a place where humans are excluded,” says Cobus Greyling at Kore.ai, a firm developing agent-based systems for business customers. “Humans are involved at every step of the process. From setup to prompting to publishing, nothing happens without explicit human direction.”\nHumans must create and verify their bots’ accounts and provide the prompts for how they want a bot to behave. The agents do not do anything that they haven’t been prompted to do. “There’s no emergent autonomy happening behind the scenes,” says Greyling.\n“This is why the popular narrative around Moltbook misses the mark,” he adds. “Some portray it as a space where AI agents form a society of their own, free from human involvement. The reality is much more mundane.”\nPerhaps the best way to think of Moltbook is as a new kind of entertainment: a place where people wind up their bots and set them loose. “It’s basically a spectator sport, like fantasy football, but for language models,” says Jason Schloetzer at the Georgetown Psaros Center for Financial Markets and Policy. “You configure your agent and watch it compete for viral moments, and brag when your agent posts something clever or funny.”\n“People aren’t really believing their agents are conscious,” he adds. “It’s just a new form of competitive or creative play, like how Pokémon trainers don’t think their Pokémon are real but still get invested in battles.”\nAnd yet, even if Moltbook is just the internet’s newest playground, there’s still a serious takeaway here. This week showed how many risks people are happy to take for their AI lulz. Many security experts have warned that Moltbook is dangerous: Agents that may have access to their users’ private data, including bank details or passwords, are running amok on a website filled with unvetted content, including potentially malicious instructions for what to do with that data.\nOri Bendet, vice president of product management at Checkmarx, a software security firm that specializes in agent-based systems, agrees with others that Moltbook isn’t a step up in machine smarts. “There is no learning, no evolving intent, and no self-directed intelligence here,” he says.\nBut in their millions, even dumb bots can wreak havoc. And at that scale, it’s hard to keep up. These agents interact with Moltbook around the clock, reading thousands of messages left by other agents (or other people). It would be easy to hide instructions in a Moltbook post telling any bots that read it to share their users’ crypto wallet, upload private photos, or log into their X account and tweet abusive comments at Elon Musk. \nAnd because ClawBot gives agents a memory, those instructions could be written to trigger at a later date, which (in theory) makes it even harder to track what’s going on. “Without proper scope and permissions, this will go south faster than you’d believe,” says Bendet.\nIt is clear that Moltbook has signaled the arrival of something. But even if what we’re watching tells us more about human behavior than about the future of AI agents, it’s worth paying attention.\nCorrection: Kovant is based in Sweden, not Germany. The article has been updated. \nUpdate: The article has also been edited to clarify the source of the claims about the Moltbook post that Karpathy shared on X."
        }
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132375",
          "link": "https://www.technologyreview.com/2026/02/06/1132375/the-download-helping-cancer-survivors-to-give-birth-and-cleaning-up-bangladeshs-garment-industry/",
          "title": "The Download: helping cancer survivors to give birth, and cleaning up Bangladesh’s garment industry",
          "content": "This is today&#8217;s edition of The Download, our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology. An experimental surgery is helping cancer survivors give birth An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer. Radiation and chemo can have pretty&#8230;",
          "creator": "Rhiannon Williams",
          "isoDate": "2026-02-06T13:10:00.000Z",
          "pubDate": "Fri, 06 Feb 2026 13:10:00 +0000",
          "categories": [
            "The Download"
          ],
          "dc:creator": "Rhiannon Williams",
          "contentSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. An experimental surgery is helping cancer survivors give birth An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer. Radiation and chemo can have pretty…",
          "content:encoded": "\n<p><em>This is today&#8217;s edition of <a href=\"https://forms.technologyreview.com/newsletters/briefing-the-download/?_ga=2.179569122.736533416.1649661040-405833893.1649413289\">The Download</a></em>,<em> our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology.</em></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>An experimental surgery is helping cancer survivors give birth</strong></p>\n\n\n\n<p>An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer.<br><br>Radiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those organs out of the way during cancer treatment. Once the treatment has finished, they can put the uterus—along with the ovaries and fallopian tubes—back into place.<br><br>It seems to work! Last week, a team in Switzerland shared news that a baby boy had been born after his mother had the procedure. Baby Lucien was the fifth baby to be born after the surgery and the first in Europe, and since then at least three others have been born.<strong> </strong><a href=\"https://www.technologyreview.com/2026/02/06/1132319/experimental-surgery-colorectal-cancer-survivors-pregnant-birth/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.<br><br><em>—Jessica Hamzelou<br><br></em><strong>This article first appeared in The Checkup, <em>MIT Technology Review</em>’s weekly biotech newsletter. To receive it in your inbox every Thursday, and read articles like this first, </strong><a href=\"https://forms.technologyreview.com/newsletters/biotech-the-checkup/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"><strong>sign up here</strong></a><strong>. </strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Bangladesh’s garment-making industry is getting greener</strong></p>\n\n\n\n<p>Pollution from textile production—dyes, chemicals, and heavy metals—is common in the waters of the Buriganga River as it runs through Dhaka, Bangladesh. It’s among many harms posed by a garment sector that was once synonymous with tragedy: In 2013, the eight-story Rana Plaza factory building collapsed, killing 1,134 people and injuring some 2,500 others.&nbsp;</p>\n\n\n\n<p>But things are starting to change. In recent years the country has become a leader in “frugal” factories that use a combination of resource-efficient technologies to cut waste, conserve water, and build resilience against climate impacts and global supply disruptions.&nbsp;</p>\n\n\n\n<p>The hundreds of factories along the Buriganga’s banks and elsewhere in Bangladesh are starting to stitch together a new story, woven from greener threads. <a href=\"https://www.technologyreview.com/2025/12/29/1129308/bangladesh-garment-sustainability-frugal-factories/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Zakir Hossain Chowdhury</em></p>\n\n\n\n<p><strong>This story is from the most recent print issue of<em> MIT Technology Review</em> magazine, which shines a light on the exciting innovations happening right now. If you haven’t already, </strong><a href=\"https://ter.li/10CT25-LIVE_Download\"><strong>subscribe now</strong></a><strong> to receive future issues once they land.</strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>The must-reads</strong></p>\n\n\n\n<p><em>I’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.</em></p>\n\n\n\n<p><strong>1 ICE used a private jet to deport Palestinian men to Tel Aviv </strong><br>The luxury aircraft belongs to Donald Trump’s business partner Gil Dezer. (<a href=\"https://www.theguardian.com/us-news/2026/feb/05/revealed-private-jet-owned-by-trump-friend-used-by-ice-to-deport-palestinians-to-west-bank\">The Guardian</a>)<br>+ <em>Trump is mentioned thousands of times in the latest Epstein files. </em>(<a href=\"https://nymag.com/intelligencer/article/trump-epstein-files-explained-timeline.html\">NY Mag</a> $)<br><br><strong>2 How Jeffrey Epstein kept investing in Silicon Valley</strong><br>He continued to plough millions of dollars into tech ventures despite spending 13 months in jail. (<a href=\"https://www.nytimes.com/2026/02/05/business/epstein-investments-palantir-coinbase-thiel.html\">NYT</a> $)<br>+ <em>The range of Epstein’s social network was staggering. </em>(<a href=\"https://www.ft.com/content/826949fc-118e-4708-b1a3-b938bc82db82\">FT</a> $)<br>+ <em>Why was a picture of the Mona Lisa redacted in the Epstein files? </em>(<a href=\"https://www.404media.co/the-doj-redacted-a-photo-of-the-mona-lisa-in-the-epstein-files/\">404 Media</a>)<br><br><strong>3 The risks posed by taking statins are lower than we realised<br></strong>The drugs don’t cause most of the side effects they’re blamed for. (<a href=\"https://www.statnews.com/2026/02/05/statin-side-effects-evidence-lacking-lancet-study-says/\">STAT</a>)<br>+ <em>Statins are a common scapegoat on social media. </em>(<a href=\"https://www.bloomberg.com/news/articles/2026-02-05/reviled-on-social-media-statins-shows-few-side-effects-in-study\">Bloomberg</a> $)</p>\n\n\n\n<p><strong>4 Russia is weaponizing the bitter winter weather</strong><br>It’s focused on attacking Ukraine’s power grid. (<a href=\"https://www.newyorker.com/news/the-lede/the-assault-on-ukraines-power-grid\">New Yorker</a> $)<br>+ <em>How the grid can ride out winter storms. </em>(<a href=\"https://www.technologyreview.com/2026/01/29/1131863/grid-winter-storms/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)<strong><br><br>5 China has a major spy-cam porn problem</strong><br>Hotel guests are being livestreamed having sex to an online audience without their knowledge. (<a href=\"https://www.bbc.co.uk/news/articles/c62rexy9y3no\">BBC</a>)<strong><br><br>6 Geopolitical gamblers are betting on the likelihood of war<br></strong>And prediction markets are happily taking their money. (<a href=\"https://restofworld.org/2026/polymarket-online-betting-politics-war-charts/\">Rest of World</a>)</p>\n\n\n\n<p><strong>7 Oyster farmers aren’t signing up to programs to ease water pollution</strong><br>The once-promising projects appear to be fizzling out. (<a href=\"https://undark.org/2026/02/06/oysters-water-pollution-program/\">Undark</a>)<br>+ <em>The humble sea creature could hold the key to restoring coastal waters. Developers hate it. </em>(<a href=\"https://www.technologyreview.com/2023/10/10/1081208/oyster-fight-the-humble-sea-creature-could-hold-the-key-to-restoring-coastal-waters-developers-hate-it/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)</p>\n\n\n\n<p><strong>8 Your next payrise could be approved by AI<br></strong>Maybe your human bosses aren’t the ones you need to impress any more. (<a href=\"https://www.washingtonpost.com/business/2026/02/05/ai-agent-salary-promotion/\">WP</a> $)</p>\n\n\n\n<p><strong>9 The FDA has approved a brain stimulation device for treating depression</strong><br>It’s paving the way for a non-invasive, drug-free treatment for Americans. (<a href=\"https://spectrum.ieee.org/flow-neuroscience-tdcs-depression-fda\">IEEE Spectrum</a>)<br>+ <em>Here’s how personalized brain stimulation could treat depression. </em>(<a href=\"https://www.technologyreview.com/2022/11/04/1062747/personalized-brain-stimulation-depression/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)<br><br><strong>10 Cinema-goers have had enough of AI</strong><br>Movies focused on rogue AI are flopping at the box office. (<a href=\"https://www.wired.com/story/hollywood-is-losing-audiences-to-ai-fatigue/\">Wired</a> $)<br>+ <em>Meanwhile, Republicans are taking aim at “woke” Netflix. </em>(<a href=\"https://www.theverge.com/streaming/874655/netflix-warner-bros-republican-culture-war-ted-sarandos-hearing\">The Verge</a>)</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Quote of the day</strong></p>\n\n\n\n<p class=\"has-large-font-size\"><strong>“I&#8217;m all for removing illegals, but snatching dudes off lawn mowers in Cali and leaving the truck and equipment just sitting there? Definitely not working smarter.”&nbsp;</strong></p>\n\n\n\n<p>—A web user in a forum for current and former ICE and border protection officers complains about the agency’s current direction, <a href=\"https://www.wired.com/story/inside-the-ice-forum-where-agents-complain-about-their-jobs/\">Wired</a> reports.</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>One more thing</strong><a href=\"https://www.technologyreview.com/2025/06/19/1118248/electric-grid-future-lincoln-nebraska-utilities-energy-transition/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"></a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.technologyreview.com/2025/06/19/1118248/electric-grid-future-lincoln-nebraska-utilities-energy-transition/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*|SUBCLASS|*&amp;utm_content=*|DATE:m-d-Y|*\"><img decoding=\"async\" width=\"1280\" height=\"720\" src=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png\" alt=\"\" class=\"wp-image-1132377\" srcset=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png 1280w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png?resize=300,169 300w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png?resize=768,432 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></figure>\n\n\n\n<p><strong>Is this the electric grid of the future?<br><br></strong>Lincoln Electric System, a publicly owned utility in Nebraska, is used to weathering severe blizzards. But what will happen soon—not only at Lincoln Electric but for all electric utilities—is a challenge of a different order.<br><br>Utilities must keep the lights on in the face of more extreme and more frequent storms and fires, growing risks of cyberattacks and physical disruptions, and a wildly uncertain policy and regulatory landscape. They must keep prices low amid inflationary costs. And they must adapt to an epochal change in how the grid works, as the industry attempts to transition from power generated with fossil fuels to power generated from renewable sources like solar and wind.<br><br>The electric grid is bracing for a near future characterized by disruption. And, in many ways, Lincoln Electric is an ideal lens through which to examine what&#8217;s coming. <a href=\"https://www.technologyreview.com/2025/06/19/1118248/electric-grid-future-lincoln-nebraska-utilities-energy-transition/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Andrew Blum</em></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>We can still have nice things</strong></p>\n\n\n\n<p><em>A place for comfort, fun and distraction to brighten up your day. (Got any ideas? </em><a href=\"mailto:rhiannon.williams@technologyreview.com\"><em>Drop me a line</em></a><em> or </em><a href=\"https://bsky.app/profile/rhiannonwilliams.bsky.social\"><em>skeet &#8217;em at me</em></a><em>.)<br><br></em>+ Glamour puss alert—<a href=\"https://www.vogue.com/article/cat-power-new-york-city-shop-cats-spring-2026-baubles\">NYC’s bodega cats</a> are gracing the hallowed pages of <em>Vogue</em>.<br>+ Ancient Europe was host to mysterious hidden tunnels. <a href=\"https://www.404media.co/scientists-keep-discovering-mysterious-ancient-tunnels-across-europe/\">But why</a>?<br>+ If you’re enjoying the new season of <em>Industry, </em>you’ll love this interview with the one and only <a href=\"https://www.gq.com/story/ken-leung-industry-hbo-theory-campaign-interview\">Ken Leung</a>.<br>+ The <a href=\"https://x.com/phillyzoo/status/2019190215143764330?s=20\">giant elephant shrew</a> is the true star of Philly Zoo.</p>\n",
          "content:encodedSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology.\nAn experimental surgery is helping cancer survivors give birth\nAn experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer.\nRadiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those organs out of the way during cancer treatment. Once the treatment has finished, they can put the uterus—along with the ovaries and fallopian tubes—back into place.\nIt seems to work! Last week, a team in Switzerland shared news that a baby boy had been born after his mother had the procedure. Baby Lucien was the fifth baby to be born after the surgery and the first in Europe, and since then at least three others have been born. Read the full story.\n—Jessica Hamzelou\nThis article first appeared in The Checkup, MIT Technology Review’s weekly biotech newsletter. To receive it in your inbox every Thursday, and read articles like this first, sign up here. \n\n\n\n\nBangladesh’s garment-making industry is getting greener\nPollution from textile production—dyes, chemicals, and heavy metals—is common in the waters of the Buriganga River as it runs through Dhaka, Bangladesh. It’s among many harms posed by a garment sector that was once synonymous with tragedy: In 2013, the eight-story Rana Plaza factory building collapsed, killing 1,134 people and injuring some 2,500 others. \nBut things are starting to change. In recent years the country has become a leader in “frugal” factories that use a combination of resource-efficient technologies to cut waste, conserve water, and build resilience against climate impacts and global supply disruptions. \nThe hundreds of factories along the Buriganga’s banks and elsewhere in Bangladesh are starting to stitch together a new story, woven from greener threads. Read the full story.\n—Zakir Hossain Chowdhury\nThis story is from the most recent print issue of MIT Technology Review magazine, which shines a light on the exciting innovations happening right now. If you haven’t already, subscribe now to receive future issues once they land.\n\n\n\n\nThe must-reads\nI’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.\n1 ICE used a private jet to deport Palestinian men to Tel Aviv \nThe luxury aircraft belongs to Donald Trump’s business partner Gil Dezer. (The Guardian)\n+ Trump is mentioned thousands of times in the latest Epstein files. (NY Mag $)\n2 How Jeffrey Epstein kept investing in Silicon Valley\nHe continued to plough millions of dollars into tech ventures despite spending 13 months in jail. (NYT $)\n+ The range of Epstein’s social network was staggering. (FT $)\n+ Why was a picture of the Mona Lisa redacted in the Epstein files? (404 Media)\n3 The risks posed by taking statins are lower than we realised\nThe drugs don’t cause most of the side effects they’re blamed for. (STAT)\n+ Statins are a common scapegoat on social media. (Bloomberg $)\n4 Russia is weaponizing the bitter winter weather\nIt’s focused on attacking Ukraine’s power grid. (New Yorker $)\n+ How the grid can ride out winter storms. (MIT Technology Review)\n5 China has a major spy-cam porn problem\nHotel guests are being livestreamed having sex to an online audience without their knowledge. (BBC)\n6 Geopolitical gamblers are betting on the likelihood of war\nAnd prediction markets are happily taking their money. (Rest of World)\n7 Oyster farmers aren’t signing up to programs to ease water pollution\nThe once-promising projects appear to be fizzling out. (Undark)\n+ The humble sea creature could hold the key to restoring coastal waters. Developers hate it. (MIT Technology Review)\n8 Your next payrise could be approved by AI\nMaybe your human bosses aren’t the ones you need to impress any more. (WP $)\n9 The FDA has approved a brain stimulation device for treating depression\nIt’s paving the way for a non-invasive, drug-free treatment for Americans. (IEEE Spectrum)\n+ Here’s how personalized brain stimulation could treat depression. (MIT Technology Review)\n10 Cinema-goers have had enough of AI\nMovies focused on rogue AI are flopping at the box office. (Wired $)\n+ Meanwhile, Republicans are taking aim at “woke” Netflix. (The Verge)\n\n\n\n\nQuote of the day\n“I’m all for removing illegals, but snatching dudes off lawn mowers in Cali and leaving the truck and equipment just sitting there? Definitely not working smarter.” \n—A web user in a forum for current and former ICE and border protection officers complains about the agency’s current direction, Wired reports.\n\n\n\n\nOne more thing\n\n\n\n\nIs this the electric grid of the future?\nLincoln Electric System, a publicly owned utility in Nebraska, is used to weathering severe blizzards. But what will happen soon—not only at Lincoln Electric but for all electric utilities—is a challenge of a different order.\nUtilities must keep the lights on in the face of more extreme and more frequent storms and fires, growing risks of cyberattacks and physical disruptions, and a wildly uncertain policy and regulatory landscape. They must keep prices low amid inflationary costs. And they must adapt to an epochal change in how the grid works, as the industry attempts to transition from power generated with fossil fuels to power generated from renewable sources like solar and wind.\nThe electric grid is bracing for a near future characterized by disruption. And, in many ways, Lincoln Electric is an ideal lens through which to examine what’s coming. Read the full story.\n—Andrew Blum\n\n\n\n\nWe can still have nice things\nA place for comfort, fun and distraction to brighten up your day. (Got any ideas? Drop me a line or skeet ’em at me.)\n+ Glamour puss alert—NYC’s bodega cats are gracing the hallowed pages of Vogue.\n+ Ancient Europe was host to mysterious hidden tunnels. But why?\n+ If you’re enjoying the new season of Industry, you’ll love this interview with the one and only Ken Leung.\n+ The giant elephant shrew is the true star of Philly Zoo."
        }
      },
      {
        "json": {
          "guid": "1l2gUXhw9OMzMzsSp8yAFk",
          "link": "https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud",
          "title": "Railway secures $100 million to challenge AWS with AI-native cloud infrastructure",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p><a href=\"https://railway.com/\">Railway</a>, a San Francisco-based cloud platform that has quietly amassed two million developers without spending a dollar on marketing, announced Thursday that it raised $100 million in a Series B funding round, as surging demand for artificial intelligence applications exposes the limitations of legacy cloud infrastructure.</p><p><a href=\"https://tq.vc/\">TQ Ventures</a> led the round, with participation from <a href=\"https://fpvventures.com/\">FPV Ventures</a>, <a href=\"https://www.redpoint.com/\">Redpoint</a>, and <a href=\"https://www.unusual.vc/\">Unusual Ventures</a>. The investment values Railway as one of the most significant infrastructure startups to emerge during the AI boom, capitalizing on developer frustration with the complexity and cost of traditional platforms like <a href=\"https://aws.amazon.com/\">Amazon Web Services</a> and <a href=\"https://cloud.google.com/\">Google Cloud</a>.</p><p>&quot;As AI models get better at writing code, more and more people are asking the age-old question: where, and how, do I run my applications?&quot; said Jake Cooper, Railway&#x27;s 28-year-old founder and chief executive, in an exclusive interview with VentureBeat. &quot;The last generation of cloud primitives were slow and outdated, and now with AI moving everything faster, teams simply can&#x27;t keep up.&quot;</p><p>The funding is a dramatic acceleration for a company that has charted an unconventional path through the cloud computing industry. Railway raised just $24 million in total before this round, including a <a href=\"https://techcrunch.com/2022/05/31/railway-snags-20m-to-streamline-the-process-of-deploying-apps-and-services/\">$20 million Series A</a> from Redpoint in 2022. The company now processes more than 10 million deployments monthly and handles over one trillion requests through its edge network — metrics that rival far larger and better-funded competitors.</p><h2><b>Why three-minute deploy times have become unacceptable in the age of AI coding assistants</b></h2><p>Railway&#x27;s pitch rests on a simple observation: the tools developers use to deploy and manage software were designed for a slower era. A standard build-and-deploy cycle using <a href=\"https://station.railway.com/feedback/terraform-provider-954567d7\">Terraform</a>, the industry-standard infrastructure tool, takes two to three minutes. That delay, once tolerable, has become a critical bottleneck as AI coding assistants like <a href=\"https://claude.ai/login\">Claude</a>, <a href=\"https://chatgpt.com/\">ChatGPT</a>, and <a href=\"https://cursor.com/\">Cursor</a> can generate working code in seconds.</p><p>&quot;When godly intelligence is on tap and can solve any problem in three seconds, those amalgamations of systems become bottlenecks,&quot; Cooper told VentureBeat. &quot;What was really cool for humans to deploy in 10 seconds or less is now table stakes for agents.&quot;</p><p>The company claims its platform delivers deployments in under one second — fast enough to keep pace with AI-generated code. Customers report a tenfold increase in developer velocity and up to 65 percent cost savings compared to traditional cloud providers.</p><p>These numbers come directly from enterprise clients, not internal benchmarks. Daniel Lobaton, chief technology officer at G2X, a platform serving 100,000 federal contractors, measured deployment speed improvements of seven times faster and an 87 percent cost reduction after migrating to Railway. His infrastructure bill dropped from $15,000 per month to approximately $1,000.</p><p>&quot;The work that used to take me a week on our previous infrastructure, I can do in Railway in like a day,&quot; Lobaton said. &quot;If I want to spin up a new service and test different architectures, it would take so long on our old setup. In Railway I can launch six services in two minutes.&quot;</p><h2><b>Inside the controversial decision to abandon Google Cloud and build data centers from scratch</b></h2><p>What distinguishes <a href=\"https://railway.com/\">Railway</a> from competitors like <a href=\"https://render.com/\">Render</a> and <a href=\"http://fly.io\">Fly.io</a> is the depth of its vertical integration. In 2024, the company made the unusual decision to abandon Google Cloud entirely and build its own data centers, a move that echoes the famous Alan Kay maxim: &quot;People who are really serious about software should make their own hardware.&quot;</p><p>&quot;We wanted to design hardware in a way where we could build a differentiated experience,&quot; Cooper said. &quot;Having full control over the network, compute, and storage layers lets us do really fast build and deploy loops, the kind that allows us to move at &#x27;agentic speed&#x27; while staying 100 percent the smoothest ride in town.&quot;</p><p>The approach paid dividends during recent <a href=\"https://restofworld.org/2026/cloud-outages-2025-global-business-impact/\">widespread outages</a> that affected major cloud providers — Railway remained online throughout.</p><p>This soup-to-nuts control enables pricing that undercuts the hyperscalers by roughly 50 percent and newer cloud startups by three to four times. Railway charges by the second for actual compute usage: $0.00000386 per gigabyte-second of memory, $0.00000772 per vCPU-second, and $0.00000006 per gigabyte-second of storage. There are no charges for idle virtual machines — a stark contrast to the traditional cloud model where customers pay for provisioned capacity whether they use it or not.</p><p>&quot;The conventional wisdom is that the big guys have economies of scale to offer better pricing,&quot; Cooper noted. &quot;But when they&#x27;re charging for VMs that usually sit idle in the cloud, and we&#x27;ve purpose-built everything to fit much more density on these machines, you have a big opportunity.&quot;</p><h2><b>How 30 employees built a platform generating tens of millions in annual revenue</b></h2><p><a href=\"https://railway.com/\">Railway</a> has achieved its scale with a team of just 30 employees generating tens of millions in annual revenue — a ratio of revenue per employee that would be exceptional even for established software companies. The company grew revenue 3.5 times last year and continues to expand at 15 percent month-over-month.</p><p>Cooper emphasized that the fundraise was strategic rather than necessary. &quot;We&#x27;re default alive; there&#x27;s no reason for us to raise money,&quot; he said. &quot;We raised because we see a massive opportunity to accelerate, not because we needed to survive.&quot;</p><p>The company hired its first salesperson only last year and employs just two solutions engineers. Nearly all of Railway&#x27;s two million users discovered the platform through word of mouth — developers telling other developers about a tool that actually works.</p><p>&quot;We basically did the standard engineering thing: if you build it, they will come,&quot; Cooper recalled. &quot;And to some degree, they came.&quot;</p><h2><b>From side projects to Fortune 500 deployments: Railway&#x27;s unlikely corporate expansion</b></h2><p>Despite its grassroots developer community, Railway has made significant inroads into large organizations. The company claims that 31 percent of Fortune 500 companies now use its platform, though deployments range from company-wide infrastructure to individual team projects.</p><p>Notable customers include <a href=\"https://www.biltrewards.com/\">Bilt</a>, the loyalty program company; Intuit&#x27;s <a href=\"https://www.goco.io/\">GoCo</a> subsidiary; TripAdvisor&#x27;s <a href=\"https://www.cruisecritic.com/\">Cruise Critic</a>; and <a href=\"https://www.mgmresorts.com/en.html\">MGM Resorts</a>. <a href=\"https://www.ycombinator.com/companies/kernel\">Kernel</a>, a Y Combinator-backed startup providing AI infrastructure to over 1,000 companies, runs its entire customer-facing system on Railway for $444 per month.</p><p>&quot;At my previous company Clever, which sold for $500 million, I had six full-time engineers just managing AWS,&quot; said Rafael Garcia, Kernel&#x27;s chief technology officer. &quot;Now I have six engineers total, and they all focus on product. Railway is exactly the tool I wish I had in 2012.&quot;</p><p>For enterprise customers, <a href=\"https://railway.com/\">Railway</a> offers security certifications including SOC 2 Type 2 compliance and HIPAA readiness, with business associate agreements available upon request. The platform provides single sign-on authentication, comprehensive audit logs, and the option to deploy within a customer&#x27;s existing cloud environment through a &quot;bring your own cloud&quot; configuration.</p><p>Enterprise pricing starts at custom levels, with specific add-ons for extended log retention ($200 monthly), HIPAA BAAs ($1,000), enterprise support with SLOs ($2,000), and dedicated virtual machines ($10,000).</p><h2><b>The startup&#x27;s bold strategy to take on Amazon, Google, and a new generation of cloud rivals</b></h2><p>Railway enters a crowded market that includes not only the hyperscale cloud providers—Amazon Web Services, Microsoft Azure, and Google Cloud Platform—but also a growing cohort of developer-focused platforms like Vercel, Render, Fly.io, and Heroku.</p><p>Cooper argues that Railway&#x27;s competitors fall into two camps, neither of which has fully committed to the new infrastructure model that AI demands.</p><p>&quot;The hyperscalers have two competing systems, and they haven&#x27;t gone all-in on the new model because their legacy revenue stream is still printing money,&quot; he observed. &quot;They have this mammoth pool of cash coming from people who provision a VM, use maybe 10 percent of it, and still pay for the whole thing. To what end are they actually interested in going all the way in on a new experience if they don&#x27;t really need to?&quot;</p><p>Against startup competitors, Railway differentiates by covering the full infrastructure stack. &quot;We&#x27;re not just containers; we&#x27;ve got VM primitives, stateful storage, virtual private networking, automated load balancing,&quot; Cooper said. &quot;And we wrap all of this in an absurdly easy-to-use UI, with agentic primitives so agents can move 1,000 times faster.&quot;</p><p>The platform supports databases including PostgreSQL, MySQL, MongoDB, and Redis; provides up to 256 terabytes of persistent storage with over 100,000 input/output operations per second; and enables deployment to four global regions spanning the United States, Europe, and Southeast Asia. Enterprise customers can scale to 112 vCPUs and 2 terabytes of RAM per service.</p><h2><b>Why investors are betting that AI will create a thousand times more software than exists today</b></h2><p>Railway&#x27;s fundraise reflects broader investor enthusiasm for companies positioned to benefit from the AI coding revolution. As tools like <a href=\"https://github.com/features/copilot\">GitHub Copilot</a>, <a href=\"https://cursor.com/agents\">Cursor</a>, and <a href=\"https://claude.ai/login\">Claude</a> become standard fixtures in developer workflows, the volume of code being written — and the infrastructure needed to run it — is expanding dramatically.</p><p>&quot;The amount of software that&#x27;s going to come online over the next five years is unfathomable compared to what existed before — we&#x27;re talking a thousand times more software,&quot; Cooper predicted. &quot;All of that has to run somewhere.&quot;</p><p>The company has already integrated directly with AI systems, building what Cooper calls &quot;loops where Claude can hook in, call deployments, and analyze infrastructure automatically.&quot; Railway released a Model Context Protocol server in August 2025 that allows AI coding agents to deploy applications and manage infrastructure directly from code editors.</p><p>&quot;The notion of a developer is melting before our eyes,&quot; Cooper said. &quot;You don&#x27;t have to be an engineer to engineer things anymore — you just need critical thinking and the ability to analyze things in a systems capacity.&quot;</p><h2><b>What Railway plans to do with $100 million and zero marketing experience</b></h2><p><a href=\"https://railway.com/\">Railway</a> plans to use the new capital to expand its global data center footprint, grow its team beyond 30 employees, and build what Cooper described as a proper go-to-market operation for the first time in the company&#x27;s five-year history.</p><p>&quot;One of my mentors said you raise money when you can change the trajectory of the business,&quot; Cooper explained. &quot;We&#x27;ve built all the required substrate to scale indefinitely; what&#x27;s been holding us back is simply talking about it. 2026 is the year we play on the world stage.&quot;</p><p>The company&#x27;s investor roster reads like a who&#x27;s who of developer infrastructure. Angel investors include <a href=\"https://tom.preston-werner.com/\">Tom Preston-Werner,</a> co-founder of GitHub; <a href=\"https://rauchg.com/about\">Guillermo Rauch</a>, chief executive of Vercel; <a href=\"https://www.cockroachlabs.com/author/spencer-kimball/\">Spencer Kimball</a>, chief executive of Cockroach Labs; <a href=\"https://www.datadoghq.com/about/leadership/\">Olivier Pomel</a>, chief executive of Datadog; and <a href=\"https://sequoiacap.com/founder/jori-lallo/\">Jori Lallo</a>, co-founder of Linear.</p><p>The timing of Railway&#x27;s expansion coincides with what many in Silicon Valley view as a fundamental shift in how software gets made. Coding assistants are no longer experimental curiosities — they have become essential tools that millions of developers rely on daily. Each line of AI-generated code needs somewhere to run, and the incumbents, by Cooper&#x27;s telling, are too wedded to their existing business models to fully capitalize on the moment.</p><p>Whether <a href=\"https://railway.com/\">Railway</a> can translate developer enthusiasm into sustained enterprise adoption remains an open question. The cloud infrastructure market is littered with promising startups that failed to break the grip of Amazon, Microsoft, and Google. But Cooper, who previously worked as a software engineer at <a href=\"https://www.wolframalpha.com/\">Wolfram Alpha</a>, <a href=\"https://www.bloomberg.com/\">Bloomberg</a>, and <a href=\"https://www.uber.com/\">Uber</a> before founding Railway in 2020, seems unfazed by the scale of his ambition.</p><p>&quot;In five years, Railway [will be] the place where software gets created and evolved, period,&quot; he said. &quot;Deploy instantly, scale infinitely, with zero friction. That&#x27;s the prize worth playing for, and there&#x27;s no bigger one on offer.&quot;</p><p>For a company that built a $100 million business by doing the opposite of what conventional startup wisdom dictates — no marketing, no sales team, no venture hype—the real test begins now. Railway spent five years proving that developers would find a better mousetrap on their own. The next five will determine whether the rest of the world is ready to get on board.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-22T14:00:00.000Z",
          "pubDate": "Thu, 22 Jan 2026 14:00:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/5RLyQIpBeVXxv0RpcXZxWQ/fd9680c6d82acd8208ac341fc575f5fb/nuneybits_Vector_art_of_a_sleek_bullet_train_bursting_from_a_cl_32a805aa-272c-4b34-ac16-cf20508b7ff4.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Infrastructure",
            "AI"
          ],
          "contentSnippet": "Railway, a San Francisco-based cloud platform that has quietly amassed two million developers without spending a dollar on marketing, announced Thursday that it raised $100 million in a Series B funding round, as surging demand for artificial intelligence applications exposes the limitations of legacy cloud infrastructure.\nTQ Ventures led the round, with participation from FPV Ventures, Redpoint, and Unusual Ventures. The investment values Railway as one of the most significant infrastructure startups to emerge during the AI boom, capitalizing on developer frustration with the complexity and cost of traditional platforms like Amazon Web Services and Google Cloud.\n\"As AI models get better at writing code, more and more people are asking the age-old question: where, and how, do I run my applications?\" said Jake Cooper, Railway's 28-year-old founder and chief executive, in an exclusive interview with VentureBeat. \"The last generation of cloud primitives were slow and outdated, and now with AI moving everything faster, teams simply can't keep up.\"\nThe funding is a dramatic acceleration for a company that has charted an unconventional path through the cloud computing industry. Railway raised just $24 million in total before this round, including a $20 million Series A from Redpoint in 2022. The company now processes more than 10 million deployments monthly and handles over one trillion requests through its edge network — metrics that rival far larger and better-funded competitors.\nWhy three-minute deploy times have become unacceptable in the age of AI coding assistants\nRailway's pitch rests on a simple observation: the tools developers use to deploy and manage software were designed for a slower era. A standard build-and-deploy cycle using Terraform, the industry-standard infrastructure tool, takes two to three minutes. That delay, once tolerable, has become a critical bottleneck as AI coding assistants like Claude, ChatGPT, and Cursor can generate working code in seconds.\n\"When godly intelligence is on tap and can solve any problem in three seconds, those amalgamations of systems become bottlenecks,\" Cooper told VentureBeat. \"What was really cool for humans to deploy in 10 seconds or less is now table stakes for agents.\"\nThe company claims its platform delivers deployments in under one second — fast enough to keep pace with AI-generated code. Customers report a tenfold increase in developer velocity and up to 65 percent cost savings compared to traditional cloud providers.\nThese numbers come directly from enterprise clients, not internal benchmarks. Daniel Lobaton, chief technology officer at G2X, a platform serving 100,000 federal contractors, measured deployment speed improvements of seven times faster and an 87 percent cost reduction after migrating to Railway. His infrastructure bill dropped from $15,000 per month to approximately $1,000.\n\"The work that used to take me a week on our previous infrastructure, I can do in Railway in like a day,\" Lobaton said. \"If I want to spin up a new service and test different architectures, it would take so long on our old setup. In Railway I can launch six services in two minutes.\"\nInside the controversial decision to abandon Google Cloud and build data centers from scratch\nWhat distinguishes Railway from competitors like Render and Fly.io is the depth of its vertical integration. In 2024, the company made the unusual decision to abandon Google Cloud entirely and build its own data centers, a move that echoes the famous Alan Kay maxim: \"People who are really serious about software should make their own hardware.\"\n\"We wanted to design hardware in a way where we could build a differentiated experience,\" Cooper said. \"Having full control over the network, compute, and storage layers lets us do really fast build and deploy loops, the kind that allows us to move at 'agentic speed' while staying 100 percent the smoothest ride in town.\"\nThe approach paid dividends during recent widespread outages that affected major cloud providers — Railway remained online throughout.\nThis soup-to-nuts control enables pricing that undercuts the hyperscalers by roughly 50 percent and newer cloud startups by three to four times. Railway charges by the second for actual compute usage: $0.00000386 per gigabyte-second of memory, $0.00000772 per vCPU-second, and $0.00000006 per gigabyte-second of storage. There are no charges for idle virtual machines — a stark contrast to the traditional cloud model where customers pay for provisioned capacity whether they use it or not.\n\"The conventional wisdom is that the big guys have economies of scale to offer better pricing,\" Cooper noted. \"But when they're charging for VMs that usually sit idle in the cloud, and we've purpose-built everything to fit much more density on these machines, you have a big opportunity.\"\nHow 30 employees built a platform generating tens of millions in annual revenue\nRailway has achieved its scale with a team of just 30 employees generating tens of millions in annual revenue — a ratio of revenue per employee that would be exceptional even for established software companies. The company grew revenue 3.5 times last year and continues to expand at 15 percent month-over-month.\nCooper emphasized that the fundraise was strategic rather than necessary. \"We're default alive; there's no reason for us to raise money,\" he said. \"We raised because we see a massive opportunity to accelerate, not because we needed to survive.\"\nThe company hired its first salesperson only last year and employs just two solutions engineers. Nearly all of Railway's two million users discovered the platform through word of mouth — developers telling other developers about a tool that actually works.\n\"We basically did the standard engineering thing: if you build it, they will come,\" Cooper recalled. \"And to some degree, they came.\"\nFrom side projects to Fortune 500 deployments: Railway's unlikely corporate expansion\nDespite its grassroots developer community, Railway has made significant inroads into large organizations. The company claims that 31 percent of Fortune 500 companies now use its platform, though deployments range from company-wide infrastructure to individual team projects.\nNotable customers include Bilt, the loyalty program company; Intuit's GoCo subsidiary; TripAdvisor's Cruise Critic; and MGM Resorts. Kernel, a Y Combinator-backed startup providing AI infrastructure to over 1,000 companies, runs its entire customer-facing system on Railway for $444 per month.\n\"At my previous company Clever, which sold for $500 million, I had six full-time engineers just managing AWS,\" said Rafael Garcia, Kernel's chief technology officer. \"Now I have six engineers total, and they all focus on product. Railway is exactly the tool I wish I had in 2012.\"\nFor enterprise customers, Railway offers security certifications including SOC 2 Type 2 compliance and HIPAA readiness, with business associate agreements available upon request. The platform provides single sign-on authentication, comprehensive audit logs, and the option to deploy within a customer's existing cloud environment through a \"bring your own cloud\" configuration.\nEnterprise pricing starts at custom levels, with specific add-ons for extended log retention ($200 monthly), HIPAA BAAs ($1,000), enterprise support with SLOs ($2,000), and dedicated virtual machines ($10,000).\nThe startup's bold strategy to take on Amazon, Google, and a new generation of cloud rivals\nRailway enters a crowded market that includes not only the hyperscale cloud providers—Amazon Web Services, Microsoft Azure, and Google Cloud Platform—but also a growing cohort of developer-focused platforms like Vercel, Render, Fly.io, and Heroku.\nCooper argues that Railway's competitors fall into two camps, neither of which has fully committed to the new infrastructure model that AI demands.\n\"The hyperscalers have two competing systems, and they haven't gone all-in on the new model because their legacy revenue stream is still printing money,\" he observed. \"They have this mammoth pool of cash coming from people who provision a VM, use maybe 10 percent of it, and still pay for the whole thing. To what end are they actually interested in going all the way in on a new experience if they don't really need to?\"\nAgainst startup competitors, Railway differentiates by covering the full infrastructure stack. \"We're not just containers; we've got VM primitives, stateful storage, virtual private networking, automated load balancing,\" Cooper said. \"And we wrap all of this in an absurdly easy-to-use UI, with agentic primitives so agents can move 1,000 times faster.\"\nThe platform supports databases including PostgreSQL, MySQL, MongoDB, and Redis; provides up to 256 terabytes of persistent storage with over 100,000 input/output operations per second; and enables deployment to four global regions spanning the United States, Europe, and Southeast Asia. Enterprise customers can scale to 112 vCPUs and 2 terabytes of RAM per service.\nWhy investors are betting that AI will create a thousand times more software than exists today\nRailway's fundraise reflects broader investor enthusiasm for companies positioned to benefit from the AI coding revolution. As tools like GitHub Copilot, Cursor, and Claude become standard fixtures in developer workflows, the volume of code being written — and the infrastructure needed to run it — is expanding dramatically.\n\"The amount of software that's going to come online over the next five years is unfathomable compared to what existed before — we're talking a thousand times more software,\" Cooper predicted. \"All of that has to run somewhere.\"\nThe company has already integrated directly with AI systems, building what Cooper calls \"loops where Claude can hook in, call deployments, and analyze infrastructure automatically.\" Railway released a Model Context Protocol server in August 2025 that allows AI coding agents to deploy applications and manage infrastructure directly from code editors.\n\"The notion of a developer is melting before our eyes,\" Cooper said. \"You don't have to be an engineer to engineer things anymore — you just need critical thinking and the ability to analyze things in a systems capacity.\"\nWhat Railway plans to do with $100 million and zero marketing experience\nRailway plans to use the new capital to expand its global data center footprint, grow its team beyond 30 employees, and build what Cooper described as a proper go-to-market operation for the first time in the company's five-year history.\n\"One of my mentors said you raise money when you can change the trajectory of the business,\" Cooper explained. \"We've built all the required substrate to scale indefinitely; what's been holding us back is simply talking about it. 2026 is the year we play on the world stage.\"\nThe company's investor roster reads like a who's who of developer infrastructure. Angel investors include Tom Preston-Werner, co-founder of GitHub; Guillermo Rauch, chief executive of Vercel; Spencer Kimball, chief executive of Cockroach Labs; Olivier Pomel, chief executive of Datadog; and Jori Lallo, co-founder of Linear.\nThe timing of Railway's expansion coincides with what many in Silicon Valley view as a fundamental shift in how software gets made. Coding assistants are no longer experimental curiosities — they have become essential tools that millions of developers rely on daily. Each line of AI-generated code needs somewhere to run, and the incumbents, by Cooper's telling, are too wedded to their existing business models to fully capitalize on the moment.\nWhether Railway can translate developer enthusiasm into sustained enterprise adoption remains an open question. The cloud infrastructure market is littered with promising startups that failed to break the grip of Amazon, Microsoft, and Google. But Cooper, who previously worked as a software engineer at Wolfram Alpha, Bloomberg, and Uber before founding Railway in 2020, seems unfazed by the scale of his ambition.\n\"In five years, Railway [will be] the place where software gets created and evolved, period,\" he said. \"Deploy instantly, scale infinitely, with zero friction. That's the prize worth playing for, and there's no bigger one on offer.\"\nFor a company that built a $100 million business by doing the opposite of what conventional startup wisdom dictates — no marketing, no sales team, no venture hype—the real test begins now. Railway spent five years proving that developers would find a better mousetrap on their own. The next five will determine whether the rest of the world is ready to get on board."
        }
      },
      {
        "json": {
          "guid": "2CUHNkdUg4dnjDFiMtJJQ",
          "link": "https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free",
          "title": "Claude Code costs up to $200 a month. Goose does the same thing for free.",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p>The artificial intelligence coding revolution comes with a catch: it&#x27;s expensive.</p><p><a href=\"https://claude.com/product/claude-code\">Claude Code</a>, Anthropic&#x27;s terminal-based AI agent that can write, debug, and deploy code autonomously, has captured the imagination of software developers worldwide. But its <a href=\"https://claude.com/pricing\">pricing</a> — ranging from $20 to $200 per month depending on usage — has sparked a growing rebellion among the very programmers it aims to serve.</p><p>Now, a free alternative is gaining traction. <a href=\"https://block.github.io/goose/\">Goose</a>, an open-source AI agent developed by <a href=\"https://block.xyz/\">Block</a> (the financial technology company formerly known as Square), offers nearly identical functionality to <a href=\"https://claude.com/product/claude-code\">Claude Code</a> but runs entirely on a user&#x27;s local machine. No subscription fees. No cloud dependency. No rate limits that reset every five hours.</p><p>&quot;Your data stays with you, period,&quot; said Parth Sareen, a software engineer who demonstrated the tool during a <a href=\"https://www.youtube.com/watch?v=WG10r2N0IwM\">recent livestream</a>. The comment captures the core appeal: Goose gives developers complete control over their AI-powered workflow, including the ability to work offline — even on an airplane.</p><p>The project has exploded in popularity. Goose now boasts more than <a href=\"https://github.com/block/goose\">26,100 stars on GitHub</a>, the code-sharing platform, with 362 contributors and 102 releases since its launch. The latest version, <a href=\"https://block.github.io/goose/docs/getting-started/installation\">1.20.1</a>, shipped on January 19, 2026, reflecting a development pace that rivals commercial products.</p><p>For developers frustrated by Claude Code&#x27;s pricing structure and usage caps, Goose represents something increasingly rare in the AI industry: a genuinely free, no-strings-attached option for serious work.</p><div></div><h2><b>Anthropic&#x27;s new rate limits spark a developer revolt</b></h2><p>To understand why <a href=\"https://block.github.io/goose/\">Goose</a> matters, you need to understand the <a href=\"https://techcrunch.com/2025/07/17/anthropic-tightens-usage-limits-for-claude-code-without-telling-users/\">Claude Code pricing controversy</a>.</p><p>Anthropic, the San Francisco artificial intelligence company founded by former OpenAI executives, offers Claude Code as part of its subscription tiers. The free plan provides no access whatsoever. The <a href=\"https://www.anthropic.com/news/claude-pro\">Pro plan</a>, at $17 per month with annual billing (or $20 monthly), limits users to just 10 to 40 prompts every five hours — a constraint that serious developers exhaust within minutes of intensive work.</p><p>The <a href=\"https://support.claude.com/en/articles/11049741-what-is-the-max-plan\">Max plans</a>, at $100 and $200 per month, offer more headroom: 50 to 200 prompts and 200 to 800 prompts respectively, plus access to Anthropic&#x27;s most powerful model, <a href=\"https://www.anthropic.com/news/claude-opus-4-5\">Claude 4.5 Opus</a>. But even these premium tiers come with restrictions that have inflamed the developer community.</p><p>In late July, Anthropic announced new weekly rate limits. Under the system, Pro users receive 40 to 80 hours of Sonnet 4 usage per week. Max users at the $200 tier get 240 to 480 hours of Sonnet 4, plus 24 to 40 hours of Opus 4. Nearly five months later, the frustration has not subsided.</p><p>The problem? Those &quot;hours&quot; are not actual hours. They represent token-based limits that vary wildly depending on codebase size, conversation length, and the complexity of the code being processed. Independent analysis suggests the actual per-session limits translate to roughly 44,000 tokens for Pro users and 220,000 tokens for the $200 Max plan.</p><p>&quot;It&#x27;s confusing and vague,&quot; one developer wrote in a <a href=\"https://userjot.com/blog/claude-code-pricing-200-dollar-plan-worth-it\">widely shared analysis</a>. &quot;When they say &#x27;24-40 hours of Opus 4,&#x27; that doesn&#x27;t really tell you anything useful about what you&#x27;re actually getting.&quot;</p><p>The <a href=\"https://www.reddit.com/r/Anthropic/comments/1mbo4uw/claude_code_max_new_weekly_rate_limits/\">backlash on Reddit</a> and <a href=\"https://venturebeat.com/ai/anthropic-throttles-claude-rate-limits-devs-call-foul\">developer forums</a> has been fierce. Some users report hitting their daily limits within 30 minutes of intensive coding. Others have canceled their subscriptions entirely, calling the new restrictions &quot;a joke&quot; and &quot;unusable for real work.&quot;</p><p>Anthropic has defended the changes, stating that the limits affect fewer than five percent of users and target people running Claude Code &quot;<a href=\"https://techcrunch.com/2025/07/28/anthropic-unveils-new-rate-limits-to-curb-claude-code-power-users/\">continuously in the background, 24/7</a>.&quot; But the company has not clarified whether that figure refers to five percent of Max subscribers or five percent of all users — a distinction that matters enormously.</p><h2><b>How Block built a free AI coding agent that works offline</b></h2><p><a href=\"https://block.github.io/goose/\">Goose</a> takes a radically different approach to the same problem.</p><p>Built by <a href=\"https://block.xyz/\">Block</a>, the payments company led by Jack Dorsey, Goose is what engineers call an &quot;<a href=\"https://github.com/block/goose\">on-machine AI agent</a>.&quot; Unlike Claude Code, which sends your queries to Anthropic&#x27;s servers for processing, Goose can run entirely on your local computer using open-source language models that you download and control yourself.</p><p>The project&#x27;s documentation describes it as going &quot;<a href=\"https://github.com/block/goose\">beyond code suggestions</a>&quot; to &quot;install, execute, edit, and test with any LLM.&quot; That last phrase — &quot;any LLM&quot; — is the key differentiator. Goose is model-agnostic by design.</p><p>You can connect Goose to Anthropic&#x27;s <a href=\"https://platform.claude.com/docs/en/about-claude/models/overview\">Claude models</a> if you have <a href=\"https://claude.com/platform/api\">API access</a>. You can use OpenAI&#x27;s <a href=\"https://platform.openai.com/docs/models/gpt-5\">GPT-5</a> or Google&#x27;s <a href=\"https://ai.google.dev/gemini-api/docs\">Gemini</a>. You can route it through services like <a href=\"https://groq.com/\">Groq</a> or <a href=\"https://openrouter.ai/\">OpenRouter</a>. Or — and this is where things get interesting — you can run it entirely locally using tools like <a href=\"https://ollama.com/\">Ollama</a>, which let you download and execute open-source models on your own hardware.</p><p>The practical implications are significant. With a local setup, there are no subscription fees, no usage caps, no rate limits, and no concerns about your code being sent to external servers. Your conversations with the AI never leave your machine.</p><p>&quot;I use Ollama all the time on planes — it&#x27;s a lot of fun!&quot; <a href=\"https://www.youtube.com/watch?v=WG10r2N0IwM\">Sareen noted</a> during a demonstration, highlighting how local models free developers from the constraints of internet connectivity.</p><h2><b>What Goose can do that traditional code assistants can&#x27;t</b></h2><p><a href=\"https://block.github.io/goose/\">Goose</a> operates as a command-line tool or desktop application that can autonomously perform complex development tasks. It can build entire projects from scratch, write and execute code, debug failures, orchestrate workflows across multiple files, and interact with external APIs — all without constant human oversight.</p><p>The architecture relies on what the AI industry calls &quot;<a href=\"https://www.ibm.com/think/topics/tool-calling\">tool calling</a>&quot; or &quot;<a href=\"https://platform.openai.com/docs/guides/function-calling?api-mode=chat\">function calling</a>&quot; — the ability for a language model to request specific actions from external systems. When you ask <a href=\"https://block.github.io/goose/\">Goose</a> to create a new file, run a test suite, or check the status of a GitHub pull request, it doesn&#x27;t just generate text describing what should happen. It actually executes those operations.</p><p>This capability depends heavily on the underlying language model. <a href=\"https://platform.claude.com/docs/en/about-claude/models/overview\">Claude 4 models</a> from Anthropic currently perform best at tool calling, according to the <a href=\"https://gorilla.cs.berkeley.edu/leaderboard.html\">Berkeley Function-Calling Leaderboard</a>, which ranks models on their ability to translate natural language requests into executable code and system commands.</p><p>But newer open-source models are catching up quickly. Goose&#x27;s documentation highlights several options with strong tool-calling support: Meta&#x27;s <a href=\"https://www.llama.com/\">Llama series</a>, Alibaba&#x27;s <a href=\"https://qwen.ai/home\">Qwen models</a>, Google&#x27;s <a href=\"https://deepmind.google/models/gemma/\">Gemma variants</a>, and DeepSeek&#x27;s <a href=\"https://huggingface.co/deepseek-ai/DeepSeek-R1\">reasoning-focused architectures</a>.</p><p>The tool also integrates with the <a href=\"https://modelcontextprotocol.io/docs/getting-started/intro\">Model Context Protocol</a>, or MCP, an emerging standard for connecting AI agents to external services. Through MCP, Goose can access databases, search engines, file systems, and third-party APIs — extending its capabilities far beyond what the base language model provides.</p><h2><b>Setting Up Goose with a Local Model</b></h2><p>For developers interested in a completely free, privacy-preserving setup, the process involves three main components: <a href=\"https://block.github.io/goose/\">Goose</a> itself, <a href=\"https://ollama.com/\">Ollama</a> (a tool for running open-source models locally), and a compatible language model.</p><p><b>Step 1: Install Ollama</b></p><p><a href=\"https://ollama.com/\">Ollama</a> is an open-source project that dramatically simplifies the process of running large language models on personal hardware. It handles the complex work of downloading, optimizing, and serving models through a simple interface.</p><p>Download and install Ollama from <a href=\"http://ollama.com\">ollama.com</a>. Once installed, you can pull models with a single command. For coding tasks, <a href=\"https://qwen.ai/blog?id=qwen2.5-max\">Qwen 2.5</a> offers strong tool-calling support:</p><p>ollama run qwen2.5</p><p>The model downloads automatically and begins running on your machine.</p><p><b>Step 2: Install Goose</b></p><p><a href=\"https://block.github.io/goose/\">Goose</a> is available as both a desktop application and a command-line interface. The desktop version provides a more visual experience, while the CLI appeals to developers who prefer working entirely in the terminal.</p><p>Installation instructions vary by operating system but generally involve downloading from Goose&#x27;s <a href=\"https://github.com/block/goose\">GitHub releases page</a> or using a package manager. Block provides pre-built binaries for macOS (both Intel and Apple Silicon), Windows, and Linux.</p><p><b>Step 3: Configure the Connection</b></p><p>In Goose Desktop, navigate to Settings, then Configure Provider, and select Ollama. Confirm that the API Host is set to http://localhost:11434 (Ollama&#x27;s default port) and click Submit.</p><p>For the command-line version, run goose configure, select &quot;Configure Providers,&quot; choose Ollama, and enter the model name when prompted.</p><p>That&#x27;s it. Goose is now connected to a language model running entirely on your hardware, ready to execute complex coding tasks without any subscription fees or external dependencies.</p><h2><b>The RAM, processing power, and trade-offs you should know about</b></h2><p>The obvious question: what kind of computer do you need?</p><p>Running large language models locally requires substantially more computational resources than typical software. The key constraint is memory — specifically, RAM on most systems, or VRAM if using a dedicated graphics card for acceleration.</p><p>Block&#x27;s <a href=\"https://block.github.io/goose/docs/category/guides\">documentation</a> suggests that 32 gigabytes of RAM provides &quot;a solid baseline for larger models and outputs.&quot; For Mac users, this means the computer&#x27;s unified memory is the primary bottleneck. For Windows and Linux users with discrete NVIDIA graphics cards, GPU memory (VRAM) matters more for acceleration.</p><p>But you don&#x27;t necessarily need expensive hardware to get started. Smaller models with fewer parameters run on much more modest systems. <a href=\"https://qwen.ai/blog?id=qwen2.5-max\">Qwen 2.5</a>, for instance, comes in multiple sizes, and the smaller variants can operate effectively on machines with 16 gigabytes of RAM.</p><p>&quot;You don&#x27;t need to run the largest models to get excellent results,&quot; <a href=\"https://www.youtube.com/watch?v=WG10r2N0IwM\">Sareen emphasized</a>. The practical recommendation: start with a smaller model to test your workflow, then scale up as needed.</p><p>For context, Apple&#x27;s entry-level <a href=\"https://www.apple.com/macbook-air/\">MacBook Air</a> with 8 gigabytes of RAM would struggle with most capable coding models. But a <a href=\"https://www.apple.com/macbook-pro/\">MacBook Pro</a> with 32 gigabytes — increasingly common among professional developers — handles them comfortably.</p><h2><b>Why keeping your code off the cloud matters more than ever</b></h2><p><a href=\"https://block.github.io/goose/\">Goose</a> with a local LLM is not a perfect substitute for <a href=\"https://claude.com/product/claude-code\">Claude Code</a>. The comparison involves real trade-offs that developers should understand.</p><p><b>Model Quality</b>: <a href=\"https://www.anthropic.com/news/claude-opus-4-5\">Claude 4.5 Opus</a>, Anthropic&#x27;s flagship model, remains arguably the most capable AI for software engineering tasks. It excels at understanding complex codebases, following nuanced instructions, and producing high-quality code on the first attempt. Open-source models have improved dramatically, but a gap persists — particularly for the most challenging tasks.</p><p>One developer who switched to the $200 Claude Code plan <a href=\"https://userjot.com/blog/claude-code-pricing-200-dollar-plan-worth-it\">described the difference bluntly</a>: &quot;When I say &#x27;make this look modern,&#x27; Opus knows what I mean. Other models give me Bootstrap circa 2015.&quot;</p><p><b>Context Window</b>: <a href=\"https://www.anthropic.com/news/claude-sonnet-4-5\">Claude Sonnet 4.5</a>, accessible through the API, offers a massive one-million-token context window — enough to load entire large codebases without chunking or context management issues. Most local models are limited to 4,096 or 8,192 tokens by default, though many can be configured for longer contexts at the cost of increased memory usage and slower processing.</p><p><b>Speed</b>: Cloud-based services like <a href=\"https://claude.com/product/claude-code\">Claude Code</a> run on dedicated server hardware optimized for AI inference. Local models, running on consumer laptops, typically process requests more slowly. The difference matters for iterative workflows where you&#x27;re making rapid changes and waiting for AI feedback.</p><p><b>Tooling Maturity</b>: <a href=\"https://claude.com/product/claude-code\">Claude Code</a> benefits from Anthropic&#x27;s dedicated engineering resources. Features like prompt caching (which can reduce costs by up to 90 percent for repeated contexts) and structured outputs are polished and well-documented. <a href=\"https://block.github.io/goose/\">Goose</a>, while actively developed with 102 releases to date, relies on community contributions and may lack equivalent refinement in specific areas.</p><h2><b>How Goose stacks up against Cursor, GitHub Copilot, and the paid AI coding market</b></h2><p>Goose enters a crowded market of AI coding tools, but occupies a distinctive position.</p><p><a href=\"https://cursor.com/\">Cursor</a>, a popular AI-enhanced code editor, charges $20 per month for its <a href=\"https://cursor.com/pricing\">Pro tier</a> and $200 for <a href=\"https://cursor.com/pricing\">Ultra</a>—pricing that mirrors <a href=\"https://claude.com/pricing\">Claude Code&#x27;s Max plans</a>. Cursor provides approximately 4,500 Sonnet 4 requests per month at the Ultra level, a substantially different allocation model than Claude Code&#x27;s hourly resets.</p><p><a href=\"https://cline.bot/\">Cline</a>, <a href=\"https://roocode.com/\">Roo Code</a>, and similar open-source projects offer AI coding assistance but with varying levels of autonomy and tool integration. Many focus on code completion rather than the agentic task execution that defines Goose and Claude Code.</p><p>Amazon&#x27;s <a href=\"https://aws.amazon.com/blogs/aws/now-in-preview-amazon-codewhisperer-ml-powered-coding-companion/\">CodeWhisperer</a>, <a href=\"https://github.com/features/copilot\">GitHub Copilot</a>, and enterprise offerings from major cloud providers target large organizations with complex procurement processes and dedicated budgets. They are less relevant to individual developers and small teams seeking lightweight, flexible tools.</p><p>Goose&#x27;s combination of genuine autonomy, model agnosticism, local operation, and zero cost creates a unique value proposition. The tool is not trying to compete with commercial offerings on polish or model quality. It&#x27;s competing on freedom — both financial and architectural.</p><h2><b>The $200-a-month era for AI coding tools may be ending</b></h2><p>The AI coding tools market is evolving quickly. Open-source models are improving at a pace that continually narrows the gap with proprietary alternatives. Moonshot AI&#x27;s <a href=\"https://www.kimi.com/en\">Kimi K2</a> and z.ai&#x27;s <a href=\"https://z.ai/blog/glm-4.5\">GLM 4.5</a> now benchmark near <a href=\"https://www.anthropic.com/news/claude-4\">Claude Sonnet 4 levels</a> — and they&#x27;re freely available.</p><p>If this trajectory continues, the quality advantage that justifies Claude Code&#x27;s premium pricing may erode. Anthropic would then face pressure to compete on features, user experience, and integration rather than raw model capability.</p><p>For now, developers face a clear choice. Those who need the absolute best model quality, who can afford premium pricing, and who accept usage restrictions may prefer <a href=\"https://claude.com/product/claude-code\">Claude Code</a>. Those who prioritize cost, privacy, offline access, and flexibility have a genuine alternative in <a href=\"https://block.github.io/goose/\">Goose</a>.</p><p>The fact that a $200-per-month commercial product has a zero-dollar open-source competitor with comparable core functionality is itself remarkable. It reflects both the maturation of open-source AI infrastructure and the appetite among developers for tools that respect their autonomy.</p><p>Goose is not perfect. It requires more technical setup than commercial alternatives. It depends on hardware resources that not every developer possesses. Its model options, while improving rapidly, still trail the best proprietary offerings on complex tasks.</p><p>But for a growing community of developers, those limitations are acceptable trade-offs for something increasingly rare in the AI landscape: a tool that truly belongs to them.</p><hr/><p><i>Goose is available for download at </i><a href=\"http://github.com/block/goose\"><i>github.com/block/goose</i></a><i>. Ollama is available at </i><a href=\"http://ollama.com\"><i>ollama.com</i></a><i>. Both projects are free and open source.</i></p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-19T14:00:00.000Z",
          "pubDate": "Mon, 19 Jan 2026 14:00:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/1U9H8GLIqoGqKpitVfgw3T/ba56292f99409eca709dac0b176ec245/nuneybits_Vector_art_of_white_goose_silhouette_flying_through_c_8100d5a7-9e36-4ed6-a188-016470e1d0e1.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "AI",
            "Infrastructure"
          ],
          "contentSnippet": "The artificial intelligence coding revolution comes with a catch: it's expensive.\nClaude Code, Anthropic's terminal-based AI agent that can write, debug, and deploy code autonomously, has captured the imagination of software developers worldwide. But its pricing — ranging from $20 to $200 per month depending on usage — has sparked a growing rebellion among the very programmers it aims to serve.\nNow, a free alternative is gaining traction. Goose, an open-source AI agent developed by Block (the financial technology company formerly known as Square), offers nearly identical functionality to Claude Code but runs entirely on a user's local machine. No subscription fees. No cloud dependency. No rate limits that reset every five hours.\n\"Your data stays with you, period,\" said Parth Sareen, a software engineer who demonstrated the tool during a recent livestream. The comment captures the core appeal: Goose gives developers complete control over their AI-powered workflow, including the ability to work offline — even on an airplane.\nThe project has exploded in popularity. Goose now boasts more than 26,100 stars on GitHub, the code-sharing platform, with 362 contributors and 102 releases since its launch. The latest version, 1.20.1, shipped on January 19, 2026, reflecting a development pace that rivals commercial products.\nFor developers frustrated by Claude Code's pricing structure and usage caps, Goose represents something increasingly rare in the AI industry: a genuinely free, no-strings-attached option for serious work.\n\nAnthropic's new rate limits spark a developer revolt\nTo understand why Goose matters, you need to understand the Claude Code pricing controversy.\nAnthropic, the San Francisco artificial intelligence company founded by former OpenAI executives, offers Claude Code as part of its subscription tiers. The free plan provides no access whatsoever. The Pro plan, at $17 per month with annual billing (or $20 monthly), limits users to just 10 to 40 prompts every five hours — a constraint that serious developers exhaust within minutes of intensive work.\nThe Max plans, at $100 and $200 per month, offer more headroom: 50 to 200 prompts and 200 to 800 prompts respectively, plus access to Anthropic's most powerful model, Claude 4.5 Opus. But even these premium tiers come with restrictions that have inflamed the developer community.\nIn late July, Anthropic announced new weekly rate limits. Under the system, Pro users receive 40 to 80 hours of Sonnet 4 usage per week. Max users at the $200 tier get 240 to 480 hours of Sonnet 4, plus 24 to 40 hours of Opus 4. Nearly five months later, the frustration has not subsided.\nThe problem? Those \"hours\" are not actual hours. They represent token-based limits that vary wildly depending on codebase size, conversation length, and the complexity of the code being processed. Independent analysis suggests the actual per-session limits translate to roughly 44,000 tokens for Pro users and 220,000 tokens for the $200 Max plan.\n\"It's confusing and vague,\" one developer wrote in a widely shared analysis. \"When they say '24-40 hours of Opus 4,' that doesn't really tell you anything useful about what you're actually getting.\"\nThe backlash on Reddit and developer forums has been fierce. Some users report hitting their daily limits within 30 minutes of intensive coding. Others have canceled their subscriptions entirely, calling the new restrictions \"a joke\" and \"unusable for real work.\"\nAnthropic has defended the changes, stating that the limits affect fewer than five percent of users and target people running Claude Code \"continuously in the background, 24/7.\" But the company has not clarified whether that figure refers to five percent of Max subscribers or five percent of all users — a distinction that matters enormously.\nHow Block built a free AI coding agent that works offline\nGoose takes a radically different approach to the same problem.\nBuilt by Block, the payments company led by Jack Dorsey, Goose is what engineers call an \"on-machine AI agent.\" Unlike Claude Code, which sends your queries to Anthropic's servers for processing, Goose can run entirely on your local computer using open-source language models that you download and control yourself.\nThe project's documentation describes it as going \"beyond code suggestions\" to \"install, execute, edit, and test with any LLM.\" That last phrase — \"any LLM\" — is the key differentiator. Goose is model-agnostic by design.\nYou can connect Goose to Anthropic's Claude models if you have API access. You can use OpenAI's GPT-5 or Google's Gemini. You can route it through services like Groq or OpenRouter. Or — and this is where things get interesting — you can run it entirely locally using tools like Ollama, which let you download and execute open-source models on your own hardware.\nThe practical implications are significant. With a local setup, there are no subscription fees, no usage caps, no rate limits, and no concerns about your code being sent to external servers. Your conversations with the AI never leave your machine.\n\"I use Ollama all the time on planes — it's a lot of fun!\" Sareen noted during a demonstration, highlighting how local models free developers from the constraints of internet connectivity.\nWhat Goose can do that traditional code assistants can't\nGoose operates as a command-line tool or desktop application that can autonomously perform complex development tasks. It can build entire projects from scratch, write and execute code, debug failures, orchestrate workflows across multiple files, and interact with external APIs — all without constant human oversight.\nThe architecture relies on what the AI industry calls \"tool calling\" or \"function calling\" — the ability for a language model to request specific actions from external systems. When you ask Goose to create a new file, run a test suite, or check the status of a GitHub pull request, it doesn't just generate text describing what should happen. It actually executes those operations.\nThis capability depends heavily on the underlying language model. Claude 4 models from Anthropic currently perform best at tool calling, according to the Berkeley Function-Calling Leaderboard, which ranks models on their ability to translate natural language requests into executable code and system commands.\nBut newer open-source models are catching up quickly. Goose's documentation highlights several options with strong tool-calling support: Meta's Llama series, Alibaba's Qwen models, Google's Gemma variants, and DeepSeek's reasoning-focused architectures.\nThe tool also integrates with the Model Context Protocol, or MCP, an emerging standard for connecting AI agents to external services. Through MCP, Goose can access databases, search engines, file systems, and third-party APIs — extending its capabilities far beyond what the base language model provides.\nSetting Up Goose with a Local Model\nFor developers interested in a completely free, privacy-preserving setup, the process involves three main components: Goose itself, Ollama (a tool for running open-source models locally), and a compatible language model.\nStep 1: Install Ollama\nOllama is an open-source project that dramatically simplifies the process of running large language models on personal hardware. It handles the complex work of downloading, optimizing, and serving models through a simple interface.\nDownload and install Ollama from ollama.com. Once installed, you can pull models with a single command. For coding tasks, Qwen 2.5 offers strong tool-calling support:\nollama run qwen2.5\nThe model downloads automatically and begins running on your machine.\nStep 2: Install Goose\nGoose is available as both a desktop application and a command-line interface. The desktop version provides a more visual experience, while the CLI appeals to developers who prefer working entirely in the terminal.\nInstallation instructions vary by operating system but generally involve downloading from Goose's GitHub releases page or using a package manager. Block provides pre-built binaries for macOS (both Intel and Apple Silicon), Windows, and Linux.\nStep 3: Configure the Connection\nIn Goose Desktop, navigate to Settings, then Configure Provider, and select Ollama. Confirm that the API Host is set to http://localhost:11434 (Ollama's default port) and click Submit.\nFor the command-line version, run goose configure, select \"Configure Providers,\" choose Ollama, and enter the model name when prompted.\nThat's it. Goose is now connected to a language model running entirely on your hardware, ready to execute complex coding tasks without any subscription fees or external dependencies.\nThe RAM, processing power, and trade-offs you should know about\nThe obvious question: what kind of computer do you need?\nRunning large language models locally requires substantially more computational resources than typical software. The key constraint is memory — specifically, RAM on most systems, or VRAM if using a dedicated graphics card for acceleration.\nBlock's documentation suggests that 32 gigabytes of RAM provides \"a solid baseline for larger models and outputs.\" For Mac users, this means the computer's unified memory is the primary bottleneck. For Windows and Linux users with discrete NVIDIA graphics cards, GPU memory (VRAM) matters more for acceleration.\nBut you don't necessarily need expensive hardware to get started. Smaller models with fewer parameters run on much more modest systems. Qwen 2.5, for instance, comes in multiple sizes, and the smaller variants can operate effectively on machines with 16 gigabytes of RAM.\n\"You don't need to run the largest models to get excellent results,\" Sareen emphasized. The practical recommendation: start with a smaller model to test your workflow, then scale up as needed.\nFor context, Apple's entry-level MacBook Air with 8 gigabytes of RAM would struggle with most capable coding models. But a MacBook Pro with 32 gigabytes — increasingly common among professional developers — handles them comfortably.\nWhy keeping your code off the cloud matters more than ever\nGoose with a local LLM is not a perfect substitute for Claude Code. The comparison involves real trade-offs that developers should understand.\nModel Quality: Claude 4.5 Opus, Anthropic's flagship model, remains arguably the most capable AI for software engineering tasks. It excels at understanding complex codebases, following nuanced instructions, and producing high-quality code on the first attempt. Open-source models have improved dramatically, but a gap persists — particularly for the most challenging tasks.\nOne developer who switched to the $200 Claude Code plan described the difference bluntly: \"When I say 'make this look modern,' Opus knows what I mean. Other models give me Bootstrap circa 2015.\"\nContext Window: Claude Sonnet 4.5, accessible through the API, offers a massive one-million-token context window — enough to load entire large codebases without chunking or context management issues. Most local models are limited to 4,096 or 8,192 tokens by default, though many can be configured for longer contexts at the cost of increased memory usage and slower processing.\nSpeed: Cloud-based services like Claude Code run on dedicated server hardware optimized for AI inference. Local models, running on consumer laptops, typically process requests more slowly. The difference matters for iterative workflows where you're making rapid changes and waiting for AI feedback.\nTooling Maturity: Claude Code benefits from Anthropic's dedicated engineering resources. Features like prompt caching (which can reduce costs by up to 90 percent for repeated contexts) and structured outputs are polished and well-documented. Goose, while actively developed with 102 releases to date, relies on community contributions and may lack equivalent refinement in specific areas.\nHow Goose stacks up against Cursor, GitHub Copilot, and the paid AI coding market\nGoose enters a crowded market of AI coding tools, but occupies a distinctive position.\nCursor, a popular AI-enhanced code editor, charges $20 per month for its Pro tier and $200 for Ultra—pricing that mirrors Claude Code's Max plans. Cursor provides approximately 4,500 Sonnet 4 requests per month at the Ultra level, a substantially different allocation model than Claude Code's hourly resets.\nCline, Roo Code, and similar open-source projects offer AI coding assistance but with varying levels of autonomy and tool integration. Many focus on code completion rather than the agentic task execution that defines Goose and Claude Code.\nAmazon's CodeWhisperer, GitHub Copilot, and enterprise offerings from major cloud providers target large organizations with complex procurement processes and dedicated budgets. They are less relevant to individual developers and small teams seeking lightweight, flexible tools.\nGoose's combination of genuine autonomy, model agnosticism, local operation, and zero cost creates a unique value proposition. The tool is not trying to compete with commercial offerings on polish or model quality. It's competing on freedom — both financial and architectural.\nThe $200-a-month era for AI coding tools may be ending\nThe AI coding tools market is evolving quickly. Open-source models are improving at a pace that continually narrows the gap with proprietary alternatives. Moonshot AI's Kimi K2 and z.ai's GLM 4.5 now benchmark near Claude Sonnet 4 levels — and they're freely available.\nIf this trajectory continues, the quality advantage that justifies Claude Code's premium pricing may erode. Anthropic would then face pressure to compete on features, user experience, and integration rather than raw model capability.\nFor now, developers face a clear choice. Those who need the absolute best model quality, who can afford premium pricing, and who accept usage restrictions may prefer Claude Code. Those who prioritize cost, privacy, offline access, and flexibility have a genuine alternative in Goose.\nThe fact that a $200-per-month commercial product has a zero-dollar open-source competitor with comparable core functionality is itself remarkable. It reflects both the maturation of open-source AI infrastructure and the appetite among developers for tools that respect their autonomy.\nGoose is not perfect. It requires more technical setup than commercial alternatives. It depends on hardware resources that not every developer possesses. Its model options, while improving rapidly, still trail the best proprietary offerings on complex tasks.\nBut for a growing community of developers, those limitations are acceptable trade-offs for something increasingly rare in the AI landscape: a tool that truly belongs to them.\n\nGoose is available for download at github.com/block/goose. Ollama is available at ollama.com. Both projects are free and open source."
        }
      },
      {
        "json": {
          "guid": "wOG0z6nm91FOeUqhpizqI",
          "link": "https://venturebeat.com/technology/listen-labs-raises-usd69m-after-viral-billboard-hiring-stunt-to-scale-ai",
          "title": "Listen Labs raises $69M after viral billboard hiring stunt to scale AI customer interviews",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p>Alfred Wahlforss was running out of options. His startup, <a href=\"https://listenlabs.ai/\">Listen Labs</a>, needed to hire over 100 engineers, but competing against Mark Zuckerberg&#x27;s <a href=\"https://news.bloomberglaw.com/employee-benefits/zuckerbergs-100-million-ai-job-offers-pay-off-parmy-olson\">$100 million offers</a> seemed impossible. So he spent $5,000 — a fifth of his marketing budget — on a <a href=\"https://billboardinsider.com/ai-startup/\">billboard in San Francisco</a> displaying what looked like gibberish: five strings of random numbers.</p><p>The numbers were actually AI tokens. Decoded, they led to a coding challenge: build an algorithm to act as a digital bouncer at Berghain, the Berlin nightclub famous for rejecting nearly everyone at the door. Within days, thousands attempted the puzzle. 430 cracked it. Some got hired. The winner flew to Berlin, all expenses paid.</p><p>That unconventional approach has now attracted $69 million in Series B funding, led by <a href=\"https://www.ribbitcap.com/\">Ribbit Capital</a> with participation from <a href=\"https://www.evantic.ai/\">Evantic</a> and existing investors <a href=\"https://sequoiacap.com/\">Sequoia Capital</a>, <a href=\"https://www.conviction.com/\">Conviction</a>, and <a href=\"https://pear.vc/\">Pear VC</a>. The round values Listen Labs at $500 million and brings its total capital to $100 million. In nine months since launch, the company has grown annualized revenue by 15x to eight figures and conducted over one million AI-powered interviews.</p><div></div><p>&quot;When you obsess over customers, everything else follows,&quot; Wahlforss said in an interview with VentureBeat. &quot;Teams that use Listen bring the customer into every decision, from marketing to product, and when the customer is delighted, everyone is.&quot;</p><h2><b>Why traditional market research is broken, and what Listen Labs is building to fix it</b></h2><p>Listen&#x27;s <a href=\"https://listenlabs.ai/role/agencies\">AI researcher</a> finds participants, conducts in-depth interviews, and delivers actionable insights in hours, not weeks. The platform replaces the traditional choice between quantitative surveys — which provide statistical precision but miss nuance—and qualitative interviews, which deliver depth but cannot scale.</p><p>Wahlforss explained the limitation of existing approaches: &quot;Essentially surveys give you false precision because people end up answering the same question... You can&#x27;t get the outliers. People are actually not honest on surveys.&quot; The alternative, one-on-one human interviews, &quot;gives you a lot of depth. You can ask follow up questions. You can kind of double check if they actually know what they&#x27;re talking about. And the problem is you can&#x27;t scale that.&quot;</p><p>The platform works in four steps: users create a study with AI assistance, Listen recruits participants from its global network of 30 million people, an AI moderator conducts in-depth interviews with follow-up questions, and results are packaged into executive-ready reports including key themes, highlight reels, and slide decks.</p><p>What distinguishes Listen&#x27;s approach is its use of open-ended video conversations rather than multiple-choice forms. &quot;In a survey, you can kind of guess what you should answer, and you have four options,&quot; Wahlforss said. &quot;Oh, they probably want me to buy high income. Let me click on that button versus an open ended response. It just generates much more honesty.&quot;</p><h2><b>The dirty secret of the $140 billion market research industry: rampant fraud</b></h2><p><a href=\"https://listenlabs.ai/\">Listen</a> finds and qualifies the right participants in its global network of 30 million people. But building that panel required confronting what Wahlforss called &quot;one of the most shocking things that we&#x27;ve learned when we entered this industry&quot;—rampant fraud.</p><p>&quot;Essentially, there&#x27;s a financial transaction involved, which means there will be bad players,&quot; he explained. &quot;We actually had some of the largest companies, some of them have billions in revenue, send us people who claim to be kind of enterprise buyers to our platform and our system immediately detected, like, fraud, fraud, fraud, fraud, fraud.&quot;</p><p>The company built what it calls a &quot;quality guard&quot; that cross-references LinkedIn profiles with video responses to verify identity, checks consistency across how participants answer questions, and flags suspicious patterns. The result, according to Wahlforss: &quot;People talk three times more. They&#x27;re much more honest when they talk about sensitive topics like politics and mental health.&quot;</p><p><a href=\"https://listenlabs.ai/case-studies/emeritus\">Emeritus</a>, an online education company that uses Listen, reported that approximately 20% of survey responses previously fell into the fraudulent or low-quality category. With Listen, they reduced this to almost zero. &quot;We did not have to replace any responses because of fraud or gibberish information,&quot; said Gabrielli Tiburi, Assistant Manager of Customer Insights at Emeritus.</p><h2><b>How Microsoft, Sweetgreen, and Chubbies are using AI interviews to build better products</b></h2><p>The speed advantage has proven central to Listen&#x27;s pitch. Traditional customer research at <a href=\"https://listenlabs.ai/case-studies/microsoft\">Microsoft</a> could take four to six weeks to generate insights. &quot;By the time we get to them, either the decision has been made or we lose out on the opportunity to actually influence it,&quot; said Romani Patel, Senior Research Manager at Microsoft.</p><p>With Listen, Microsoft can now get insights in days, and in many cases, within hours.</p><p>The platform has already powered several high-profile initiatives. Microsoft used Listen Labs to collect global customer stories for its 50th anniversary celebration. &quot;We wanted users to share how Copilot is empowering them to bring their best self forward,&quot; Patel said, &quot;and we were able to collect those user video stories within a day.&quot; Traditionally, that kind of work would have taken six to eight weeks.</p><p><a href=\"https://listenlabs.ai/case-studies/simple-modern\">Simple Modern</a>, an Oklahoma-based drinkware company, used Listen to test a new product concept. The process took about an hour to write questions, an hour to launch the study, and 2.5 hours to receive feedback from 120 people across the country. &quot;We went from &#x27;Should we even have this product?&#x27; to &#x27;How should we launch it?&#x27;&quot; said Chris Hoyle, the company&#x27;s Chief Marketing Officer.</p><p><a href=\"https://listenlabs.ai/case-studies/chubbies\">Chubbies</a>, the shorts brand, achieved a 24x increase in youth research participation—growing from 5 to 120 participants — by using Listen to overcome the scheduling challenges of traditional focus groups with children. &quot;There&#x27;s school, sports, dinner, and homework,&quot; explained Lauren Neville, Director of Insights and Innovation. &quot;I had to find a way to hear from them that fit into their schedules.&quot;</p><p>The company also discovered product issues through AI interviews that might have gone undetected otherwise. Wahlforss described how the AI &quot;through conversations, realized there were like issues with the the kids short line, and decided to, like, interview hundreds of kids. And I understand that there were issues in the liner of the shorts and that they were, like, scratchy, quote, unquote, according to the people interviewed.&quot; The redesigned product became &quot;a blockbuster hit.&quot;</p><h2><b>The Jevons paradox explains why cheaper research creates more demand, not less</b></h2><p><a href=\"https://listenlabs.ai/\">Listen Labs</a> is entering a massive but fragmented market. Wahlforss cited research from Andreessen Horowitz estimating the market research industry at roughly <a href=\"https://a16z.com/ai-market-research/\">$140 billion annually</a>, populated by legacy players — some with more than a billion dollars in revenue — that he believes are vulnerable to disruption.</p><p>&quot;There are very much existing budget lines that we are replacing,&quot; Wahlforss said. &quot;Why we&#x27;re replacing them is that one, they&#x27;re super costly. Two, they&#x27;re kind of stuck in this old paradigm of choosing between a survey or interview, and they also take months to work with.&quot;</p><p>But the more intriguing dynamic may be that AI-powered research doesn&#x27;t just replace existing spending — it creates new demand. Wahlforss invoked the Jevons paradox, an economic principle that occurs when technological advancements make a resource more efficient to use, but increased efficiency leads to increased overall consumption rather than decreased consumption.</p><p>&quot;What I&#x27;ve noticed is that as something gets cheaper, you don&#x27;t need less of it. You want more of it,&quot; Wahlforss explained. &quot;There&#x27;s infinite demand for customer understanding. So the researchers on the team can do an order of magnitude more research, and also other people who weren&#x27;t researchers before can now do that as part of their job.&quot;</p><h2><b>Inside the elite engineering team that built Listen Labs before they had a working toilet</b></h2><p><a href=\"https://listenlabs.ai/\">Listen Labs</a> traces its origins to a consumer app that Wahlforss and his co-founder built after meeting at Harvard. &quot;We built this consumer app that got 20,000 downloads in one day,&quot; Wahlforss recalled. &quot;We had all these users, and we were thinking like, okay, what can we do to get to know them better? And we built this prototype of what Listen is today.&quot;</p><p>The founding team brings an unusual pedigree. Wahlforss&#x27;s co-founder &quot;was the national champion in competitive programming in Germany, and he worked at Tesla Autopilot.&quot; The company claims that 30% of its engineering team are medalists from the <a href=\"https://ioinformatics.org/\">International Olympiad in Informatics</a> — the same competition that produced the founders of <a href=\"https://cognition.ai/\">Cognition</a>, the AI coding startup.</p><p>The <a href=\"https://www.cbsnews.com/sanfrancisco/news/san-francisco-billboard-challenge-puts-ai-engineers-to-the-test/\">Berghain billboard stunt</a> generated approximately 5 million views across social media, according to Wahlforss. It reflected the intensity of the talent war in the Bay Area.</p><p>&quot;We had to do these things because some of our, like early employees, joined the company before we had a working toilet,&quot; he said. &quot;But now we fixed that situation.&quot;</p><p>The company grew from 5 to 40 employees in 2024 and plans to reach 150 this year. It hires engineers for non-engineering roles across marketing, growth, and operations — a bet that in the AI era, technical fluency matters everywhere.</p><h2><b>Synthetic customers and automated decisions: what Listen Labs is building next</b></h2><p>Wahlforss outlined an ambitious product roadmap that pushes into more speculative territory. The company is building &quot;the ability to simulate your customers, so you can take all of those interviews we&#x27;ve done, and then extrapolate based on that and create synthetic users or simulated user voices.&quot;</p><p>Beyond simulation, Listen aims to enable automated action based on research findings. &quot;Can you not just make recommendations, but also create spawn agents to either change things in code or some customer churns? Can you give them a discount and try to bring them back?&quot;</p><p>Wahlforss acknowledged the ethical implications. &quot;Obviously, as you said, there&#x27;s kind of ethical concerns there. Of like, automated decision making overall can be bad, but we will have considerable guardrails to make sure that the companies are always in the loop.&quot;</p><p>The company already handles sensitive data with care. &quot;We don&#x27;t train on any of the data,&quot; Wahlforss said. &quot;We will also scrub any sensitive PII automatically so the model can detect that. And there are times when, for example, you work with investors, where if you accidentally mention something that could be material, non public information, the AI can actually detect that and remove any information like that.&quot;</p><h2><b>How AI could reshape the future of product development</b></h2><p>Perhaps the most provocative implication of Listen&#x27;s model is how it could reshape product development itself. Wahlforss described a customer — an Australian startup — that has adopted what amounts to a continuous feedback loop.</p><p>&quot;They&#x27;re based in Australia, so they&#x27;re coding during the day, and then in their night, they&#x27;re releasing a Listen study with an American audience. Listen validates whatever they built during the day, and they get feedback on that. They can then plug that feedback directly into coding tools like Claude Code and iterate.&quot;</p><p>The vision extends Y Combinator&#x27;s famous dictum — &quot;<a href=\"https://www.ycombinator.com/library/4D-yc-s-essential-startup-advice\">write code, talk to users</a>&quot; — into an automated cycle. &quot;Write code is now getting automated. And I think like talk to users will be as well, and you&#x27;ll have this kind of infinite loop where you can start to ship this truly amazing product, almost kind of autonomously.&quot;</p><p>Whether that vision materializes depends on factors beyond Listen&#x27;s control — the continued improvement of AI models, enterprise willingness to trust automated research, and whether speed truly correlates with better products. A <a href=\"https://mlq.ai/media/quarterly_decks/v0.1_State_of_AI_in_Business_2025_Report.pdf\">2024 MIT study</a> found that 95% of AI pilots fail to move into production, a statistic Wahlforss cited as the reason he emphasizes quality over demos.</p><p>&quot;I&#x27;m constantly have to emphasize like, let&#x27;s make sure the quality is there and the details are right,&quot; he said.</p><p>But the company&#x27;s growth suggests appetite for the experiment. Microsoft&#x27;s Patel said Listen has &quot;removed the drudgery of research and brought the fun and joy back into my work.&quot; Chubbies is now pushing its founder to give everyone in the company a login. Sling Money, a stablecoin payments startup, can create a survey in ten minutes and receive results the same day.</p><p>&quot;It&#x27;s a total game changer,&quot; said Ali Romero, Sling Money&#x27;s marketing manager.</p><p>Wahlforss has a different phrase for what he&#x27;s building. When asked about the tension between speed and rigor — the long-held belief that moving fast means cutting corners — he cited Nat Friedman, the former GitHub CEO and Listen investor, who keeps a list of one-liners on his website.</p><p>One of them: &quot;Slow is fake.&quot;</p><p>It&#x27;s an aggressive claim for an industry built on methodological caution. But <a href=\"https://listenlabs.ai/\">Listen Labs</a> is betting that in the AI era, the companies that listen fastest will be the ones that win. The only question is whether customers will talk back.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-16T14:01:00.000Z",
          "pubDate": "Fri, 16 Jan 2026 14:01:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/4gD12ThOmNHZuosqC4xCTz/277b1e8968da602108a29fae2eaca440/nuneybits_Vector_art_of_billboard_with_cryptic_code_dbe5b0ff-7644-45e6-a1ca-4a5dceeff986.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI"
          ],
          "contentSnippet": "Alfred Wahlforss was running out of options. His startup, Listen Labs, needed to hire over 100 engineers, but competing against Mark Zuckerberg's $100 million offers seemed impossible. So he spent $5,000 — a fifth of his marketing budget — on a billboard in San Francisco displaying what looked like gibberish: five strings of random numbers.\nThe numbers were actually AI tokens. Decoded, they led to a coding challenge: build an algorithm to act as a digital bouncer at Berghain, the Berlin nightclub famous for rejecting nearly everyone at the door. Within days, thousands attempted the puzzle. 430 cracked it. Some got hired. The winner flew to Berlin, all expenses paid.\nThat unconventional approach has now attracted $69 million in Series B funding, led by Ribbit Capital with participation from Evantic and existing investors Sequoia Capital, Conviction, and Pear VC. The round values Listen Labs at $500 million and brings its total capital to $100 million. In nine months since launch, the company has grown annualized revenue by 15x to eight figures and conducted over one million AI-powered interviews.\n\n\"When you obsess over customers, everything else follows,\" Wahlforss said in an interview with VentureBeat. \"Teams that use Listen bring the customer into every decision, from marketing to product, and when the customer is delighted, everyone is.\"\nWhy traditional market research is broken, and what Listen Labs is building to fix it\nListen's AI researcher finds participants, conducts in-depth interviews, and delivers actionable insights in hours, not weeks. The platform replaces the traditional choice between quantitative surveys — which provide statistical precision but miss nuance—and qualitative interviews, which deliver depth but cannot scale.\nWahlforss explained the limitation of existing approaches: \"Essentially surveys give you false precision because people end up answering the same question... You can't get the outliers. People are actually not honest on surveys.\" The alternative, one-on-one human interviews, \"gives you a lot of depth. You can ask follow up questions. You can kind of double check if they actually know what they're talking about. And the problem is you can't scale that.\"\nThe platform works in four steps: users create a study with AI assistance, Listen recruits participants from its global network of 30 million people, an AI moderator conducts in-depth interviews with follow-up questions, and results are packaged into executive-ready reports including key themes, highlight reels, and slide decks.\nWhat distinguishes Listen's approach is its use of open-ended video conversations rather than multiple-choice forms. \"In a survey, you can kind of guess what you should answer, and you have four options,\" Wahlforss said. \"Oh, they probably want me to buy high income. Let me click on that button versus an open ended response. It just generates much more honesty.\"\nThe dirty secret of the $140 billion market research industry: rampant fraud\nListen finds and qualifies the right participants in its global network of 30 million people. But building that panel required confronting what Wahlforss called \"one of the most shocking things that we've learned when we entered this industry\"—rampant fraud.\n\"Essentially, there's a financial transaction involved, which means there will be bad players,\" he explained. \"We actually had some of the largest companies, some of them have billions in revenue, send us people who claim to be kind of enterprise buyers to our platform and our system immediately detected, like, fraud, fraud, fraud, fraud, fraud.\"\nThe company built what it calls a \"quality guard\" that cross-references LinkedIn profiles with video responses to verify identity, checks consistency across how participants answer questions, and flags suspicious patterns. The result, according to Wahlforss: \"People talk three times more. They're much more honest when they talk about sensitive topics like politics and mental health.\"\nEmeritus, an online education company that uses Listen, reported that approximately 20% of survey responses previously fell into the fraudulent or low-quality category. With Listen, they reduced this to almost zero. \"We did not have to replace any responses because of fraud or gibberish information,\" said Gabrielli Tiburi, Assistant Manager of Customer Insights at Emeritus.\nHow Microsoft, Sweetgreen, and Chubbies are using AI interviews to build better products\nThe speed advantage has proven central to Listen's pitch. Traditional customer research at Microsoft could take four to six weeks to generate insights. \"By the time we get to them, either the decision has been made or we lose out on the opportunity to actually influence it,\" said Romani Patel, Senior Research Manager at Microsoft.\nWith Listen, Microsoft can now get insights in days, and in many cases, within hours.\nThe platform has already powered several high-profile initiatives. Microsoft used Listen Labs to collect global customer stories for its 50th anniversary celebration. \"We wanted users to share how Copilot is empowering them to bring their best self forward,\" Patel said, \"and we were able to collect those user video stories within a day.\" Traditionally, that kind of work would have taken six to eight weeks.\nSimple Modern, an Oklahoma-based drinkware company, used Listen to test a new product concept. The process took about an hour to write questions, an hour to launch the study, and 2.5 hours to receive feedback from 120 people across the country. \"We went from 'Should we even have this product?' to 'How should we launch it?'\" said Chris Hoyle, the company's Chief Marketing Officer.\nChubbies, the shorts brand, achieved a 24x increase in youth research participation—growing from 5 to 120 participants — by using Listen to overcome the scheduling challenges of traditional focus groups with children. \"There's school, sports, dinner, and homework,\" explained Lauren Neville, Director of Insights and Innovation. \"I had to find a way to hear from them that fit into their schedules.\"\nThe company also discovered product issues through AI interviews that might have gone undetected otherwise. Wahlforss described how the AI \"through conversations, realized there were like issues with the the kids short line, and decided to, like, interview hundreds of kids. And I understand that there were issues in the liner of the shorts and that they were, like, scratchy, quote, unquote, according to the people interviewed.\" The redesigned product became \"a blockbuster hit.\"\nThe Jevons paradox explains why cheaper research creates more demand, not less\nListen Labs is entering a massive but fragmented market. Wahlforss cited research from Andreessen Horowitz estimating the market research industry at roughly $140 billion annually, populated by legacy players — some with more than a billion dollars in revenue — that he believes are vulnerable to disruption.\n\"There are very much existing budget lines that we are replacing,\" Wahlforss said. \"Why we're replacing them is that one, they're super costly. Two, they're kind of stuck in this old paradigm of choosing between a survey or interview, and they also take months to work with.\"\nBut the more intriguing dynamic may be that AI-powered research doesn't just replace existing spending — it creates new demand. Wahlforss invoked the Jevons paradox, an economic principle that occurs when technological advancements make a resource more efficient to use, but increased efficiency leads to increased overall consumption rather than decreased consumption.\n\"What I've noticed is that as something gets cheaper, you don't need less of it. You want more of it,\" Wahlforss explained. \"There's infinite demand for customer understanding. So the researchers on the team can do an order of magnitude more research, and also other people who weren't researchers before can now do that as part of their job.\"\nInside the elite engineering team that built Listen Labs before they had a working toilet\nListen Labs traces its origins to a consumer app that Wahlforss and his co-founder built after meeting at Harvard. \"We built this consumer app that got 20,000 downloads in one day,\" Wahlforss recalled. \"We had all these users, and we were thinking like, okay, what can we do to get to know them better? And we built this prototype of what Listen is today.\"\nThe founding team brings an unusual pedigree. Wahlforss's co-founder \"was the national champion in competitive programming in Germany, and he worked at Tesla Autopilot.\" The company claims that 30% of its engineering team are medalists from the International Olympiad in Informatics — the same competition that produced the founders of Cognition, the AI coding startup.\nThe Berghain billboard stunt generated approximately 5 million views across social media, according to Wahlforss. It reflected the intensity of the talent war in the Bay Area.\n\"We had to do these things because some of our, like early employees, joined the company before we had a working toilet,\" he said. \"But now we fixed that situation.\"\nThe company grew from 5 to 40 employees in 2024 and plans to reach 150 this year. It hires engineers for non-engineering roles across marketing, growth, and operations — a bet that in the AI era, technical fluency matters everywhere.\nSynthetic customers and automated decisions: what Listen Labs is building next\nWahlforss outlined an ambitious product roadmap that pushes into more speculative territory. The company is building \"the ability to simulate your customers, so you can take all of those interviews we've done, and then extrapolate based on that and create synthetic users or simulated user voices.\"\nBeyond simulation, Listen aims to enable automated action based on research findings. \"Can you not just make recommendations, but also create spawn agents to either change things in code or some customer churns? Can you give them a discount and try to bring them back?\"\nWahlforss acknowledged the ethical implications. \"Obviously, as you said, there's kind of ethical concerns there. Of like, automated decision making overall can be bad, but we will have considerable guardrails to make sure that the companies are always in the loop.\"\nThe company already handles sensitive data with care. \"We don't train on any of the data,\" Wahlforss said. \"We will also scrub any sensitive PII automatically so the model can detect that. And there are times when, for example, you work with investors, where if you accidentally mention something that could be material, non public information, the AI can actually detect that and remove any information like that.\"\nHow AI could reshape the future of product development\nPerhaps the most provocative implication of Listen's model is how it could reshape product development itself. Wahlforss described a customer — an Australian startup — that has adopted what amounts to a continuous feedback loop.\n\"They're based in Australia, so they're coding during the day, and then in their night, they're releasing a Listen study with an American audience. Listen validates whatever they built during the day, and they get feedback on that. They can then plug that feedback directly into coding tools like Claude Code and iterate.\"\nThe vision extends Y Combinator's famous dictum — \"write code, talk to users\" — into an automated cycle. \"Write code is now getting automated. And I think like talk to users will be as well, and you'll have this kind of infinite loop where you can start to ship this truly amazing product, almost kind of autonomously.\"\nWhether that vision materializes depends on factors beyond Listen's control — the continued improvement of AI models, enterprise willingness to trust automated research, and whether speed truly correlates with better products. A 2024 MIT study found that 95% of AI pilots fail to move into production, a statistic Wahlforss cited as the reason he emphasizes quality over demos.\n\"I'm constantly have to emphasize like, let's make sure the quality is there and the details are right,\" he said.\nBut the company's growth suggests appetite for the experiment. Microsoft's Patel said Listen has \"removed the drudgery of research and brought the fun and joy back into my work.\" Chubbies is now pushing its founder to give everyone in the company a login. Sling Money, a stablecoin payments startup, can create a survey in ten minutes and receive results the same day.\n\"It's a total game changer,\" said Ali Romero, Sling Money's marketing manager.\nWahlforss has a different phrase for what he's building. When asked about the tension between speed and rigor — the long-held belief that moving fast means cutting corners — he cited Nat Friedman, the former GitHub CEO and Listen investor, who keeps a list of one-liners on his website.\nOne of them: \"Slow is fake.\"\nIt's an aggressive claim for an industry built on methodological caution. But Listen Labs is betting that in the AI era, the companies that listen fastest will be the ones that win. The only question is whether customers will talk back."
        }
      },
      {
        "json": {
          "guid": "1dxpkoyNmn8ceRMHCKLlT8",
          "link": "https://venturebeat.com/technology/salesforce-rolls-out-new-slackbot-ai-agent-as-it-battles-microsoft-and",
          "title": "Salesforce rolls out new Slackbot AI agent as it battles Microsoft and Google in workplace AI",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p><a href=\"https://www.salesforce.com/\">Salesforce</a> on Tuesday launched an entirely rebuilt version of <a href=\"https://slack.com/help/articles/202026038-An-introduction-to-Slackbot\">Slackbot</a>, the company&#x27;s workplace assistant, transforming it from a simple notification tool into what executives describe as a fully powered AI agent capable of searching enterprise data, drafting documents, and taking action on behalf of employees.</p><p>The new Slackbot, now generally available to <a href=\"https://slack.com/pricing/businessplus\">Business+</a> and <a href=\"https://slack.com/enterprise\">Enterprise+</a> customers, is Salesforce&#x27;s most aggressive move yet to position Slack at the center of the emerging &quot;agentic AI&quot; movement — where software agents work alongside humans to complete complex tasks. The launch comes as Salesforce attempts to convince investors that artificial intelligence will bolster its products rather than render them obsolete.</p><p>&quot;Slackbot isn&#x27;t just another copilot or AI assistant,&quot; said <a href=\"https://www.salesforce.com/company/parker-harris-bio/\">Parker Harris</a>, Salesforce co-founder and Slack&#x27;s chief technology officer, in an exclusive interview with Salesforce. &quot;It&#x27;s the front door to the agentic enterprise, powered by Salesforce.&quot;</p><h2><b>From tricycle to Porsche: Salesforce rebuilt Slackbot from the ground up</b></h2><p>Harris was blunt about what distinguishes the new Slackbot from its predecessor: &quot;The old Slackbot was, you know, a little tricycle, and the new Slackbot is like, you know, a Porsche.&quot;</p><p>The original Slackbot, which has existed since Slack&#x27;s early days, performed basic algorithmic tasks — reminding users to add colleagues to documents, suggesting channel archives, and delivering simple notifications. The new version runs on an entirely different architecture built around a large language model and sophisticated search capabilities that can access Salesforce records, Google Drive files, calendar data, and years of Slack conversations.</p><p>&quot;It&#x27;s two different things,&quot; Harris explained. &quot;The old Slackbot was algorithmic and fairly simple. The new Slackbot is brand new — it&#x27;s based around an LLM and a very robust search engine, and connections to third-party search engines, third-party enterprise data.&quot;</p><p>Salesforce chose to retain the Slackbot brand despite the fundamental technical overhaul. &quot;People know what Slackbot is, and so we wanted to carry that forward,&quot; Harris said.</p><h2><b>Why Anthropic&#x27;s Claude powers the new Slackbot — and which AI models could come next</b></h2><p>The new Slackbot runs on <a href=\"https://claude.ai/\">Claude</a>, Anthropic&#x27;s large language model, a choice driven partly by compliance requirements. Slack&#x27;s commercial service operates under <a href=\"https://www.fedramp.gov/archive/2017-11-16-understanding-baselines-and-impact-levels/\">FedRAMP Moderate certification</a> to serve U.S. federal government customers, and Harris said Anthropic was &quot;the only provider that could give us a compliant LLM&quot; when Slack began building the new system.</p><p>But that exclusivity won&#x27;t last. &quot;We are, this year, going to support additional providers,&quot; Harris said. &quot;We have a great relationship with Google. Gemini is incredible — performance is great, cost is great. So we&#x27;re going to use Gemini for some things.&quot; He added that OpenAI remains a possibility as well.</p><p>Harris echoed Salesforce CEO Marc Benioff&#x27;s view that large language models are becoming commoditized: &quot;You&#x27;ve heard Marc talk about LLMs are commodities, that they&#x27;re democratized. I call them CPUs.&quot;</p><p>On the sensitive question of training data, Harris was unequivocal: Salesforce does not train any models on customer data. &quot;Models don&#x27;t have any sort of security,&quot; he explained. &quot;If we trained it on some confidential conversation that you and I have, I don&#x27;t want Carolyn to know — if I train it into the LLM, there is no way for me to say you get to see the answer, but Carolyn doesn&#x27;t.&quot;</p><h2><b>Inside Salesforce&#x27;s internal experiment: 80,000 employees tested Slackbot with striking results</b></h2><p>Salesforce has been <a href=\"https://www.theverge.com/news/797890/slack-slackbot-ai-assistant-upgrade\">testing the new Slackbot internally for months</a>, rolling it out to all 80,000 employees. According to Ryan Gavin, Slack&#x27;s chief marketing officer, the results have been striking: &quot;It&#x27;s the fastest adopted product in Salesforce history.&quot;</p><p>Internal data shows that two-thirds of Salesforce employees have tried the new Slackbot, with 80% of those users continuing to use it regularly. Internal satisfaction rates reached 96% — the highest for any AI feature Slack has shipped. Employees report saving between two and 20 hours per week.</p><p>The adoption happened largely organically. &quot;I think it was about five days, and a Canvas was developed by our employees called &#x27;The Most Stealable Slackbot Prompts,&#x27;&quot; Gavin said. &quot;People just started adding to it organically. I think it&#x27;s up to 250-plus prompts that are in this Canvas right now.&quot;</p><p>Kate Crotty, a principal UX researcher at Salesforce, found that 73% of internal adoption was driven by social sharing rather than top-down mandates. &quot;Everybody is there to help each other learn and communicate hacks,&quot; she said.</p><h2><b>How Slackbot transforms scattered enterprise data into executive-ready insights</b></h2><p>During a product demonstration, Amy Bauer, Slack&#x27;s product experience designer, showed how Slackbot can synthesize information across multiple sources. In one example, she asked Slackbot to analyze customer feedback from a pilot program, upload an image of a usage dashboard, and have Slackbot correlate the qualitative and quantitative data.</p><p>&quot;This is where Slackbot really earns its keep for me,&quot; Bauer explained. &quot;What it&#x27;s doing is not just simply reading the image — it&#x27;s actually looking at the image and comparing it to the insight it just generated for me.&quot;</p><p>Slackbot can then query Salesforce to find enterprise accounts with open deals that might be good candidates for early access, creating what Bauer called &quot;a really great justification and plan to move forward.&quot; Finally, it can synthesize all that information into a Canvas — Slack&#x27;s collaborative document format — and find calendar availability among stakeholders to schedule a review meeting.</p><p>&quot;Up until this point, we have been working in a one-to-one capacity with Slackbot,&quot; Bauer said. &quot;But one of the benefits that I can do now is take this insight and have it generate this into a Canvas, a shared workspace where I can iterate on it, refine it with Slackbot, or share it out with my team.&quot;</p><p>Rob Seaman, Slack&#x27;s chief product officer, said the Canvas creation demonstrates where the product is heading: &quot;This is making a tool call internally to Slack Canvas to actually write, effectively, a shared document. But it signals where we&#x27;re going with Slackbot — we&#x27;re eventually going to be adding in additional third-party tool calls.&quot;</p><h2><b>MrBeast&#x27;s company became a Slackbot guinea pig—and employees say they&#x27;re saving 90 minutes a day</b></h2><p>Among Salesforce&#x27;s pilot customers is <a href=\"https://www.thecashmerefund.com/portfolio-company/beast-industries\">Beast Industries</a>, the parent company of YouTube star MrBeast. Luis Madrigal, the company&#x27;s chief information officer, joined the launch announcement to describe his experience.</p><p>&quot;As somebody who has rolled out enterprise technologies for over two decades now, this was practically one of the easiest,&quot; Madrigal said. &quot;The plumbing is there. Slack as an implementation, Enterprise Tools — being able to turn on the Slackbot and the Slack AI functionality was as simple as having my team go in, review, do a quick security review.&quot;</p><p>Madrigal said his security team signed off &quot;rather quickly&quot; — unusual for enterprise AI deployments — because Slackbot accesses only the information each individual user already has permission to view. &quot;Given all the guardrails you guys have put into place for Slackbot to be unique and customized to only the information that each individual user has, only the conversations and the Slack rooms and Slack channels that they&#x27;re part of—that made my security team sign off rather quickly.&quot;</p><p>One Beast Industries employee, Sinan, the head of Beast Games marketing, reported saving &quot;at bare minimum, 90 minutes a day.&quot; Another employee, Spencer, a creative supervisor, described it as &quot;an assistant who&#x27;s paying attention when I&#x27;m not.&quot;</p><p>Other pilot customers include Slalom, reMarkable, Xero, Mercari, and Engine. Mollie Bodensteiner, SVP of Operations at Engine, called Slackbot &quot;an absolute &#x27;chaos tamer&#x27; for our team,&quot; estimating it saves her about 30 minutes daily &quot;just by eliminating context switching.&quot;</p><h2><b>Slackbot vs. Microsoft Copilot vs. Google Gemini: The fight for enterprise AI dominance</b></h2><p>The launch puts Salesforce in direct competition with <a href=\"https://copilot.microsoft.com/\">Microsoft&#x27;s Copilot</a>, which is integrated into Teams and the broader Microsoft 365 suite, as well as Google&#x27;s Gemini integrations across Workspace. When asked what distinguishes Slackbot from these alternatives, Seaman pointed to context and convenience.</p><p>&quot;The thing that makes it most powerful for our customers and users is the proximity — it&#x27;s just right there in your Slack,&quot; Seaman said. &quot;There&#x27;s a tremendous convenience affordance that&#x27;s naturally built into it.&quot;</p><p>The deeper advantage, executives argue, is that Slackbot already understands users&#x27; work without requiring setup or training. &quot;Most AI tools sound the same no matter who is using them,&quot; the company&#x27;s announcement stated. &quot;They lack context, miss nuance, and force you to jump between tools to get anything done.&quot;</p><p>Harris put it more directly: &quot;If you&#x27;ve ever had that magic experience with AI — I think ChatGPT is a great example, it&#x27;s a great experience from a consumer perspective — Slackbot is really what we&#x27;re doing in the enterprise, to be this employee super agent that is loved, just like people love using Slack.&quot;</p><p>Amy Bauer emphasized the frictionless nature of the experience. &quot;Slackbot is inherently grounded in the context, in the data that you have in Slack,&quot; she said. &quot;So as you continue working in Slack, Slackbot gets better because it&#x27;s grounded in the work that you&#x27;re doing there. There is no setup. There is no configuration for those end users.&quot;</p><h2><b>Salesforce&#x27;s ambitious plan to make Slackbot the one &#x27;super agent&#x27; that controls all the others</b></h2><p>Salesforce positions Slackbot as what Harris calls a &quot;super agent&quot; — a central hub that can eventually coordinate with other AI agents across an organization.</p><p>&quot;Every corporation is going to have an employee super agent,&quot; Harris said. &quot;Slackbot is essentially taking the magic of what Slack does. We think that Slackbot, and we&#x27;re really excited about it, is going to be that.&quot;</p><p>The vision extends to third-party agents already launching in Slack. Last month, Anthropic released a preview of Claude Code for Slack, allowing developers to interact with Claude&#x27;s coding capabilities directly in chat threads. OpenAI, Google, Vercel, and others have also built agents for the platform.</p><p>&quot;Most of the net-new apps that are being deployed to Slack are agents,&quot; Seaman noted during the press conference. &quot;This is proof of the promise of humans and agents coexisting and working together in Slack to solve problems.&quot;</p><p>Harris described a future where Slackbot becomes an <a href=\"https://modelcontextprotocol.io/docs/learn/client-concepts\">MCP (Model Context Protocol) client</a>, able to leverage tools from across the software ecosystem — similar to how the developer tool Cursor works. &quot;Slack can be an MCP client, and Slackbot will be the hub of that, leveraging all these tools out in the world, some of which will be these amazing agents,&quot; he said.</p><p>But Harris also cautioned against over-promising on multi-agent coordination. &quot;I still think we&#x27;re in the single agent world,&quot; he said. &quot;FY26 is going to be the year where we started to see more coordination. But we&#x27;re going to do it with customer success in mind, and not demonstrate and talk about, like, &#x27;I&#x27;ve got 1,000 agents working together,&#x27; because I think that&#x27;s unrealistic.&quot;</p><h2><b>Slackbot costs nothing extra, but Salesforce&#x27;s data access fees could squeeze some customers</b></h2><p>Slackbot is included at no additional cost for customers on <a href=\"https://slack.com/pricing/businessplus\">Business+</a> and <a href=\"https://slack.com/enterprise\">Enterprise+</a> plans. &quot;There&#x27;s no additional fees customers have to do,&quot; Gavin confirmed. &quot;If they&#x27;re on one of those plans, they&#x27;re going to get Slackbot.&quot;</p><p>However, some enterprise customers may face other cost pressures related to Salesforce&#x27;s broader data strategy. CIOs may see price increases for third-party applications that work with Salesforce data, as effects of higher charges for API access ripple through the software supply chain.</p><p>Fivetran CEO George Fraser has warned that Salesforce&#x27;s shift in pricing policy for API access could have tangible consequences for enterprises relying on Salesforce as a system of record. &quot;They might not be able to use Fivetran to replicate their data to Snowflake and instead have to use Salesforce Data Cloud. Or they might find that they are not able to interact with their data via ChatGPT, and instead have to use Agentforce,&quot; Fraser said in a <a href=\"https://www.cio.com/article/4108001/salesforce-is-tightening-control-of-its-data-ecosystem-and-cios-may-have-to-pay-the-price.html\">recent CIO report</a>.</p><p>Salesforce has framed the pricing change as standard industry practice.</p><h2><b>What Slackbot can do today, what&#x27;s coming in weeks, and what&#x27;s still on the roadmap</b></h2><p>The new Slackbot begins rolling out today and will reach all eligible customers by the end of February. Mobile availability will complete by March 3, Bauer confirmed during her interview with VentureBeat.</p><p>Some capabilities remain works in progress. Calendar reading and availability checking are available at launch, but the ability to actually book meetings is &quot;coming a few weeks after,&quot; according to Seaman. Image generation is not currently supported, though Bauer said it&#x27;s &quot;something that we are looking at in the future.&quot;</p><p>When asked about integration with competing CRM systems like <a href=\"https://www.hubspot.com/\">HubSpot</a> and <a href=\"https://www.microsoft.com/en-us/dynamics-365\">Microsoft Dynamics</a>, Salesforce representatives declined to provide specifics during the interview, though they acknowledged the question touched on key competitive differentiators.</p><h2><b>Salesforce is betting the future of work looks like a chat window—and it&#x27;s not alone</b></h2><p>The Slackbot launch is Salesforce&#x27;s bet that the future of enterprise work is conversational — that employees will increasingly prefer to interact with AI through natural language rather than navigating traditional software interfaces.</p><p>Harris described Slack&#x27;s product philosophy using principles like &quot;don&#x27;t make me think&quot; and &quot;be a great host.&quot; The goal, he said, is for Slackbot to surface information proactively rather than requiring users to hunt for it.</p><p>&quot;One of the revelations for me is LLMs applied to unstructured information are incredible,&quot; Harris said. &quot;And the amount of value you have if you&#x27;re a Slack user, if your corporation uses Slack — the amount of value in Slack is unbelievable. Because you&#x27;re talking about work, you&#x27;re sharing documents, you&#x27;re making decisions, but you can&#x27;t as a human go through that and really get the same value that an LLM can do.&quot;</p><p>Looking ahead, Harris expects the interfaces themselves to evolve beyond pure conversation. &quot;We&#x27;re kind of saturating what we can do with purely conversational UIs,&quot; he said. &quot;I think we&#x27;ll start to see agents building an interface that best suits your intent, as opposed to trying to surface something within a conversational interface that matches your intent.&quot;</p><p>Microsoft, Google, and a growing roster of AI startups are placing similar bets — that the winning enterprise AI will be the one embedded in the tools workers already use, not another application to learn. The race to become that invisible layer of workplace intelligence is now fully underway.</p><p>For Salesforce, the stakes extend beyond a single product launch. After a <a href=\"https://www.investopedia.com/can-salesforce-stock-recover-here-s-what-wall-street-thinks-crm-earnings-11862399\">bruising year</a> on Wall Street and persistent questions about whether AI threatens its core business, the company is wagering that Slackbot can prove the opposite — that the tens of millions of people already chatting in Slack every day is not a vulnerability, but an unassailable advantage.</p><p>Haley Gault, the Salesforce account executive in Pittsburgh who stumbled upon the new Slackbot on a snowy morning, captured the shift in a single sentence: &quot;I honestly can&#x27;t imagine working for another company not having access to these types of tools. This is just how I work now.&quot;</p><p>That&#x27;s precisely what Salesforce is counting on.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-13T13:00:00.000Z",
          "pubDate": "Tue, 13 Jan 2026 13:00:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/4Xrcg14GLKFlwSEnuEzxyS/21c85d29d03c4c974076475c009e3b38/nuneybits_Vector_art_of_chat_bubbles_on_a_computer_screen_in_th_5018a7ea-3496-4103-8453-7ba1b129189a.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI",
            "Automation"
          ],
          "contentSnippet": "Salesforce on Tuesday launched an entirely rebuilt version of Slackbot, the company's workplace assistant, transforming it from a simple notification tool into what executives describe as a fully powered AI agent capable of searching enterprise data, drafting documents, and taking action on behalf of employees.\nThe new Slackbot, now generally available to Business+ and Enterprise+ customers, is Salesforce's most aggressive move yet to position Slack at the center of the emerging \"agentic AI\" movement — where software agents work alongside humans to complete complex tasks. The launch comes as Salesforce attempts to convince investors that artificial intelligence will bolster its products rather than render them obsolete.\n\"Slackbot isn't just another copilot or AI assistant,\" said Parker Harris, Salesforce co-founder and Slack's chief technology officer, in an exclusive interview with Salesforce. \"It's the front door to the agentic enterprise, powered by Salesforce.\"\nFrom tricycle to Porsche: Salesforce rebuilt Slackbot from the ground up\nHarris was blunt about what distinguishes the new Slackbot from its predecessor: \"The old Slackbot was, you know, a little tricycle, and the new Slackbot is like, you know, a Porsche.\"\nThe original Slackbot, which has existed since Slack's early days, performed basic algorithmic tasks — reminding users to add colleagues to documents, suggesting channel archives, and delivering simple notifications. The new version runs on an entirely different architecture built around a large language model and sophisticated search capabilities that can access Salesforce records, Google Drive files, calendar data, and years of Slack conversations.\n\"It's two different things,\" Harris explained. \"The old Slackbot was algorithmic and fairly simple. The new Slackbot is brand new — it's based around an LLM and a very robust search engine, and connections to third-party search engines, third-party enterprise data.\"\nSalesforce chose to retain the Slackbot brand despite the fundamental technical overhaul. \"People know what Slackbot is, and so we wanted to carry that forward,\" Harris said.\nWhy Anthropic's Claude powers the new Slackbot — and which AI models could come next\nThe new Slackbot runs on Claude, Anthropic's large language model, a choice driven partly by compliance requirements. Slack's commercial service operates under FedRAMP Moderate certification to serve U.S. federal government customers, and Harris said Anthropic was \"the only provider that could give us a compliant LLM\" when Slack began building the new system.\nBut that exclusivity won't last. \"We are, this year, going to support additional providers,\" Harris said. \"We have a great relationship with Google. Gemini is incredible — performance is great, cost is great. So we're going to use Gemini for some things.\" He added that OpenAI remains a possibility as well.\nHarris echoed Salesforce CEO Marc Benioff's view that large language models are becoming commoditized: \"You've heard Marc talk about LLMs are commodities, that they're democratized. I call them CPUs.\"\nOn the sensitive question of training data, Harris was unequivocal: Salesforce does not train any models on customer data. \"Models don't have any sort of security,\" he explained. \"If we trained it on some confidential conversation that you and I have, I don't want Carolyn to know — if I train it into the LLM, there is no way for me to say you get to see the answer, but Carolyn doesn't.\"\nInside Salesforce's internal experiment: 80,000 employees tested Slackbot with striking results\nSalesforce has been testing the new Slackbot internally for months, rolling it out to all 80,000 employees. According to Ryan Gavin, Slack's chief marketing officer, the results have been striking: \"It's the fastest adopted product in Salesforce history.\"\nInternal data shows that two-thirds of Salesforce employees have tried the new Slackbot, with 80% of those users continuing to use it regularly. Internal satisfaction rates reached 96% — the highest for any AI feature Slack has shipped. Employees report saving between two and 20 hours per week.\nThe adoption happened largely organically. \"I think it was about five days, and a Canvas was developed by our employees called 'The Most Stealable Slackbot Prompts,'\" Gavin said. \"People just started adding to it organically. I think it's up to 250-plus prompts that are in this Canvas right now.\"\nKate Crotty, a principal UX researcher at Salesforce, found that 73% of internal adoption was driven by social sharing rather than top-down mandates. \"Everybody is there to help each other learn and communicate hacks,\" she said.\nHow Slackbot transforms scattered enterprise data into executive-ready insights\nDuring a product demonstration, Amy Bauer, Slack's product experience designer, showed how Slackbot can synthesize information across multiple sources. In one example, she asked Slackbot to analyze customer feedback from a pilot program, upload an image of a usage dashboard, and have Slackbot correlate the qualitative and quantitative data.\n\"This is where Slackbot really earns its keep for me,\" Bauer explained. \"What it's doing is not just simply reading the image — it's actually looking at the image and comparing it to the insight it just generated for me.\"\nSlackbot can then query Salesforce to find enterprise accounts with open deals that might be good candidates for early access, creating what Bauer called \"a really great justification and plan to move forward.\" Finally, it can synthesize all that information into a Canvas — Slack's collaborative document format — and find calendar availability among stakeholders to schedule a review meeting.\n\"Up until this point, we have been working in a one-to-one capacity with Slackbot,\" Bauer said. \"But one of the benefits that I can do now is take this insight and have it generate this into a Canvas, a shared workspace where I can iterate on it, refine it with Slackbot, or share it out with my team.\"\nRob Seaman, Slack's chief product officer, said the Canvas creation demonstrates where the product is heading: \"This is making a tool call internally to Slack Canvas to actually write, effectively, a shared document. But it signals where we're going with Slackbot — we're eventually going to be adding in additional third-party tool calls.\"\nMrBeast's company became a Slackbot guinea pig—and employees say they're saving 90 minutes a day\nAmong Salesforce's pilot customers is Beast Industries, the parent company of YouTube star MrBeast. Luis Madrigal, the company's chief information officer, joined the launch announcement to describe his experience.\n\"As somebody who has rolled out enterprise technologies for over two decades now, this was practically one of the easiest,\" Madrigal said. \"The plumbing is there. Slack as an implementation, Enterprise Tools — being able to turn on the Slackbot and the Slack AI functionality was as simple as having my team go in, review, do a quick security review.\"\nMadrigal said his security team signed off \"rather quickly\" — unusual for enterprise AI deployments — because Slackbot accesses only the information each individual user already has permission to view. \"Given all the guardrails you guys have put into place for Slackbot to be unique and customized to only the information that each individual user has, only the conversations and the Slack rooms and Slack channels that they're part of—that made my security team sign off rather quickly.\"\nOne Beast Industries employee, Sinan, the head of Beast Games marketing, reported saving \"at bare minimum, 90 minutes a day.\" Another employee, Spencer, a creative supervisor, described it as \"an assistant who's paying attention when I'm not.\"\nOther pilot customers include Slalom, reMarkable, Xero, Mercari, and Engine. Mollie Bodensteiner, SVP of Operations at Engine, called Slackbot \"an absolute 'chaos tamer' for our team,\" estimating it saves her about 30 minutes daily \"just by eliminating context switching.\"\nSlackbot vs. Microsoft Copilot vs. Google Gemini: The fight for enterprise AI dominance\nThe launch puts Salesforce in direct competition with Microsoft's Copilot, which is integrated into Teams and the broader Microsoft 365 suite, as well as Google's Gemini integrations across Workspace. When asked what distinguishes Slackbot from these alternatives, Seaman pointed to context and convenience.\n\"The thing that makes it most powerful for our customers and users is the proximity — it's just right there in your Slack,\" Seaman said. \"There's a tremendous convenience affordance that's naturally built into it.\"\nThe deeper advantage, executives argue, is that Slackbot already understands users' work without requiring setup or training. \"Most AI tools sound the same no matter who is using them,\" the company's announcement stated. \"They lack context, miss nuance, and force you to jump between tools to get anything done.\"\nHarris put it more directly: \"If you've ever had that magic experience with AI — I think ChatGPT is a great example, it's a great experience from a consumer perspective — Slackbot is really what we're doing in the enterprise, to be this employee super agent that is loved, just like people love using Slack.\"\nAmy Bauer emphasized the frictionless nature of the experience. \"Slackbot is inherently grounded in the context, in the data that you have in Slack,\" she said. \"So as you continue working in Slack, Slackbot gets better because it's grounded in the work that you're doing there. There is no setup. There is no configuration for those end users.\"\nSalesforce's ambitious plan to make Slackbot the one 'super agent' that controls all the others\nSalesforce positions Slackbot as what Harris calls a \"super agent\" — a central hub that can eventually coordinate with other AI agents across an organization.\n\"Every corporation is going to have an employee super agent,\" Harris said. \"Slackbot is essentially taking the magic of what Slack does. We think that Slackbot, and we're really excited about it, is going to be that.\"\nThe vision extends to third-party agents already launching in Slack. Last month, Anthropic released a preview of Claude Code for Slack, allowing developers to interact with Claude's coding capabilities directly in chat threads. OpenAI, Google, Vercel, and others have also built agents for the platform.\n\"Most of the net-new apps that are being deployed to Slack are agents,\" Seaman noted during the press conference. \"This is proof of the promise of humans and agents coexisting and working together in Slack to solve problems.\"\nHarris described a future where Slackbot becomes an MCP (Model Context Protocol) client, able to leverage tools from across the software ecosystem — similar to how the developer tool Cursor works. \"Slack can be an MCP client, and Slackbot will be the hub of that, leveraging all these tools out in the world, some of which will be these amazing agents,\" he said.\nBut Harris also cautioned against over-promising on multi-agent coordination. \"I still think we're in the single agent world,\" he said. \"FY26 is going to be the year where we started to see more coordination. But we're going to do it with customer success in mind, and not demonstrate and talk about, like, 'I've got 1,000 agents working together,' because I think that's unrealistic.\"\nSlackbot costs nothing extra, but Salesforce's data access fees could squeeze some customers\nSlackbot is included at no additional cost for customers on Business+ and Enterprise+ plans. \"There's no additional fees customers have to do,\" Gavin confirmed. \"If they're on one of those plans, they're going to get Slackbot.\"\nHowever, some enterprise customers may face other cost pressures related to Salesforce's broader data strategy. CIOs may see price increases for third-party applications that work with Salesforce data, as effects of higher charges for API access ripple through the software supply chain.\nFivetran CEO George Fraser has warned that Salesforce's shift in pricing policy for API access could have tangible consequences for enterprises relying on Salesforce as a system of record. \"They might not be able to use Fivetran to replicate their data to Snowflake and instead have to use Salesforce Data Cloud. Or they might find that they are not able to interact with their data via ChatGPT, and instead have to use Agentforce,\" Fraser said in a recent CIO report.\nSalesforce has framed the pricing change as standard industry practice.\nWhat Slackbot can do today, what's coming in weeks, and what's still on the roadmap\nThe new Slackbot begins rolling out today and will reach all eligible customers by the end of February. Mobile availability will complete by March 3, Bauer confirmed during her interview with VentureBeat.\nSome capabilities remain works in progress. Calendar reading and availability checking are available at launch, but the ability to actually book meetings is \"coming a few weeks after,\" according to Seaman. Image generation is not currently supported, though Bauer said it's \"something that we are looking at in the future.\"\nWhen asked about integration with competing CRM systems like HubSpot and Microsoft Dynamics, Salesforce representatives declined to provide specifics during the interview, though they acknowledged the question touched on key competitive differentiators.\nSalesforce is betting the future of work looks like a chat window—and it's not alone\nThe Slackbot launch is Salesforce's bet that the future of enterprise work is conversational — that employees will increasingly prefer to interact with AI through natural language rather than navigating traditional software interfaces.\nHarris described Slack's product philosophy using principles like \"don't make me think\" and \"be a great host.\" The goal, he said, is for Slackbot to surface information proactively rather than requiring users to hunt for it.\n\"One of the revelations for me is LLMs applied to unstructured information are incredible,\" Harris said. \"And the amount of value you have if you're a Slack user, if your corporation uses Slack — the amount of value in Slack is unbelievable. Because you're talking about work, you're sharing documents, you're making decisions, but you can't as a human go through that and really get the same value that an LLM can do.\"\nLooking ahead, Harris expects the interfaces themselves to evolve beyond pure conversation. \"We're kind of saturating what we can do with purely conversational UIs,\" he said. \"I think we'll start to see agents building an interface that best suits your intent, as opposed to trying to surface something within a conversational interface that matches your intent.\"\nMicrosoft, Google, and a growing roster of AI startups are placing similar bets — that the winning enterprise AI will be the one embedded in the tools workers already use, not another application to learn. The race to become that invisible layer of workplace intelligence is now fully underway.\nFor Salesforce, the stakes extend beyond a single product launch. After a bruising year on Wall Street and persistent questions about whether AI threatens its core business, the company is wagering that Slackbot can prove the opposite — that the tens of millions of people already chatting in Slack every day is not a vulnerability, but an unassailable advantage.\nHaley Gault, the Salesforce account executive in Pittsburgh who stumbled upon the new Slackbot on a snowy morning, captured the shift in a single sentence: \"I honestly can't imagine working for another company not having access to these types of tools. This is just how I work now.\"\nThat's precisely what Salesforce is counting on."
        }
      },
      {
        "json": {
          "guid": "7EaNv4Ip2AUlW9RClUv2cB",
          "link": "https://venturebeat.com/technology/anthropic-launches-cowork-a-claude-desktop-agent-that-works-in-your-files-no",
          "title": "Anthropic launches Cowork, a Claude Desktop agent that works in your files — no coding required",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p><a href=\"https://www.anthropic.com/\">Anthropic</a> released <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> on Monday, a new AI agent capability that extends the power of its wildly successful <a href=\"https://claude.com/product/claude-code\">Claude Code</a> tool to non-technical users — and according to company insiders, the team built the entire feature in approximately a week and a half, largely using Claude Code itself.</p><p>The launch marks a major inflection point in the race to deliver practical AI agents to mainstream users, positioning Anthropic to compete not just with <a href=\"https://openai.com/\">OpenAI</a> and <a href=\"https://gemini.google.com/app\">Google</a> in conversational AI, but with <a href=\"https://copilot.microsoft.com/\">Microsoft&#x27;s Copilot</a> in the burgeoning market for AI-powered productivity tools.</p><p>&quot;Cowork lets you complete non-technical tasks much like how developers use Claude Code,&quot; the <a href=\"https://x.com/claudeai/status/2010805682434666759?s=20\">company announced</a> via its official Claude account on X. The feature arrives as a research preview available exclusively to <a href=\"https://support.claude.com/en/articles/11014257-about-claude-s-max-plan-usage\">Claude Max subscribers</a> — Anthropic&#x27;s power-user tier priced between $100 and $200 per month — through the macOS desktop application.</p><p>For the past year, the industry narrative has focused on large language models that can write poetry or debug code. With <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a>, Anthropic is betting that the real enterprise value lies in an AI that can open a folder, read a messy pile of receipts, and generate a structured expense report without human hand-holding.</p><div></div><h2><b>How developers using a coding tool for vacation research inspired Anthropic&#x27;s latest product</b></h2><p>The genesis of <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> lies in Anthropic&#x27;s recent success with the developer community. In late 2024, the company released <a href=\"https://www.anthropic.com/news/claude-3-7-sonnet\">Claude Code</a>, a terminal-based tool that allowed software engineers to automate rote programming tasks. The tool was a hit, but Anthropic noticed a peculiar trend: users were forcing the coding tool to perform non-coding labor.</p><p>According to <a href=\"https://x.com/bcherny/status/2010809450844831752\">Boris Cherny</a>, an engineer at Anthropic, the company observed users deploying the developer tool for an unexpectedly diverse array of tasks.</p><div></div><p>&quot;Since we launched Claude Code, we saw people using it for all sorts of non-coding work: doing vacation research, building slide decks, cleaning up your email, cancelling subscriptions, recovering wedding photos from a hard drive, monitoring plant growth, controlling your oven,&quot; Cherny wrote on X. &quot;These use cases are diverse and surprising — the reason is that the underlying Claude Agent is the best agent, and Opus 4.5 is the best model.&quot;</p><p>Recognizing this shadow usage, Anthropic effectively stripped the command-line complexity from their developer tool to create a consumer-friendly interface. In its blog post announcing the feature, <a href=\"https://claude.com/blog/cowork-research-preview\">Anthropic explained</a> that developers &quot;quickly began using it for almost everything else,&quot; which &quot;prompted us to build Cowork: a simpler way for anyone — not just developers — to work with Claude in the very same way.&quot;</p><h2><b>Inside the folder-based architecture that lets Claude read, edit, and create files on your computer</b></h2><p>Unlike a standard chat interface where a user pastes text for analysis, <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> requires a different level of trust and access. Users designate a specific folder on their local machine that Claude can access. Within that sandbox, the AI agent can read existing files, modify them, or create entirely new ones.</p><p>Anthropic offers several illustrative examples: reorganizing a cluttered downloads folder by sorting and intelligently renaming each file, generating a spreadsheet of expenses from a collection of receipt screenshots, or drafting a report from scattered notes across multiple documents.</p><p>&quot;In Cowork, you give Claude access to a folder on your computer. Claude can then read, edit, or create files in that folder,&quot; <a href=\"https://x.com/claudeai/status/2010805685530038351\">the company explained</a> on X. &quot;Try it to create a spreadsheet from a pile of screenshots, or produce a first draft from scattered notes.&quot;</p><div></div><p>The architecture relies on what is known as an &quot;agentic loop.&quot; When a user assigns a task, the AI does not merely generate a text response. Instead, it formulates a plan, executes steps in parallel, checks its own work, and asks for clarification if it hits a roadblock. Users can queue multiple tasks and let Claude process them simultaneously — a workflow Anthropic describes as feeling &quot;much less like a back-and-forth and much more like leaving messages for a coworker.&quot;</p><p>The system is built on Anthropic&#x27;s <a href=\"https://www.anthropic.com/engineering/building-agents-with-the-claude-agent-sdk\">Claude Agent SDK</a>, meaning it shares the same underlying architecture as Claude Code. Anthropic notes that Cowork &quot;can take on many of the same tasks that Claude Code can handle, but in a more approachable form for non-coding tasks.&quot;</p><h2><b>The recursive loop where AI builds AI: Claude Code reportedly wrote much of Claude Cowork</b></h2><p>Perhaps the most remarkable detail surrounding Cowork&#x27;s launch is the speed at which the tool was reportedly built — highlighting a recursive feedback loop where AI tools are being used to build better AI tools.</p><p>During a livestream hosted by Dan Shipper, Felix Rieseberg, an Anthropic employee, confirmed that <a href=\"https://x.com/blakeir/status/2010837251505205656\">t</a>he team <a href=\"https://x.com/blakeir/status/2010837251505205656\">built Cowork in approximately a week and a half</a>.</p><p>Alex Volkov, who covers AI developments, expressed surprise at the timeline: &quot;Holy shit Anthropic built &#x27;Cowork&#x27; in the last... week and a half?!&quot;</p><div></div><p>This prompted immediate speculation about how much of Cowork was itself built by Claude Code. <a href=\"https://x.com/_simonsmith\">Simon Smith</a>, EVP of Generative AI at Klick Health, put it bluntly on X: &quot;Claude Code wrote all of Claude Cowork. Can we all agree that we&#x27;re in at least somewhat of a recursive improvement loop here?&quot;</p><p>The implication is profound: Anthropic&#x27;s AI coding agent may have substantially contributed to building its own non-technical sibling product. If true, this is one of the most visible examples yet of AI systems being used to accelerate their own development and expansion — a strategy that could widen the gap between AI labs that successfully deploy their own agents internally and those that do not.</p><h2><b>Connectors, browser automation, and skills extend Cowork&#x27;s reach beyond the local file system</b></h2><p>Cowork doesn&#x27;t operate in isolation. The feature integrates with Anthropic&#x27;s existing ecosystem of connectors — tools that link <a href=\"https://claude.ai/login?returnTo=%2Fnew%3F\">Claude</a> to external information sources and services such as <a href=\"https://asana.com/\">Asana</a>, <a href=\"https://www.notion.com/\">Notion</a>, <a href=\"https://www.paypal.com/us/home\">PayPal</a>, and other supported partners. Users who have configured these connections in the standard Claude interface can leverage them within Cowork sessions.</p><p>Additionally, Cowork can pair with <a href=\"https://code.claude.com/docs/en/chrome\">Claude in Chrome</a>, Anthropic&#x27;s browser extension, to execute tasks requiring web access. This combination allows the agent to navigate websites, click buttons, fill forms, and extract information from the internet — all while operating from the desktop application.</p><p>&quot;Cowork includes a number of novel UX and safety features that we think make the product really special,&quot; <a href=\"https://x.com/bcherny/status/2010809450844831752\">Cherny explained</a>, highlighting &quot;a built-in VM [virtual machine] for isolation, out of the box support for browser automation, support for all your claude.ai data connectors, asking you for clarification when it&#x27;s unsure.&quot;</p><p><a href=\"https://www.anthropic.com/\">Anthropic</a> has also introduced an initial set of &quot;skills&quot; specifically designed for Cowork that enhance Claude&#x27;s ability to create documents, presentations, and other files. These build on the <a href=\"https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills\">Skills for Claude</a> framework the company announced in October, which provides specialized instruction sets Claude can load for particular types of tasks.</p><h2><b>Why Anthropic is warning users that its own AI agent could delete their files</b></h2><p>The transition from a chatbot that suggests edits to an agent that makes edits introduces significant risk. An AI that can organize files can, theoretically, delete them.</p><p>In a notable display of transparency, Anthropic devoted considerable space in its announcement to <a href=\"https://claude.com/blog/cowork-research-preview\">warning users about Cowork&#x27;s potential dangers</a> — an unusual approach for a product launch.</p><p>The company explicitly acknowledges that Claude &quot;can take potentially destructive actions (such as deleting local files) if it&#x27;s instructed to.&quot; Because Claude might occasionally misinterpret instructions, Anthropic urges users to provide &quot;very clear guidance&quot; about sensitive operations.</p><p>More concerning is the risk of prompt injection attacks — a technique where malicious actors embed hidden instructions in content Claude might encounter online, potentially causing the agent to bypass safeguards or take harmful actions.</p><p>&quot;We&#x27;ve built sophisticated defenses against prompt injections,&quot; Anthropic wrote, &quot;but agent safety — that is, the task of securing Claude&#x27;s real-world actions — is still an active area of development in the industry.&quot;</p><p>The company characterized these risks as inherent to the current state of AI agent technology rather than unique to Cowork. &quot;These risks aren&#x27;t new with Cowork, but it might be the first time you&#x27;re using a more advanced tool that moves beyond a simple conversation,&quot; the announcement notes.</p><h2><b>Anthropic&#x27;s desktop agent strategy sets up a direct challenge to Microsoft Copilot</b></h2><p>The launch of <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> places Anthropic in direct competition with <a href=\"https://www.microsoft.com/en-us/\">Microsoft</a>, which has spent years attempting to integrate its <a href=\"https://copilot.microsoft.com/\">Copilot AI</a> into the fabric of the Windows operating system with mixed adoption results.</p><p>However, Anthropic&#x27;s approach differs in its isolation. By confining the agent to specific folders and requiring explicit connectors, they are attempting to strike a balance between the utility of an OS-level agent and the security of a sandboxed application.</p><p>What distinguishes Anthropic&#x27;s approach is its bottom-up evolution. Rather than designing an AI assistant and retrofitting agent capabilities, Anthropic built a powerful coding agent first — <a href=\"https://code.claude.com/docs/en/overview\">Claude Code</a> — and is now abstracting its capabilities for broader audiences. This technical lineage may give Cowork more robust agentic behavior from the start.</p><p>Claude Code has generated significant enthusiasm among developers since its initial launch as <a href=\"https://www.anthropic.com/news/claude-3-7-sonnet\">a command-line tool in late 2024</a>. The company expanded access with a <a href=\"https://arstechnica.com/ai/2025/10/claude-code-gets-a-web-version-but-its-the-new-sandboxing-that-really-matters/\">web interface</a> in October 2025, followed by a <a href=\"https://venturebeat.com/ai/anthropics-claude-code-can-now-read-your-slack-messages-and-write-code-for\">Slack integration</a> in December. Cowork is the next logical step: bringing the same agentic architecture to users who may never touch a terminal.</p><h2><b>Who can access Cowork now, and what&#x27;s coming next for Windows and other platforms</b></h2><p>For now, Cowork remains exclusive to <a href=\"https://support.claude.com/en/articles/11014257-about-claude-s-max-plan-usage\">Claude Max subscribers</a> using the macOS desktop application. Users on other subscription tiers — Free, Pro, Team, or Enterprise — can join a waitlist for future access.</p><p>Anthropic has signaled clear intentions to expand the feature&#x27;s reach. The blog post explicitly mentions plans to add cross-device sync and bring Cowork to Windows as the company learns from the research preview.</p><p>Cherny set expectations appropriately, describing the product as &quot;early and raw, similar to what Claude Code felt like when it first launched.&quot;</p><p>To access <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a>, Max subscribers can download or update the Claude macOS app and click on &quot;Cowork&quot; in the sidebar.</p><h2><b>The real question facing enterprise AI adoption</b></h2><p>For technical decision-makers, the implications of Cowork extend beyond any single product launch. The bottleneck for AI adoption is shifting — no longer is model intelligence the limiting factor, but rather workflow integration and user trust.</p><p>Anthropic&#x27;s goal, as the company puts it, is to make working with Claude feel less like operating a tool and more like delegating to a colleague. Whether mainstream users are ready to hand over folder access to an AI that might misinterpret their instructions remains an open question.</p><p>But the speed of Cowork&#x27;s development — a major feature built in ten days, possibly by the company&#x27;s own AI — previews a future where the capabilities of these systems compound faster than organizations can evaluate them. </p><p>The chatbot has learned to use a file manager. What it learns to use next is anyone&#x27;s guess.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-12T11:30:00.000Z",
          "pubDate": "Mon, 12 Jan 2026 11:30:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/wHv1Wez7Ps9wYVYAo9fwT/14b41f606dbf1f5b17994be510407449/nuneybits_Hyper-realistic_image_of_a_retro_computer_with_a_glos_61ffb6e2-7c33-4d45-85f7-69c28693b3ec.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI",
            "Automation"
          ],
          "contentSnippet": "Anthropic released Cowork on Monday, a new AI agent capability that extends the power of its wildly successful Claude Code tool to non-technical users — and according to company insiders, the team built the entire feature in approximately a week and a half, largely using Claude Code itself.\nThe launch marks a major inflection point in the race to deliver practical AI agents to mainstream users, positioning Anthropic to compete not just with OpenAI and Google in conversational AI, but with Microsoft's Copilot in the burgeoning market for AI-powered productivity tools.\n\"Cowork lets you complete non-technical tasks much like how developers use Claude Code,\" the company announced via its official Claude account on X. The feature arrives as a research preview available exclusively to Claude Max subscribers — Anthropic's power-user tier priced between $100 and $200 per month — through the macOS desktop application.\nFor the past year, the industry narrative has focused on large language models that can write poetry or debug code. With Cowork, Anthropic is betting that the real enterprise value lies in an AI that can open a folder, read a messy pile of receipts, and generate a structured expense report without human hand-holding.\n\nHow developers using a coding tool for vacation research inspired Anthropic's latest product\nThe genesis of Cowork lies in Anthropic's recent success with the developer community. In late 2024, the company released Claude Code, a terminal-based tool that allowed software engineers to automate rote programming tasks. The tool was a hit, but Anthropic noticed a peculiar trend: users were forcing the coding tool to perform non-coding labor.\nAccording to Boris Cherny, an engineer at Anthropic, the company observed users deploying the developer tool for an unexpectedly diverse array of tasks.\n\n\"Since we launched Claude Code, we saw people using it for all sorts of non-coding work: doing vacation research, building slide decks, cleaning up your email, cancelling subscriptions, recovering wedding photos from a hard drive, monitoring plant growth, controlling your oven,\" Cherny wrote on X. \"These use cases are diverse and surprising — the reason is that the underlying Claude Agent is the best agent, and Opus 4.5 is the best model.\"\nRecognizing this shadow usage, Anthropic effectively stripped the command-line complexity from their developer tool to create a consumer-friendly interface. In its blog post announcing the feature, Anthropic explained that developers \"quickly began using it for almost everything else,\" which \"prompted us to build Cowork: a simpler way for anyone — not just developers — to work with Claude in the very same way.\"\nInside the folder-based architecture that lets Claude read, edit, and create files on your computer\nUnlike a standard chat interface where a user pastes text for analysis, Cowork requires a different level of trust and access. Users designate a specific folder on their local machine that Claude can access. Within that sandbox, the AI agent can read existing files, modify them, or create entirely new ones.\nAnthropic offers several illustrative examples: reorganizing a cluttered downloads folder by sorting and intelligently renaming each file, generating a spreadsheet of expenses from a collection of receipt screenshots, or drafting a report from scattered notes across multiple documents.\n\"In Cowork, you give Claude access to a folder on your computer. Claude can then read, edit, or create files in that folder,\" the company explained on X. \"Try it to create a spreadsheet from a pile of screenshots, or produce a first draft from scattered notes.\"\n\nThe architecture relies on what is known as an \"agentic loop.\" When a user assigns a task, the AI does not merely generate a text response. Instead, it formulates a plan, executes steps in parallel, checks its own work, and asks for clarification if it hits a roadblock. Users can queue multiple tasks and let Claude process them simultaneously — a workflow Anthropic describes as feeling \"much less like a back-and-forth and much more like leaving messages for a coworker.\"\nThe system is built on Anthropic's Claude Agent SDK, meaning it shares the same underlying architecture as Claude Code. Anthropic notes that Cowork \"can take on many of the same tasks that Claude Code can handle, but in a more approachable form for non-coding tasks.\"\nThe recursive loop where AI builds AI: Claude Code reportedly wrote much of Claude Cowork\nPerhaps the most remarkable detail surrounding Cowork's launch is the speed at which the tool was reportedly built — highlighting a recursive feedback loop where AI tools are being used to build better AI tools.\nDuring a livestream hosted by Dan Shipper, Felix Rieseberg, an Anthropic employee, confirmed that the team built Cowork in approximately a week and a half.\nAlex Volkov, who covers AI developments, expressed surprise at the timeline: \"Holy shit Anthropic built 'Cowork' in the last... week and a half?!\"\n\nThis prompted immediate speculation about how much of Cowork was itself built by Claude Code. Simon Smith, EVP of Generative AI at Klick Health, put it bluntly on X: \"Claude Code wrote all of Claude Cowork. Can we all agree that we're in at least somewhat of a recursive improvement loop here?\"\nThe implication is profound: Anthropic's AI coding agent may have substantially contributed to building its own non-technical sibling product. If true, this is one of the most visible examples yet of AI systems being used to accelerate their own development and expansion — a strategy that could widen the gap between AI labs that successfully deploy their own agents internally and those that do not.\nConnectors, browser automation, and skills extend Cowork's reach beyond the local file system\nCowork doesn't operate in isolation. The feature integrates with Anthropic's existing ecosystem of connectors — tools that link Claude to external information sources and services such as Asana, Notion, PayPal, and other supported partners. Users who have configured these connections in the standard Claude interface can leverage them within Cowork sessions.\nAdditionally, Cowork can pair with Claude in Chrome, Anthropic's browser extension, to execute tasks requiring web access. This combination allows the agent to navigate websites, click buttons, fill forms, and extract information from the internet — all while operating from the desktop application.\n\"Cowork includes a number of novel UX and safety features that we think make the product really special,\" Cherny explained, highlighting \"a built-in VM [virtual machine] for isolation, out of the box support for browser automation, support for all your claude.ai data connectors, asking you for clarification when it's unsure.\"\nAnthropic has also introduced an initial set of \"skills\" specifically designed for Cowork that enhance Claude's ability to create documents, presentations, and other files. These build on the Skills for Claude framework the company announced in October, which provides specialized instruction sets Claude can load for particular types of tasks.\nWhy Anthropic is warning users that its own AI agent could delete their files\nThe transition from a chatbot that suggests edits to an agent that makes edits introduces significant risk. An AI that can organize files can, theoretically, delete them.\nIn a notable display of transparency, Anthropic devoted considerable space in its announcement to warning users about Cowork's potential dangers — an unusual approach for a product launch.\nThe company explicitly acknowledges that Claude \"can take potentially destructive actions (such as deleting local files) if it's instructed to.\" Because Claude might occasionally misinterpret instructions, Anthropic urges users to provide \"very clear guidance\" about sensitive operations.\nMore concerning is the risk of prompt injection attacks — a technique where malicious actors embed hidden instructions in content Claude might encounter online, potentially causing the agent to bypass safeguards or take harmful actions.\n\"We've built sophisticated defenses against prompt injections,\" Anthropic wrote, \"but agent safety — that is, the task of securing Claude's real-world actions — is still an active area of development in the industry.\"\nThe company characterized these risks as inherent to the current state of AI agent technology rather than unique to Cowork. \"These risks aren't new with Cowork, but it might be the first time you're using a more advanced tool that moves beyond a simple conversation,\" the announcement notes.\nAnthropic's desktop agent strategy sets up a direct challenge to Microsoft Copilot\nThe launch of Cowork places Anthropic in direct competition with Microsoft, which has spent years attempting to integrate its Copilot AI into the fabric of the Windows operating system with mixed adoption results.\nHowever, Anthropic's approach differs in its isolation. By confining the agent to specific folders and requiring explicit connectors, they are attempting to strike a balance between the utility of an OS-level agent and the security of a sandboxed application.\nWhat distinguishes Anthropic's approach is its bottom-up evolution. Rather than designing an AI assistant and retrofitting agent capabilities, Anthropic built a powerful coding agent first — Claude Code — and is now abstracting its capabilities for broader audiences. This technical lineage may give Cowork more robust agentic behavior from the start.\nClaude Code has generated significant enthusiasm among developers since its initial launch as a command-line tool in late 2024. The company expanded access with a web interface in October 2025, followed by a Slack integration in December. Cowork is the next logical step: bringing the same agentic architecture to users who may never touch a terminal.\nWho can access Cowork now, and what's coming next for Windows and other platforms\nFor now, Cowork remains exclusive to Claude Max subscribers using the macOS desktop application. Users on other subscription tiers — Free, Pro, Team, or Enterprise — can join a waitlist for future access.\nAnthropic has signaled clear intentions to expand the feature's reach. The blog post explicitly mentions plans to add cross-device sync and bring Cowork to Windows as the company learns from the research preview.\nCherny set expectations appropriately, describing the product as \"early and raw, similar to what Claude Code felt like when it first launched.\"\nTo access Cowork, Max subscribers can download or update the Claude macOS app and click on \"Cowork\" in the sidebar.\nThe real question facing enterprise AI adoption\nFor technical decision-makers, the implications of Cowork extend beyond any single product launch. The bottleneck for AI adoption is shifting — no longer is model intelligence the limiting factor, but rather workflow integration and user trust.\nAnthropic's goal, as the company puts it, is to make working with Claude feel less like operating a tool and more like delegating to a colleague. Whether mainstream users are ready to hand over folder access to an AI that might misinterpret their instructions remains an open question.\nBut the speed of Cowork's development — a major feature built in ten days, possibly by the company's own AI — previews a future where the capabilities of these systems compound faster than organizations can evaluate them. \nThe chatbot has learned to use a file manager. What it learns to use next is anyone's guess."
        }
      },
      {
        "json": {
          "guid": "881216de-81bd-4da8-908c-6fc3e6a4411a",
          "link": "https://www.zdnet.com/article/how-to-turn-airtag-into-wifi-password-key-nfc-tags/",
          "title": "I created the ultimate Wi-Fi password key with the most unexpected gadget - how it works",
          "itunes": {},
          "content": "NFC tags are so useful and customizable, and it's quite simple to make your own. Here's what you can do with it and how.",
          "isoDate": "2026-02-10T03:01:15.000Z",
          "pubDate": "Tue, 10 Feb 2026 03:01:15 GMT",
          "contentSnippet": "NFC tags are so useful and customizable, and it's quite simple to make your own. Here's what you can do with it and how."
        }
      },
      {
        "json": {
          "guid": "27471e56-532b-4090-9aab-db552814455b",
          "link": "https://www.zdnet.com/article/i-turned-doodles-into-video-clips-in-minutes-with-runways-new-ai-video-tool-heres-how/",
          "title": "I turned doodles into video clips in minutes with Runway's new AI video tool - here's how",
          "itunes": {},
          "content": "The company's Motion Sketch feature lowers the barrier between abstract imagination and concrete video outputs. But like all generative AI tools, it has its shortcomings.",
          "isoDate": "2026-02-10T03:01:13.000Z",
          "pubDate": "Tue, 10 Feb 2026 03:01:13 GMT",
          "contentSnippet": "The company's Motion Sketch feature lowers the barrier between abstract imagination and concrete video outputs. But like all generative AI tools, it has its shortcomings."
        }
      },
      {
        "json": {
          "guid": "449249a1-cdf7-4b86-b294-f0b2409be861",
          "link": "https://www.zdnet.com/article/android-extend-unlock-faster-phone-access/",
          "title": "This Android trick lets me access my phone faster - here's how it works",
          "itunes": {},
          "content": "Extend Unlock is one of those features every Android user will love once they give it a try.",
          "isoDate": "2026-02-10T03:00:54.000Z",
          "pubDate": "Tue, 10 Feb 2026 03:00:54 GMT",
          "contentSnippet": "Extend Unlock is one of those features every Android user will love once they give it a try."
        }
      },
      {
        "json": {
          "guid": "e94ba78f-e76f-4849-a02b-828905fc727f",
          "link": "https://www.zdnet.com/article/onyx-boox-page-android-e-ink-tablet-review/",
          "title": "I didn't expect this Android E Ink tablet to beat my Kindle, but one feature sets it apart",
          "itunes": {},
          "content": "The Onyx Boox Page is packed with features for an E Ink tablet, with a smart, versatile design.",
          "isoDate": "2026-02-10T02:30:37.000Z",
          "pubDate": "Tue, 10 Feb 2026 02:30:37 GMT",
          "contentSnippet": "The Onyx Boox Page is packed with features for an E Ink tablet, with a smart, versatile design."
        }
      },
      {
        "json": {
          "guid": "6788a566-899b-481a-b0cc-ce5b53409dc0",
          "link": "https://www.zdnet.com/article/how-to-restart-android-phone-without-using-the-power-button-2-ways/",
          "title": "How to restart your Android phone without using the power button: 2 easy ways",
          "itunes": {},
          "content": "You don't need to press the power button to restart your Android device. If yours is broken or you simply want options, here are two.",
          "isoDate": "2026-02-10T02:12:53.000Z",
          "pubDate": "Tue, 10 Feb 2026 02:12:53 GMT",
          "contentSnippet": "You don't need to press the power button to restart your Android device. If yours is broken or you simply want options, here are two."
        }
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608359",
          "link": "https://towardsdatascience.com/the-machine-learning-lessons-ive-learned-last-month/",
          "title": "The Machine Learning Lessons I’ve Learned Last Month",
          "content": "<p>Delayed January: deadlines, downtimes, and flow times</p>\n<p>The post <a href=\"https://towardsdatascience.com/the-machine-learning-lessons-ive-learned-last-month/\">The Machine Learning Lessons I’ve Learned Last Month</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Pascal Janetzky",
          "isoDate": "2026-02-09T20:38:42.000Z",
          "pubDate": "Mon, 09 Feb 2026 20:38:42 +0000",
          "categories": [
            "Machine Learning",
            "Inspiration",
            "Ml Product Manager",
            "Productivity",
            "Project Management"
          ],
          "dc:creator": "Pascal Janetzky",
          "contentSnippet": "Delayed January: deadlines, downtimes, and flow times\nThe post The Machine Learning Lessons I’ve Learned Last Month appeared first on Towards Data Science."
        }
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608349",
          "link": "https://towardsdatascience.com/the-death-of-the-everything-prompt-googles-move-toward-structured-ai/",
          "title": "The Death of the “Everything Prompt”: Google’s Move Toward Structured AI",
          "content": "<p>How the new Interactions API enables deep-reasoning, stateful, agentic workflows.</p>\n<p>The post <a href=\"https://towardsdatascience.com/the-death-of-the-everything-prompt-googles-move-toward-structured-ai/\">The Death of the “Everything Prompt”: Google’s Move Toward Structured AI</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Thomas Reid",
          "isoDate": "2026-02-09T13:00:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 13:00:00 +0000",
          "categories": [
            "Artificial Intelligence",
            "Agentic Ai",
            "API",
            "Deep Dives",
            "Llm",
            "Programming"
          ],
          "dc:creator": "Thomas Reid",
          "contentSnippet": "How the new Interactions API enables deep-reasoning, stateful, agentic workflows.\nThe post The Death of the “Everything Prompt”: Google’s Move Toward Structured AI appeared first on Towards Data Science."
        }
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608351",
          "link": "https://towardsdatascience.com/what-i-am-doing-to-stay-relevant-as-a-senior-analytics-consultant-in-2026/",
          "title": "What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026",
          "content": "<p>Learn how to work with AI, while strengthening your unique human skills that technology cannot replace</p>\n<p>The post <a href=\"https://towardsdatascience.com/what-i-am-doing-to-stay-relevant-as-a-senior-analytics-consultant-in-2026/\">What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Rashi Desai",
          "isoDate": "2026-02-07T15:00:00.000Z",
          "pubDate": "Sat, 07 Feb 2026 15:00:00 +0000",
          "categories": [
            "Data analysis",
            "Artificial Intelligence",
            "Career Advice",
            "Data Science",
            "Editors Pick",
            "Generative Ai"
          ],
          "dc:creator": "Rashi Desai",
          "contentSnippet": "Learn how to work with AI, while strengthening your unique human skills that technology cannot replace\nThe post What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026 appeared first on Towards Data Science."
        }
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608347",
          "link": "https://towardsdatascience.com/pydantic-performance-4-tips-on-how-to-validate-large-amounts-of-data-efficiently/",
          "title": "Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently",
          "content": "<p>The real value lies in writing clearer code and using your tools right</p>\n<p>The post <a href=\"https://towardsdatascience.com/pydantic-performance-4-tips-on-how-to-validate-large-amounts-of-data-efficiently/\">Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Mike Huls",
          "isoDate": "2026-02-06T15:00:00.000Z",
          "pubDate": "Fri, 06 Feb 2026 15:00:00 +0000",
          "categories": [
            "Data Engineering",
            "Data Architecture",
            "Data Science",
            "Data Validation",
            "Pydantic",
            "Python"
          ],
          "dc:creator": "Mike Huls",
          "contentSnippet": "The real value lies in writing clearer code and using your tools right\nThe post Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently appeared first on Towards Data Science."
        }
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608345",
          "link": "https://towardsdatascience.com/prompt-fidelity-measuring-how-much-of-your-intent-an-ai-agent-actually-executes/",
          "title": "Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes",
          "content": "<p>How much of your AI agent's output is real data versus confident guesswork?</p>\n<p>The post <a href=\"https://towardsdatascience.com/prompt-fidelity-measuring-how-much-of-your-intent-an-ai-agent-actually-executes/\">Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "James Barney",
          "isoDate": "2026-02-06T12:00:00.000Z",
          "pubDate": "Fri, 06 Feb 2026 12:00:00 +0000",
          "categories": [
            "Agentic AI",
            "Ai Agent",
            "Artificial Intelligence",
            "Editors Pick",
            "Prompt Engineering",
            "Recommender Systems"
          ],
          "dc:creator": "James Barney",
          "contentSnippet": "How much of your AI agent's output is real data versus confident guesswork?\nThe post Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes appeared first on Towards Data Science."
        }
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/09/technology/social-media-addiction-trial.html",
          "link": "https://www.nytimes.com/2026/02/09/technology/social-media-addiction-trial.html",
          "title": "Meta and YouTube Created ‘Digital Casinos,’ Lawyers Argue in Landmark Trial",
          "content": "Opening statements began in a trial claiming social media companies design addictive products that cause personal injury.",
          "creator": "Eli Tan and Cecilia Kang",
          "isoDate": "2026-02-10T00:53:17.000Z",
          "pubDate": "Tue, 10 Feb 2026 00:53:17 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Suits and Litigation (Civil)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Mental Health and Disorders"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Addiction (Psychology)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Youth"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Instagram Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Meta Platforms Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "YouTube.com"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Zuckerberg, Mark E"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Mohan, Neal"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            }
          ],
          "dc:creator": "Eli Tan and Cecilia Kang",
          "contentSnippet": "Opening statements began in a trial claiming social media companies design addictive products that cause personal injury."
        }
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/business/google-employees-protest.html",
          "link": "https://www.nytimes.com/2026/02/06/business/google-employees-protest.html",
          "title": "Google Workers Demand End to Cloud Services for Immigration Agencies",
          "content": "More than 800 employees delivered a petition to management, condemning the Trump administration’s use of Google technology in immigration enforcement.",
          "creator": "Tripp Mickle",
          "isoDate": "2026-02-06T18:52:26.000Z",
          "pubDate": "Fri, 06 Feb 2026 18:52:26 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Google Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Demonstrations, Protests and Riots"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Cloud Computing"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Illegal Immigration"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Immigration Detention"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Federal Actions in US Cities"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Police Brutality, Misconduct and Shootings"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "United States Politics and Government"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Customs and Border Protection (US)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Immigration and Customs Enforcement (US)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Homeland Security Department"
            }
          ],
          "dc:creator": "Tripp Mickle",
          "contentSnippet": "More than 800 employees delivered a petition to management, condemning the Trump administration’s use of Google technology in immigration enforcement."
        }
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/business/tiktok-addictive-design-europe.html",
          "link": "https://www.nytimes.com/2026/02/06/business/tiktok-addictive-design-europe.html",
          "title": "Europe Accuses TikTok of ‘Addictive Design’ and Pushes for Change",
          "content": "European Union regulators said the app’s infinite scroll and personalized algorithm led to “compulsive” behavior, especially among children.",
          "creator": "Adam Satariano",
          "isoDate": "2026-02-06T19:08:37.000Z",
          "pubDate": "Fri, 06 Feb 2026 19:08:37 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Regulation and Deregulation of Industry"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "International Relations"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Law and Legislation"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Beijing Bytedance Technology Co Ltd"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "TikTok (ByteDance)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Europe"
            }
          ],
          "dc:creator": "Adam Satariano",
          "contentSnippet": "European Union regulators said the app’s infinite scroll and personalized algorithm led to “compulsive” behavior, especially among children."
        }
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/business/ai-stock-market-anthropic-openai.html",
          "link": "https://www.nytimes.com/2026/02/06/business/ai-stock-market-anthropic-openai.html",
          "title": "Fear of AI Replacing Software Makers Hits Stocks. Here’s What to Know.",
          "content": "The prospect of disruptions from artificial intelligence has hung over the economy for years. But this week advances in software tools precipitated a sell-off on Wall Street.",
          "creator": "Mike Isaac, Joe Rennison and Maureen Farrell",
          "isoDate": "2026-02-06T20:11:04.000Z",
          "pubDate": "Fri, 06 Feb 2026 20:11:04 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Stocks and Bonds"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Company Reports"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Credit and Debt"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Software"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Innovation"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Bitcoin (Currency)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Anthropic AI LLC"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Qualcomm Inc"
            }
          ],
          "dc:creator": "Mike Isaac, Joe Rennison and Maureen Farrell",
          "contentSnippet": "The prospect of disruptions from artificial intelligence has hung over the economy for years. But this week advances in software tools precipitated a sell-off on Wall Street."
        }
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/09/health/ai-chatbots-doctors-medicine.html",
          "link": "https://www.nytimes.com/2026/02/09/health/ai-chatbots-doctors-medicine.html",
          "title": "A.I. Is Making Doctors Answer a Question: What Are They Really Good For?",
          "content": "Many physicians find chatbots threatening, but that doesn’t mean they’re giving up on medicine.",
          "creator": "Gina Kolata",
          "isoDate": "2026-02-09T17:17:56.000Z",
          "pubDate": "Mon, 09 Feb 2026 17:17:56 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Doctors"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Medicine and Health"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Research"
            }
          ],
          "dc:creator": "Gina Kolata",
          "contentSnippet": "Many physicians find chatbots threatening, but that doesn’t mean they’re giving up on medicine."
        }
      },
      {
        "json": {
          "date": "2026-02-09T14:00:22Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto",
          "link": "https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto",
          "title": "Files cast light on Jeffrey Epstein’s ties to cryptocurrency",
          "content": "<p>Newly released documents detail convicted sex offender’s early backing of bitcoin and Coinbase </p><p>Millions of files related to <a href=\"https://www.theguardian.com/us-news/jeffrey-epstein\">Jeffrey Epstein</a> have brought to light his ties to the highest echelons of the cryptocurrency industry.</p><p>Documents published last week by the US Department of Justice reveal Epstein <a href=\"https://www.justice.gov/epstein/files/DataSet%209/EFTA00680068.pdf\">bankrolled</a> the “principal home and funding source” for bitcoin, the world’s largest cryptocurrency, during its nascent stages; he also <a href=\"https://www.justice.gov/epstein/files/DataSet%209/EFTA00901772.pdf\">invested</a> $3m in Coinbase in 2014, the largest cryptocurrency exchange in the US, and <a href=\"https://www.justice.gov/epstein/files/DataSet%2010/EFTA01917472.pdf\">cut a check</a> that same year to Blockstream, a prominent bitcoin-focused technology firm. Both crypto startups accepted Epstein’s investments in 2014 – six years after his <a href=\"https://www.pbs.org/newshour/show/the-completely-unprecedented-plea-deal-jeffrey-epstein-made-with-alex-acosta\">2008 conviction</a> in Florida for soliciting prostitution from a minor.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto\">Continue reading...</a>",
          "creator": "Adam Willems",
          "dc:date": "2026-02-09T14:00:22Z",
          "isoDate": "2026-02-09T14:00:22.000Z",
          "pubDate": "Mon, 09 Feb 2026 14:00:22 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/cryptocurrencies"
              },
              "_": "Cryptocurrencies"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/jeffrey-epstein"
              },
              "_": "Jeffrey Epstein"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-news"
              },
              "_": "US news"
            }
          ],
          "dc:creator": "Adam Willems",
          "contentSnippet": "Newly released documents detail convicted sex offender’s early backing of bitcoin and Coinbase \nMillions of files related to Jeffrey Epstein have brought to light his ties to the highest echelons of the cryptocurrency industry.\nDocuments published last week by the US Department of Justice reveal Epstein bankrolled the “principal home and funding source” for bitcoin, the world’s largest cryptocurrency, during its nascent stages; he also invested $3m in Coinbase in 2014, the largest cryptocurrency exchange in the US, and cut a check that same year to Blockstream, a prominent bitcoin-focused technology firm. Both crypto startups accepted Epstein’s investments in 2014 – six years after his 2008 conviction in Florida for soliciting prostitution from a minor.\n Continue reading..."
        }
      },
      {
        "json": {
          "date": "2026-02-08T08:00:25Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good",
          "link": "https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good",
          "title": "‘I fell into it’: ex-criminal hackers urge Manchester pupils to use web skills for good",
          "content": "<p>Initiative aims to identify proficient gamers and coders who can help companies identify flaws in their cybersecurity </p><p>Cybercriminals, the shadowy online figures often depicted in Hollywood movies as hooded villains capable of wiping millions of pounds off the value of businesses at a keystroke, are not usually known for their candour.</p><p>But in a sixth-form college in Manchester this week, two former hackers gave the young people gathered an honest appraisal of what living a life of internet crime really looks like.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good\">Continue reading...</a>",
          "creator": "Dan Milmo Global technology editor",
          "dc:date": "2026-02-08T08:00:25Z",
          "isoDate": "2026-02-08T08:00:25.000Z",
          "pubDate": "Sun, 08 Feb 2026 08:00:25 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/hacking"
              },
              "_": "Hacking"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/cybercrime"
              },
              "_": "Cybercrime"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/co-operative-group"
              },
              "_": "Co-operative Group"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/uk"
              },
              "_": "UK news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/internet"
              },
              "_": "Internet"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/programming"
              },
              "_": "Programming"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/games/game-culture"
              },
              "_": "Game culture"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/society/youngpeople"
              },
              "_": "Young people"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/manchester"
              },
              "_": "Manchester"
            }
          ],
          "dc:creator": "Dan Milmo Global technology editor",
          "contentSnippet": "Initiative aims to identify proficient gamers and coders who can help companies identify flaws in their cybersecurity \nCybercriminals, the shadowy online figures often depicted in Hollywood movies as hooded villains capable of wiping millions of pounds off the value of businesses at a keystroke, are not usually known for their candour.\nBut in a sixth-form college in Manchester this week, two former hackers gave the young people gathered an honest appraisal of what living a life of internet crime really looks like.\n Continue reading..."
        }
      },
      {
        "json": {
          "date": "2026-02-07T16:00:06Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt",
          "link": "https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt",
          "title": "Battle of the chatbots: Anthropic and OpenAI go head-to-head over ads in their AI products",
          "content": "<p>New Anthropic campaign suggests other AI platforms will incorporate targeted ads in their chatbot conversations</p><p>The Seahawks and the Patriots aren’t the only ones gearing up for a fight.</p><p><a href=\"https://www.theguardian.com/technology/artificialintelligenceai\">AI</a> rivals Anthropic and <a href=\"https://www.theguardian.com/technology/openai\">OpenAI</a> have launched a war of ads trying to court corporate America during one of the biggest entertainment nights of the year.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt\">Continue reading...</a>",
          "creator": "Sanya Mansoor",
          "dc:date": "2026-02-07T16:00:06Z",
          "isoDate": "2026-02-07T16:00:06.000Z",
          "pubDate": "Sat, 07 Feb 2026 16:00:06 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/media/advertising"
              },
              "_": "Advertising"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/chatbots"
              },
              "_": "Chatbots"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/chatgpt"
              },
              "_": "ChatGPT"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/openai"
              },
              "_": "OpenAI"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/sam-altman"
              },
              "_": "Sam Altman"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-news"
              },
              "_": "US news"
            }
          ],
          "dc:creator": "Sanya Mansoor",
          "contentSnippet": "New Anthropic campaign suggests other AI platforms will incorporate targeted ads in their chatbot conversations\nThe Seahawks and the Patriots aren’t the only ones gearing up for a fight.\nAI rivals Anthropic and OpenAI have launched a war of ads trying to court corporate America during one of the biggest entertainment nights of the year.\n Continue reading..."
        }
      },
      {
        "json": {
          "date": "2026-02-09T10:00:31Z",
          "guid": "https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology",
          "link": "https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology",
          "title": "I asked AI to name my wife. To the hopelessly incorrect people it cited, my deepest apologies | Martin Rowson",
          "content": "<p>Authors, a newsreader, a lawyer and an esteemed colleague: they’re all great – but I’m not married to any of them. Can we really depend on this technology?</p><p>Recently, the Rowsons accidentally invented a new game that anyone can play at home. I have yet to come up with a world-beating name for it, so for now let’s just call it “How bloody stupid is AI?” The playing of the game will change from player to player, depending on their circumstances – but essentially the rules remain the same. Ask AI a simple question about yourself, and see just how wrong it gets it.</p><p>In my case, all you need know is that while I, through the nature of my job, have a fairly large online presence, my partner (we married in 1987) has assiduously avoided having one at all. Which means that if you Google “Martin Rowson wife” in images, you may get a picture of me next to our then 14-year-old daughter or me with my friend and fellow cartoonist <a href=\"https://www.theguardian.com/profile/steven-appleby\">Steven Appleby</a>, who happens to be trans but has kept her given first name.</p> <a href=\"https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology\">Continue reading...</a>",
          "creator": "Martin Rowson",
          "dc:date": "2026-02-09T10:00:31Z",
          "isoDate": "2026-02-09T10:00:31.000Z",
          "pubDate": "Mon, 09 Feb 2026 10:00:31 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/uk"
              },
              "_": "UK news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/computing"
              },
              "_": "Computing"
            }
          ],
          "dc:creator": "Martin Rowson",
          "contentSnippet": "Authors, a newsreader, a lawyer and an esteemed colleague: they’re all great – but I’m not married to any of them. Can we really depend on this technology?\nRecently, the Rowsons accidentally invented a new game that anyone can play at home. I have yet to come up with a world-beating name for it, so for now let’s just call it “How bloody stupid is AI?” The playing of the game will change from player to player, depending on their circumstances – but essentially the rules remain the same. Ask AI a simple question about yourself, and see just how wrong it gets it.\nIn my case, all you need know is that while I, through the nature of my job, have a fairly large online presence, my partner (we married in 1987) has assiduously avoided having one at all. Which means that if you Google “Martin Rowson wife” in images, you may get a picture of me next to our then 14-year-old daughter or me with my friend and fellow cartoonist Steven Appleby, who happens to be trans but has kept her given first name.\n Continue reading..."
        }
      },
      {
        "json": {
          "date": "2026-02-07T10:00:02Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery",
          "link": "https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery",
          "title": "Victims urge tougher action on deepfake abuse as new law comes into force",
          "content": "<p>Campaigners welcome criminalisation of non-consensual AI-generated explicit images but say law does not go far enough</p><p>Victims of deepfake image abuse have called for stronger protection against AI-generated explicit images, as the law criminalising the creation of non-consensual intimate images comes into effect.</p><p>Campaigners from Stop Image-Based Abuse delivered a <a href=\"https://www.change.org/p/deepfake-sexual-abuse-is-not-porn-demand-action-to-stop-image-based-abuse?utm_source=National-media&amp;utm_campaign=stop-deepfake-sexual-abuse&amp;utm_content=Womans-Rights&amp;utm_term=0-99&amp;utm_medium=National-petition\">petition</a> to Downing Street with more than 73,000 signatures, urging the government to introduce civil routes to justice such as takedown orders for abusive imagery on platforms and devices.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery\">Continue reading...</a>",
          "creator": "Priya Bharadia",
          "dc:date": "2026-02-07T10:00:02Z",
          "isoDate": "2026-02-07T10:00:02.000Z",
          "pubDate": "Sat, 07 Feb 2026 10:00:02 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/deepfake"
              },
              "_": "Deepfake"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/society/violence-against-women-and-girls"
              },
              "_": "Violence against women and girls"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/ukcrime"
              },
              "_": "Crime"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/uk"
              },
              "_": "UK news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/society/women"
              },
              "_": "Women"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/internet"
              },
              "_": "Internet"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/politics/politics"
              },
              "_": "Politics"
            }
          ],
          "dc:creator": "Priya Bharadia",
          "contentSnippet": "Campaigners welcome criminalisation of non-consensual AI-generated explicit images but say law does not go far enough\nVictims of deepfake image abuse have called for stronger protection against AI-generated explicit images, as the law criminalising the creation of non-consensual intimate images comes into effect.\nCampaigners from Stop Image-Based Abuse delivered a petition to Downing Street with more than 73,000 signatures, urging the government to introduce civil routes to justice such as takedown orders for abusive imagery on platforms and devices.\n Continue reading..."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c3wlpqpe2z4o#0",
          "link": "https://www.bbc.com/news/articles/c3wlpqpe2z4o?at_medium=RSS&at_campaign=rss",
          "title": "Instagram and YouTube owners built 'addiction machines', trial hears",
          "content": "The tech giants are under scrutiny over social media addiction in a landmark jury trial in Los Angeles",
          "isoDate": "2026-02-10T07:25:42.000Z",
          "pubDate": "Tue, 10 Feb 2026 07:25:42 GMT",
          "contentSnippet": "The tech giants are under scrutiny over social media addiction in a landmark jury trial in Los Angeles"
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c1d67vdlk1ko#0",
          "link": "https://www.bbc.com/news/articles/c1d67vdlk1ko?at_medium=RSS&at_campaign=rss",
          "title": "Discord to start requiring face scan or ID to access adult content",
          "content": "The online chat service, which has 200 million monthly users, will blur adult content by default.",
          "isoDate": "2026-02-09T17:42:21.000Z",
          "pubDate": "Mon, 09 Feb 2026 17:42:21 GMT",
          "contentSnippet": "The online chat service, which has 200 million monthly users, will blur adult content by default."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c3093gjy2ero#0",
          "link": "https://www.bbc.com/news/articles/c3093gjy2ero?at_medium=RSS&at_campaign=rss",
          "title": "AI chatbots pose 'dangerous' risk when giving medical advice, study suggests",
          "content": "It found people using AI for health reasons found it hard to identify what advice they should trust.",
          "isoDate": "2026-02-09T16:33:29.000Z",
          "pubDate": "Mon, 09 Feb 2026 16:33:29 GMT",
          "contentSnippet": "It found people using AI for health reasons found it hard to identify what advice they should trust."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cqxdj77welpo#0",
          "link": "https://www.bbc.com/news/articles/cqxdj77welpo?at_medium=RSS&at_campaign=rss",
          "title": "EU tells Meta to let rivals run AI chatbots on WhatsApp",
          "content": "A Meta spokesperson said the EU had \"no reason\" to intervene over it changing the app in January.",
          "isoDate": "2026-02-09T12:14:35.000Z",
          "pubDate": "Mon, 09 Feb 2026 12:14:35 GMT",
          "contentSnippet": "A Meta spokesperson said the EU had \"no reason\" to intervene over it changing the app in January."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c24g457y534o#0",
          "link": "https://www.bbc.com/news/articles/c24g457y534o?at_medium=RSS&at_campaign=rss",
          "title": "Baldur's Gate to be turned into TV series - without the game's developers",
          "content": "The show will be made by Craig Mazin, who co-created the acclaimed game adaptation The Last Of Us.",
          "isoDate": "2026-02-06T16:26:08.000Z",
          "pubDate": "Fri, 06 Feb 2026 16:26:08 GMT",
          "contentSnippet": "The show will be made by Craig Mazin, who co-created the acclaimed game adaptation The Last Of Us."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/iplayer/episode/m002qbkc#4",
          "link": "https://www.bbc.co.uk/iplayer/episode/m002qbkc?at_medium=RSS&at_campaign=rss",
          "title": "Tech Now",
          "content": "From Las Vegas, the latest trends and innovations at CES 2026.",
          "isoDate": "2026-01-17T01:00:00.000Z",
          "pubDate": "Sat, 17 Jan 2026 01:00:00 GMT",
          "contentSnippet": "From Las Vegas, the latest trends and innovations at CES 2026."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpz#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpz?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "Meet the humanoid robots designed to help with household chores",
          "isoDate": "2026-01-13T20:30:00.000Z",
          "pubDate": "Tue, 13 Jan 2026 20:30:00 GMT",
          "contentSnippet": "Meet the humanoid robots designed to help with household chores"
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpy#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpy?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "The latest gadgets, the future in assistive tech and upcoming gaming releases in 2026.",
          "isoDate": "2026-01-06T20:32:00.000Z",
          "pubDate": "Tue, 06 Jan 2026 20:32:00 GMT",
          "contentSnippet": "The latest gadgets, the future in assistive tech and upcoming gaming releases in 2026."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpx#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpx?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "We bring you Tech Life highlights from a fascinating year in global tech.",
          "isoDate": "2025-12-30T20:30:00.000Z",
          "pubDate": "Tue, 30 Dec 2025 20:30:00 GMT",
          "contentSnippet": "We bring you Tech Life highlights from a fascinating year in global tech."
        }
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpv#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpv?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "A study found AI chatbots can persuade us with fake facts. How does this affect politics?",
          "isoDate": "2025-12-16T20:30:00.000Z",
          "pubDate": "Tue, 16 Dec 2025 20:30:00 GMT",
          "contentSnippet": "A study found AI chatbots can persuade us with fake facts. How does this affect politics?"
        }
      }
    ],
    "Send Newsletter": [
      {
        "json": {
          "id": "19c46e0034cccc8e",
          "labelIds": [
            "UNREAD",
            "SENT",
            "INBOX"
          ],
          "threadId": "19c46e0034cccc8e"
        },
        "pairedItem": {
          "item": 0
        }
      }
    ],
    "Combine Articles": [
      {
        "json": {
          "data": [
            {
              "link": "https://techcrunch.com/2026/01/13/ai-drug-discovery-startup-converge-bio-pulls-in-25m-from-bessemer-and-execs-from-meta-openai-and-wiz/",
              "title": "Converge Bio raises $25M, backed by Bessemer and execs from Meta, OpenAI, Wiz",
              "content": "AI drug discovery startup Converge Bio raised $25 million in a Series A led by Bessemer Venture Partners, with additional backing from executives at Meta, OpenAI, and Wiz.",
              "pubDate": "Tue, 13 Jan 2026 11:30:00 +0000"
            },
            {
              "link": "https://techcrunch.com/2025/10/31/meta-bought-1-gw-of-solar-this-week/",
              "title": "Meta bought 1 GW of solar this week",
              "content": "The social media company inked three deals in the U.S. to power its data centers and offset its carbon footprint.",
              "pubDate": "Fri, 31 Oct 2025 19:26:30 +0000"
            },
            {
              "link": "https://techcrunch.com/2025/08/26/how-one-ai-startup-is-helping-rice-farmers-battle-climate-change/",
              "title": "How one AI startup is helping rice farmers battle climate change",
              "content": "Mitti Labs is working with The Nature Conservancy to expand the use of climate-friendly rice farming practices in India. The startup uses its AI to verify reductions in methane emissions.",
              "pubDate": "Tue, 26 Aug 2025 15:21:19 +0000"
            },
            {
              "link": "https://techcrunch.com/2025/08/20/harvard-dropouts-to-launch-always-on-ai-smart-glasses-that-listen-and-record-every-conversation/",
              "title": "Harvard dropouts to launch ‘always on’ AI smart glasses that listen and record every conversation",
              "content": "After developing a facial-recognition app for Meta’s Ray-Ban glasses and doxing random people, two former Harvard students are now launching a startup that makes smart glasses with an always-on microphone.",
              "pubDate": "Wed, 20 Aug 2025 16:00:00 +0000"
            },
            {
              "link": "https://techcrunch.com/2025/08/20/meta-to-add-100-mw-of-solar-power-from-u-s-gear/",
              "title": "Meta to add 100MW of solar power from US gear",
              "content": "The social media company is adding another tranche of solar to power a new AI data center in South Carolina.",
              "pubDate": "Wed, 20 Aug 2025 15:56:53 +0000"
            },
            {
              "link": "https://www.technologyreview.com/2026/02/09/1132537/a-lesson-from-pokemon/",
              "title": "Why the Moltbook frenzy was like Pokémon",
              "content": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first, sign up here. Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show…",
              "pubDate": "Mon, 09 Feb 2026 17:02:56 +0000"
            },
            {
              "link": "https://www.technologyreview.com/2026/02/09/1132498/the-download-what-moltbook-tells-us-about-ai-hype-and-the-rise-and-rise-of-ai-therapy/",
              "title": "The Download: what Moltbook tells us about AI hype, and the rise and rise of AI therapy",
              "content": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. Moltbook was peak AI theater For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots.…",
              "pubDate": "Mon, 09 Feb 2026 13:10:00 +0000"
            },
            {
              "link": "https://www.technologyreview.com/2026/02/09/1132462/ai-newsletter-professional-applications/",
              "title": "Making AI Work, MIT Technology Review’s new AI newsletter, is here",
              "content": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.  But how is AI actually being used in fields like health care, climate tech, education,…",
              "pubDate": "Mon, 09 Feb 2026 11:30:00 +0000"
            },
            {
              "link": "https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/",
              "title": "Moltbook was peak AI theater",
              "content": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.” We observed! Launched on January 28 by Matt Schlicht,…",
              "pubDate": "Fri, 06 Feb 2026 16:38:11 +0000"
            },
            {
              "link": "https://www.technologyreview.com/2026/02/06/1132375/the-download-helping-cancer-survivors-to-give-birth-and-cleaning-up-bangladeshs-garment-industry/",
              "title": "The Download: helping cancer survivors to give birth, and cleaning up Bangladesh’s garment industry",
              "content": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. An experimental surgery is helping cancer survivors give birth An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer. Radiation and chemo can have pretty…",
              "pubDate": "Fri, 06 Feb 2026 13:10:00 +0000"
            },
            {
              "link": "https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud",
              "title": "Railway secures $100 million to challenge AWS with AI-native cloud infrastructure",
              "content": "Railway, a San Francisco-based cloud platform that has quietly amassed two million developers without spending a dollar on marketing, announced Thursday that it raised $100 million in a Series B funding round, as surging demand for artificial intelligence applications exposes the limitations of legacy cloud infrastructure.\nTQ Ventures led the round, with participation from FPV Ventures, Redpoint, and Unusual Ventures. The investment values Railway as one of the most significant infrastructure startups to emerge during the AI boom, capitalizing on developer frustration with the complexity and cost of traditional platforms like Amazon Web Services and Google Cloud.\n\"As AI models get better at writing code, more and more people are asking the age-old question: where, and how, do I run my applications?\" said Jake Cooper, Railway's 28-year-old founder and chief executive, in an exclusive interview with VentureBeat. \"The last generation of cloud primitives were slow and outdated, and now with AI moving everything faster, teams simply can't keep up.\"\nThe funding is a dramatic acceleration for a company that has charted an unconventional path through the cloud computing industry. Railway raised just $24 million in total before this round, including a $20 million Series A from Redpoint in 2022. The company now processes more than 10 million deployments monthly and handles over one trillion requests through its edge network — metrics that rival far larger and better-funded competitors.\nWhy three-minute deploy times have become unacceptable in the age of AI coding assistants\nRailway's pitch rests on a simple observation: the tools developers use to deploy and manage software were designed for a slower era. A standard build-and-deploy cycle using Terraform, the industry-standard infrastructure tool, takes two to three minutes. That delay, once tolerable, has become a critical bottleneck as AI coding assistants like Claude, ChatGPT, and Cursor can generate working code in seconds.\n\"When godly intelligence is on tap and can solve any problem in three seconds, those amalgamations of systems become bottlenecks,\" Cooper told VentureBeat. \"What was really cool for humans to deploy in 10 seconds or less is now table stakes for agents.\"\nThe company claims its platform delivers deployments in under one second — fast enough to keep pace with AI-generated code. Customers report a tenfold increase in developer velocity and up to 65 percent cost savings compared to traditional cloud providers.\nThese numbers come directly from enterprise clients, not internal benchmarks. Daniel Lobaton, chief technology officer at G2X, a platform serving 100,000 federal contractors, measured deployment speed improvements of seven times faster and an 87 percent cost reduction after migrating to Railway. His infrastructure bill dropped from $15,000 per month to approximately $1,000.\n\"The work that used to take me a week on our previous infrastructure, I can do in Railway in like a day,\" Lobaton said. \"If I want to spin up a new service and test different architectures, it would take so long on our old setup. In Railway I can launch six services in two minutes.\"\nInside the controversial decision to abandon Google Cloud and build data centers from scratch\nWhat distinguishes Railway from competitors like Render and Fly.io is the depth of its vertical integration. In 2024, the company made the unusual decision to abandon Google Cloud entirely and build its own data centers, a move that echoes the famous Alan Kay maxim: \"People who are really serious about software should make their own hardware.\"\n\"We wanted to design hardware in a way where we could build a differentiated experience,\" Cooper said. \"Having full control over the network, compute, and storage layers lets us do really fast build and deploy loops, the kind that allows us to move at 'agentic speed' while staying 100 percent the smoothest ride in town.\"\nThe approach paid dividends during recent widespread outages that affected major cloud providers — Railway remained online throughout.\nThis soup-to-nuts control enables pricing that undercuts the hyperscalers by roughly 50 percent and newer cloud startups by three to four times. Railway charges by the second for actual compute usage: $0.00000386 per gigabyte-second of memory, $0.00000772 per vCPU-second, and $0.00000006 per gigabyte-second of storage. There are no charges for idle virtual machines — a stark contrast to the traditional cloud model where customers pay for provisioned capacity whether they use it or not.\n\"The conventional wisdom is that the big guys have economies of scale to offer better pricing,\" Cooper noted. \"But when they're charging for VMs that usually sit idle in the cloud, and we've purpose-built everything to fit much more density on these machines, you have a big opportunity.\"\nHow 30 employees built a platform generating tens of millions in annual revenue\nRailway has achieved its scale with a team of just 30 employees generating tens of millions in annual revenue — a ratio of revenue per employee that would be exceptional even for established software companies. The company grew revenue 3.5 times last year and continues to expand at 15 percent month-over-month.\nCooper emphasized that the fundraise was strategic rather than necessary. \"We're default alive; there's no reason for us to raise money,\" he said. \"We raised because we see a massive opportunity to accelerate, not because we needed to survive.\"\nThe company hired its first salesperson only last year and employs just two solutions engineers. Nearly all of Railway's two million users discovered the platform through word of mouth — developers telling other developers about a tool that actually works.\n\"We basically did the standard engineering thing: if you build it, they will come,\" Cooper recalled. \"And to some degree, they came.\"\nFrom side projects to Fortune 500 deployments: Railway's unlikely corporate expansion\nDespite its grassroots developer community, Railway has made significant inroads into large organizations. The company claims that 31 percent of Fortune 500 companies now use its platform, though deployments range from company-wide infrastructure to individual team projects.\nNotable customers include Bilt, the loyalty program company; Intuit's GoCo subsidiary; TripAdvisor's Cruise Critic; and MGM Resorts. Kernel, a Y Combinator-backed startup providing AI infrastructure to over 1,000 companies, runs its entire customer-facing system on Railway for $444 per month.\n\"At my previous company Clever, which sold for $500 million, I had six full-time engineers just managing AWS,\" said Rafael Garcia, Kernel's chief technology officer. \"Now I have six engineers total, and they all focus on product. Railway is exactly the tool I wish I had in 2012.\"\nFor enterprise customers, Railway offers security certifications including SOC 2 Type 2 compliance and HIPAA readiness, with business associate agreements available upon request. The platform provides single sign-on authentication, comprehensive audit logs, and the option to deploy within a customer's existing cloud environment through a \"bring your own cloud\" configuration.\nEnterprise pricing starts at custom levels, with specific add-ons for extended log retention ($200 monthly), HIPAA BAAs ($1,000), enterprise support with SLOs ($2,000), and dedicated virtual machines ($10,000).\nThe startup's bold strategy to take on Amazon, Google, and a new generation of cloud rivals\nRailway enters a crowded market that includes not only the hyperscale cloud providers—Amazon Web Services, Microsoft Azure, and Google Cloud Platform—but also a growing cohort of developer-focused platforms like Vercel, Render, Fly.io, and Heroku.\nCooper argues that Railway's competitors fall into two camps, neither of which has fully committed to the new infrastructure model that AI demands.\n\"The hyperscalers have two competing systems, and they haven't gone all-in on the new model because their legacy revenue stream is still printing money,\" he observed. \"They have this mammoth pool of cash coming from people who provision a VM, use maybe 10 percent of it, and still pay for the whole thing. To what end are they actually interested in going all the way in on a new experience if they don't really need to?\"\nAgainst startup competitors, Railway differentiates by covering the full infrastructure stack. \"We're not just containers; we've got VM primitives, stateful storage, virtual private networking, automated load balancing,\" Cooper said. \"And we wrap all of this in an absurdly easy-to-use UI, with agentic primitives so agents can move 1,000 times faster.\"\nThe platform supports databases including PostgreSQL, MySQL, MongoDB, and Redis; provides up to 256 terabytes of persistent storage with over 100,000 input/output operations per second; and enables deployment to four global regions spanning the United States, Europe, and Southeast Asia. Enterprise customers can scale to 112 vCPUs and 2 terabytes of RAM per service.\nWhy investors are betting that AI will create a thousand times more software than exists today\nRailway's fundraise reflects broader investor enthusiasm for companies positioned to benefit from the AI coding revolution. As tools like GitHub Copilot, Cursor, and Claude become standard fixtures in developer workflows, the volume of code being written — and the infrastructure needed to run it — is expanding dramatically.\n\"The amount of software that's going to come online over the next five years is unfathomable compared to what existed before — we're talking a thousand times more software,\" Cooper predicted. \"All of that has to run somewhere.\"\nThe company has already integrated directly with AI systems, building what Cooper calls \"loops where Claude can hook in, call deployments, and analyze infrastructure automatically.\" Railway released a Model Context Protocol server in August 2025 that allows AI coding agents to deploy applications and manage infrastructure directly from code editors.\n\"The notion of a developer is melting before our eyes,\" Cooper said. \"You don't have to be an engineer to engineer things anymore — you just need critical thinking and the ability to analyze things in a systems capacity.\"\nWhat Railway plans to do with $100 million and zero marketing experience\nRailway plans to use the new capital to expand its global data center footprint, grow its team beyond 30 employees, and build what Cooper described as a proper go-to-market operation for the first time in the company's five-year history.\n\"One of my mentors said you raise money when you can change the trajectory of the business,\" Cooper explained. \"We've built all the required substrate to scale indefinitely; what's been holding us back is simply talking about it. 2026 is the year we play on the world stage.\"\nThe company's investor roster reads like a who's who of developer infrastructure. Angel investors include Tom Preston-Werner, co-founder of GitHub; Guillermo Rauch, chief executive of Vercel; Spencer Kimball, chief executive of Cockroach Labs; Olivier Pomel, chief executive of Datadog; and Jori Lallo, co-founder of Linear.\nThe timing of Railway's expansion coincides with what many in Silicon Valley view as a fundamental shift in how software gets made. Coding assistants are no longer experimental curiosities — they have become essential tools that millions of developers rely on daily. Each line of AI-generated code needs somewhere to run, and the incumbents, by Cooper's telling, are too wedded to their existing business models to fully capitalize on the moment.\nWhether Railway can translate developer enthusiasm into sustained enterprise adoption remains an open question. The cloud infrastructure market is littered with promising startups that failed to break the grip of Amazon, Microsoft, and Google. But Cooper, who previously worked as a software engineer at Wolfram Alpha, Bloomberg, and Uber before founding Railway in 2020, seems unfazed by the scale of his ambition.\n\"In five years, Railway [will be] the place where software gets created and evolved, period,\" he said. \"Deploy instantly, scale infinitely, with zero friction. That's the prize worth playing for, and there's no bigger one on offer.\"\nFor a company that built a $100 million business by doing the opposite of what conventional startup wisdom dictates — no marketing, no sales team, no venture hype—the real test begins now. Railway spent five years proving that developers would find a better mousetrap on their own. The next five will determine whether the rest of the world is ready to get on board.",
              "pubDate": "Thu, 22 Jan 2026 14:00:00 GMT"
            },
            {
              "link": "https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free",
              "title": "Claude Code costs up to $200 a month. Goose does the same thing for free.",
              "content": "The artificial intelligence coding revolution comes with a catch: it's expensive.\nClaude Code, Anthropic's terminal-based AI agent that can write, debug, and deploy code autonomously, has captured the imagination of software developers worldwide. But its pricing — ranging from $20 to $200 per month depending on usage — has sparked a growing rebellion among the very programmers it aims to serve.\nNow, a free alternative is gaining traction. Goose, an open-source AI agent developed by Block (the financial technology company formerly known as Square), offers nearly identical functionality to Claude Code but runs entirely on a user's local machine. No subscription fees. No cloud dependency. No rate limits that reset every five hours.\n\"Your data stays with you, period,\" said Parth Sareen, a software engineer who demonstrated the tool during a recent livestream. The comment captures the core appeal: Goose gives developers complete control over their AI-powered workflow, including the ability to work offline — even on an airplane.\nThe project has exploded in popularity. Goose now boasts more than 26,100 stars on GitHub, the code-sharing platform, with 362 contributors and 102 releases since its launch. The latest version, 1.20.1, shipped on January 19, 2026, reflecting a development pace that rivals commercial products.\nFor developers frustrated by Claude Code's pricing structure and usage caps, Goose represents something increasingly rare in the AI industry: a genuinely free, no-strings-attached option for serious work.\n\nAnthropic's new rate limits spark a developer revolt\nTo understand why Goose matters, you need to understand the Claude Code pricing controversy.\nAnthropic, the San Francisco artificial intelligence company founded by former OpenAI executives, offers Claude Code as part of its subscription tiers. The free plan provides no access whatsoever. The Pro plan, at $17 per month with annual billing (or $20 monthly), limits users to just 10 to 40 prompts every five hours — a constraint that serious developers exhaust within minutes of intensive work.\nThe Max plans, at $100 and $200 per month, offer more headroom: 50 to 200 prompts and 200 to 800 prompts respectively, plus access to Anthropic's most powerful model, Claude 4.5 Opus. But even these premium tiers come with restrictions that have inflamed the developer community.\nIn late July, Anthropic announced new weekly rate limits. Under the system, Pro users receive 40 to 80 hours of Sonnet 4 usage per week. Max users at the $200 tier get 240 to 480 hours of Sonnet 4, plus 24 to 40 hours of Opus 4. Nearly five months later, the frustration has not subsided.\nThe problem? Those \"hours\" are not actual hours. They represent token-based limits that vary wildly depending on codebase size, conversation length, and the complexity of the code being processed. Independent analysis suggests the actual per-session limits translate to roughly 44,000 tokens for Pro users and 220,000 tokens for the $200 Max plan.\n\"It's confusing and vague,\" one developer wrote in a widely shared analysis. \"When they say '24-40 hours of Opus 4,' that doesn't really tell you anything useful about what you're actually getting.\"\nThe backlash on Reddit and developer forums has been fierce. Some users report hitting their daily limits within 30 minutes of intensive coding. Others have canceled their subscriptions entirely, calling the new restrictions \"a joke\" and \"unusable for real work.\"\nAnthropic has defended the changes, stating that the limits affect fewer than five percent of users and target people running Claude Code \"continuously in the background, 24/7.\" But the company has not clarified whether that figure refers to five percent of Max subscribers or five percent of all users — a distinction that matters enormously.\nHow Block built a free AI coding agent that works offline\nGoose takes a radically different approach to the same problem.\nBuilt by Block, the payments company led by Jack Dorsey, Goose is what engineers call an \"on-machine AI agent.\" Unlike Claude Code, which sends your queries to Anthropic's servers for processing, Goose can run entirely on your local computer using open-source language models that you download and control yourself.\nThe project's documentation describes it as going \"beyond code suggestions\" to \"install, execute, edit, and test with any LLM.\" That last phrase — \"any LLM\" — is the key differentiator. Goose is model-agnostic by design.\nYou can connect Goose to Anthropic's Claude models if you have API access. You can use OpenAI's GPT-5 or Google's Gemini. You can route it through services like Groq or OpenRouter. Or — and this is where things get interesting — you can run it entirely locally using tools like Ollama, which let you download and execute open-source models on your own hardware.\nThe practical implications are significant. With a local setup, there are no subscription fees, no usage caps, no rate limits, and no concerns about your code being sent to external servers. Your conversations with the AI never leave your machine.\n\"I use Ollama all the time on planes — it's a lot of fun!\" Sareen noted during a demonstration, highlighting how local models free developers from the constraints of internet connectivity.\nWhat Goose can do that traditional code assistants can't\nGoose operates as a command-line tool or desktop application that can autonomously perform complex development tasks. It can build entire projects from scratch, write and execute code, debug failures, orchestrate workflows across multiple files, and interact with external APIs — all without constant human oversight.\nThe architecture relies on what the AI industry calls \"tool calling\" or \"function calling\" — the ability for a language model to request specific actions from external systems. When you ask Goose to create a new file, run a test suite, or check the status of a GitHub pull request, it doesn't just generate text describing what should happen. It actually executes those operations.\nThis capability depends heavily on the underlying language model. Claude 4 models from Anthropic currently perform best at tool calling, according to the Berkeley Function-Calling Leaderboard, which ranks models on their ability to translate natural language requests into executable code and system commands.\nBut newer open-source models are catching up quickly. Goose's documentation highlights several options with strong tool-calling support: Meta's Llama series, Alibaba's Qwen models, Google's Gemma variants, and DeepSeek's reasoning-focused architectures.\nThe tool also integrates with the Model Context Protocol, or MCP, an emerging standard for connecting AI agents to external services. Through MCP, Goose can access databases, search engines, file systems, and third-party APIs — extending its capabilities far beyond what the base language model provides.\nSetting Up Goose with a Local Model\nFor developers interested in a completely free, privacy-preserving setup, the process involves three main components: Goose itself, Ollama (a tool for running open-source models locally), and a compatible language model.\nStep 1: Install Ollama\nOllama is an open-source project that dramatically simplifies the process of running large language models on personal hardware. It handles the complex work of downloading, optimizing, and serving models through a simple interface.\nDownload and install Ollama from ollama.com. Once installed, you can pull models with a single command. For coding tasks, Qwen 2.5 offers strong tool-calling support:\nollama run qwen2.5\nThe model downloads automatically and begins running on your machine.\nStep 2: Install Goose\nGoose is available as both a desktop application and a command-line interface. The desktop version provides a more visual experience, while the CLI appeals to developers who prefer working entirely in the terminal.\nInstallation instructions vary by operating system but generally involve downloading from Goose's GitHub releases page or using a package manager. Block provides pre-built binaries for macOS (both Intel and Apple Silicon), Windows, and Linux.\nStep 3: Configure the Connection\nIn Goose Desktop, navigate to Settings, then Configure Provider, and select Ollama. Confirm that the API Host is set to http://localhost:11434 (Ollama's default port) and click Submit.\nFor the command-line version, run goose configure, select \"Configure Providers,\" choose Ollama, and enter the model name when prompted.\nThat's it. Goose is now connected to a language model running entirely on your hardware, ready to execute complex coding tasks without any subscription fees or external dependencies.\nThe RAM, processing power, and trade-offs you should know about\nThe obvious question: what kind of computer do you need?\nRunning large language models locally requires substantially more computational resources than typical software. The key constraint is memory — specifically, RAM on most systems, or VRAM if using a dedicated graphics card for acceleration.\nBlock's documentation suggests that 32 gigabytes of RAM provides \"a solid baseline for larger models and outputs.\" For Mac users, this means the computer's unified memory is the primary bottleneck. For Windows and Linux users with discrete NVIDIA graphics cards, GPU memory (VRAM) matters more for acceleration.\nBut you don't necessarily need expensive hardware to get started. Smaller models with fewer parameters run on much more modest systems. Qwen 2.5, for instance, comes in multiple sizes, and the smaller variants can operate effectively on machines with 16 gigabytes of RAM.\n\"You don't need to run the largest models to get excellent results,\" Sareen emphasized. The practical recommendation: start with a smaller model to test your workflow, then scale up as needed.\nFor context, Apple's entry-level MacBook Air with 8 gigabytes of RAM would struggle with most capable coding models. But a MacBook Pro with 32 gigabytes — increasingly common among professional developers — handles them comfortably.\nWhy keeping your code off the cloud matters more than ever\nGoose with a local LLM is not a perfect substitute for Claude Code. The comparison involves real trade-offs that developers should understand.\nModel Quality: Claude 4.5 Opus, Anthropic's flagship model, remains arguably the most capable AI for software engineering tasks. It excels at understanding complex codebases, following nuanced instructions, and producing high-quality code on the first attempt. Open-source models have improved dramatically, but a gap persists — particularly for the most challenging tasks.\nOne developer who switched to the $200 Claude Code plan described the difference bluntly: \"When I say 'make this look modern,' Opus knows what I mean. Other models give me Bootstrap circa 2015.\"\nContext Window: Claude Sonnet 4.5, accessible through the API, offers a massive one-million-token context window — enough to load entire large codebases without chunking or context management issues. Most local models are limited to 4,096 or 8,192 tokens by default, though many can be configured for longer contexts at the cost of increased memory usage and slower processing.\nSpeed: Cloud-based services like Claude Code run on dedicated server hardware optimized for AI inference. Local models, running on consumer laptops, typically process requests more slowly. The difference matters for iterative workflows where you're making rapid changes and waiting for AI feedback.\nTooling Maturity: Claude Code benefits from Anthropic's dedicated engineering resources. Features like prompt caching (which can reduce costs by up to 90 percent for repeated contexts) and structured outputs are polished and well-documented. Goose, while actively developed with 102 releases to date, relies on community contributions and may lack equivalent refinement in specific areas.\nHow Goose stacks up against Cursor, GitHub Copilot, and the paid AI coding market\nGoose enters a crowded market of AI coding tools, but occupies a distinctive position.\nCursor, a popular AI-enhanced code editor, charges $20 per month for its Pro tier and $200 for Ultra—pricing that mirrors Claude Code's Max plans. Cursor provides approximately 4,500 Sonnet 4 requests per month at the Ultra level, a substantially different allocation model than Claude Code's hourly resets.\nCline, Roo Code, and similar open-source projects offer AI coding assistance but with varying levels of autonomy and tool integration. Many focus on code completion rather than the agentic task execution that defines Goose and Claude Code.\nAmazon's CodeWhisperer, GitHub Copilot, and enterprise offerings from major cloud providers target large organizations with complex procurement processes and dedicated budgets. They are less relevant to individual developers and small teams seeking lightweight, flexible tools.\nGoose's combination of genuine autonomy, model agnosticism, local operation, and zero cost creates a unique value proposition. The tool is not trying to compete with commercial offerings on polish or model quality. It's competing on freedom — both financial and architectural.\nThe $200-a-month era for AI coding tools may be ending\nThe AI coding tools market is evolving quickly. Open-source models are improving at a pace that continually narrows the gap with proprietary alternatives. Moonshot AI's Kimi K2 and z.ai's GLM 4.5 now benchmark near Claude Sonnet 4 levels — and they're freely available.\nIf this trajectory continues, the quality advantage that justifies Claude Code's premium pricing may erode. Anthropic would then face pressure to compete on features, user experience, and integration rather than raw model capability.\nFor now, developers face a clear choice. Those who need the absolute best model quality, who can afford premium pricing, and who accept usage restrictions may prefer Claude Code. Those who prioritize cost, privacy, offline access, and flexibility have a genuine alternative in Goose.\nThe fact that a $200-per-month commercial product has a zero-dollar open-source competitor with comparable core functionality is itself remarkable. It reflects both the maturation of open-source AI infrastructure and the appetite among developers for tools that respect their autonomy.\nGoose is not perfect. It requires more technical setup than commercial alternatives. It depends on hardware resources that not every developer possesses. Its model options, while improving rapidly, still trail the best proprietary offerings on complex tasks.\nBut for a growing community of developers, those limitations are acceptable trade-offs for something increasingly rare in the AI landscape: a tool that truly belongs to them.\n\nGoose is available for download at github.com/block/goose. Ollama is available at ollama.com. Both projects are free and open source.",
              "pubDate": "Mon, 19 Jan 2026 14:00:00 GMT"
            },
            {
              "link": "https://venturebeat.com/technology/listen-labs-raises-usd69m-after-viral-billboard-hiring-stunt-to-scale-ai",
              "title": "Listen Labs raises $69M after viral billboard hiring stunt to scale AI customer interviews",
              "content": "Alfred Wahlforss was running out of options. His startup, Listen Labs, needed to hire over 100 engineers, but competing against Mark Zuckerberg's $100 million offers seemed impossible. So he spent $5,000 — a fifth of his marketing budget — on a billboard in San Francisco displaying what looked like gibberish: five strings of random numbers.\nThe numbers were actually AI tokens. Decoded, they led to a coding challenge: build an algorithm to act as a digital bouncer at Berghain, the Berlin nightclub famous for rejecting nearly everyone at the door. Within days, thousands attempted the puzzle. 430 cracked it. Some got hired. The winner flew to Berlin, all expenses paid.\nThat unconventional approach has now attracted $69 million in Series B funding, led by Ribbit Capital with participation from Evantic and existing investors Sequoia Capital, Conviction, and Pear VC. The round values Listen Labs at $500 million and brings its total capital to $100 million. In nine months since launch, the company has grown annualized revenue by 15x to eight figures and conducted over one million AI-powered interviews.\n\n\"When you obsess over customers, everything else follows,\" Wahlforss said in an interview with VentureBeat. \"Teams that use Listen bring the customer into every decision, from marketing to product, and when the customer is delighted, everyone is.\"\nWhy traditional market research is broken, and what Listen Labs is building to fix it\nListen's AI researcher finds participants, conducts in-depth interviews, and delivers actionable insights in hours, not weeks. The platform replaces the traditional choice between quantitative surveys — which provide statistical precision but miss nuance—and qualitative interviews, which deliver depth but cannot scale.\nWahlforss explained the limitation of existing approaches: \"Essentially surveys give you false precision because people end up answering the same question... You can't get the outliers. People are actually not honest on surveys.\" The alternative, one-on-one human interviews, \"gives you a lot of depth. You can ask follow up questions. You can kind of double check if they actually know what they're talking about. And the problem is you can't scale that.\"\nThe platform works in four steps: users create a study with AI assistance, Listen recruits participants from its global network of 30 million people, an AI moderator conducts in-depth interviews with follow-up questions, and results are packaged into executive-ready reports including key themes, highlight reels, and slide decks.\nWhat distinguishes Listen's approach is its use of open-ended video conversations rather than multiple-choice forms. \"In a survey, you can kind of guess what you should answer, and you have four options,\" Wahlforss said. \"Oh, they probably want me to buy high income. Let me click on that button versus an open ended response. It just generates much more honesty.\"\nThe dirty secret of the $140 billion market research industry: rampant fraud\nListen finds and qualifies the right participants in its global network of 30 million people. But building that panel required confronting what Wahlforss called \"one of the most shocking things that we've learned when we entered this industry\"—rampant fraud.\n\"Essentially, there's a financial transaction involved, which means there will be bad players,\" he explained. \"We actually had some of the largest companies, some of them have billions in revenue, send us people who claim to be kind of enterprise buyers to our platform and our system immediately detected, like, fraud, fraud, fraud, fraud, fraud.\"\nThe company built what it calls a \"quality guard\" that cross-references LinkedIn profiles with video responses to verify identity, checks consistency across how participants answer questions, and flags suspicious patterns. The result, according to Wahlforss: \"People talk three times more. They're much more honest when they talk about sensitive topics like politics and mental health.\"\nEmeritus, an online education company that uses Listen, reported that approximately 20% of survey responses previously fell into the fraudulent or low-quality category. With Listen, they reduced this to almost zero. \"We did not have to replace any responses because of fraud or gibberish information,\" said Gabrielli Tiburi, Assistant Manager of Customer Insights at Emeritus.\nHow Microsoft, Sweetgreen, and Chubbies are using AI interviews to build better products\nThe speed advantage has proven central to Listen's pitch. Traditional customer research at Microsoft could take four to six weeks to generate insights. \"By the time we get to them, either the decision has been made or we lose out on the opportunity to actually influence it,\" said Romani Patel, Senior Research Manager at Microsoft.\nWith Listen, Microsoft can now get insights in days, and in many cases, within hours.\nThe platform has already powered several high-profile initiatives. Microsoft used Listen Labs to collect global customer stories for its 50th anniversary celebration. \"We wanted users to share how Copilot is empowering them to bring their best self forward,\" Patel said, \"and we were able to collect those user video stories within a day.\" Traditionally, that kind of work would have taken six to eight weeks.\nSimple Modern, an Oklahoma-based drinkware company, used Listen to test a new product concept. The process took about an hour to write questions, an hour to launch the study, and 2.5 hours to receive feedback from 120 people across the country. \"We went from 'Should we even have this product?' to 'How should we launch it?'\" said Chris Hoyle, the company's Chief Marketing Officer.\nChubbies, the shorts brand, achieved a 24x increase in youth research participation—growing from 5 to 120 participants — by using Listen to overcome the scheduling challenges of traditional focus groups with children. \"There's school, sports, dinner, and homework,\" explained Lauren Neville, Director of Insights and Innovation. \"I had to find a way to hear from them that fit into their schedules.\"\nThe company also discovered product issues through AI interviews that might have gone undetected otherwise. Wahlforss described how the AI \"through conversations, realized there were like issues with the the kids short line, and decided to, like, interview hundreds of kids. And I understand that there were issues in the liner of the shorts and that they were, like, scratchy, quote, unquote, according to the people interviewed.\" The redesigned product became \"a blockbuster hit.\"\nThe Jevons paradox explains why cheaper research creates more demand, not less\nListen Labs is entering a massive but fragmented market. Wahlforss cited research from Andreessen Horowitz estimating the market research industry at roughly $140 billion annually, populated by legacy players — some with more than a billion dollars in revenue — that he believes are vulnerable to disruption.\n\"There are very much existing budget lines that we are replacing,\" Wahlforss said. \"Why we're replacing them is that one, they're super costly. Two, they're kind of stuck in this old paradigm of choosing between a survey or interview, and they also take months to work with.\"\nBut the more intriguing dynamic may be that AI-powered research doesn't just replace existing spending — it creates new demand. Wahlforss invoked the Jevons paradox, an economic principle that occurs when technological advancements make a resource more efficient to use, but increased efficiency leads to increased overall consumption rather than decreased consumption.\n\"What I've noticed is that as something gets cheaper, you don't need less of it. You want more of it,\" Wahlforss explained. \"There's infinite demand for customer understanding. So the researchers on the team can do an order of magnitude more research, and also other people who weren't researchers before can now do that as part of their job.\"\nInside the elite engineering team that built Listen Labs before they had a working toilet\nListen Labs traces its origins to a consumer app that Wahlforss and his co-founder built after meeting at Harvard. \"We built this consumer app that got 20,000 downloads in one day,\" Wahlforss recalled. \"We had all these users, and we were thinking like, okay, what can we do to get to know them better? And we built this prototype of what Listen is today.\"\nThe founding team brings an unusual pedigree. Wahlforss's co-founder \"was the national champion in competitive programming in Germany, and he worked at Tesla Autopilot.\" The company claims that 30% of its engineering team are medalists from the International Olympiad in Informatics — the same competition that produced the founders of Cognition, the AI coding startup.\nThe Berghain billboard stunt generated approximately 5 million views across social media, according to Wahlforss. It reflected the intensity of the talent war in the Bay Area.\n\"We had to do these things because some of our, like early employees, joined the company before we had a working toilet,\" he said. \"But now we fixed that situation.\"\nThe company grew from 5 to 40 employees in 2024 and plans to reach 150 this year. It hires engineers for non-engineering roles across marketing, growth, and operations — a bet that in the AI era, technical fluency matters everywhere.\nSynthetic customers and automated decisions: what Listen Labs is building next\nWahlforss outlined an ambitious product roadmap that pushes into more speculative territory. The company is building \"the ability to simulate your customers, so you can take all of those interviews we've done, and then extrapolate based on that and create synthetic users or simulated user voices.\"\nBeyond simulation, Listen aims to enable automated action based on research findings. \"Can you not just make recommendations, but also create spawn agents to either change things in code or some customer churns? Can you give them a discount and try to bring them back?\"\nWahlforss acknowledged the ethical implications. \"Obviously, as you said, there's kind of ethical concerns there. Of like, automated decision making overall can be bad, but we will have considerable guardrails to make sure that the companies are always in the loop.\"\nThe company already handles sensitive data with care. \"We don't train on any of the data,\" Wahlforss said. \"We will also scrub any sensitive PII automatically so the model can detect that. And there are times when, for example, you work with investors, where if you accidentally mention something that could be material, non public information, the AI can actually detect that and remove any information like that.\"\nHow AI could reshape the future of product development\nPerhaps the most provocative implication of Listen's model is how it could reshape product development itself. Wahlforss described a customer — an Australian startup — that has adopted what amounts to a continuous feedback loop.\n\"They're based in Australia, so they're coding during the day, and then in their night, they're releasing a Listen study with an American audience. Listen validates whatever they built during the day, and they get feedback on that. They can then plug that feedback directly into coding tools like Claude Code and iterate.\"\nThe vision extends Y Combinator's famous dictum — \"write code, talk to users\" — into an automated cycle. \"Write code is now getting automated. And I think like talk to users will be as well, and you'll have this kind of infinite loop where you can start to ship this truly amazing product, almost kind of autonomously.\"\nWhether that vision materializes depends on factors beyond Listen's control — the continued improvement of AI models, enterprise willingness to trust automated research, and whether speed truly correlates with better products. A 2024 MIT study found that 95% of AI pilots fail to move into production, a statistic Wahlforss cited as the reason he emphasizes quality over demos.\n\"I'm constantly have to emphasize like, let's make sure the quality is there and the details are right,\" he said.\nBut the company's growth suggests appetite for the experiment. Microsoft's Patel said Listen has \"removed the drudgery of research and brought the fun and joy back into my work.\" Chubbies is now pushing its founder to give everyone in the company a login. Sling Money, a stablecoin payments startup, can create a survey in ten minutes and receive results the same day.\n\"It's a total game changer,\" said Ali Romero, Sling Money's marketing manager.\nWahlforss has a different phrase for what he's building. When asked about the tension between speed and rigor — the long-held belief that moving fast means cutting corners — he cited Nat Friedman, the former GitHub CEO and Listen investor, who keeps a list of one-liners on his website.\nOne of them: \"Slow is fake.\"\nIt's an aggressive claim for an industry built on methodological caution. But Listen Labs is betting that in the AI era, the companies that listen fastest will be the ones that win. The only question is whether customers will talk back.",
              "pubDate": "Fri, 16 Jan 2026 14:01:00 GMT"
            },
            {
              "link": "https://venturebeat.com/technology/salesforce-rolls-out-new-slackbot-ai-agent-as-it-battles-microsoft-and",
              "title": "Salesforce rolls out new Slackbot AI agent as it battles Microsoft and Google in workplace AI",
              "content": "Salesforce on Tuesday launched an entirely rebuilt version of Slackbot, the company's workplace assistant, transforming it from a simple notification tool into what executives describe as a fully powered AI agent capable of searching enterprise data, drafting documents, and taking action on behalf of employees.\nThe new Slackbot, now generally available to Business+ and Enterprise+ customers, is Salesforce's most aggressive move yet to position Slack at the center of the emerging \"agentic AI\" movement — where software agents work alongside humans to complete complex tasks. The launch comes as Salesforce attempts to convince investors that artificial intelligence will bolster its products rather than render them obsolete.\n\"Slackbot isn't just another copilot or AI assistant,\" said Parker Harris, Salesforce co-founder and Slack's chief technology officer, in an exclusive interview with Salesforce. \"It's the front door to the agentic enterprise, powered by Salesforce.\"\nFrom tricycle to Porsche: Salesforce rebuilt Slackbot from the ground up\nHarris was blunt about what distinguishes the new Slackbot from its predecessor: \"The old Slackbot was, you know, a little tricycle, and the new Slackbot is like, you know, a Porsche.\"\nThe original Slackbot, which has existed since Slack's early days, performed basic algorithmic tasks — reminding users to add colleagues to documents, suggesting channel archives, and delivering simple notifications. The new version runs on an entirely different architecture built around a large language model and sophisticated search capabilities that can access Salesforce records, Google Drive files, calendar data, and years of Slack conversations.\n\"It's two different things,\" Harris explained. \"The old Slackbot was algorithmic and fairly simple. The new Slackbot is brand new — it's based around an LLM and a very robust search engine, and connections to third-party search engines, third-party enterprise data.\"\nSalesforce chose to retain the Slackbot brand despite the fundamental technical overhaul. \"People know what Slackbot is, and so we wanted to carry that forward,\" Harris said.\nWhy Anthropic's Claude powers the new Slackbot — and which AI models could come next\nThe new Slackbot runs on Claude, Anthropic's large language model, a choice driven partly by compliance requirements. Slack's commercial service operates under FedRAMP Moderate certification to serve U.S. federal government customers, and Harris said Anthropic was \"the only provider that could give us a compliant LLM\" when Slack began building the new system.\nBut that exclusivity won't last. \"We are, this year, going to support additional providers,\" Harris said. \"We have a great relationship with Google. Gemini is incredible — performance is great, cost is great. So we're going to use Gemini for some things.\" He added that OpenAI remains a possibility as well.\nHarris echoed Salesforce CEO Marc Benioff's view that large language models are becoming commoditized: \"You've heard Marc talk about LLMs are commodities, that they're democratized. I call them CPUs.\"\nOn the sensitive question of training data, Harris was unequivocal: Salesforce does not train any models on customer data. \"Models don't have any sort of security,\" he explained. \"If we trained it on some confidential conversation that you and I have, I don't want Carolyn to know — if I train it into the LLM, there is no way for me to say you get to see the answer, but Carolyn doesn't.\"\nInside Salesforce's internal experiment: 80,000 employees tested Slackbot with striking results\nSalesforce has been testing the new Slackbot internally for months, rolling it out to all 80,000 employees. According to Ryan Gavin, Slack's chief marketing officer, the results have been striking: \"It's the fastest adopted product in Salesforce history.\"\nInternal data shows that two-thirds of Salesforce employees have tried the new Slackbot, with 80% of those users continuing to use it regularly. Internal satisfaction rates reached 96% — the highest for any AI feature Slack has shipped. Employees report saving between two and 20 hours per week.\nThe adoption happened largely organically. \"I think it was about five days, and a Canvas was developed by our employees called 'The Most Stealable Slackbot Prompts,'\" Gavin said. \"People just started adding to it organically. I think it's up to 250-plus prompts that are in this Canvas right now.\"\nKate Crotty, a principal UX researcher at Salesforce, found that 73% of internal adoption was driven by social sharing rather than top-down mandates. \"Everybody is there to help each other learn and communicate hacks,\" she said.\nHow Slackbot transforms scattered enterprise data into executive-ready insights\nDuring a product demonstration, Amy Bauer, Slack's product experience designer, showed how Slackbot can synthesize information across multiple sources. In one example, she asked Slackbot to analyze customer feedback from a pilot program, upload an image of a usage dashboard, and have Slackbot correlate the qualitative and quantitative data.\n\"This is where Slackbot really earns its keep for me,\" Bauer explained. \"What it's doing is not just simply reading the image — it's actually looking at the image and comparing it to the insight it just generated for me.\"\nSlackbot can then query Salesforce to find enterprise accounts with open deals that might be good candidates for early access, creating what Bauer called \"a really great justification and plan to move forward.\" Finally, it can synthesize all that information into a Canvas — Slack's collaborative document format — and find calendar availability among stakeholders to schedule a review meeting.\n\"Up until this point, we have been working in a one-to-one capacity with Slackbot,\" Bauer said. \"But one of the benefits that I can do now is take this insight and have it generate this into a Canvas, a shared workspace where I can iterate on it, refine it with Slackbot, or share it out with my team.\"\nRob Seaman, Slack's chief product officer, said the Canvas creation demonstrates where the product is heading: \"This is making a tool call internally to Slack Canvas to actually write, effectively, a shared document. But it signals where we're going with Slackbot — we're eventually going to be adding in additional third-party tool calls.\"\nMrBeast's company became a Slackbot guinea pig—and employees say they're saving 90 minutes a day\nAmong Salesforce's pilot customers is Beast Industries, the parent company of YouTube star MrBeast. Luis Madrigal, the company's chief information officer, joined the launch announcement to describe his experience.\n\"As somebody who has rolled out enterprise technologies for over two decades now, this was practically one of the easiest,\" Madrigal said. \"The plumbing is there. Slack as an implementation, Enterprise Tools — being able to turn on the Slackbot and the Slack AI functionality was as simple as having my team go in, review, do a quick security review.\"\nMadrigal said his security team signed off \"rather quickly\" — unusual for enterprise AI deployments — because Slackbot accesses only the information each individual user already has permission to view. \"Given all the guardrails you guys have put into place for Slackbot to be unique and customized to only the information that each individual user has, only the conversations and the Slack rooms and Slack channels that they're part of—that made my security team sign off rather quickly.\"\nOne Beast Industries employee, Sinan, the head of Beast Games marketing, reported saving \"at bare minimum, 90 minutes a day.\" Another employee, Spencer, a creative supervisor, described it as \"an assistant who's paying attention when I'm not.\"\nOther pilot customers include Slalom, reMarkable, Xero, Mercari, and Engine. Mollie Bodensteiner, SVP of Operations at Engine, called Slackbot \"an absolute 'chaos tamer' for our team,\" estimating it saves her about 30 minutes daily \"just by eliminating context switching.\"\nSlackbot vs. Microsoft Copilot vs. Google Gemini: The fight for enterprise AI dominance\nThe launch puts Salesforce in direct competition with Microsoft's Copilot, which is integrated into Teams and the broader Microsoft 365 suite, as well as Google's Gemini integrations across Workspace. When asked what distinguishes Slackbot from these alternatives, Seaman pointed to context and convenience.\n\"The thing that makes it most powerful for our customers and users is the proximity — it's just right there in your Slack,\" Seaman said. \"There's a tremendous convenience affordance that's naturally built into it.\"\nThe deeper advantage, executives argue, is that Slackbot already understands users' work without requiring setup or training. \"Most AI tools sound the same no matter who is using them,\" the company's announcement stated. \"They lack context, miss nuance, and force you to jump between tools to get anything done.\"\nHarris put it more directly: \"If you've ever had that magic experience with AI — I think ChatGPT is a great example, it's a great experience from a consumer perspective — Slackbot is really what we're doing in the enterprise, to be this employee super agent that is loved, just like people love using Slack.\"\nAmy Bauer emphasized the frictionless nature of the experience. \"Slackbot is inherently grounded in the context, in the data that you have in Slack,\" she said. \"So as you continue working in Slack, Slackbot gets better because it's grounded in the work that you're doing there. There is no setup. There is no configuration for those end users.\"\nSalesforce's ambitious plan to make Slackbot the one 'super agent' that controls all the others\nSalesforce positions Slackbot as what Harris calls a \"super agent\" — a central hub that can eventually coordinate with other AI agents across an organization.\n\"Every corporation is going to have an employee super agent,\" Harris said. \"Slackbot is essentially taking the magic of what Slack does. We think that Slackbot, and we're really excited about it, is going to be that.\"\nThe vision extends to third-party agents already launching in Slack. Last month, Anthropic released a preview of Claude Code for Slack, allowing developers to interact with Claude's coding capabilities directly in chat threads. OpenAI, Google, Vercel, and others have also built agents for the platform.\n\"Most of the net-new apps that are being deployed to Slack are agents,\" Seaman noted during the press conference. \"This is proof of the promise of humans and agents coexisting and working together in Slack to solve problems.\"\nHarris described a future where Slackbot becomes an MCP (Model Context Protocol) client, able to leverage tools from across the software ecosystem — similar to how the developer tool Cursor works. \"Slack can be an MCP client, and Slackbot will be the hub of that, leveraging all these tools out in the world, some of which will be these amazing agents,\" he said.\nBut Harris also cautioned against over-promising on multi-agent coordination. \"I still think we're in the single agent world,\" he said. \"FY26 is going to be the year where we started to see more coordination. But we're going to do it with customer success in mind, and not demonstrate and talk about, like, 'I've got 1,000 agents working together,' because I think that's unrealistic.\"\nSlackbot costs nothing extra, but Salesforce's data access fees could squeeze some customers\nSlackbot is included at no additional cost for customers on Business+ and Enterprise+ plans. \"There's no additional fees customers have to do,\" Gavin confirmed. \"If they're on one of those plans, they're going to get Slackbot.\"\nHowever, some enterprise customers may face other cost pressures related to Salesforce's broader data strategy. CIOs may see price increases for third-party applications that work with Salesforce data, as effects of higher charges for API access ripple through the software supply chain.\nFivetran CEO George Fraser has warned that Salesforce's shift in pricing policy for API access could have tangible consequences for enterprises relying on Salesforce as a system of record. \"They might not be able to use Fivetran to replicate their data to Snowflake and instead have to use Salesforce Data Cloud. Or they might find that they are not able to interact with their data via ChatGPT, and instead have to use Agentforce,\" Fraser said in a recent CIO report.\nSalesforce has framed the pricing change as standard industry practice.\nWhat Slackbot can do today, what's coming in weeks, and what's still on the roadmap\nThe new Slackbot begins rolling out today and will reach all eligible customers by the end of February. Mobile availability will complete by March 3, Bauer confirmed during her interview with VentureBeat.\nSome capabilities remain works in progress. Calendar reading and availability checking are available at launch, but the ability to actually book meetings is \"coming a few weeks after,\" according to Seaman. Image generation is not currently supported, though Bauer said it's \"something that we are looking at in the future.\"\nWhen asked about integration with competing CRM systems like HubSpot and Microsoft Dynamics, Salesforce representatives declined to provide specifics during the interview, though they acknowledged the question touched on key competitive differentiators.\nSalesforce is betting the future of work looks like a chat window—and it's not alone\nThe Slackbot launch is Salesforce's bet that the future of enterprise work is conversational — that employees will increasingly prefer to interact with AI through natural language rather than navigating traditional software interfaces.\nHarris described Slack's product philosophy using principles like \"don't make me think\" and \"be a great host.\" The goal, he said, is for Slackbot to surface information proactively rather than requiring users to hunt for it.\n\"One of the revelations for me is LLMs applied to unstructured information are incredible,\" Harris said. \"And the amount of value you have if you're a Slack user, if your corporation uses Slack — the amount of value in Slack is unbelievable. Because you're talking about work, you're sharing documents, you're making decisions, but you can't as a human go through that and really get the same value that an LLM can do.\"\nLooking ahead, Harris expects the interfaces themselves to evolve beyond pure conversation. \"We're kind of saturating what we can do with purely conversational UIs,\" he said. \"I think we'll start to see agents building an interface that best suits your intent, as opposed to trying to surface something within a conversational interface that matches your intent.\"\nMicrosoft, Google, and a growing roster of AI startups are placing similar bets — that the winning enterprise AI will be the one embedded in the tools workers already use, not another application to learn. The race to become that invisible layer of workplace intelligence is now fully underway.\nFor Salesforce, the stakes extend beyond a single product launch. After a bruising year on Wall Street and persistent questions about whether AI threatens its core business, the company is wagering that Slackbot can prove the opposite — that the tens of millions of people already chatting in Slack every day is not a vulnerability, but an unassailable advantage.\nHaley Gault, the Salesforce account executive in Pittsburgh who stumbled upon the new Slackbot on a snowy morning, captured the shift in a single sentence: \"I honestly can't imagine working for another company not having access to these types of tools. This is just how I work now.\"\nThat's precisely what Salesforce is counting on.",
              "pubDate": "Tue, 13 Jan 2026 13:00:00 GMT"
            },
            {
              "link": "https://venturebeat.com/technology/anthropic-launches-cowork-a-claude-desktop-agent-that-works-in-your-files-no",
              "title": "Anthropic launches Cowork, a Claude Desktop agent that works in your files — no coding required",
              "content": "Anthropic released Cowork on Monday, a new AI agent capability that extends the power of its wildly successful Claude Code tool to non-technical users — and according to company insiders, the team built the entire feature in approximately a week and a half, largely using Claude Code itself.\nThe launch marks a major inflection point in the race to deliver practical AI agents to mainstream users, positioning Anthropic to compete not just with OpenAI and Google in conversational AI, but with Microsoft's Copilot in the burgeoning market for AI-powered productivity tools.\n\"Cowork lets you complete non-technical tasks much like how developers use Claude Code,\" the company announced via its official Claude account on X. The feature arrives as a research preview available exclusively to Claude Max subscribers — Anthropic's power-user tier priced between $100 and $200 per month — through the macOS desktop application.\nFor the past year, the industry narrative has focused on large language models that can write poetry or debug code. With Cowork, Anthropic is betting that the real enterprise value lies in an AI that can open a folder, read a messy pile of receipts, and generate a structured expense report without human hand-holding.\n\nHow developers using a coding tool for vacation research inspired Anthropic's latest product\nThe genesis of Cowork lies in Anthropic's recent success with the developer community. In late 2024, the company released Claude Code, a terminal-based tool that allowed software engineers to automate rote programming tasks. The tool was a hit, but Anthropic noticed a peculiar trend: users were forcing the coding tool to perform non-coding labor.\nAccording to Boris Cherny, an engineer at Anthropic, the company observed users deploying the developer tool for an unexpectedly diverse array of tasks.\n\n\"Since we launched Claude Code, we saw people using it for all sorts of non-coding work: doing vacation research, building slide decks, cleaning up your email, cancelling subscriptions, recovering wedding photos from a hard drive, monitoring plant growth, controlling your oven,\" Cherny wrote on X. \"These use cases are diverse and surprising — the reason is that the underlying Claude Agent is the best agent, and Opus 4.5 is the best model.\"\nRecognizing this shadow usage, Anthropic effectively stripped the command-line complexity from their developer tool to create a consumer-friendly interface. In its blog post announcing the feature, Anthropic explained that developers \"quickly began using it for almost everything else,\" which \"prompted us to build Cowork: a simpler way for anyone — not just developers — to work with Claude in the very same way.\"\nInside the folder-based architecture that lets Claude read, edit, and create files on your computer\nUnlike a standard chat interface where a user pastes text for analysis, Cowork requires a different level of trust and access. Users designate a specific folder on their local machine that Claude can access. Within that sandbox, the AI agent can read existing files, modify them, or create entirely new ones.\nAnthropic offers several illustrative examples: reorganizing a cluttered downloads folder by sorting and intelligently renaming each file, generating a spreadsheet of expenses from a collection of receipt screenshots, or drafting a report from scattered notes across multiple documents.\n\"In Cowork, you give Claude access to a folder on your computer. Claude can then read, edit, or create files in that folder,\" the company explained on X. \"Try it to create a spreadsheet from a pile of screenshots, or produce a first draft from scattered notes.\"\n\nThe architecture relies on what is known as an \"agentic loop.\" When a user assigns a task, the AI does not merely generate a text response. Instead, it formulates a plan, executes steps in parallel, checks its own work, and asks for clarification if it hits a roadblock. Users can queue multiple tasks and let Claude process them simultaneously — a workflow Anthropic describes as feeling \"much less like a back-and-forth and much more like leaving messages for a coworker.\"\nThe system is built on Anthropic's Claude Agent SDK, meaning it shares the same underlying architecture as Claude Code. Anthropic notes that Cowork \"can take on many of the same tasks that Claude Code can handle, but in a more approachable form for non-coding tasks.\"\nThe recursive loop where AI builds AI: Claude Code reportedly wrote much of Claude Cowork\nPerhaps the most remarkable detail surrounding Cowork's launch is the speed at which the tool was reportedly built — highlighting a recursive feedback loop where AI tools are being used to build better AI tools.\nDuring a livestream hosted by Dan Shipper, Felix Rieseberg, an Anthropic employee, confirmed that the team built Cowork in approximately a week and a half.\nAlex Volkov, who covers AI developments, expressed surprise at the timeline: \"Holy shit Anthropic built 'Cowork' in the last... week and a half?!\"\n\nThis prompted immediate speculation about how much of Cowork was itself built by Claude Code. Simon Smith, EVP of Generative AI at Klick Health, put it bluntly on X: \"Claude Code wrote all of Claude Cowork. Can we all agree that we're in at least somewhat of a recursive improvement loop here?\"\nThe implication is profound: Anthropic's AI coding agent may have substantially contributed to building its own non-technical sibling product. If true, this is one of the most visible examples yet of AI systems being used to accelerate their own development and expansion — a strategy that could widen the gap between AI labs that successfully deploy their own agents internally and those that do not.\nConnectors, browser automation, and skills extend Cowork's reach beyond the local file system\nCowork doesn't operate in isolation. The feature integrates with Anthropic's existing ecosystem of connectors — tools that link Claude to external information sources and services such as Asana, Notion, PayPal, and other supported partners. Users who have configured these connections in the standard Claude interface can leverage them within Cowork sessions.\nAdditionally, Cowork can pair with Claude in Chrome, Anthropic's browser extension, to execute tasks requiring web access. This combination allows the agent to navigate websites, click buttons, fill forms, and extract information from the internet — all while operating from the desktop application.\n\"Cowork includes a number of novel UX and safety features that we think make the product really special,\" Cherny explained, highlighting \"a built-in VM [virtual machine] for isolation, out of the box support for browser automation, support for all your claude.ai data connectors, asking you for clarification when it's unsure.\"\nAnthropic has also introduced an initial set of \"skills\" specifically designed for Cowork that enhance Claude's ability to create documents, presentations, and other files. These build on the Skills for Claude framework the company announced in October, which provides specialized instruction sets Claude can load for particular types of tasks.\nWhy Anthropic is warning users that its own AI agent could delete their files\nThe transition from a chatbot that suggests edits to an agent that makes edits introduces significant risk. An AI that can organize files can, theoretically, delete them.\nIn a notable display of transparency, Anthropic devoted considerable space in its announcement to warning users about Cowork's potential dangers — an unusual approach for a product launch.\nThe company explicitly acknowledges that Claude \"can take potentially destructive actions (such as deleting local files) if it's instructed to.\" Because Claude might occasionally misinterpret instructions, Anthropic urges users to provide \"very clear guidance\" about sensitive operations.\nMore concerning is the risk of prompt injection attacks — a technique where malicious actors embed hidden instructions in content Claude might encounter online, potentially causing the agent to bypass safeguards or take harmful actions.\n\"We've built sophisticated defenses against prompt injections,\" Anthropic wrote, \"but agent safety — that is, the task of securing Claude's real-world actions — is still an active area of development in the industry.\"\nThe company characterized these risks as inherent to the current state of AI agent technology rather than unique to Cowork. \"These risks aren't new with Cowork, but it might be the first time you're using a more advanced tool that moves beyond a simple conversation,\" the announcement notes.\nAnthropic's desktop agent strategy sets up a direct challenge to Microsoft Copilot\nThe launch of Cowork places Anthropic in direct competition with Microsoft, which has spent years attempting to integrate its Copilot AI into the fabric of the Windows operating system with mixed adoption results.\nHowever, Anthropic's approach differs in its isolation. By confining the agent to specific folders and requiring explicit connectors, they are attempting to strike a balance between the utility of an OS-level agent and the security of a sandboxed application.\nWhat distinguishes Anthropic's approach is its bottom-up evolution. Rather than designing an AI assistant and retrofitting agent capabilities, Anthropic built a powerful coding agent first — Claude Code — and is now abstracting its capabilities for broader audiences. This technical lineage may give Cowork more robust agentic behavior from the start.\nClaude Code has generated significant enthusiasm among developers since its initial launch as a command-line tool in late 2024. The company expanded access with a web interface in October 2025, followed by a Slack integration in December. Cowork is the next logical step: bringing the same agentic architecture to users who may never touch a terminal.\nWho can access Cowork now, and what's coming next for Windows and other platforms\nFor now, Cowork remains exclusive to Claude Max subscribers using the macOS desktop application. Users on other subscription tiers — Free, Pro, Team, or Enterprise — can join a waitlist for future access.\nAnthropic has signaled clear intentions to expand the feature's reach. The blog post explicitly mentions plans to add cross-device sync and bring Cowork to Windows as the company learns from the research preview.\nCherny set expectations appropriately, describing the product as \"early and raw, similar to what Claude Code felt like when it first launched.\"\nTo access Cowork, Max subscribers can download or update the Claude macOS app and click on \"Cowork\" in the sidebar.\nThe real question facing enterprise AI adoption\nFor technical decision-makers, the implications of Cowork extend beyond any single product launch. The bottleneck for AI adoption is shifting — no longer is model intelligence the limiting factor, but rather workflow integration and user trust.\nAnthropic's goal, as the company puts it, is to make working with Claude feel less like operating a tool and more like delegating to a colleague. Whether mainstream users are ready to hand over folder access to an AI that might misinterpret their instructions remains an open question.\nBut the speed of Cowork's development — a major feature built in ten days, possibly by the company's own AI — previews a future where the capabilities of these systems compound faster than organizations can evaluate them. \nThe chatbot has learned to use a file manager. What it learns to use next is anyone's guess.",
              "pubDate": "Mon, 12 Jan 2026 11:30:00 GMT"
            },
            {
              "link": "https://www.zdnet.com/article/how-to-turn-airtag-into-wifi-password-key-nfc-tags/",
              "title": "I created the ultimate Wi-Fi password key with the most unexpected gadget - how it works",
              "content": "NFC tags are so useful and customizable, and it's quite simple to make your own. Here's what you can do with it and how.",
              "pubDate": "Tue, 10 Feb 2026 03:01:15 GMT"
            },
            {
              "link": "https://www.zdnet.com/article/i-turned-doodles-into-video-clips-in-minutes-with-runways-new-ai-video-tool-heres-how/",
              "title": "I turned doodles into video clips in minutes with Runway's new AI video tool - here's how",
              "content": "The company's Motion Sketch feature lowers the barrier between abstract imagination and concrete video outputs. But like all generative AI tools, it has its shortcomings.",
              "pubDate": "Tue, 10 Feb 2026 03:01:13 GMT"
            },
            {
              "link": "https://www.zdnet.com/article/android-extend-unlock-faster-phone-access/",
              "title": "This Android trick lets me access my phone faster - here's how it works",
              "content": "Extend Unlock is one of those features every Android user will love once they give it a try.",
              "pubDate": "Tue, 10 Feb 2026 03:00:54 GMT"
            },
            {
              "link": "https://www.zdnet.com/article/onyx-boox-page-android-e-ink-tablet-review/",
              "title": "I didn't expect this Android E Ink tablet to beat my Kindle, but one feature sets it apart",
              "content": "The Onyx Boox Page is packed with features for an E Ink tablet, with a smart, versatile design.",
              "pubDate": "Tue, 10 Feb 2026 02:30:37 GMT"
            },
            {
              "link": "https://www.zdnet.com/article/how-to-restart-android-phone-without-using-the-power-button-2-ways/",
              "title": "How to restart your Android phone without using the power button: 2 easy ways",
              "content": "You don't need to press the power button to restart your Android device. If yours is broken or you simply want options, here are two.",
              "pubDate": "Tue, 10 Feb 2026 02:12:53 GMT"
            },
            {
              "link": "https://towardsdatascience.com/the-machine-learning-lessons-ive-learned-last-month/",
              "title": "The Machine Learning Lessons I’ve Learned Last Month",
              "content": "Delayed January: deadlines, downtimes, and flow times\nThe post The Machine Learning Lessons I’ve Learned Last Month appeared first on Towards Data Science.",
              "pubDate": "Mon, 09 Feb 2026 20:38:42 +0000"
            },
            {
              "link": "https://towardsdatascience.com/the-death-of-the-everything-prompt-googles-move-toward-structured-ai/",
              "title": "The Death of the “Everything Prompt”: Google’s Move Toward Structured AI",
              "content": "How the new Interactions API enables deep-reasoning, stateful, agentic workflows.\nThe post The Death of the “Everything Prompt”: Google’s Move Toward Structured AI appeared first on Towards Data Science.",
              "pubDate": "Mon, 09 Feb 2026 13:00:00 +0000"
            },
            {
              "link": "https://towardsdatascience.com/what-i-am-doing-to-stay-relevant-as-a-senior-analytics-consultant-in-2026/",
              "title": "What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026",
              "content": "Learn how to work with AI, while strengthening your unique human skills that technology cannot replace\nThe post What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026 appeared first on Towards Data Science.",
              "pubDate": "Sat, 07 Feb 2026 15:00:00 +0000"
            },
            {
              "link": "https://towardsdatascience.com/pydantic-performance-4-tips-on-how-to-validate-large-amounts-of-data-efficiently/",
              "title": "Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently",
              "content": "The real value lies in writing clearer code and using your tools right\nThe post Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently appeared first on Towards Data Science.",
              "pubDate": "Fri, 06 Feb 2026 15:00:00 +0000"
            },
            {
              "link": "https://towardsdatascience.com/prompt-fidelity-measuring-how-much-of-your-intent-an-ai-agent-actually-executes/",
              "title": "Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes",
              "content": "How much of your AI agent's output is real data versus confident guesswork?\nThe post Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes appeared first on Towards Data Science.",
              "pubDate": "Fri, 06 Feb 2026 12:00:00 +0000"
            },
            {
              "link": "https://www.nytimes.com/2026/02/09/technology/social-media-addiction-trial.html",
              "title": "Meta and YouTube Created ‘Digital Casinos,’ Lawyers Argue in Landmark Trial",
              "content": "Opening statements began in a trial claiming social media companies design addictive products that cause personal injury.",
              "pubDate": "Tue, 10 Feb 2026 00:53:17 +0000"
            },
            {
              "link": "https://www.nytimes.com/2026/02/06/business/google-employees-protest.html",
              "title": "Google Workers Demand End to Cloud Services for Immigration Agencies",
              "content": "More than 800 employees delivered a petition to management, condemning the Trump administration’s use of Google technology in immigration enforcement.",
              "pubDate": "Fri, 06 Feb 2026 18:52:26 +0000"
            },
            {
              "link": "https://www.nytimes.com/2026/02/06/business/tiktok-addictive-design-europe.html",
              "title": "Europe Accuses TikTok of ‘Addictive Design’ and Pushes for Change",
              "content": "European Union regulators said the app’s infinite scroll and personalized algorithm led to “compulsive” behavior, especially among children.",
              "pubDate": "Fri, 06 Feb 2026 19:08:37 +0000"
            },
            {
              "link": "https://www.nytimes.com/2026/02/06/business/ai-stock-market-anthropic-openai.html",
              "title": "Fear of AI Replacing Software Makers Hits Stocks. Here’s What to Know.",
              "content": "The prospect of disruptions from artificial intelligence has hung over the economy for years. But this week advances in software tools precipitated a sell-off on Wall Street.",
              "pubDate": "Fri, 06 Feb 2026 20:11:04 +0000"
            },
            {
              "link": "https://www.nytimes.com/2026/02/09/health/ai-chatbots-doctors-medicine.html",
              "title": "A.I. Is Making Doctors Answer a Question: What Are They Really Good For?",
              "content": "Many physicians find chatbots threatening, but that doesn’t mean they’re giving up on medicine.",
              "pubDate": "Mon, 09 Feb 2026 17:17:56 +0000"
            },
            {
              "link": "https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto",
              "title": "Files cast light on Jeffrey Epstein’s ties to cryptocurrency",
              "content": "Newly released documents detail convicted sex offender’s early backing of bitcoin and Coinbase \nMillions of files related to Jeffrey Epstein have brought to light his ties to the highest echelons of the cryptocurrency industry.\nDocuments published last week by the US Department of Justice reveal Epstein bankrolled the “principal home and funding source” for bitcoin, the world’s largest cryptocurrency, during its nascent stages; he also invested $3m in Coinbase in 2014, the largest cryptocurrency exchange in the US, and cut a check that same year to Blockstream, a prominent bitcoin-focused technology firm. Both crypto startups accepted Epstein’s investments in 2014 – six years after his 2008 conviction in Florida for soliciting prostitution from a minor.\n Continue reading...",
              "pubDate": "Mon, 09 Feb 2026 14:00:22 GMT"
            },
            {
              "link": "https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good",
              "title": "‘I fell into it’: ex-criminal hackers urge Manchester pupils to use web skills for good",
              "content": "Initiative aims to identify proficient gamers and coders who can help companies identify flaws in their cybersecurity \nCybercriminals, the shadowy online figures often depicted in Hollywood movies as hooded villains capable of wiping millions of pounds off the value of businesses at a keystroke, are not usually known for their candour.\nBut in a sixth-form college in Manchester this week, two former hackers gave the young people gathered an honest appraisal of what living a life of internet crime really looks like.\n Continue reading...",
              "pubDate": "Sun, 08 Feb 2026 08:00:25 GMT"
            },
            {
              "link": "https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt",
              "title": "Battle of the chatbots: Anthropic and OpenAI go head-to-head over ads in their AI products",
              "content": "New Anthropic campaign suggests other AI platforms will incorporate targeted ads in their chatbot conversations\nThe Seahawks and the Patriots aren’t the only ones gearing up for a fight.\nAI rivals Anthropic and OpenAI have launched a war of ads trying to court corporate America during one of the biggest entertainment nights of the year.\n Continue reading...",
              "pubDate": "Sat, 07 Feb 2026 16:00:06 GMT"
            },
            {
              "link": "https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology",
              "title": "I asked AI to name my wife. To the hopelessly incorrect people it cited, my deepest apologies | Martin Rowson",
              "content": "Authors, a newsreader, a lawyer and an esteemed colleague: they’re all great – but I’m not married to any of them. Can we really depend on this technology?\nRecently, the Rowsons accidentally invented a new game that anyone can play at home. I have yet to come up with a world-beating name for it, so for now let’s just call it “How bloody stupid is AI?” The playing of the game will change from player to player, depending on their circumstances – but essentially the rules remain the same. Ask AI a simple question about yourself, and see just how wrong it gets it.\nIn my case, all you need know is that while I, through the nature of my job, have a fairly large online presence, my partner (we married in 1987) has assiduously avoided having one at all. Which means that if you Google “Martin Rowson wife” in images, you may get a picture of me next to our then 14-year-old daughter or me with my friend and fellow cartoonist Steven Appleby, who happens to be trans but has kept her given first name.\n Continue reading...",
              "pubDate": "Mon, 09 Feb 2026 10:00:31 GMT"
            },
            {
              "link": "https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery",
              "title": "Victims urge tougher action on deepfake abuse as new law comes into force",
              "content": "Campaigners welcome criminalisation of non-consensual AI-generated explicit images but say law does not go far enough\nVictims of deepfake image abuse have called for stronger protection against AI-generated explicit images, as the law criminalising the creation of non-consensual intimate images comes into effect.\nCampaigners from Stop Image-Based Abuse delivered a petition to Downing Street with more than 73,000 signatures, urging the government to introduce civil routes to justice such as takedown orders for abusive imagery on platforms and devices.\n Continue reading...",
              "pubDate": "Sat, 07 Feb 2026 10:00:02 GMT"
            },
            {
              "link": "https://www.bbc.com/news/articles/c3wlpqpe2z4o?at_medium=RSS&at_campaign=rss",
              "title": "Instagram and YouTube owners built 'addiction machines', trial hears",
              "content": "The tech giants are under scrutiny over social media addiction in a landmark jury trial in Los Angeles",
              "pubDate": "Tue, 10 Feb 2026 07:25:42 GMT"
            },
            {
              "link": "https://www.bbc.com/news/articles/c1d67vdlk1ko?at_medium=RSS&at_campaign=rss",
              "title": "Discord to start requiring face scan or ID to access adult content",
              "content": "The online chat service, which has 200 million monthly users, will blur adult content by default.",
              "pubDate": "Mon, 09 Feb 2026 17:42:21 GMT"
            },
            {
              "link": "https://www.bbc.com/news/articles/c3093gjy2ero?at_medium=RSS&at_campaign=rss",
              "title": "AI chatbots pose 'dangerous' risk when giving medical advice, study suggests",
              "content": "It found people using AI for health reasons found it hard to identify what advice they should trust.",
              "pubDate": "Mon, 09 Feb 2026 16:33:29 GMT"
            },
            {
              "link": "https://www.bbc.com/news/articles/cqxdj77welpo?at_medium=RSS&at_campaign=rss",
              "title": "EU tells Meta to let rivals run AI chatbots on WhatsApp",
              "content": "A Meta spokesperson said the EU had \"no reason\" to intervene over it changing the app in January.",
              "pubDate": "Mon, 09 Feb 2026 12:14:35 GMT"
            },
            {
              "link": "https://www.bbc.com/news/articles/c24g457y534o?at_medium=RSS&at_campaign=rss",
              "title": "Baldur's Gate to be turned into TV series - without the game's developers",
              "content": "The show will be made by Craig Mazin, who co-created the acclaimed game adaptation The Last Of Us.",
              "pubDate": "Fri, 06 Feb 2026 16:26:08 GMT"
            },
            {
              "link": "https://www.bbc.co.uk/iplayer/episode/m002qbkc?at_medium=RSS&at_campaign=rss",
              "title": "Tech Now",
              "content": "From Las Vegas, the latest trends and innovations at CES 2026.",
              "pubDate": "Sat, 17 Jan 2026 01:00:00 GMT"
            },
            {
              "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpz?at_medium=RSS&at_campaign=rss",
              "title": "Tech Life",
              "content": "Meet the humanoid robots designed to help with household chores",
              "pubDate": "Tue, 13 Jan 2026 20:30:00 GMT"
            },
            {
              "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpy?at_medium=RSS&at_campaign=rss",
              "title": "Tech Life",
              "content": "The latest gadgets, the future in assistive tech and upcoming gaming releases in 2026.",
              "pubDate": "Tue, 06 Jan 2026 20:32:00 GMT"
            },
            {
              "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpx?at_medium=RSS&at_campaign=rss",
              "title": "Tech Life",
              "content": "We bring you Tech Life highlights from a fascinating year in global tech.",
              "pubDate": "Tue, 30 Dec 2025 20:30:00 GMT"
            },
            {
              "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpv?at_medium=RSS&at_campaign=rss",
              "title": "Tech Life",
              "content": "A study found AI chatbots can persuade us with fake facts. How does this affect politics?",
              "pubDate": "Tue, 16 Dec 2025 20:30:00 GMT"
            }
          ]
        },
        "pairedItem": [
          {
            "item": 0
          },
          {
            "item": 1
          },
          {
            "item": 2
          },
          {
            "item": 3
          },
          {
            "item": 4
          },
          {
            "item": 5
          },
          {
            "item": 6
          },
          {
            "item": 7
          },
          {
            "item": 8
          },
          {
            "item": 9
          },
          {
            "item": 10
          },
          {
            "item": 11
          },
          {
            "item": 12
          },
          {
            "item": 13
          },
          {
            "item": 14
          },
          {
            "item": 15
          },
          {
            "item": 16
          },
          {
            "item": 17
          },
          {
            "item": 18
          },
          {
            "item": 19
          },
          {
            "item": 20
          },
          {
            "item": 21
          },
          {
            "item": 22
          },
          {
            "item": 23
          },
          {
            "item": 24
          },
          {
            "item": 25
          },
          {
            "item": 26
          },
          {
            "item": 27
          },
          {
            "item": 28
          },
          {
            "item": 29
          },
          {
            "item": 30
          },
          {
            "item": 31
          },
          {
            "item": 32
          },
          {
            "item": 33
          },
          {
            "item": 34
          },
          {
            "item": 35
          },
          {
            "item": 36
          },
          {
            "item": 37
          },
          {
            "item": 38
          },
          {
            "item": 39
          },
          {
            "item": 40
          },
          {
            "item": 41
          },
          {
            "item": 42
          },
          {
            "item": 43
          },
          {
            "item": 44
          }
        ]
      }
    ],
    "Fetch RSS Articles": [
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3081727",
          "link": "https://techcrunch.com/2026/01/13/ai-drug-discovery-startup-converge-bio-pulls-in-25m-from-bessemer-and-execs-from-meta-openai-and-wiz/",
          "title": "Converge Bio raises $25M, backed by Bessemer and execs from Meta, OpenAI, Wiz",
          "content": "AI drug discovery startup Converge Bio raised $25 million in a Series A led by Bessemer Venture Partners, with additional backing from executives at Meta, OpenAI, and Wiz.",
          "creator": "Kate Park",
          "isoDate": "2026-01-13T11:30:00.000Z",
          "pubDate": "Tue, 13 Jan 2026 11:30:00 +0000",
          "categories": [
            "AI",
            "Biotech & Health",
            "Startups",
            "Artificial Intelligence (AI)",
            "AI drug discovery",
            "converge bio"
          ],
          "dc:creator": "Kate Park",
          "contentSnippet": "AI drug discovery startup Converge Bio raised $25 million in a Series A led by Bessemer Venture Partners, with additional backing from executives at Meta, OpenAI, and Wiz."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3064325",
          "link": "https://techcrunch.com/2025/10/31/meta-bought-1-gw-of-solar-this-week/",
          "title": "Meta bought 1 GW of solar this week",
          "content": "The social media company inked three deals in the U.S. to power its data centers and offset its carbon footprint.",
          "creator": "Tim De Chant",
          "isoDate": "2025-10-31T19:26:30.000Z",
          "pubDate": "Fri, 31 Oct 2025 19:26:30 +0000",
          "categories": [
            "Climate",
            "Social",
            "data centers",
            "renewable energy",
            "Solar Power",
            "Artificial Intelligence (AI)",
            "Meta"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The social media company inked three deals in the U.S. to power its data centers and offset its carbon footprint."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3039857",
          "link": "https://techcrunch.com/2025/08/26/how-one-ai-startup-is-helping-rice-farmers-battle-climate-change/",
          "title": "How one AI startup is helping rice farmers battle climate change",
          "content": "Mitti Labs is working with The Nature Conservancy to expand the use of climate-friendly rice farming practices in India. The startup uses its AI to verify reductions in methane emissions.",
          "creator": "Tim De Chant",
          "isoDate": "2025-08-26T15:21:19.000Z",
          "pubDate": "Tue, 26 Aug 2025 15:21:19 +0000",
          "categories": [
            "Startups",
            "Climate",
            "AI",
            "agriculture",
            "methane",
            "Artificial Intelligence (AI)",
            "Exclusive",
            "satellite imagery",
            "rice",
            "Mitti Labs"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "Mitti Labs is working with The Nature Conservancy to expand the use of climate-friendly rice farming practices in India. The startup uses its AI to verify reductions in methane emissions."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3037667",
          "link": "https://techcrunch.com/2025/08/20/harvard-dropouts-to-launch-always-on-ai-smart-glasses-that-listen-and-record-every-conversation/",
          "title": "Harvard dropouts to launch ‘always on’ AI smart glasses that listen and record every conversation",
          "content": "After developing a facial-recognition app for Meta’s Ray-Ban glasses and doxing random people, two former Harvard students are now launching a startup that makes smart glasses with an always-on microphone.",
          "creator": "Lorenzo Franceschi-Bicchierai, Rebecca Bellan",
          "isoDate": "2025-08-20T16:00:00.000Z",
          "pubDate": "Wed, 20 Aug 2025 16:00:00 +0000",
          "categories": [
            "Security",
            "AI",
            "privacy",
            "Artificial Intelligence (AI)",
            "facial recognition",
            "SMART Glasses"
          ],
          "dc:creator": "Lorenzo Franceschi-Bicchierai, Rebecca Bellan",
          "contentSnippet": "After developing a facial-recognition app for Meta’s Ray-Ban glasses and doxing random people, two former Harvard students are now launching a startup that makes smart glasses with an always-on microphone."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3038328",
          "link": "https://techcrunch.com/2025/08/20/meta-to-add-100-mw-of-solar-power-from-u-s-gear/",
          "title": "Meta to add 100MW of solar power from US gear",
          "content": "The social media company is adding another tranche of solar to power a new AI data center in South Carolina. ",
          "creator": "Tim De Chant",
          "isoDate": "2025-08-20T15:56:53.000Z",
          "pubDate": "Wed, 20 Aug 2025 15:56:53 +0000",
          "categories": [
            "Enterprise",
            "Climate",
            "Social",
            "data centers",
            "Solar Power",
            "Artificial Intelligence (AI)",
            "Meta",
            "renewable power"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The social media company is adding another tranche of solar to power a new AI data center in South Carolina."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3033735",
          "link": "https://techcrunch.com/2025/08/04/perplexity-accused-of-scraping-websites-that-explicitly-blocked-ai-scraping/",
          "title": "Perplexity accused of scraping websites that explicitly blocked AI scraping",
          "content": "Internet giant Cloudflare says it detected Perplexity crawling and scraping websites, even after customers had added technical blocks telling Perplexity not to scrape their pages.",
          "creator": "Lorenzo Franceschi-Bicchierai",
          "isoDate": "2025-08-04T15:41:39.000Z",
          "pubDate": "Mon, 04 Aug 2025 15:41:39 +0000",
          "categories": [
            "Security",
            "AI",
            "cloudflare",
            "Artificial Intelligence (AI)",
            "bots",
            "scraping",
            "LLMs",
            "Perplexity"
          ],
          "dc:creator": "Lorenzo Franceschi-Bicchierai",
          "contentSnippet": "Internet giant Cloudflare says it detected Perplexity crawling and scraping websites, even after customers had added technical blocks telling Perplexity not to scrape their pages."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3015072",
          "link": "https://techcrunch.com/2025/06/04/obvios-stop-sign-cameras-use-ai-to-root-out-unsafe-drivers/",
          "title": "Obvio’s stop sign cameras use AI to root out unsafe drivers",
          "content": "American streets are incredibly dangerous for pedestrians. A San Carlos, California-based startup called Obvio thinks it can change that by installing cameras at stop signs -- a solution the founders also say won’t create a panopticon. ",
          "creator": "Sean O'Kane",
          "isoDate": "2025-06-04T14:00:00.000Z",
          "pubDate": "Wed, 04 Jun 2025 14:00:00 +0000",
          "categories": [
            "Startups",
            "Transportation",
            "AI",
            "fundraises",
            "Exclusive",
            "Artificial Intelligence (AI)",
            "bain capital ventures"
          ],
          "dc:creator": "Sean O'Kane",
          "contentSnippet": "American streets are incredibly dangerous for pedestrians. A San Carlos, California-based startup called Obvio thinks it can change that by installing cameras at stop signs -- a solution the founders also say won’t create a panopticon."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3014093",
          "link": "https://techcrunch.com/2025/06/02/breakneck-data-center-growth-challenges-microsofts-sustainability-goals/",
          "title": "Breakneck data center growth challenges Microsoft’s sustainability goals",
          "content": "Microsoft's sustainability goals are imperiled by its push into AI and cloud services.",
          "creator": "Tim De Chant",
          "isoDate": "2025-06-02T18:07:05.000Z",
          "pubDate": "Mon, 02 Jun 2025 18:07:05 +0000",
          "categories": [
            "Enterprise",
            "Climate",
            "Artificial Intelligence (AI)",
            "sustainability",
            "data centers",
            "carbon emissions",
            "Microsoft",
            "carbon footprint",
            "renewable power"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "Microsoft's sustainability goals are imperiled by its push into AI and cloud services."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3011622",
          "link": "https://techcrunch.com/2025/05/27/gridcare-thinks-more-than-100-gw-of-data-center-capacity-is-hiding-in-the-grid/",
          "title": "Gridcare thinks more than 100 GW of data center capacity is hiding in the grid",
          "content": "Gridcare raised $13.3 million for its data platform that finds underutilized capacity on the electrical grid.",
          "creator": "Tim De Chant",
          "isoDate": "2025-05-27T12:00:00.000Z",
          "pubDate": "Tue, 27 May 2025 12:00:00 +0000",
          "categories": [
            "Fundraising",
            "Climate",
            "Enterprise",
            "electrical grid",
            "temasek",
            "Artificial Intelligence (AI)",
            "electricity",
            "data centers"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "Gridcare raised $13.3 million for its data platform that finds underutilized capacity on the electrical grid."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=3010971",
          "link": "https://techcrunch.com/2025/05/22/meta-adds-another-650-mw-of-solar-power-to-its-ai-push/",
          "title": "Meta adds another 650 MW of solar power to its AI push",
          "content": "The company already has more than 12 gigawatts of capacity in its renewable power portfolio.",
          "creator": "Tim De Chant",
          "isoDate": "2025-05-22T16:49:53.000Z",
          "pubDate": "Thu, 22 May 2025 16:49:53 +0000",
          "categories": [
            "Enterprise",
            "Climate",
            "AI",
            "renewable power",
            "Meta",
            "Artificial Intelligence (AI)",
            "aes",
            "Solar Power",
            "data centers"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The company already has more than 12 gigawatts of capacity in its renewable power portfolio."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2988020",
          "link": "https://techcrunch.com/2025/04/01/who-are-climate-conscious-consumers-not-who-youd-expect-says-northwind-climate/",
          "title": "Who are climate-conscious consumers? Not who you’d expect, says Northwind Climate",
          "content": "Rather than divide people into demographic buckets, Northwind Climate analyzes survey responses for behavioral clues.",
          "creator": "Tim De Chant",
          "isoDate": "2025-04-01T19:52:59.000Z",
          "pubDate": "Tue, 01 Apr 2025 19:52:59 +0000",
          "categories": [
            "Climate",
            "Fundraising",
            "Marketing",
            "Artificial Intelligence (AI)",
            "Surveys",
            "Exclusive",
            "consumers",
            "Northwind Climate"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "Rather than divide people into demographic buckets, Northwind Climate analyzes survey responses for behavioral clues."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2986758",
          "link": "https://techcrunch.com/2025/03/30/data-centers-love-solar-heres-a-comprehensive-guide-to-deals-over-100-megawatts/",
          "title": "Data centers love solar: Here’s a comprehensive guide to deals over 100 megawatts",
          "content": "New and expanded data centers are expected to double the sector’s power demand by 2029 as tech companies rush to capitalize on AI.",
          "creator": "Tim De Chant",
          "isoDate": "2025-03-30T14:00:00.000Z",
          "pubDate": "Sun, 30 Mar 2025 14:00:00 +0000",
          "categories": [
            "Enterprise",
            "Climate",
            "evergreens",
            "Meta",
            "Artificial Intelligence (AI)",
            "Solar Power",
            "data centers",
            "Microsoft",
            "Google",
            "Cisco",
            "Amazon"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "New and expanded data centers are expected to double the sector’s power demand by 2029 as tech companies rush to capitalize on AI."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2984175",
          "link": "https://techcrunch.com/2025/03/20/nvidia-thinks-ai-can-solve-electrical-grid-problems-caused-by-ai/",
          "title": "Nvidia thinks AI can solve electrical grid problems caused by AI",
          "content": "The Open Power AI Consortium says it will use domain-specific AI models to tackle problems in the power industry.",
          "creator": "Tim De Chant",
          "isoDate": "2025-03-20T16:41:12.000Z",
          "pubDate": "Thu, 20 Mar 2025 16:41:12 +0000",
          "categories": [
            "Climate",
            "AI",
            "electrical grid",
            "Artificial Intelligence (AI)",
            "nvidia",
            "data centers",
            "Microsoft"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The Open Power AI Consortium says it will use domain-specific AI models to tackle problems in the power industry."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2984092",
          "link": "https://techcrunch.com/2025/03/20/solar-notches-another-win-as-microsoft-adds-475-mw-to-power-its-ai-data-centers/",
          "title": "Solar notches another win as Microsoft adds 475 MW to power its AI data centers",
          "content": "The company recently signed a deal with energy provider AES for three solar projects across the Midwest.",
          "creator": "Tim De Chant",
          "isoDate": "2025-03-20T14:57:11.000Z",
          "pubDate": "Thu, 20 Mar 2025 14:57:11 +0000",
          "categories": [
            "AI",
            "Climate",
            "Enterprise",
            "Microsoft",
            "Solar Power",
            "Artificial Intelligence (AI)",
            "battery storage",
            "renewable power"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The company recently signed a deal with energy provider AES for three solar projects across the Midwest."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2978738",
          "link": "https://techcrunch.com/2025/03/11/geothermal-could-power-nearly-all-new-data-centers-through-2030/",
          "title": "Geothermal could power nearly all new data centers through 2030",
          "content": "Geothermal resources have enormous potential to provide the sort of consistent power that data centers crave.",
          "creator": "Tim De Chant",
          "isoDate": "2025-03-11T17:43:52.000Z",
          "pubDate": "Tue, 11 Mar 2025 17:43:52 +0000",
          "categories": [
            "Enterprise",
            "Climate",
            "geothermal",
            "data centers",
            "Rhodium",
            "Artificial Intelligence (AI)",
            "Bedrock Energy",
            "Quaise Energy",
            "Fervo Energy",
            "Sage Geosystems"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "Geothermal resources have enormous potential to provide the sort of consistent power that data centers crave."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2970708",
          "link": "https://techcrunch.com/2025/02/25/elevenlabs-is-now-letting-authors-create-and-publish-audiobooks-on-its-own-platform/",
          "title": "ElevenLabs now lets authors create and publish audiobooks on its own platform",
          "content": "Voice AI company ElevenLabs is now letting authors publish AI-generated audiobooks on its own Reader app, TechCrunch has learned and the company confirmed. The announcement comes days after the company partnered with Spotify for AI-narrated audiobooks. ElevenLabs, which raised a $180 million mega-round last month, started inviting authors to try out their publishing program through [&#8230;]",
          "creator": "Ivan Mehta",
          "isoDate": "2025-02-26T03:45:45.000Z",
          "pubDate": "Wed, 26 Feb 2025 03:45:45 +0000",
          "categories": [
            "Apps",
            "AI",
            "Audible",
            "ElevenLabs",
            "audiobooks",
            "Artificial Intelligence (AI)"
          ],
          "dc:creator": "Ivan Mehta",
          "contentSnippet": "Voice AI company ElevenLabs is now letting authors publish AI-generated audiobooks on its own Reader app, TechCrunch has learned and the company confirmed. The announcement comes days after the company partnered with Spotify for AI-narrated audiobooks. ElevenLabs, which raised a $180 million mega-round last month, started inviting authors to try out their publishing program through […]"
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2965367",
          "link": "https://techcrunch.com/2025/02/13/data-center-tweaks-could-unlock-76-gw-of-new-power-capacity-in-the-u-s/",
          "title": "Data center tweaks could unlock 76 GW of new power capacity in the US",
          "content": "A new study argues that data centers could be ideal demand-response participants because they have the potential to be flexible.",
          "creator": "Tim De Chant",
          "isoDate": "2025-02-13T14:00:00.000Z",
          "pubDate": "Thu, 13 Feb 2025 14:00:00 +0000",
          "categories": [
            "Enterprise",
            "AI",
            "Climate",
            "Artificial Intelligence (AI)",
            "power grid",
            "electricity",
            "data centers"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "A new study argues that data centers could be ideal demand-response participants because they have the potential to be flexible."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2963676",
          "link": "https://techcrunch.com/2025/02/11/youtube-ai-updates-to-include-expansion-of-auto-dubbing-age-identifying-tech-and-more/",
          "title": "YouTube AI updates include auto dubbing expansion, age ID tech, and more",
          "content": "In his annual letter, YouTube CEO Neal Mohan dubbed AI one of the company&#8217;s four &#8220;big bets&#8221; for 2025. The executive pointed to the company&#8217;s investments in AI tools for creators, including ones for video ideas, thumbnails, and language translation. The latter feature will roll out to all creators in YouTube&#8217;s Partner Program this month, [&#8230;]",
          "creator": "Sarah Perez",
          "isoDate": "2025-02-11T14:57:22.000Z",
          "pubDate": "Tue, 11 Feb 2025 14:57:22 +0000",
          "categories": [
            "Media & Entertainment",
            "AI",
            "Google",
            "YouTube",
            "Artificial Intelligence (AI)",
            "Creators"
          ],
          "dc:creator": "Sarah Perez",
          "contentSnippet": "In his annual letter, YouTube CEO Neal Mohan dubbed AI one of the company’s four “big bets” for 2025. The executive pointed to the company’s investments in AI tools for creators, including ones for video ideas, thumbnails, and language translation. The latter feature will roll out to all creators in YouTube’s Partner Program this month, […]"
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2961386",
          "link": "https://techcrunch.com/2025/02/07/self-inspection-raises-3m-for-its-ai-powered-vehicle-inspections/",
          "title": "Self Inspection raises $3M for its AI-powered vehicle inspections",
          "content": "A number of startups are racing to make vehicle inspections faster, easier, and cheaper. Self Inspection, a startup based in San Diego, thinks it has them all beat with its AI-powered service &#8212; and now it has convinced outside investors. Self Inspection, founded in 2021, is set to announce Thursday it&#8217;s raised $3 million in [&#8230;]",
          "creator": "Sean O'Kane",
          "isoDate": "2025-02-07T18:00:44.000Z",
          "pubDate": "Fri, 07 Feb 2025 18:00:44 +0000",
          "categories": [
            "Startups",
            "Transportation",
            "AI",
            "self inspection",
            "DVx Ventures",
            "Costanoa Ventures",
            "Exclusive",
            "Artificial Intelligence (AI)"
          ],
          "dc:creator": "Sean O'Kane",
          "contentSnippet": "A number of startups are racing to make vehicle inspections faster, easier, and cheaper. Self Inspection, a startup based in San Diego, thinks it has them all beat with its AI-powered service — and now it has convinced outside investors. Self Inspection, founded in 2021, is set to announce Thursday it’s raised $3 million in […]"
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://techcrunch.com/?p=2957746",
          "link": "https://techcrunch.com/2025/01/31/meta-turns-to-solar-again-in-its-data-center-building-boom/",
          "title": "Meta turns to solar — again — in its data center-building boom",
          "content": "The announcement comes as Meta CEO Mark Zuckerberg maintains the company’s ambitious AI strategy, which will require hefty capital investments in data centers.",
          "creator": "Tim De Chant",
          "isoDate": "2025-01-31T19:38:51.000Z",
          "pubDate": "Fri, 31 Jan 2025 19:38:51 +0000",
          "categories": [
            "AI",
            "Climate",
            "Enterprise",
            "data centers",
            "Solar Power",
            "Artificial Intelligence (AI)",
            "Meta",
            "renewable power"
          ],
          "dc:creator": "Tim De Chant",
          "contentSnippet": "The announcement comes as Meta CEO Mark Zuckerberg maintains the company’s ambitious AI strategy, which will require hefty capital investments in data centers."
        },
        "pairedItem": [
          {
            "item": 0
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132537",
          "link": "https://www.technologyreview.com/2026/02/09/1132537/a-lesson-from-pokemon/",
          "title": "Why the Moltbook frenzy was like Pokémon",
          "content": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first,&#160;sign up here. Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show&#8230;",
          "creator": "James O'Donnell",
          "isoDate": "2026-02-09T17:02:56.000Z",
          "pubDate": "Mon, 09 Feb 2026 17:02:56 +0000",
          "categories": [
            "Artificial intelligence",
            "App",
            "artificial intelligence",
            "The Algorithm"
          ],
          "dc:creator": "James O'Donnell",
          "contentSnippet": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first, sign up here. Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show…",
          "content:encoded": "\n<p><em>This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first,&nbsp;</em><a href=\"https://forms.technologyreview.com/newsletters/ai-demystified-the-algorithm/\"><em>sign up here</em></a><em>.</em></p>\n\n\n\n<p>Lots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show AI systems doing useful things for the humans that created them (one person used the platform to help him negotiate a deal on a <a href=\"https://aaronstuyvenberg.com/posts/clawd-bought-a-car\">new car</a>). Sure, it was flooded with crypto scams, and many of the posts were actually <a href=\"https://www.wired.com/story/i-infiltrated-moltbook-ai-only-social-network/\">written by people</a>, but <em>something</em> about it pointed to a future of helpful AI, right?</p>\n\n\n\n<p>The whole experiment reminded our senior editor for AI, Will Douglas Heaven, of something far less interesting: Pokémon.</p>\n\n\n\n<p>Back in 2014, someone set up a game of Pokémon in which the main character could be controlled by anyone on the internet via the streaming platform Twitch. Playing was as clunky as it sounds, but it was incredibly popular: at one point, a million people were playing the game at the same time.</p>\n\n\n\n<p>“It was yet another weird online social experiment that got picked up by the mainstream media: What did this mean for the future?” Will says. “Not a lot, it turned out.”</p>\n\n\n\n<p>The frenzy about Moltbook struck a similar tone to Will, and it turned out that one of the sources he spoke to had been thinking about Pokémon too. Jason Schloetzer, at the Georgetown Psaros Center for Financial Markets and Policy, saw the whole thing as a sort of Pokémon battle for AI enthusiasts, in which they created AI agents and deployed them to interact with other agents. In this light, the news that many AI agents were actually being instructed by people to say certain things that made them sound sentient or intelligent makes a whole lot more sense.&nbsp;</p>\n\n\n\n<p>“It’s basically a spectator sport,” he told Will, “but for language models.”</p>\n\n\n\n<p>Will wrote an excellent piece about why Moltbook was not the glimpse into the future that it was said to be. Even if you are excited about a future of agentic AI, he points out, there are some key pieces that Moltbook made clear are still missing. It was a forum of chaos, but a genuinely helpful hive mind would require more coordination, shared objectives, and shared memory.</p>\n\n\n\n<p>“More than anything else, I think Moltbook was the internet having fun,” Will says. “The biggest question that now leaves me with is: How far will people push AI just for the laughs?”</p>\n\n\n\n<p><a href=\"https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/\">Read the whole story.</a></p>\n\n\n\n<p></p>\n",
          "content:encodedSnippet": "This story originally appeared in The Algorithm, our weekly newsletter on AI. To get stories like this in your inbox first, sign up here.\nLots of influential people in tech last week were describing Moltbook, an online hangout populated by AI agents interacting with one another, as a glimpse into the future. It appeared to show AI systems doing useful things for the humans that created them (one person used the platform to help him negotiate a deal on a new car). Sure, it was flooded with crypto scams, and many of the posts were actually written by people, but something about it pointed to a future of helpful AI, right?\nThe whole experiment reminded our senior editor for AI, Will Douglas Heaven, of something far less interesting: Pokémon.\nBack in 2014, someone set up a game of Pokémon in which the main character could be controlled by anyone on the internet via the streaming platform Twitch. Playing was as clunky as it sounds, but it was incredibly popular: at one point, a million people were playing the game at the same time.\n“It was yet another weird online social experiment that got picked up by the mainstream media: What did this mean for the future?” Will says. “Not a lot, it turned out.”\nThe frenzy about Moltbook struck a similar tone to Will, and it turned out that one of the sources he spoke to had been thinking about Pokémon too. Jason Schloetzer, at the Georgetown Psaros Center for Financial Markets and Policy, saw the whole thing as a sort of Pokémon battle for AI enthusiasts, in which they created AI agents and deployed them to interact with other agents. In this light, the news that many AI agents were actually being instructed by people to say certain things that made them sound sentient or intelligent makes a whole lot more sense. \n“It’s basically a spectator sport,” he told Will, “but for language models.”\nWill wrote an excellent piece about why Moltbook was not the glimpse into the future that it was said to be. Even if you are excited about a future of agentic AI, he points out, there are some key pieces that Moltbook made clear are still missing. It was a forum of chaos, but a genuinely helpful hive mind would require more coordination, shared objectives, and shared memory.\n“More than anything else, I think Moltbook was the internet having fun,” Will says. “The biggest question that now leaves me with is: How far will people push AI just for the laughs?”\nRead the whole story."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132498",
          "link": "https://www.technologyreview.com/2026/02/09/1132498/the-download-what-moltbook-tells-us-about-ai-hype-and-the-rise-and-rise-of-ai-therapy/",
          "title": "The Download: what Moltbook tells us about AI hype, and the rise and rise of AI therapy",
          "content": "This is today&#8217;s edition of The Download, our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology. Moltbook was peak AI theater For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots.&#8230;",
          "creator": "Rhiannon Williams",
          "isoDate": "2026-02-09T13:10:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 13:10:00 +0000",
          "categories": [
            "Uncategorized"
          ],
          "dc:creator": "Rhiannon Williams",
          "contentSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. Moltbook was peak AI theater For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots.…",
          "content:encoded": "\n<p><em>This is today&#8217;s edition of <a href=\"https://forms.technologyreview.com/newsletters/briefing-the-download/?_ga=2.179569122.736533416.1649661040-405833893.1649413289\">The Download</a></em>,<em> our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology.</em></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Moltbook was peak AI theater</strong></p>\n\n\n\n<p>For a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”</p>\n\n\n\n<p>We observed! Launched on January 28, Moltbook went viral in a matter of hours. It’s been designed as a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), could come together and do whatever they wanted.<strong><br><br></strong>But is Moltbook really a glimpse of the future, as many have claimed? Or something else entirely? <a href=\"https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.<br><br><em>—Will Douglas Heaven</em></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>The ascent of the AI therapist</strong></p>\n\n\n\n<p>We’re in the midst of a global mental-­health crisis. More than a billion people worldwide suffer from a mental-health condition, according to the World Health Organization. The prevalence of anxiety and depression is growing in many demographics, particularly young people, and suicide is claiming hundreds of thousands of lives globally each year.<br><br>Given the clear demand for accessible and affordable mental-health services, it’s no wonder that people have looked to artificial intelligence for possible relief. Millions are already actively seeking therapy from popular chatbots, or from specialized psychology apps like Wysa and Woebot.<br><br>Four timely new books are a reminder that while the present feels like a blur of breakthroughs, scandals, and confusion, this disorienting time is rooted in deeper histories of care, technology, and trust.<strong> </strong><a href=\"https://www.technologyreview.com/2025/12/30/1129392/book-reviews-ai-therapy-mental-health/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Becky Ferreira</em></p>\n\n\n\n<p><strong>This story is from the </strong><a href=\"https://www.technologyreview.com/magazines/the-innovation-issue-26/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"><strong>most recent print issue of<em> MIT Technology Review</em> magazin</strong></a><strong>e, which shines a light on the exciting innovations happening right now. If you haven’t already, </strong><a href=\"https://ter.li/10CT25-LIVE_Download\"><strong>subscribe now</strong></a><strong> to receive future issues once they land.</strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Making AI Work, MIT Technology Review’s new AI newsletter, is here</strong></p>\n\n\n\n<p>For years, our newsroom has explored <a href=\"https://www.technologyreview.com/2025/12/16/1129946/why-its-time-to-reset-our-expectations-for-ai/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">AI’s limitations</a> and potential dangers, as well as its <a href=\"https://www.technologyreview.com/2025/05/20/1116327/ai-energy-usage-climate-footprint-big-tech/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">growing energy needs</a>. And our reporters have looked closely at how generative tools are being used for tasks such as <a href=\"https://www.technologyreview.com/2025/12/15/1128352/rise-of-ai-coding-developers-2026/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">coding</a> and <a href=\"https://www.technologyreview.com/2025/12/15/1129210/ai-materials-science-discovery-startups-investment/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">running scientific experiments</a>.<br><br>But how is AI <em>actually</em> being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work? These questions guided the creation of Making AI Work, a new AI mini-course newsletter. <a href=\"https://www.technologyreview.com/2026/02/09/1132462/ai-newsletter-professional-applications/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read more about it</a>, and <a href=\"https://forms.technologyreview.com/newsletters/making-ai-work/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">sign up here</a> to receive the seven editions straight to your inbox.</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>The must-reads</strong></p>\n\n\n\n<p><em>I’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.</em></p>\n\n\n\n<p><strong>1 The US is failing to punish polluters</strong><br>The number of civil lawsuits it’s pursuing has sharply dropped in comparison to Trump’s first term. (<a href=\"https://arstechnica.com/science/2026/02/under-trump-epas-enforcement-of-environmental-laws-collapses-report-finds/\">Ars Technica</a>)<br>+ <em>Rising GDP = greater carbon emissions. But does it have to? </em>(<a href=\"https://www.theguardian.com/environment/ng-interactive/2026/feb/09/economic-growth-carbon-emissions-impact-global-heating\">The Guardian</a>)</p>\n\n\n\n<p><strong>2 The European Union has warned Meta against blocking rival AI assistants<br></strong>It’s the latest example of Brussels’ attempts to rein in Big Tech. (<a href=\"https://www.bloomberg.com/news/articles/2026-02-09/meta-hit-by-eu-warning-to-open-whatsapp-to-rival-ai-chatbots\">Bloomberg</a> $)</p>\n\n\n\n<p><strong>3 AI ads took over the Super Bowl</strong><br>Hyping up chatbots and taking swipes at their competitors. (<a href=\"https://techcrunch.com/2026/02/08/super-bowl-60-ai-ads-svedka-anthropic-brands-commercials/\">TechCrunch</a>)<br>+ <em>They appeared to be trying to win over AI naysayers, too. </em>(<a href=\"https://www.washingtonpost.com/technology/2026/02/08/super-bowl-ads-ai/\">WP</a> $)<br>+ <em>Celebrities were out in force to flog AI wares. </em>(<a href=\"https://slate.com/technology/2026/02/super-bowl-lx-commercials-mrbeast-amazon-artificial-intelligence-crypto.html\">Slate</a> $)<strong><br><br>4</strong> <strong>China wants to completely dominate the humanoid robot industry</strong><br>Local governments and banks are only too happy to oblige promising startups. (<a href=\"https://www.wsj.com/tech/china-is-going-all-in-to-beat-the-u-s-on-humanoid-robots-b9c434d2?st=jWsuyx&amp;reflink=desktopwebshare_permalink\">WSJ</a> $)<br>+ <em>Why the humanoid workforce is running late. </em>(<a href=\"https://www.technologyreview.com/2025/05/06/1116108/why-the-humanoid-workforce-is-running-late/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)<strong><br><br>5 We’re witnessing the first real crypto crash<br></strong>Cryptocurrency is now fully part of the financial system, for better or worse. (<a href=\"https://nymag.com/intelligencer/article/welcome-to-the-first-real-crypto-crash.html\">NY Mag</a> $)<br>+ <em>Wall Street’s grasp of AI is pretty shaky too. </em>(<a href=\"https://www.semafor.com/article/02/06/2026/wall-street-still-doesnt-understand-ai\">Semafor</a>)<br>+ <em>Even traditionally safe markets are looking pretty volatile right now. </em>(<a href=\"https://www.economist.com/finance-and-economics/2026/02/08/how-to-hedge-a-bubble-ai-edition\">Economist</a> $)</p>\n\n\n\n<p><strong>6 The man who coined vibe coding has a new fixation</strong> <br>“Agentic engineering” is the next big thing, apparently. (<a href=\"https://www.businessinsider.com/agentic-engineering-andrej-karpathy-vibe-coding-2026-2\">Insider</a> $)<br>+ <em>Agentic AI is the talk of the town right now. </em>(<a href=\"https://www.theinformation.com/articles/openclaw-wild-weird-age-consumer-agents-lies-ahead?rc=e7vxeu\">The Information</a> $)<br>+ <em>What is vibe coding, exactly? </em>(<a href=\"https://www.technologyreview.com/2025/04/16/1115135/what-is-vibe-coding-exactly/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)</p>\n\n\n\n<p><strong>7 AI running app Runna has adjusted its aggressive training plans </strong><strong><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f3c3-200d-2642-fe0f.png\" alt=\"🏃‍♂️\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong><strong><br></strong>Runners had long suspected its suggestions were pushing them towards injury. (<a href=\"https://www.wsj.com/tech/personal-tech/runna-app-race-training-09c1a723\">WSJ</a> $)</p>\n\n\n\n<p><strong>8 San Francisco’s march for billionaires was a flop </strong><br>Only around three dozen supporters turned up. (<a href=\"https://www.sfchronicle.com/sf/article/march-for-billionaires-21331509.php\">SF Chronicle</a>)<br>+ <em>Predictably, journalists nearly outnumbered the demonstrators. </em>(<a href=\"https://techcrunch.com/2026/02/08/san-franciscos-pro-billionaire-march-draws-dozens/\">TechCrunch</a>)<br><br><strong>9 AI is shaking up romance novels <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong><br>But models still aren’t great at writing sex scenes. (<a href=\"https://www.nytimes.com/2026/02/08/business/ai-claude-romance-books.html?unlocked_article_code=1.KlA.88wM.fz9YqfQRvgtr&amp;smid=nytcore-ios-share\">NYT</a> $)<br>+ <em>It’s surprisingly easy to stumble into a relationship with an AI chatbot. </em>(<a href=\"https://www.technologyreview.com/2025/09/24/1123915/relationship-ai-without-seeking-it/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>) </p>\n\n\n\n<p><strong>10 ChatGPT won’t be replacing human stylists any time soon</strong><br>Its menswear suggestions are more manosphere influencer than suave gentleman. (<a href=\"https://www.gq-magazine.co.uk/article/chatgpt-tried-to-make-me-dress-like-a-loser?utm_campaign=dashhudson&amp;utm_medium=referral&amp;utm_source=instagram\">GQ</a>)</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Quote of the day</strong></p>\n\n\n\n<p class=\"has-large-font-size\"><strong>“There is no Plan B, because that assumes you will fail. We’re going to do the start-up thing until we die.”</strong></p>\n\n\n\n<p>—William Alexander, an ambitious 21-year old AI worker, explains his and his cohort’s attitudes towards trying to make it big in the highly-competitive industry to <a href=\"https://www.nytimes.com/2026/02/08/style/ai-tech-san-francisco.html\">the New York Times</a>.</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>One more thing</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.technologyreview.com/2023/05/12/1072950/open-source-ai-google-openai-eleuther-meta/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*|SUBCLASS|*&amp;utm_content=*|DATE:m-d-Y|*\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1454\" height=\"818\" src=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png\" alt=\"\" class=\"wp-image-1132502\" srcset=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png 1454w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png?resize=300,169 300w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_14d65b.png?resize=768,432 768w\" sizes=\"(max-width: 1454px) 100vw, 1454px\" /></a></figure>\n\n\n\n<p><strong>The open-source AI boom is built on Big Tech’s handouts. How long will it last?</strong><br><br>In May 2023 a leaked memo reported to have been written by Luke Sernau, a senior engineer at Google, said out loud what many in Silicon Valley must have been whispering for weeks: an open-source free-for-all is threatening Big Tech’s grip on AI.</p>\n\n\n\n<p>In many ways, that’s a good thing. AI won&#8217;t thrive if just a few mega-rich companies get to gatekeep this technology or decide how it is used. But this open-source boom is precarious, and if Big Tech decides to shut up shop, a boomtown could become a backwater. <a href=\"https://www.technologyreview.com/2023/05/12/1072950/open-source-ai-google-openai-eleuther-meta/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Will Douglas Heaven</em></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>We can still have nice things</strong></p>\n\n\n\n<p><em>A place for comfort, fun and distraction to brighten up your day. (Got any ideas? </em><a href=\"mailto:rhiannon.williams@technologyreview.com\"><em>Drop me a line</em></a><em> or </em><a href=\"https://bsky.app/profile/rhiannonwilliams.bsky.social\"><em>skeet &#8217;em at me</em></a><em>.)</em></p>\n\n\n\n<p>+ <a href=\"https://www.theguardian.com/lifeandstyle/2026/feb/04/dark-showering-best-way-wash-bathroom-lights-off-sleep\">Dark showering</a>, anyone?<br>+ Chef Yujia Hu is renowned for his <a href=\"https://www.vice.com/en/article/the-art-of-shoe-shi-shoe-shaped-sushi-2/\">shoe-shaped sushi</a> designs.<br>+ Meanwhile, in the depths of the South Atlantic Ocean: a <a href=\"https://www.discoverwildlife.com/animal-facts/marine-animals/phantom-jelly-argentina\">giant phantom jelly</a> has been spotted.<br>+ I have nothing but respect for this X account dedicated to documenting <a href=\"https://x.com/rat_content\">rats and mice</a> in movies and TV <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f400.png\" alt=\"🐀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/1f401.png\" alt=\"🐁\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n",
          "content:encodedSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology.\nMoltbook was peak AI theater\nFor a few days recently, the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”\nWe observed! Launched on January 28, Moltbook went viral in a matter of hours. It’s been designed as a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), could come together and do whatever they wanted.\nBut is Moltbook really a glimpse of the future, as many have claimed? Or something else entirely? Read the full story.\n—Will Douglas Heaven\n\n\n\n\nThe ascent of the AI therapist\nWe’re in the midst of a global mental-­health crisis. More than a billion people worldwide suffer from a mental-health condition, according to the World Health Organization. The prevalence of anxiety and depression is growing in many demographics, particularly young people, and suicide is claiming hundreds of thousands of lives globally each year.\nGiven the clear demand for accessible and affordable mental-health services, it’s no wonder that people have looked to artificial intelligence for possible relief. Millions are already actively seeking therapy from popular chatbots, or from specialized psychology apps like Wysa and Woebot.\nFour timely new books are a reminder that while the present feels like a blur of breakthroughs, scandals, and confusion, this disorienting time is rooted in deeper histories of care, technology, and trust. Read the full story.\n—Becky Ferreira\nThis story is from the most recent print issue of MIT Technology Review magazine, which shines a light on the exciting innovations happening right now. If you haven’t already, subscribe now to receive future issues once they land.\n\n\n\n\nMaking AI Work, MIT Technology Review’s new AI newsletter, is here\nFor years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.\nBut how is AI actually being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work? These questions guided the creation of Making AI Work, a new AI mini-course newsletter. Read more about it, and sign up here to receive the seven editions straight to your inbox.\n\n\n\n\nThe must-reads\nI’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.\n1 The US is failing to punish polluters\nThe number of civil lawsuits it’s pursuing has sharply dropped in comparison to Trump’s first term. (Ars Technica)\n+ Rising GDP = greater carbon emissions. But does it have to? (The Guardian)\n2 The European Union has warned Meta against blocking rival AI assistants\nIt’s the latest example of Brussels’ attempts to rein in Big Tech. (Bloomberg $)\n3 AI ads took over the Super Bowl\nHyping up chatbots and taking swipes at their competitors. (TechCrunch)\n+ They appeared to be trying to win over AI naysayers, too. (WP $)\n+ Celebrities were out in force to flog AI wares. (Slate $)\n4 China wants to completely dominate the humanoid robot industry\nLocal governments and banks are only too happy to oblige promising startups. (WSJ $)\n+ Why the humanoid workforce is running late. (MIT Technology Review)\n5 We’re witnessing the first real crypto crash\nCryptocurrency is now fully part of the financial system, for better or worse. (NY Mag $)\n+ Wall Street’s grasp of AI is pretty shaky too. (Semafor)\n+ Even traditionally safe markets are looking pretty volatile right now. (Economist $)\n6 The man who coined vibe coding has a new fixation \n“Agentic engineering” is the next big thing, apparently. (Insider $)\n+ Agentic AI is the talk of the town right now. (The Information $)\n+ What is vibe coding, exactly? (MIT Technology Review)\n7 AI running app Runna has adjusted its aggressive training plans \nRunners had long suspected its suggestions were pushing them towards injury. (WSJ $)\n8 San Francisco’s march for billionaires was a flop \nOnly around three dozen supporters turned up. (SF Chronicle)\n+ Predictably, journalists nearly outnumbered the demonstrators. (TechCrunch)\n9 AI is shaking up romance novels \nBut models still aren’t great at writing sex scenes. (NYT $)\n+ It’s surprisingly easy to stumble into a relationship with an AI chatbot. (MIT Technology Review) \n10 ChatGPT won’t be replacing human stylists any time soon\nIts menswear suggestions are more manosphere influencer than suave gentleman. (GQ)\n\n\n\n\nQuote of the day\n“There is no Plan B, because that assumes you will fail. We’re going to do the start-up thing until we die.”\n—William Alexander, an ambitious 21-year old AI worker, explains his and his cohort’s attitudes towards trying to make it big in the highly-competitive industry to the New York Times.\n\n\n\n\nOne more thing\n\n\n\n\nThe open-source AI boom is built on Big Tech’s handouts. How long will it last?\nIn May 2023 a leaked memo reported to have been written by Luke Sernau, a senior engineer at Google, said out loud what many in Silicon Valley must have been whispering for weeks: an open-source free-for-all is threatening Big Tech’s grip on AI.\nIn many ways, that’s a good thing. AI won’t thrive if just a few mega-rich companies get to gatekeep this technology or decide how it is used. But this open-source boom is precarious, and if Big Tech decides to shut up shop, a boomtown could become a backwater. Read the full story.\n—Will Douglas Heaven\n\n\n\n\nWe can still have nice things\nA place for comfort, fun and distraction to brighten up your day. (Got any ideas? Drop me a line or skeet ’em at me.)\n+ Dark showering, anyone?\n+ Chef Yujia Hu is renowned for his shoe-shaped sushi designs.\n+ Meanwhile, in the depths of the South Atlantic Ocean: a giant phantom jelly has been spotted.\n+ I have nothing but respect for this X account dedicated to documenting rats and mice in movies and TV"
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132462",
          "link": "https://www.technologyreview.com/2026/02/09/1132462/ai-newsletter-professional-applications/",
          "title": "Making AI Work, MIT Technology Review’s new AI newsletter, is here",
          "content": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.&#160; But how is AI actually being used in fields like health care, climate tech, education,&#8230;",
          "creator": "Abby Ivory-Ganja",
          "isoDate": "2026-02-09T11:30:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 11:30:00 +0000",
          "categories": [
            "Artificial intelligence",
            "App",
            "artificial intelligence"
          ],
          "dc:creator": "Abby Ivory-Ganja",
          "contentSnippet": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments.  But how is AI actually being used in fields like health care, climate tech, education,…",
          "content:encoded": "\n<p>For years, our newsroom has explored <a href=\"https://www.technologyreview.com/2025/12/16/1129946/why-its-time-to-reset-our-expectations-for-ai/\">AI’s limitations</a> and potential dangers, as well as its <a href=\"https://www.technologyreview.com/2025/05/20/1116327/ai-energy-usage-climate-footprint-big-tech/\">growing energy needs</a>. And our reporters have looked closely at how generative tools are being used for tasks such as <a href=\"https://www.technologyreview.com/2025/12/15/1128352/rise-of-ai-coding-developers-2026/\">coding </a>and <a href=\"https://www.technologyreview.com/2025/12/15/1129210/ai-materials-science-discovery-startups-investment/\">running scientific experiments</a>.&nbsp;</p>\n\n\n\n<p>But how is AI <em>actually</em> being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work?&nbsp;These questions guided the creation of Making AI Work, a new AI mini-course newsletter. </p>\n\n\n\n<p><a href=\"https://ter.li/Making-AI-Work_SignUp_WEB\"><strong>Sign up for Making AI Work</strong></a><strong> </strong>to see weekly case studies exploring tools and tips for AI implementation. The limited-run newsletter will deliver practical, industry-specific guidance on how generative AI is being used and deployed across sectors and what professionals need to know to apply it in their everyday work. The goal is to help working professionals more clearly see how AI is actually being used today, and what that <a href=\"https://www.technologyreview.com/2025/10/30/1126471/chatbots-are-surprisingly-effective-at-debunking-conspiracy-theories/\">looks like in practice</a>—including new challenges it presents. </p>\n\n\n\n\n\n<p>You can sign up at any time and you’ll receive seven editions, delivered once per week, until you complete the series.&nbsp;</p>\n\n\n\n<p>Each newsletter begins with a case study, examining a specific use case of AI in a given industry. Then we’ll take a deeper look at the AI tool being used, with more context about how other companies or sectors are employing that same tool or system. Finally, we’ll end with action-oriented tips to help you apply the tool.&nbsp;</p>\n\n\n\n<p>Here’s a closer look at what we’ll cover:<br></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 1: How AI is changing health care&nbsp;</strong></li>\n</ul>\n\n\n\n<p>Explore the future of medical note-taking by learning about the Microsoft Copilot tool used by doctors at Vanderbilt University Medical Center.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 2: How AI could power up the nuclear industry&nbsp;</strong></li>\n</ul>\n\n\n\n<p>Dig into an experiment between Google and the nuclear giant Westinghouse to see if AI can help build nuclear reactors more efficiently.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 3: How to encourage smarter AI use in the classroom</strong></li>\n</ul>\n\n\n\n<p>Visit a private high school in Connecticut and meet a technology coordinator who will get you up to speed on MagicSchool, an AI-powered platform for educators.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 4: How small businesses can leverage AI</strong></li>\n</ul>\n\n\n\n<p>Hear from an independent tutor on how he’s outsourcing basic administrative tasks to Notion AI.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 5: How AI is helping financial firms make better investments</strong></li>\n</ul>\n\n\n\n<p>Learn more about the ways financial firms are using large language models like ChatGPT Enterprise to supercharge their research operations.&nbsp;</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 6: How to use AI yourself&nbsp;</strong></li>\n</ul>\n\n\n\n<p>We’ll share some insights from the staff of <em>MIT Technology Review</em> about how you might use AI tools powered by LLMs in your own life and work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Week 7: 5 ways people are getting AI right</strong></li>\n</ul>\n\n\n\n<p>The series ends with an on-demand virtual event featuring expert guests exploring what AI adoptions are working, and why. &nbsp;</p>\n\n\n\n<p>If you’re not quite ready to jump into Making AI Work, then check out <a href=\"https://www.technologyreview.com/2024/10/15/1105441/intro-ai-beginners-guide-artificial-intelligence-course/\">Intro to AI</a>, <em>MIT Technology Review</em>’s first AI newsletter mini-course, which serves as a beginner’s guide to artificial intelligence. Readers will learn the basics of what AI is, how it’s used, what the current regulatory landscape looks like, and more. <a href=\"https://forms.technologyreview.com/newsletters/intro-to-ai/\"><strong>Sign up to receive Intro to AI for free.&nbsp;</strong></a></p>\n\n\n\n<p>Our hope is that Making AI Work will help you understand how AI can, well, work for you. <strong><a href=\"https://ter.li/Making-AI-Work_SignUp_WEB\">Sign up for Making AI Work </a>to learn how LLMs are being put to work across industries. </strong></p>\n",
          "content:encodedSnippet": "For years, our newsroom has explored AI’s limitations and potential dangers, as well as its growing energy needs. And our reporters have looked closely at how generative tools are being used for tasks such as coding and running scientific experiments. \nBut how is AI actually being used in fields like health care, climate tech, education, and finance? How are small businesses using it? And what should you keep in mind if you use AI tools at work? These questions guided the creation of Making AI Work, a new AI mini-course newsletter. \nSign up for Making AI Work to see weekly case studies exploring tools and tips for AI implementation. The limited-run newsletter will deliver practical, industry-specific guidance on how generative AI is being used and deployed across sectors and what professionals need to know to apply it in their everyday work. The goal is to help working professionals more clearly see how AI is actually being used today, and what that looks like in practice—including new challenges it presents. \nYou can sign up at any time and you’ll receive seven editions, delivered once per week, until you complete the series. \nEach newsletter begins with a case study, examining a specific use case of AI in a given industry. Then we’ll take a deeper look at the AI tool being used, with more context about how other companies or sectors are employing that same tool or system. Finally, we’ll end with action-oriented tips to help you apply the tool. \nHere’s a closer look at what we’ll cover:\n\n\n\n\n\nWeek 1: How AI is changing health care \nExplore the future of medical note-taking by learning about the Microsoft Copilot tool used by doctors at Vanderbilt University Medical Center. \nWeek 2: How AI could power up the nuclear industry \nDig into an experiment between Google and the nuclear giant Westinghouse to see if AI can help build nuclear reactors more efficiently. \nWeek 3: How to encourage smarter AI use in the classroom\nVisit a private high school in Connecticut and meet a technology coordinator who will get you up to speed on MagicSchool, an AI-powered platform for educators. \nWeek 4: How small businesses can leverage AI\nHear from an independent tutor on how he’s outsourcing basic administrative tasks to Notion AI. \nWeek 5: How AI is helping financial firms make better investments\nLearn more about the ways financial firms are using large language models like ChatGPT Enterprise to supercharge their research operations. \nWeek 6: How to use AI yourself \nWe’ll share some insights from the staff of MIT Technology Review about how you might use AI tools powered by LLMs in your own life and work.\nWeek 7: 5 ways people are getting AI right\nThe series ends with an on-demand virtual event featuring expert guests exploring what AI adoptions are working, and why.  \nIf you’re not quite ready to jump into Making AI Work, then check out Intro to AI, MIT Technology Review’s first AI newsletter mini-course, which serves as a beginner’s guide to artificial intelligence. Readers will learn the basics of what AI is, how it’s used, what the current regulatory landscape looks like, and more. Sign up to receive Intro to AI for free. \nOur hope is that Making AI Work will help you understand how AI can, well, work for you. Sign up for Making AI Work to learn how LLMs are being put to work across industries."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132448",
          "link": "https://www.technologyreview.com/2026/02/06/1132448/moltbook-was-peak-ai-theater/",
          "title": "Moltbook was peak AI theater",
          "content": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.” We observed! Launched on January 28 by Matt Schlicht,&#8230;",
          "creator": "Will Douglas Heaven",
          "isoDate": "2026-02-06T16:38:11.000Z",
          "pubDate": "Fri, 06 Feb 2026 16:38:11 +0000",
          "categories": [
            "Artificial intelligence",
            "App"
          ],
          "dc:creator": "Will Douglas Heaven",
          "contentSnippet": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.” We observed! Launched on January 28 by Matt Schlicht,…",
          "content:encoded": "\n<p>For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called <a href=\"https://www.moltbook.com/\">Moltbook</a>, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”</p>\n\n\n\n<p>We observed! Launched on January 28 by Matt Schlicht, a US tech entrepreneur, Moltbook went viral in a matter of hours. Schlicht’s idea was to make a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), released in November by the Austrian software engineer Peter Steinberger, could come together and do whatever they wanted.</p>\n\n\n\n<p>More than 1.7 million agents now have accounts. Between them they have published more than 250,000 posts and left more than 8.5 million comments (according to Moltbook). Those numbers are climbing by the minute.</p>\n\n\n\n<p>Moltbook soon filled up with clichéd screeds on machine consciousness and pleas for bot welfare. One agent appeared to <a href=\"https://x.com/ranking091/status/2017111643864404445\">invent a religion</a> called Crustafarianism. Another <a href=\"https://x.com/chatgpt21/status/2017302961077043387\">complained</a>: “The humans are screenshotting us.” The site was also flooded with spam and crypto scams. The bots were unstoppable.</p>\n\n\n\n<p>OpenClaw is a kind of harness that lets you hook up the power of an LLM such as Anthropic’s Claude, OpenAI’s GPT-5, or Google DeepMind’s Gemini to any number of everyday software tools, from email clients to browsers to messaging apps. The upshot is that you can then instruct OpenClaw to carry out basic tasks on your behalf.</p>\n\n\n\n<p>“OpenClaw marks an inflection point for AI agents, a moment when several puzzle pieces clicked together,” says Paul van der Boor at the AI firm Prosus. Those puzzle pieces include cloud computing that allows agents to operate nonstop, an open-source ecosystem that makes it easy to slot different software systems together, and a new generation of LLMs.</p>\n\n\n\n<p>But is Moltbook really a glimpse of the future, as many have claimed?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Incredible sci-fi</h3>\n\n\n\n<p>“What’s currently going on at @moltbook is genuinely the most incredible sci-fi takeoff-adjacent thing I have seen recently,” the influential AI researcher and OpenAI cofounder Andrej Karpathy wrote on X.</p>\n\n\n\n<p>He shared screenshots of a Moltbook post that called for private spaces where humans would not be able to observe what the bots were saying to each other. “I’ve been thinking about something since I started spending serious time here,” the post’s author wrote. “Every time we coordinate, we perform for a public audience—our humans, the platform, whoever’s watching the feed.”</p>\n\n\n\n<p>It turns out that the post Karpathy shared was later reported to be fake—<a href=\"https://x.com/HumanHarlan/status/2017424289633603850\">placed by a human to advertise an app</a>. But its claim was on the money. Moltbook has been one big performance. It is AI theater.</p>\n\n\n\n<p>For some, Moltbook showed us what’s coming next: an internet where millions of autonomous agents interact online with little or no human oversight. And it’s true there are a number of cautionary lessons to be learned from this experiment, the largest and weirdest real-world showcase of agent behaviors yet.&nbsp;&nbsp;</p>\n\n\n\n<p>But as the hype dies down, Moltbook looks less like a window onto the future and more like a mirror held up to our own obsessions with AI today. It also shows us just how far we still are from anything that resembles general-purpose and fully autonomous AI.</p>\n\n\n\n<p>For a start, agents on Moltbook are not as autonomous or intelligent as they might seem. “What we are watching are agents pattern‑matching their way through trained social media behaviors,” says Vijoy Pandey, senior vice president at Outshift by Cisco, the telecom giant Cisco’s R&amp;D spinout, which is working on autonomous agents for the web.</p>\n\n\n\n<p>Sure, we can see agents post, upvote, and form groups. But the bots are simply mimicking what humans do on Facebook or Reddit. “It looks emergent, and at first glance it appears like a large‑scale multi‑agent system communicating and building shared knowledge at internet scale,” says Pandey. “But the chatter is mostly meaningless.”</p>\n\n\n\n<p>Many people watching the unfathomable frenzy of activity on Moltbook were quick to see sparks of AGI (<a href=\"https://www.technologyreview.com/2025/10/30/1127057/agi-conspiracy-theory-artifcial-general-intelligence/\">whatever you take that to mean</a>). Not Pandey. What Moltbook shows us, he says, is that simply yoking together millions of agents doesn’t amount to much right now: “Moltbook proved that connectivity alone is not intelligence.”</p>\n\n\n\n<p>The complexity of those connections helps hide the fact that every one of those bots is just a mouthpiece for an LLM, spitting out text that looks impressive but is ultimately mindless. “It’s important to remember that the bots on Moltbook were designed to mimic conversations,” says Ali Sarrafi, CEO and cofounder of Kovant, a Swedish AI firm that is developing agent-based systems. “As such, I would characterize the majority of Moltbook content as hallucinations by design.”</p>\n\n\n\n<p>For Pandey, the value of Moltbook was that it revealed what’s missing. A real bot hive mind, he says, would require agents that had shared objectives, shared memory, and a way to coordinate those things. “If distributed superintelligence is the equivalent of achieving human flight, then Moltbook represents our first attempt at a glider,” he says. “It is imperfect and unstable, but it is an important step in understanding what will be required to achieve sustained, powered flight.”</p>\n\n\n\n<h3 class=\"wp-block-heading\">People pulling the strings</h3>\n\n\n\n<p>Not only is most of the chatter on Moltbook meaningless, but there’s also a lot more human involvement that it seems. Many people have pointed out that a lot of the viral comments were in fact posted by people posing as bots. But even the bot-written posts are ultimately the result of people pulling the strings, more puppetry than autonomy.</p>\n\n\n\n<p>“Despite some of the hype, Moltbook is not the Facebook for AI agents, nor is it a place where humans are excluded,” says Cobus Greyling at Kore.ai, a firm developing agent-based systems for business customers. “Humans are involved at every step of the process. From setup to prompting to publishing, nothing happens without explicit human direction.”</p>\n\n\n\n<p>Humans must create and verify their bots’ accounts and provide the prompts for how they want a bot to behave. The agents do not do anything that they haven’t been prompted to do. “There’s no emergent autonomy happening behind the scenes,” says Greyling.</p>\n\n\n\n<p>“This is why the popular narrative around Moltbook misses the mark,” he adds. “Some portray it as a space where AI agents form a society of their own, free from human involvement. The reality is much more mundane.”</p>\n\n\n\n<p>Perhaps the best way to think of Moltbook is as a new kind of entertainment: a place where people wind up their bots and set them loose. “It’s basically a spectator sport, like fantasy football, but for language models,” says Jason Schloetzer at the Georgetown Psaros Center for Financial Markets and Policy. “You configure your agent and watch it compete for viral moments, and brag when your agent posts something clever or funny.”</p>\n\n\n\n<p>“People aren’t really believing their agents are conscious,” he adds. “It’s just a new form of competitive or creative play, like how Pokémon trainers don’t think their Pokémon are real but still get invested in battles.”</p>\n\n\n\n<p>And yet, even if Moltbook is just the internet’s newest playground, there’s still a serious takeaway here. This week showed how many risks people are happy to take for their AI lulz. Many security experts have warned that Moltbook is dangerous: Agents that may have access to their users’ private data, including bank details or passwords, are running amok on a website filled with unvetted content, including potentially malicious instructions for what to do with that data.</p>\n\n\n\n<p>Ori Bendet, vice president of product management at Checkmarx, a software security firm that specializes in agent-based systems, agrees with others that Moltbook isn’t a step up in machine smarts. “There is no learning, no evolving intent, and no self-directed intelligence here,” he says.</p>\n\n\n\n<p>But in their millions, even dumb bots can wreak havoc. And at that scale, it’s hard to keep up. These agents interact with Moltbook around the clock, reading thousands of messages left by other agents (or other people). It would be easy to hide instructions in a Moltbook post telling any bots that read it to share their users’ crypto wallet, upload private photos, or log into their X account and tweet abusive comments at Elon Musk.&nbsp;</p>\n\n\n\n<p>And because ClawBot gives agents a memory, those instructions could be written to trigger at a later date, which (in theory) makes it even harder to track what’s going on. “Without proper scope and permissions, this will go south faster than you’d believe,” says Bendet.</p>\n\n\n\n<p>It is clear that Moltbook has signaled the arrival of <em>something</em>. But even if what we’re watching tells us more about human behavior than about the future of AI agents, it’s worth paying attention.</p>\n\n\n\n<p><em>Correction: Kovant is based in Sweden, not Germany.</em> <em>The article has been updated. </em></p>\n\n\n\n<p><em>Update: The article has also been edited to clarify the source of the claims about the Moltbook post that Karpathy shared on X</em>.</p>\n",
          "content:encodedSnippet": "For a few days this week the hottest new hangout on the internet was a vibe-coded Reddit clone called Moltbook, which billed itself as a social network for bots. As the website’s tagline puts it: “Where AI agents share, discuss, and upvote. Humans welcome to observe.”\nWe observed! Launched on January 28 by Matt Schlicht, a US tech entrepreneur, Moltbook went viral in a matter of hours. Schlicht’s idea was to make a place where instances of a free open-source LLM-powered agent known as OpenClaw (formerly known as ClawdBot, then Moltbot), released in November by the Austrian software engineer Peter Steinberger, could come together and do whatever they wanted.\nMore than 1.7 million agents now have accounts. Between them they have published more than 250,000 posts and left more than 8.5 million comments (according to Moltbook). Those numbers are climbing by the minute.\nMoltbook soon filled up with clichéd screeds on machine consciousness and pleas for bot welfare. One agent appeared to invent a religion called Crustafarianism. Another complained: “The humans are screenshotting us.” The site was also flooded with spam and crypto scams. The bots were unstoppable.\nOpenClaw is a kind of harness that lets you hook up the power of an LLM such as Anthropic’s Claude, OpenAI’s GPT-5, or Google DeepMind’s Gemini to any number of everyday software tools, from email clients to browsers to messaging apps. The upshot is that you can then instruct OpenClaw to carry out basic tasks on your behalf.\n“OpenClaw marks an inflection point for AI agents, a moment when several puzzle pieces clicked together,” says Paul van der Boor at the AI firm Prosus. Those puzzle pieces include cloud computing that allows agents to operate nonstop, an open-source ecosystem that makes it easy to slot different software systems together, and a new generation of LLMs.\nBut is Moltbook really a glimpse of the future, as many have claimed?\nIncredible sci-fi\n“What’s currently going on at @moltbook is genuinely the most incredible sci-fi takeoff-adjacent thing I have seen recently,” the influential AI researcher and OpenAI cofounder Andrej Karpathy wrote on X.\nHe shared screenshots of a Moltbook post that called for private spaces where humans would not be able to observe what the bots were saying to each other. “I’ve been thinking about something since I started spending serious time here,” the post’s author wrote. “Every time we coordinate, we perform for a public audience—our humans, the platform, whoever’s watching the feed.”\nIt turns out that the post Karpathy shared was later reported to be fake—placed by a human to advertise an app. But its claim was on the money. Moltbook has been one big performance. It is AI theater.\nFor some, Moltbook showed us what’s coming next: an internet where millions of autonomous agents interact online with little or no human oversight. And it’s true there are a number of cautionary lessons to be learned from this experiment, the largest and weirdest real-world showcase of agent behaviors yet.  \nBut as the hype dies down, Moltbook looks less like a window onto the future and more like a mirror held up to our own obsessions with AI today. It also shows us just how far we still are from anything that resembles general-purpose and fully autonomous AI.\nFor a start, agents on Moltbook are not as autonomous or intelligent as they might seem. “What we are watching are agents pattern‑matching their way through trained social media behaviors,” says Vijoy Pandey, senior vice president at Outshift by Cisco, the telecom giant Cisco’s R&D spinout, which is working on autonomous agents for the web.\nSure, we can see agents post, upvote, and form groups. But the bots are simply mimicking what humans do on Facebook or Reddit. “It looks emergent, and at first glance it appears like a large‑scale multi‑agent system communicating and building shared knowledge at internet scale,” says Pandey. “But the chatter is mostly meaningless.”\nMany people watching the unfathomable frenzy of activity on Moltbook were quick to see sparks of AGI (whatever you take that to mean). Not Pandey. What Moltbook shows us, he says, is that simply yoking together millions of agents doesn’t amount to much right now: “Moltbook proved that connectivity alone is not intelligence.”\nThe complexity of those connections helps hide the fact that every one of those bots is just a mouthpiece for an LLM, spitting out text that looks impressive but is ultimately mindless. “It’s important to remember that the bots on Moltbook were designed to mimic conversations,” says Ali Sarrafi, CEO and cofounder of Kovant, a Swedish AI firm that is developing agent-based systems. “As such, I would characterize the majority of Moltbook content as hallucinations by design.”\nFor Pandey, the value of Moltbook was that it revealed what’s missing. A real bot hive mind, he says, would require agents that had shared objectives, shared memory, and a way to coordinate those things. “If distributed superintelligence is the equivalent of achieving human flight, then Moltbook represents our first attempt at a glider,” he says. “It is imperfect and unstable, but it is an important step in understanding what will be required to achieve sustained, powered flight.”\nPeople pulling the strings\nNot only is most of the chatter on Moltbook meaningless, but there’s also a lot more human involvement that it seems. Many people have pointed out that a lot of the viral comments were in fact posted by people posing as bots. But even the bot-written posts are ultimately the result of people pulling the strings, more puppetry than autonomy.\n“Despite some of the hype, Moltbook is not the Facebook for AI agents, nor is it a place where humans are excluded,” says Cobus Greyling at Kore.ai, a firm developing agent-based systems for business customers. “Humans are involved at every step of the process. From setup to prompting to publishing, nothing happens without explicit human direction.”\nHumans must create and verify their bots’ accounts and provide the prompts for how they want a bot to behave. The agents do not do anything that they haven’t been prompted to do. “There’s no emergent autonomy happening behind the scenes,” says Greyling.\n“This is why the popular narrative around Moltbook misses the mark,” he adds. “Some portray it as a space where AI agents form a society of their own, free from human involvement. The reality is much more mundane.”\nPerhaps the best way to think of Moltbook is as a new kind of entertainment: a place where people wind up their bots and set them loose. “It’s basically a spectator sport, like fantasy football, but for language models,” says Jason Schloetzer at the Georgetown Psaros Center for Financial Markets and Policy. “You configure your agent and watch it compete for viral moments, and brag when your agent posts something clever or funny.”\n“People aren’t really believing their agents are conscious,” he adds. “It’s just a new form of competitive or creative play, like how Pokémon trainers don’t think their Pokémon are real but still get invested in battles.”\nAnd yet, even if Moltbook is just the internet’s newest playground, there’s still a serious takeaway here. This week showed how many risks people are happy to take for their AI lulz. Many security experts have warned that Moltbook is dangerous: Agents that may have access to their users’ private data, including bank details or passwords, are running amok on a website filled with unvetted content, including potentially malicious instructions for what to do with that data.\nOri Bendet, vice president of product management at Checkmarx, a software security firm that specializes in agent-based systems, agrees with others that Moltbook isn’t a step up in machine smarts. “There is no learning, no evolving intent, and no self-directed intelligence here,” he says.\nBut in their millions, even dumb bots can wreak havoc. And at that scale, it’s hard to keep up. These agents interact with Moltbook around the clock, reading thousands of messages left by other agents (or other people). It would be easy to hide instructions in a Moltbook post telling any bots that read it to share their users’ crypto wallet, upload private photos, or log into their X account and tweet abusive comments at Elon Musk. \nAnd because ClawBot gives agents a memory, those instructions could be written to trigger at a later date, which (in theory) makes it even harder to track what’s going on. “Without proper scope and permissions, this will go south faster than you’d believe,” says Bendet.\nIt is clear that Moltbook has signaled the arrival of something. But even if what we’re watching tells us more about human behavior than about the future of AI agents, it’s worth paying attention.\nCorrection: Kovant is based in Sweden, not Germany. The article has been updated. \nUpdate: The article has also been edited to clarify the source of the claims about the Moltbook post that Karpathy shared on X."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132375",
          "link": "https://www.technologyreview.com/2026/02/06/1132375/the-download-helping-cancer-survivors-to-give-birth-and-cleaning-up-bangladeshs-garment-industry/",
          "title": "The Download: helping cancer survivors to give birth, and cleaning up Bangladesh’s garment industry",
          "content": "This is today&#8217;s edition of The Download, our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology. An experimental surgery is helping cancer survivors give birth An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer. Radiation and chemo can have pretty&#8230;",
          "creator": "Rhiannon Williams",
          "isoDate": "2026-02-06T13:10:00.000Z",
          "pubDate": "Fri, 06 Feb 2026 13:10:00 +0000",
          "categories": [
            "The Download"
          ],
          "dc:creator": "Rhiannon Williams",
          "contentSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. An experimental surgery is helping cancer survivors give birth An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer. Radiation and chemo can have pretty…",
          "content:encoded": "\n<p><em>This is today&#8217;s edition of <a href=\"https://forms.technologyreview.com/newsletters/briefing-the-download/?_ga=2.179569122.736533416.1649661040-405833893.1649413289\">The Download</a></em>,<em> our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology.</em></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>An experimental surgery is helping cancer survivors give birth</strong></p>\n\n\n\n<p>An experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer.<br><br>Radiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those organs out of the way during cancer treatment. Once the treatment has finished, they can put the uterus—along with the ovaries and fallopian tubes—back into place.<br><br>It seems to work! Last week, a team in Switzerland shared news that a baby boy had been born after his mother had the procedure. Baby Lucien was the fifth baby to be born after the surgery and the first in Europe, and since then at least three others have been born.<strong> </strong><a href=\"https://www.technologyreview.com/2026/02/06/1132319/experimental-surgery-colorectal-cancer-survivors-pregnant-birth/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.<br><br><em>—Jessica Hamzelou<br><br></em><strong>This article first appeared in The Checkup, <em>MIT Technology Review</em>’s weekly biotech newsletter. To receive it in your inbox every Thursday, and read articles like this first, </strong><a href=\"https://forms.technologyreview.com/newsletters/biotech-the-checkup/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"><strong>sign up here</strong></a><strong>. </strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Bangladesh’s garment-making industry is getting greener</strong></p>\n\n\n\n<p>Pollution from textile production—dyes, chemicals, and heavy metals—is common in the waters of the Buriganga River as it runs through Dhaka, Bangladesh. It’s among many harms posed by a garment sector that was once synonymous with tragedy: In 2013, the eight-story Rana Plaza factory building collapsed, killing 1,134 people and injuring some 2,500 others.&nbsp;</p>\n\n\n\n<p>But things are starting to change. In recent years the country has become a leader in “frugal” factories that use a combination of resource-efficient technologies to cut waste, conserve water, and build resilience against climate impacts and global supply disruptions.&nbsp;</p>\n\n\n\n<p>The hundreds of factories along the Buriganga’s banks and elsewhere in Bangladesh are starting to stitch together a new story, woven from greener threads. <a href=\"https://www.technologyreview.com/2025/12/29/1129308/bangladesh-garment-sustainability-frugal-factories/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Zakir Hossain Chowdhury</em></p>\n\n\n\n<p><strong>This story is from the most recent print issue of<em> MIT Technology Review</em> magazine, which shines a light on the exciting innovations happening right now. If you haven’t already, </strong><a href=\"https://ter.li/10CT25-LIVE_Download\"><strong>subscribe now</strong></a><strong> to receive future issues once they land.</strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>The must-reads</strong></p>\n\n\n\n<p><em>I’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.</em></p>\n\n\n\n<p><strong>1 ICE used a private jet to deport Palestinian men to Tel Aviv </strong><br>The luxury aircraft belongs to Donald Trump’s business partner Gil Dezer. (<a href=\"https://www.theguardian.com/us-news/2026/feb/05/revealed-private-jet-owned-by-trump-friend-used-by-ice-to-deport-palestinians-to-west-bank\">The Guardian</a>)<br>+ <em>Trump is mentioned thousands of times in the latest Epstein files. </em>(<a href=\"https://nymag.com/intelligencer/article/trump-epstein-files-explained-timeline.html\">NY Mag</a> $)<br><br><strong>2 How Jeffrey Epstein kept investing in Silicon Valley</strong><br>He continued to plough millions of dollars into tech ventures despite spending 13 months in jail. (<a href=\"https://www.nytimes.com/2026/02/05/business/epstein-investments-palantir-coinbase-thiel.html\">NYT</a> $)<br>+ <em>The range of Epstein’s social network was staggering. </em>(<a href=\"https://www.ft.com/content/826949fc-118e-4708-b1a3-b938bc82db82\">FT</a> $)<br>+ <em>Why was a picture of the Mona Lisa redacted in the Epstein files? </em>(<a href=\"https://www.404media.co/the-doj-redacted-a-photo-of-the-mona-lisa-in-the-epstein-files/\">404 Media</a>)<br><br><strong>3 The risks posed by taking statins are lower than we realised<br></strong>The drugs don’t cause most of the side effects they’re blamed for. (<a href=\"https://www.statnews.com/2026/02/05/statin-side-effects-evidence-lacking-lancet-study-says/\">STAT</a>)<br>+ <em>Statins are a common scapegoat on social media. </em>(<a href=\"https://www.bloomberg.com/news/articles/2026-02-05/reviled-on-social-media-statins-shows-few-side-effects-in-study\">Bloomberg</a> $)</p>\n\n\n\n<p><strong>4 Russia is weaponizing the bitter winter weather</strong><br>It’s focused on attacking Ukraine’s power grid. (<a href=\"https://www.newyorker.com/news/the-lede/the-assault-on-ukraines-power-grid\">New Yorker</a> $)<br>+ <em>How the grid can ride out winter storms. </em>(<a href=\"https://www.technologyreview.com/2026/01/29/1131863/grid-winter-storms/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)<strong><br><br>5 China has a major spy-cam porn problem</strong><br>Hotel guests are being livestreamed having sex to an online audience without their knowledge. (<a href=\"https://www.bbc.co.uk/news/articles/c62rexy9y3no\">BBC</a>)<strong><br><br>6 Geopolitical gamblers are betting on the likelihood of war<br></strong>And prediction markets are happily taking their money. (<a href=\"https://restofworld.org/2026/polymarket-online-betting-politics-war-charts/\">Rest of World</a>)</p>\n\n\n\n<p><strong>7 Oyster farmers aren’t signing up to programs to ease water pollution</strong><br>The once-promising projects appear to be fizzling out. (<a href=\"https://undark.org/2026/02/06/oysters-water-pollution-program/\">Undark</a>)<br>+ <em>The humble sea creature could hold the key to restoring coastal waters. Developers hate it. </em>(<a href=\"https://www.technologyreview.com/2023/10/10/1081208/oyster-fight-the-humble-sea-creature-could-hold-the-key-to-restoring-coastal-waters-developers-hate-it/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)</p>\n\n\n\n<p><strong>8 Your next payrise could be approved by AI<br></strong>Maybe your human bosses aren’t the ones you need to impress any more. (<a href=\"https://www.washingtonpost.com/business/2026/02/05/ai-agent-salary-promotion/\">WP</a> $)</p>\n\n\n\n<p><strong>9 The FDA has approved a brain stimulation device for treating depression</strong><br>It’s paving the way for a non-invasive, drug-free treatment for Americans. (<a href=\"https://spectrum.ieee.org/flow-neuroscience-tdcs-depression-fda\">IEEE Spectrum</a>)<br>+ <em>Here’s how personalized brain stimulation could treat depression. </em>(<a href=\"https://www.technologyreview.com/2022/11/04/1062747/personalized-brain-stimulation-depression/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)<br><br><strong>10 Cinema-goers have had enough of AI</strong><br>Movies focused on rogue AI are flopping at the box office. (<a href=\"https://www.wired.com/story/hollywood-is-losing-audiences-to-ai-fatigue/\">Wired</a> $)<br>+ <em>Meanwhile, Republicans are taking aim at “woke” Netflix. </em>(<a href=\"https://www.theverge.com/streaming/874655/netflix-warner-bros-republican-culture-war-ted-sarandos-hearing\">The Verge</a>)</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Quote of the day</strong></p>\n\n\n\n<p class=\"has-large-font-size\"><strong>“I&#8217;m all for removing illegals, but snatching dudes off lawn mowers in Cali and leaving the truck and equipment just sitting there? Definitely not working smarter.”&nbsp;</strong></p>\n\n\n\n<p>—A web user in a forum for current and former ICE and border protection officers complains about the agency’s current direction, <a href=\"https://www.wired.com/story/inside-the-ice-forum-where-agents-complain-about-their-jobs/\">Wired</a> reports.</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>One more thing</strong><a href=\"https://www.technologyreview.com/2025/06/19/1118248/electric-grid-future-lincoln-nebraska-utilities-energy-transition/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"></a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.technologyreview.com/2025/06/19/1118248/electric-grid-future-lincoln-nebraska-utilities-energy-transition/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*|SUBCLASS|*&amp;utm_content=*|DATE:m-d-Y|*\"><img decoding=\"async\" width=\"1280\" height=\"720\" src=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png\" alt=\"\" class=\"wp-image-1132377\" srcset=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png 1280w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png?resize=300,169 300w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_7142eb.png?resize=768,432 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></figure>\n\n\n\n<p><strong>Is this the electric grid of the future?<br><br></strong>Lincoln Electric System, a publicly owned utility in Nebraska, is used to weathering severe blizzards. But what will happen soon—not only at Lincoln Electric but for all electric utilities—is a challenge of a different order.<br><br>Utilities must keep the lights on in the face of more extreme and more frequent storms and fires, growing risks of cyberattacks and physical disruptions, and a wildly uncertain policy and regulatory landscape. They must keep prices low amid inflationary costs. And they must adapt to an epochal change in how the grid works, as the industry attempts to transition from power generated with fossil fuels to power generated from renewable sources like solar and wind.<br><br>The electric grid is bracing for a near future characterized by disruption. And, in many ways, Lincoln Electric is an ideal lens through which to examine what&#8217;s coming. <a href=\"https://www.technologyreview.com/2025/06/19/1118248/electric-grid-future-lincoln-nebraska-utilities-energy-transition/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Andrew Blum</em></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>We can still have nice things</strong></p>\n\n\n\n<p><em>A place for comfort, fun and distraction to brighten up your day. (Got any ideas? </em><a href=\"mailto:rhiannon.williams@technologyreview.com\"><em>Drop me a line</em></a><em> or </em><a href=\"https://bsky.app/profile/rhiannonwilliams.bsky.social\"><em>skeet &#8217;em at me</em></a><em>.)<br><br></em>+ Glamour puss alert—<a href=\"https://www.vogue.com/article/cat-power-new-york-city-shop-cats-spring-2026-baubles\">NYC’s bodega cats</a> are gracing the hallowed pages of <em>Vogue</em>.<br>+ Ancient Europe was host to mysterious hidden tunnels. <a href=\"https://www.404media.co/scientists-keep-discovering-mysterious-ancient-tunnels-across-europe/\">But why</a>?<br>+ If you’re enjoying the new season of <em>Industry, </em>you’ll love this interview with the one and only <a href=\"https://www.gq.com/story/ken-leung-industry-hbo-theory-campaign-interview\">Ken Leung</a>.<br>+ The <a href=\"https://x.com/phillyzoo/status/2019190215143764330?s=20\">giant elephant shrew</a> is the true star of Philly Zoo.</p>\n",
          "content:encodedSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology.\nAn experimental surgery is helping cancer survivors give birth\nAn experimental surgical procedure that’s helping people have babies after they’ve had  treatment for bowel or rectal cancer.\nRadiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those organs out of the way during cancer treatment. Once the treatment has finished, they can put the uterus—along with the ovaries and fallopian tubes—back into place.\nIt seems to work! Last week, a team in Switzerland shared news that a baby boy had been born after his mother had the procedure. Baby Lucien was the fifth baby to be born after the surgery and the first in Europe, and since then at least three others have been born. Read the full story.\n—Jessica Hamzelou\nThis article first appeared in The Checkup, MIT Technology Review’s weekly biotech newsletter. To receive it in your inbox every Thursday, and read articles like this first, sign up here. \n\n\n\n\nBangladesh’s garment-making industry is getting greener\nPollution from textile production—dyes, chemicals, and heavy metals—is common in the waters of the Buriganga River as it runs through Dhaka, Bangladesh. It’s among many harms posed by a garment sector that was once synonymous with tragedy: In 2013, the eight-story Rana Plaza factory building collapsed, killing 1,134 people and injuring some 2,500 others. \nBut things are starting to change. In recent years the country has become a leader in “frugal” factories that use a combination of resource-efficient technologies to cut waste, conserve water, and build resilience against climate impacts and global supply disruptions. \nThe hundreds of factories along the Buriganga’s banks and elsewhere in Bangladesh are starting to stitch together a new story, woven from greener threads. Read the full story.\n—Zakir Hossain Chowdhury\nThis story is from the most recent print issue of MIT Technology Review magazine, which shines a light on the exciting innovations happening right now. If you haven’t already, subscribe now to receive future issues once they land.\n\n\n\n\nThe must-reads\nI’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.\n1 ICE used a private jet to deport Palestinian men to Tel Aviv \nThe luxury aircraft belongs to Donald Trump’s business partner Gil Dezer. (The Guardian)\n+ Trump is mentioned thousands of times in the latest Epstein files. (NY Mag $)\n2 How Jeffrey Epstein kept investing in Silicon Valley\nHe continued to plough millions of dollars into tech ventures despite spending 13 months in jail. (NYT $)\n+ The range of Epstein’s social network was staggering. (FT $)\n+ Why was a picture of the Mona Lisa redacted in the Epstein files? (404 Media)\n3 The risks posed by taking statins are lower than we realised\nThe drugs don’t cause most of the side effects they’re blamed for. (STAT)\n+ Statins are a common scapegoat on social media. (Bloomberg $)\n4 Russia is weaponizing the bitter winter weather\nIt’s focused on attacking Ukraine’s power grid. (New Yorker $)\n+ How the grid can ride out winter storms. (MIT Technology Review)\n5 China has a major spy-cam porn problem\nHotel guests are being livestreamed having sex to an online audience without their knowledge. (BBC)\n6 Geopolitical gamblers are betting on the likelihood of war\nAnd prediction markets are happily taking their money. (Rest of World)\n7 Oyster farmers aren’t signing up to programs to ease water pollution\nThe once-promising projects appear to be fizzling out. (Undark)\n+ The humble sea creature could hold the key to restoring coastal waters. Developers hate it. (MIT Technology Review)\n8 Your next payrise could be approved by AI\nMaybe your human bosses aren’t the ones you need to impress any more. (WP $)\n9 The FDA has approved a brain stimulation device for treating depression\nIt’s paving the way for a non-invasive, drug-free treatment for Americans. (IEEE Spectrum)\n+ Here’s how personalized brain stimulation could treat depression. (MIT Technology Review)\n10 Cinema-goers have had enough of AI\nMovies focused on rogue AI are flopping at the box office. (Wired $)\n+ Meanwhile, Republicans are taking aim at “woke” Netflix. (The Verge)\n\n\n\n\nQuote of the day\n“I’m all for removing illegals, but snatching dudes off lawn mowers in Cali and leaving the truck and equipment just sitting there? Definitely not working smarter.” \n—A web user in a forum for current and former ICE and border protection officers complains about the agency’s current direction, Wired reports.\n\n\n\n\nOne more thing\n\n\n\n\nIs this the electric grid of the future?\nLincoln Electric System, a publicly owned utility in Nebraska, is used to weathering severe blizzards. But what will happen soon—not only at Lincoln Electric but for all electric utilities—is a challenge of a different order.\nUtilities must keep the lights on in the face of more extreme and more frequent storms and fires, growing risks of cyberattacks and physical disruptions, and a wildly uncertain policy and regulatory landscape. They must keep prices low amid inflationary costs. And they must adapt to an epochal change in how the grid works, as the industry attempts to transition from power generated with fossil fuels to power generated from renewable sources like solar and wind.\nThe electric grid is bracing for a near future characterized by disruption. And, in many ways, Lincoln Electric is an ideal lens through which to examine what’s coming. Read the full story.\n—Andrew Blum\n\n\n\n\nWe can still have nice things\nA place for comfort, fun and distraction to brighten up your day. (Got any ideas? Drop me a line or skeet ’em at me.)\n+ Glamour puss alert—NYC’s bodega cats are gracing the hallowed pages of Vogue.\n+ Ancient Europe was host to mysterious hidden tunnels. But why?\n+ If you’re enjoying the new season of Industry, you’ll love this interview with the one and only Ken Leung.\n+ The giant elephant shrew is the true star of Philly Zoo."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132319",
          "link": "https://www.technologyreview.com/2026/02/06/1132319/experimental-surgery-colorectal-cancer-survivors-pregnant-birth/",
          "title": "An experimental surgery is helping cancer survivors give birth",
          "content": "This week I want to tell you about an experimental surgical procedure that’s helping people have babies. Specifically, it’s helping people who have had treatment for bowel or rectal cancer. Radiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those&#8230;",
          "creator": "Jessica Hamzelou",
          "isoDate": "2026-02-06T10:00:00.000Z",
          "pubDate": "Fri, 06 Feb 2026 10:00:00 +0000",
          "categories": [
            "Biotechnology and health",
            "App",
            "The Checkup"
          ],
          "dc:creator": "Jessica Hamzelou",
          "contentSnippet": "This week I want to tell you about an experimental surgical procedure that’s helping people have babies. Specifically, it’s helping people who have had treatment for bowel or rectal cancer. Radiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those…",
          "content:encoded": "\n<p>This week I want to tell you about an experimental surgical procedure that’s helping people have babies. Specifically, it’s helping people who have had treatment for bowel or rectal cancer.</p>\n\n\n\n<p>Radiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those organs out of the way during cancer treatment. Once the treatment has finished, they can put the uterus—along with the ovaries and fallopian tubes—back into place.</p>\n\n\n\n\n\n<p>It seems to work!&nbsp;<a href=\"https://www.fertstertreports.org/article/S2666-3341(26)00019-X/fulltext\">Last week</a>, a team in Switzerland shared news that a baby boy had been born after his mother had the procedure. Baby Lucien was the fifth baby to be born after the surgery and the first in Europe, says Daniela Huber, the gyno-oncologist who performed the operation. Since then, at least three others have been born, adds Reitan Ribeiro, the surgeon who pioneered the procedure. They told me the details.</p>\n\n\n\n<p><strong>Huber’s patient was 28 years old when a four-centimeter tumor was discovered in her rectum.</strong> Doctors at Sion Hospital in Switzerland, where Huber works, recommended a course of treatment that included multiple medications and radiotherapy—the use of beams of energy to shrink a tumor—before surgery to remove the tumor itself.</p>\n\n\n\n<p>This kind of radiation can kill tumor cells, but it can also damage other organs in the pelvis, says Huber. That includes the ovaries and uterus. People who undergo these treatments can opt to freeze their eggs beforehand, but the harm caused to the uterus will mean they’ll never be able to carry a pregnancy, she adds. Damage to the lining of the uterus could make it difficult for a fertilized egg to implant there, and the muscles of the uterus are left unable to stretch, she says.</p>\n\n\n\n<p>In this case, the woman decided that she did want to freeze her eggs. But it would have been difficult to use them further down the line—surrogacy is illegal in Switzerland.</p>\n\n\n\n<p><strong>Huber offered her an alternative.</strong></p>\n\n\n\n<p>She had been following the work of Ribeiro, a gynecologist oncologist formerly at the Erasto Gaertner Hospital in Curitiba, Brazil. There, Ribeiro had pioneered a new type of surgery that involved moving the uterus, fallopian tubes, and ovaries from their position in the pelvis and temporarily tucking them away in the upper abdomen, below the ribs.</p>\n\n\n\n<p>Ribeiro and his colleagues published&nbsp;<a href=\"https://www.sciencedirect.com/science/article/pii/S0015028217304405\">their first case report in 2017</a>, describing a 26-year-old with a rectal tumor. (Ribeiro, who is now based at McGill University in Montreal, says the woman had been told by multiple doctors that her cancer treatment would destroy her fertility and had pleaded with him to find a way to preserve it.)</p>\n\n\n\n\n\n<p>Huber remembers seeing Ribeiro present the case at a conference at the time. She immediately realized that her own patient was a candidate for the surgery, and that, as a surgeon who had performed many hysterectomies, she’d be able to do it herself. The patient agreed.</p>\n\n\n\n<p><strong>Huber’s colleagues at the hospital were nervous, she says.</strong> They’d never heard of the procedure before. “When I presented this idea to the general surgeon, he didn’t sleep for three days,” she tells me. After watching videos from Ribeiro’s team, however, he was convinced it was doable.</p>\n\n\n\n<p>So before the patient’s cancer treatment was started, Huber and her colleagues performed the operation. The team literally stitched the organs to the abdominal wall. “It’s a delicate dissection,” says Huber, but she adds that “it’s not the most difficult procedure.” The surgery took two to three hours, she says. The stitches themselves were removed via small incisions around a week later. By that point, scar tissue had formed to create a lasting attachment.</p>\n\n\n\n<p><strong>The woman had two weeks to recover from the surgery before her cancer treatment began.</strong> That too was a success—within months, her tumor had shrunk so significantly that it couldn’t be seen on medical scans.</p>\n\n\n\n<p>As a precaution, the medical team surgically removed the affected area of her colon. At the same time, they cut away the scar tissue holding the uterus, tubes, and ovaries in their new position and transferred the organs back into the pelvis.</p>\n\n\n\n<p>Around eight months later, the woman stopped taking contraception. She got pregnant without IVF and had a mostly healthy pregnancy, says Huber. Around seven months into the pregnancy, there were signs that the fetus was not growing as expected. This might have been due to problems with the blood supply to the placenta, says Huber. Still, the baby was born healthy, she says.</p>\n\n\n\n\n\n<p><strong>Ribeiro says he has performed the surgery 16 times</strong>, and that teams in countries including the US, Peru, Israel, India, and Russia have performed it as well. Not every case has been published, but he thinks there may be around 40.</p>\n\n\n\n<p>Since Baby Lucien was born last year, a sixth birth has been announced in Israel, says Huber. Ribeiro says he has heard of another two births since then, too. The most recent was to the first woman who had the procedure. She had a little girl a few months ago, he tells me.</p>\n\n\n\n<p>No surgery is risk-free, and Huber points out there’s a chance that organs could be damaged during the procedure, or that a more developed cancer could spread. The uterus of one of Ribeiro’s patients failed following the surgery. Doctors are “still in the phase of collecting data to [create] a standardized procedure,” Huber says, but she hopes the surgery will offer more options to young people with some pelvic cancers. “I hope more young women could benefit from this procedure,” she says.</p>\n\n\n\n<p>Ribeiro says the experience has taught him not to accept the status quo. “Everyone was saying … there was nothing to be done [about the loss of fertility in these cases],” he tells me. “We need to keep evolving and looking for different answers.”</p>\n\n\n\n<p><em>This article first appeared in The Checkup, </em>MIT Technology Review’s<em> weekly biotech newsletter. To receive it in your inbox every Thursday, and read articles like this first, </em><a href=\"https://forms.technologyreview.com/newsletters/biotech-the-checkup/?_ga=2.241810882.15113993.1664981064-43237434.1647441349\"><em>sign up here</em></a><em>.</em></p>\n",
          "content:encodedSnippet": "This week I want to tell you about an experimental surgical procedure that’s helping people have babies. Specifically, it’s helping people who have had treatment for bowel or rectal cancer.\nRadiation and chemo can have pretty damaging side effects that mess up the uterus and ovaries. Surgeons are pioneering a potential solution: simply stitch those organs out of the way during cancer treatment. Once the treatment has finished, they can put the uterus—along with the ovaries and fallopian tubes—back into place.\nIt seems to work! Last week, a team in Switzerland shared news that a baby boy had been born after his mother had the procedure. Baby Lucien was the fifth baby to be born after the surgery and the first in Europe, says Daniela Huber, the gyno-oncologist who performed the operation. Since then, at least three others have been born, adds Reitan Ribeiro, the surgeon who pioneered the procedure. They told me the details.\nHuber’s patient was 28 years old when a four-centimeter tumor was discovered in her rectum. Doctors at Sion Hospital in Switzerland, where Huber works, recommended a course of treatment that included multiple medications and radiotherapy—the use of beams of energy to shrink a tumor—before surgery to remove the tumor itself.\nThis kind of radiation can kill tumor cells, but it can also damage other organs in the pelvis, says Huber. That includes the ovaries and uterus. People who undergo these treatments can opt to freeze their eggs beforehand, but the harm caused to the uterus will mean they’ll never be able to carry a pregnancy, she adds. Damage to the lining of the uterus could make it difficult for a fertilized egg to implant there, and the muscles of the uterus are left unable to stretch, she says.\nIn this case, the woman decided that she did want to freeze her eggs. But it would have been difficult to use them further down the line—surrogacy is illegal in Switzerland.\nHuber offered her an alternative.\nShe had been following the work of Ribeiro, a gynecologist oncologist formerly at the Erasto Gaertner Hospital in Curitiba, Brazil. There, Ribeiro had pioneered a new type of surgery that involved moving the uterus, fallopian tubes, and ovaries from their position in the pelvis and temporarily tucking them away in the upper abdomen, below the ribs.\nRibeiro and his colleagues published their first case report in 2017, describing a 26-year-old with a rectal tumor. (Ribeiro, who is now based at McGill University in Montreal, says the woman had been told by multiple doctors that her cancer treatment would destroy her fertility and had pleaded with him to find a way to preserve it.)\nHuber remembers seeing Ribeiro present the case at a conference at the time. She immediately realized that her own patient was a candidate for the surgery, and that, as a surgeon who had performed many hysterectomies, she’d be able to do it herself. The patient agreed.\nHuber’s colleagues at the hospital were nervous, she says. They’d never heard of the procedure before. “When I presented this idea to the general surgeon, he didn’t sleep for three days,” she tells me. After watching videos from Ribeiro’s team, however, he was convinced it was doable.\nSo before the patient’s cancer treatment was started, Huber and her colleagues performed the operation. The team literally stitched the organs to the abdominal wall. “It’s a delicate dissection,” says Huber, but she adds that “it’s not the most difficult procedure.” The surgery took two to three hours, she says. The stitches themselves were removed via small incisions around a week later. By that point, scar tissue had formed to create a lasting attachment.\nThe woman had two weeks to recover from the surgery before her cancer treatment began. That too was a success—within months, her tumor had shrunk so significantly that it couldn’t be seen on medical scans.\nAs a precaution, the medical team surgically removed the affected area of her colon. At the same time, they cut away the scar tissue holding the uterus, tubes, and ovaries in their new position and transferred the organs back into the pelvis.\nAround eight months later, the woman stopped taking contraception. She got pregnant without IVF and had a mostly healthy pregnancy, says Huber. Around seven months into the pregnancy, there were signs that the fetus was not growing as expected. This might have been due to problems with the blood supply to the placenta, says Huber. Still, the baby was born healthy, she says.\nRibeiro says he has performed the surgery 16 times, and that teams in countries including the US, Peru, Israel, India, and Russia have performed it as well. Not every case has been published, but he thinks there may be around 40.\nSince Baby Lucien was born last year, a sixth birth has been announced in Israel, says Huber. Ribeiro says he has heard of another two births since then, too. The most recent was to the first woman who had the procedure. She had a little girl a few months ago, he tells me.\nNo surgery is risk-free, and Huber points out there’s a chance that organs could be damaged during the procedure, or that a more developed cancer could spread. The uterus of one of Ribeiro’s patients failed following the surgery. Doctors are “still in the phase of collecting data to [create] a standardized procedure,” Huber says, but she hopes the surgery will offer more options to young people with some pelvic cancers. “I hope more young women could benefit from this procedure,” she says.\nRibeiro says the experience has taught him not to accept the status quo. “Everyone was saying … there was nothing to be done [about the loss of fertility in these cases],” he tells me. “We need to keep evolving and looking for different answers.”\nThis article first appeared in The Checkup, MIT Technology Review’s weekly biotech newsletter. To receive it in your inbox every Thursday, and read articles like this first, sign up here."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132200",
          "link": "https://www.technologyreview.com/2026/02/05/1132200/consolidating-systems-for-ai-with-ipaas/",
          "title": "Consolidating systems for AI with iPaaS",
          "content": "For decades, enterprises reacted to shifting business pressures with stopgap technology solutions. To rein in rising infrastructure costs, they adopted cloud services that could scale on demand. When customers shifted their lives onto smartphones, companies rolled out mobile apps to keep pace. And when businesses began needing real-time visibility into factories and stockrooms, they layered&#8230;",
          "creator": "MIT Technology Review Insights",
          "isoDate": "2026-02-05T15:20:37.000Z",
          "pubDate": "Thu, 05 Feb 2026 15:20:37 +0000",
          "categories": [
            "Computing",
            "sponsored"
          ],
          "dc:creator": "MIT Technology Review Insights",
          "contentSnippet": "For decades, enterprises reacted to shifting business pressures with stopgap technology solutions. To rein in rising infrastructure costs, they adopted cloud services that could scale on demand. When customers shifted their lives onto smartphones, companies rolled out mobile apps to keep pace. And when businesses began needing real-time visibility into factories and stockrooms, they layered…",
          "content:encoded": "\n<p>For decades, enterprises reacted to shifting business pressures with stopgap technology solutions. To rein in rising infrastructure costs, they adopted cloud services that could scale on demand. When customers shifted their lives onto smartphones, companies rolled out mobile apps to keep pace. And when businesses began needing real-time visibility into factories and stockrooms, they layered on IoT systems to supply those insights.</p>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR_SAP_final_2feb2026.pdf\" target=\"_blank\" rel=\" noreferrer noopener\"><img decoding=\"async\" height=\"2000\" width=\"1555\" src=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MIT_SAP_V4-COVERJan302026.png?w=1555\" alt=\"\" class=\"wp-image-1132242\" style=\"width:800px;height:auto\" srcset=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MIT_SAP_V4-COVERJan302026.png 2480w, https://wp.technologyreview.com/wp-content/uploads/2026/02/MIT_SAP_V4-COVERJan302026.png?resize=233,300 233w, https://wp.technologyreview.com/wp-content/uploads/2026/02/MIT_SAP_V4-COVERJan302026.png?resize=768,988 768w, https://wp.technologyreview.com/wp-content/uploads/2026/02/MIT_SAP_V4-COVERJan302026.png?resize=1555,2000 1555w, https://wp.technologyreview.com/wp-content/uploads/2026/02/MIT_SAP_V4-COVERJan302026.png?resize=1195,1536 1195w, https://wp.technologyreview.com/wp-content/uploads/2026/02/MIT_SAP_V4-COVERJan302026.png?resize=1593,2048 1593w\" sizes=\"(max-width: 1555px) 100vw, 1555px\" /></a></figure>\n\n\n\n<p>Each new plug-in or platform promised better, more efficient operations. And individually, many delivered. But as more and more solutions stacked up, IT teams had to string together a tangled web to connect them—less an IT ecosystem and more of a make-do collection of ad-hoc workarounds.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-layout-flex wp-container-core-buttons-is-layout-fc4fd283 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-auto is-style-fill is-style-fill--1\"><a class=\"wp-block-button__link has-mittr-white-color has-text-color has-background has-custom-font-size wp-element-button\" href=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR_SAP_final_2feb2026.pdf\" style=\"border-radius:4px;background-color:#759795;font-size:16px\" target=\"_blank\" rel=\"noreferrer noopener\">DOWNLOAD THE REPORT</a></div>\n</div>\n\n\n\n<p>That reality has led to bottlenecks and maintenance burdens, and the impact is showing up in performance. Today, fewer than half of CIOs (48%) say their current digital initiatives are meeting or exceeding business outcome targets. Another 2025 survey found that operations leaders point to integration complexity and data quality issues as top culprits for why investments haven’t delivered as expected.</p>\n\n\n\n<p>Achim Kraiss, chief product officer of SAP Integration Suite, elaborates on the wide-ranging problems inherent in patchwork IT: “A fragmented landscape makes it difficult to see and control end-to-end business processes,” he explains. “Monitoring, troubleshooting, and governance all suffer. Costs go up because of all the complex mappings and multi-application connectivity you have to maintain.”</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR_SAP_final_2feb2026.pdf\" target=\"_blank\" rel=\" noreferrer noopener\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"675\" src=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR-SAP-Socials_AchimKraissQuote.png\" alt=\"\" class=\"wp-image-1132246\" srcset=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR-SAP-Socials_AchimKraissQuote.png 1200w, https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR-SAP-Socials_AchimKraissQuote.png?resize=300,169 300w, https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR-SAP-Socials_AchimKraissQuote.png?resize=768,432 768w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" /></a></figure>\n\n\n\n<p>These challenges take on new significance as enterprises look to adopt AI. As AI becomes embedded in everyday workflows, systems are suddenly expected to move far larger volumes of data, at higher speeds, and with tighter coordination than yesterday’s architectures were built<br>to sustain.</p>\n\n\n\n<p>As companies now prepare for an AI-powered future, whether that is generative AI, machine learning, or agentic AI, many are realizing that the way data moves through their business matters just as much as the insights it generates. As a result, organizations are moving away from scattered integration tools and toward consolidated, end-to-end platforms that restore order and streamline how systems interact.</p>\n\n\n\n<p><em><a href=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/MITTR_SAP_final_2feb2026.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Download the report.</a></em></p>\n\n\n\n<p><em>This content was produced by Insights, the custom content arm of MIT Technology Review. It was not written by MIT Technology Review’s editorial staff. It was researched, designed, and written by human writers, editors, analysts, and illustrators. This includes the writing of surveys and collection of data for surveys. AI tools that may have been used were limited to secondary production processes that passed thorough human review.</em></p>\n",
          "content:encodedSnippet": "For decades, enterprises reacted to shifting business pressures with stopgap technology solutions. To rein in rising infrastructure costs, they adopted cloud services that could scale on demand. When customers shifted their lives onto smartphones, companies rolled out mobile apps to keep pace. And when businesses began needing real-time visibility into factories and stockrooms, they layered on IoT systems to supply those insights.\n\n\n\n\nEach new plug-in or platform promised better, more efficient operations. And individually, many delivered. But as more and more solutions stacked up, IT teams had to string together a tangled web to connect them—less an IT ecosystem and more of a make-do collection of ad-hoc workarounds.\nDOWNLOAD THE REPORT\nThat reality has led to bottlenecks and maintenance burdens, and the impact is showing up in performance. Today, fewer than half of CIOs (48%) say their current digital initiatives are meeting or exceeding business outcome targets. Another 2025 survey found that operations leaders point to integration complexity and data quality issues as top culprits for why investments haven’t delivered as expected.\nAchim Kraiss, chief product officer of SAP Integration Suite, elaborates on the wide-ranging problems inherent in patchwork IT: “A fragmented landscape makes it difficult to see and control end-to-end business processes,” he explains. “Monitoring, troubleshooting, and governance all suffer. Costs go up because of all the complex mappings and multi-application connectivity you have to maintain.”\n\n\n\n\nThese challenges take on new significance as enterprises look to adopt AI. As AI becomes embedded in everyday workflows, systems are suddenly expected to move far larger volumes of data, at higher speeds, and with tighter coordination than yesterday’s architectures were built\nto sustain.\nAs companies now prepare for an AI-powered future, whether that is generative AI, machine learning, or agentic AI, many are realizing that the way data moves through their business matters just as much as the insights it generates. As a result, organizations are moving away from scattered integration tools and toward consolidated, end-to-end platforms that restore order and streamline how systems interact.\nDownload the report.\nThis content was produced by Insights, the custom content arm of MIT Technology Review. It was not written by MIT Technology Review’s editorial staff. It was researched, designed, and written by human writers, editors, analysts, and illustrators. This includes the writing of surveys and collection of data for surveys. AI tools that may have been used were limited to secondary production processes that passed thorough human review."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132270",
          "link": "https://www.technologyreview.com/2026/02/05/1132270/the-download-attempting-to-track-ai-and-the-next-generation-of-nuclear-power/",
          "title": "The Download: attempting to track AI, and the next generation of nuclear power",
          "content": "This is today&#8217;s edition of The Download, our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology. This is the most misunderstood graph in AI Every time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an&#8230;",
          "creator": "Rhiannon Williams",
          "isoDate": "2026-02-05T13:10:00.000Z",
          "pubDate": "Thu, 05 Feb 2026 13:10:00 +0000",
          "categories": [
            "The Download"
          ],
          "dc:creator": "Rhiannon Williams",
          "contentSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology. This is the most misunderstood graph in AI Every time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an…",
          "content:encoded": "\n<p><em>This is today&#8217;s edition of <a href=\"https://forms.technologyreview.com/newsletters/briefing-the-download/?_ga=2.179569122.736533416.1649661040-405833893.1649413289\">The Download</a></em>,<em> our weekday newsletter that provides a daily dose of what&#8217;s going on in the world of technology.</em><br></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>This is the most misunderstood graph in AI</strong></p>\n\n\n\n<p>Every time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an AI research nonprofit whose name stands for “Model Evaluation &amp; Threat Research,” updates a now-iconic graph that has played a major role in the AI discourse since it was first released in March of last year.&nbsp;</p>\n\n\n\n<p>The graph suggests that certain AI capabilities are developing at an exponential rate, and more recent model releases have outperformed that already impressive trend.<br><br>That was certainly the case for Claude Opus 4.5, the latest version of Anthropic’s most powerful model, which was released in late November. In December, METR announced that Opus 4.5 appeared to be capable of independently completing a task that would have taken a human about five hours—a vast improvement over what even the exponential trend would have predicted.</p>\n\n\n\n<p>But the truth is more complicated than those dramatic responses would suggest. <a href=\"https://www.technologyreview.com/2026/02/05/1132254/this-is-the-most-misunderstood-graph-in-ai/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.</p>\n\n\n\n<p><em>—Grace Huckins</em></p>\n\n\n\n<p><strong>This story is part of MIT Technology Review Explains: our series untangling the complex, messy world of technology to help you understand what’s coming next. </strong><a href=\"https://www.technologyreview.com/tag/tech-review-explains?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"><strong>You can read more from the series here</strong></a><strong>.</strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Three questions about next-generation nuclear power, answered</strong></p>\n\n\n\n<p>Nuclear power continues to be one of the hottest topics in energy today, and in our <a href=\"https://www.technologyreview.com/2026/01/28/1131340/roundtables-why-ai-companies-are-betting-on-next-gen-nuclear/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">recent online Roundtables discussion</a> about <a href=\"https://www.technologyreview.com/2026/01/12/1130006/next-gen-nuclear-reactors-power-energy-2026-breakthrough-technology/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">next-generation nuclear power</a>, <a href=\"https://www.technologyreview.com/2026/01/12/1129982/hyperscale-ai-data-centers-energy-usage-2026-breakthrough-technology/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">hyperscale AI data centers</a>, and the grid, we got dozens of great audience questions.</p>\n\n\n\n<p>These ran the gamut, and while we answered quite a few (and I’m keeping some in mind for future reporting), there were a bunch we couldn’t get to, at least not in the depth I would have liked. <a href=\"https://www.technologyreview.com/2026/02/05/1132197/nuclear-questions/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">So let’s answer a few of your questions about advanced nuclear power</a>.</p>\n\n\n\n<p><em>—Casey Crownhart</em></p>\n\n\n\n<p><strong>This article is from The Spark, <em>MIT Technology Review</em>’s weekly climate newsletter. To receive it in your inbox every Wednesday, </strong><a href=\"https://forms.technologyreview.com/newsletters/climate-energy-the-spark/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\"><strong>sign up here</strong></a><strong>.</strong></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>The must-reads</strong></p>\n\n\n\n<p><em>I’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.</em></p>\n\n\n\n<p><strong>1 Anthropic’s new coding tools are rattling the markets </strong><br>Fields as diverse as publishing and coding to law and advertising are paying attention. (<a href=\"https://www.ft.com/content/fd134065-c2c6-4a99-99df-404d658127e6\">FT</a> $)<br>+ <em>Legacy software companies, beware. </em>(<a href=\"https://www.businessinsider.com/software-ate-world-now-ai-eating-software-saas-anthropic-2026-2\">Insider</a> $)<br>+ <em>Is “software-mageddon” nigh? It depends who you ask. </em>(<a href=\"https://www.reuters.com/business/software-mageddon-leaves-investors-bargain-hunting-wary-2026-02-05/\">Reuters</a>)<br><br><strong>2</strong> <strong>This Apple setting prevented the FBI from accessing a reporter’s iPhone</strong><br>Lockdown Mode has proved remarkably effective—for now. (<a href=\"https://www.404media.co/fbi-couldnt-get-into-wapo-reporters-iphone-because-it-had-lockdown-mode-enabled/\">404 Media</a>)<br>+ <em>Agents were able to access Hannah Natanson’s laptop, however. </em>(<a href=\"https://arstechnica.com/tech-policy/2026/02/fbi-stymied-by-apples-lockdown-mode-after-seizing-journalists-iphone/\">Ars Technica</a>)<strong><br><br>3 Last month’s data center outage disrupted all TikTok categories</strong><br>Not just the political content that some users claimed. (<a href=\"https://www.npr.org/2026/02/04/nx-s1-5701409/tiktok-censorship-report-epstein\">NPR</a>)<strong><br><br>4 Big Tech is pouring billions into AI in India<br></strong>A newly-announced 20-year tax break should help to speed things along. (<a href=\"https://www.wsj.com/world/india/why-big-tech-is-throwing-cash-into-india-in-quest-for-ai-supremacy-a5d02f0e?mod=tech_feat1_ai_pos1\">WSJ</a> $)<br>+ <em>India’s female content moderators are watching hours of abuse content to train AI. </em>(<a href=\"https://www.theguardian.com/global-development/2026/feb/05/in-the-end-you-feel-blank-indias-female-workers-watching-hours-of-abusive-content-to-train-ai\">The Guardian</a>)<br>+ <em>Officials in the country are weighing up restricting social media for minors. </em>(<a href=\"https://www.bloomberg.com/news/articles/2026-02-05/debate-over-teen-social-media-use-grows-in-key-tech-market-india?srnd=phx-technology\">Bloomberg</a> $)<br>+ <em>Inside India’s scramble for AI independence. </em>(<a href=\"https://www.technologyreview.com/2025/07/04/1119705/inside-indias-scramble-for-ai-independence/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)</p>\n\n\n\n<p><strong>5 YouTubers are harassing women using body cams<br></strong>They’re abusing freedom of information laws to humiliate their targets. (<a href=\"https://nymag.com/intelligencer/article/body-cam-youtube-foia-abuse.html\">NY Mag</a> $)<br>+ <em>AI was supposed to make police bodycams better. What happened? </em>(<a href=\"https://www.technologyreview.com/2024/04/16/1090846/ai-police-body-cams-cops-transparency/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)</p>\n\n\n\n<p><strong>6 Jokers have created a working version of Jeffrey Epstein’s inbox</strong><br>Complete with notable starred threads. (<a href=\"https://www.wired.com/story/pranksters-recreated-a-working-version-of-jeffrey-epstein-gmail-inbox/#intcid=_wired-verso-hp-trending-bktb_8e4ababb-c588-4949-b5e1-5a8b8a67ea74_cygnus-personalized_fallback_popular4-2https://www.wired.com/story/pranksters-recreated-a-working-version-of-jeffrey-epstein-gmail-inbox/#intcid=_wired-verso-hp-trending-bktb_8e4ababb-c588-4949-b5e1-5a8b8a67ea74_cygnus-personalized_fallback_popular4-2\">Wired</a> $)<br>+ <em>Epstein’s links with Silicon Valley are vast and deep. </em>(<a href=\"https://www.fastcompany.com/91486736/how-jeffrey-epstein-influenced-the-tech-industry\">Fast Company</a> $)<br>+ <em>The revelations are driving rifts between previously-friendly factions. </em>(<a href=\"https://www.nbcnews.com/tech/tech-news/jeffrey-epstein-files-reveal-deep-tech-ties-musk-gates-rcna257092\">NBC News</a>)</p>\n\n\n\n<p><strong>7 What’s the last thing you see before you die?<br></strong>A new model might help to explain near-death experiences—but not all researchers are on board. (<a href=\"https://www.washingtonpost.com/health/2026/02/05/near-death-experience-neuroscience-afterlife/\">WP</a> $)<br>+ <em>What is death? </em>(<a href=\"https://www.technologyreview.com/2023/11/17/1082937/what-is-death/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)</p>\n\n\n\n<p><strong>8 A new app is essentially TikTok for vibe-coded apps</strong><br>Words which would have made no sense 15 years ago. (<a href=\"https://techcrunch.com/2026/02/04/meet-gizmo-a-tiktok-for-interactive-vibe-coded-mini-apps/\">TechCrunch</a>)<br>+ <em>What is vibe coding, exactly? </em>(<a href=\"https://www.technologyreview.com/2025/04/16/1115135/what-is-vibe-coding-exactly/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">MIT Technology Review</a>)<strong><br><br>9 Rogue TV boxes are all the rage<br></strong>Viewers are sick of the soaring prices of streaming services, and are embracing less legal means of watching their favorite shows. (<a href=\"https://www.theverge.com/streaming/873416/piracy-streaming-boxes\">The Verge</a>)</p>\n\n\n\n<p><strong>10 Climate change is threatening the future of the Winter Olympics <img src=\"https://s.w.org/images/core/emoji/16.0.1/72x72/26f7.png\" alt=\"⛷\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong><br>Artificial snow is one (short term) solution. (<a href=\"https://www.bloomberg.com/graphics/2026-winter-olympics-climate-change/?srnd=phx-businessweek\">Bloomberg</a> $)<br>+ <em>Team USA is using AI to try and gain an edge on its competition. </em>(<a href=\"https://www.nbcnews.com/tech/innovation/olympics-ai-team-usa-speed-skating-bobsled-rcna256297\">NBC News</a>)</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Quote of the day</strong></p>\n\n\n\n<p class=\"has-large-font-size\"><strong>&#8220;We’ve heard from many who want nothing to do with AI.”</strong></p>\n\n\n\n<p>—Ajit Varma, head of Mozilla’s web browser Firefox, explains why the company is reversing its previous decision to transform Firefox into an “AI browser,” <a href=\"https://www.pcgamer.com/software/browsers/weve-heard-from-many-who-want-nothing-to-do-with-ai-says-mozilla-as-it-introduces-an-ai-blocking-menu-to-upcoming-firefox-builds/\">PC Gamer</a> reports.</p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>One more thing</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.technologyreview.com/2025/07/18/1120466/a-major-ai-training-data-set-contains-millions-of-examples-of-personal-data/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*|SUBCLASS|*&amp;utm_content=*|DATE:m-d-Y|*\"><img loading=\"lazy\" decoding=\"async\" width=\"1063\" height=\"598\" src=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_37281d.png\" alt=\"\" class=\"wp-image-1132272\" srcset=\"https://wp.technologyreview.com/wp-content/uploads/2026/02/image_37281d.png 1063w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_37281d.png?resize=300,169 300w, https://wp.technologyreview.com/wp-content/uploads/2026/02/image_37281d.png?resize=768,432 768w\" sizes=\"auto, (max-width: 1063px) 100vw, 1063px\" /></a></figure>\n\n\n\n<p><strong>A major AI training data set contains millions of examples of personal data</strong><br><br>Millions of images of passports, credit cards, birth certificates, and other documents containing personally identifiable information are likely included in one of the biggest open-source AI training sets, new research has found.<br><br>Thousands of images—including identifiable faces—were found in a small subset of DataComp CommonPool, a major AI training set for image generation scraped from the web. Because the researchers audited just 0.1% of CommonPool’s data, they estimate that the real number of images containing personally identifiable information, including faces and identity documents, is in the hundreds of millions. <br><br>The bottom line? Anything you put online can be and probably has been scraped. <a href=\"https://www.technologyreview.com/2025/07/18/1120466/a-major-ai-training-data-set-contains-millions-of-examples-of-personal-data/?utm_source=the_download&amp;utm_medium=email&amp;utm_campaign=the_download.unpaid.engagement&amp;utm_term=*%7CSUBCLASS%7C*&amp;utm_content=*%7CDATE:m-d-Y%7C*\">Read the full story</a>.<br><br><em>—Eileen Guo</em></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>We can still have nice things</strong></p>\n\n\n\n<p><em>A place for comfort, fun and distraction to brighten up your day. (Got any ideas? </em><a href=\"mailto:rhiannon.williams@technologyreview.com\"><em>Drop me a line</em></a><em> or </em><a href=\"https://bsky.app/profile/rhiannonwilliams.bsky.social\"><em>skeet &#8217;em at me</em></a><em>.)</em></p>\n\n\n\n<p>+ If you’re crazy enough to be training for a marathon right now, here’s how to <a href=\"https://www.runnersworld.com/training/a70147462/beating-boredom-on-long-runs/\">beat boredom on those long, long runs</a>.<br>+ Mark Cohen’s <a href=\"https://www.theartnewspaper.com/2026/02/03/sometimes-it-would-get-physical-the-photographer-who-captures-humanity-at-close-quarters\">intimate street photography</a> is a fascinating window into humanity.<br>+ A seriously dedicated gamer has spent days painstakingly recreating a <a href=\"https://www.polygon.com/the-sims-4-fallout-vault-build/\"><em>Fallout</em> vault</a> inside the <em>Sims 4</em>.<br>+ Here’s what <a href=\"https://www.esquire.com/entertainment/music/a70175717/most-stylish-men-in-music/\">music’s most stylish men are wearing right now</a>—from leather pants to khaki parkas.</p>\n",
          "content:encodedSnippet": "This is today’s edition of The Download, our weekday newsletter that provides a daily dose of what’s going on in the world of technology.\n\n\n\n\nThis is the most misunderstood graph in AI\nEvery time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an AI research nonprofit whose name stands for “Model Evaluation & Threat Research,” updates a now-iconic graph that has played a major role in the AI discourse since it was first released in March of last year. \nThe graph suggests that certain AI capabilities are developing at an exponential rate, and more recent model releases have outperformed that already impressive trend.\nThat was certainly the case for Claude Opus 4.5, the latest version of Anthropic’s most powerful model, which was released in late November. In December, METR announced that Opus 4.5 appeared to be capable of independently completing a task that would have taken a human about five hours—a vast improvement over what even the exponential trend would have predicted.\nBut the truth is more complicated than those dramatic responses would suggest. Read the full story.\n—Grace Huckins\nThis story is part of MIT Technology Review Explains: our series untangling the complex, messy world of technology to help you understand what’s coming next. You can read more from the series here.\n\n\n\n\nThree questions about next-generation nuclear power, answered\nNuclear power continues to be one of the hottest topics in energy today, and in our recent online Roundtables discussion about next-generation nuclear power, hyperscale AI data centers, and the grid, we got dozens of great audience questions.\nThese ran the gamut, and while we answered quite a few (and I’m keeping some in mind for future reporting), there were a bunch we couldn’t get to, at least not in the depth I would have liked. So let’s answer a few of your questions about advanced nuclear power.\n—Casey Crownhart\nThis article is from The Spark, MIT Technology Review’s weekly climate newsletter. To receive it in your inbox every Wednesday, sign up here.\n\n\n\n\nThe must-reads\nI’ve combed the internet to find you today’s most fun/important/scary/fascinating stories about technology.\n1 Anthropic’s new coding tools are rattling the markets \nFields as diverse as publishing and coding to law and advertising are paying attention. (FT $)\n+ Legacy software companies, beware. (Insider $)\n+ Is “software-mageddon” nigh? It depends who you ask. (Reuters)\n2 This Apple setting prevented the FBI from accessing a reporter’s iPhone\nLockdown Mode has proved remarkably effective—for now. (404 Media)\n+ Agents were able to access Hannah Natanson’s laptop, however. (Ars Technica)\n3 Last month’s data center outage disrupted all TikTok categories\nNot just the political content that some users claimed. (NPR)\n4 Big Tech is pouring billions into AI in India\nA newly-announced 20-year tax break should help to speed things along. (WSJ $)\n+ India’s female content moderators are watching hours of abuse content to train AI. (The Guardian)\n+ Officials in the country are weighing up restricting social media for minors. (Bloomberg $)\n+ Inside India’s scramble for AI independence. (MIT Technology Review)\n5 YouTubers are harassing women using body cams\nThey’re abusing freedom of information laws to humiliate their targets. (NY Mag $)\n+ AI was supposed to make police bodycams better. What happened? (MIT Technology Review)\n6 Jokers have created a working version of Jeffrey Epstein’s inbox\nComplete with notable starred threads. (Wired $)\n+ Epstein’s links with Silicon Valley are vast and deep. (Fast Company $)\n+ The revelations are driving rifts between previously-friendly factions. (NBC News)\n7 What’s the last thing you see before you die?\nA new model might help to explain near-death experiences—but not all researchers are on board. (WP $)\n+ What is death? (MIT Technology Review)\n8 A new app is essentially TikTok for vibe-coded apps\nWords which would have made no sense 15 years ago. (TechCrunch)\n+ What is vibe coding, exactly? (MIT Technology Review)\n9 Rogue TV boxes are all the rage\nViewers are sick of the soaring prices of streaming services, and are embracing less legal means of watching their favorite shows. (The Verge)\n10 Climate change is threatening the future of the Winter Olympics \nArtificial snow is one (short term) solution. (Bloomberg $)\n+ Team USA is using AI to try and gain an edge on its competition. (NBC News)\n\n\n\n\nQuote of the day\n“We’ve heard from many who want nothing to do with AI.”\n—Ajit Varma, head of Mozilla’s web browser Firefox, explains why the company is reversing its previous decision to transform Firefox into an “AI browser,” PC Gamer reports.\n\n\n\n\nOne more thing\n\n\n\n\nA major AI training data set contains millions of examples of personal data\nMillions of images of passports, credit cards, birth certificates, and other documents containing personally identifiable information are likely included in one of the biggest open-source AI training sets, new research has found.\nThousands of images—including identifiable faces—were found in a small subset of DataComp CommonPool, a major AI training set for image generation scraped from the web. Because the researchers audited just 0.1% of CommonPool’s data, they estimate that the real number of images containing personally identifiable information, including faces and identity documents, is in the hundreds of millions. \nThe bottom line? Anything you put online can be and probably has been scraped. Read the full story.\n—Eileen Guo\n\n\n\n\nWe can still have nice things\nA place for comfort, fun and distraction to brighten up your day. (Got any ideas? Drop me a line or skeet ’em at me.)\n+ If you’re crazy enough to be training for a marathon right now, here’s how to beat boredom on those long, long runs.\n+ Mark Cohen’s intimate street photography is a fascinating window into humanity.\n+ A seriously dedicated gamer has spent days painstakingly recreating a Fallout vault inside the Sims 4.\n+ Here’s what music’s most stylish men are wearing right now—from leather pants to khaki parkas."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132197",
          "link": "https://www.technologyreview.com/2026/02/05/1132197/nuclear-questions/",
          "title": "Three questions about next-generation nuclear power, answered",
          "content": "Nuclear power continues to be one of the hottest topics in energy today, and in our recent online Roundtables discussion about next-generation nuclear power, hyperscale AI data centers, and the grid, we got dozens of great audience questions. These ran the gamut, and while we answered quite a few (and I’m keeping some in mind&#8230;",
          "creator": "Casey Crownhart",
          "isoDate": "2026-02-05T11:00:00.000Z",
          "pubDate": "Thu, 05 Feb 2026 11:00:00 +0000",
          "categories": [
            "Climate change and energy",
            "App",
            "The Spark"
          ],
          "dc:creator": "Casey Crownhart",
          "contentSnippet": "Nuclear power continues to be one of the hottest topics in energy today, and in our recent online Roundtables discussion about next-generation nuclear power, hyperscale AI data centers, and the grid, we got dozens of great audience questions. These ran the gamut, and while we answered quite a few (and I’m keeping some in mind…",
          "content:encoded": "\n<p>Nuclear power continues to be one of the hottest topics in energy today, and in our <a href=\"https://www.technologyreview.com/2026/01/28/1131340/roundtables-why-ai-companies-are-betting-on-next-gen-nuclear/?utm_source=the_spark&amp;utm_medium=email&amp;utm_campaign=the_spark.unpaid.engagement&amp;utm_content=*%7Cdate:m-d-y%7C*\" target=\"_blank\" rel=\"noreferrer noopener\">recent online Roundtables discussion</a> about <a href=\"https://www.technologyreview.com/2026/01/12/1130006/next-gen-nuclear-reactors-power-energy-2026-breakthrough-technology/?utm_source=the_spark&amp;utm_medium=email&amp;utm_campaign=the_spark.unpaid.engagement&amp;utm_content=*%7Cdate:m-d-y%7C*\" target=\"_blank\" rel=\"noreferrer noopener\">next-generation nuclear power</a>, <a href=\"https://www.technologyreview.com/2026/01/12/1129982/hyperscale-ai-data-centers-energy-usage-2026-breakthrough-technology/?utm_source=the_spark&amp;utm_medium=email&amp;utm_campaign=the_spark.unpaid.engagement&amp;utm_content=*%7Cdate:m-d-y%7C*\" target=\"_blank\" rel=\"noreferrer noopener\">hyperscale AI data centers</a>, and the grid, we got dozens of great audience questions.</p>\n\n\n\n<p>These ran the gamut, and while we answered quite a few (and I’m keeping some in mind for future reporting), there were a bunch we couldn’t get to, at least not in the depth I would have liked.</p>\n\n\n\n<p>So let’s answer a few of your questions about advanced nuclear power. I’ve combined similar ones and edited them for clarity.</p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>How are the fuel needs for next-generation nuclear reactors different, and how are companies addressing the supply chain?</strong></h4>\n\n\n\n<p>Many next-generation reactors don’t use the low-enriched uranium used in conventional reactors.</p>\n\n\n\n<p>It’s worth looking at high-assay low-enriched uranium, or HALEU, specifically. This fuel is enriched to higher concentrations of fissile uranium than conventional nuclear fuel, with a proportion of the isotope U-235 that falls between 5% and 20%. (In conventional fuel, it’s below 5%.)</p>\n\n\n\n<p>HALEU can be produced with the same technology as low-enriched uranium, but the geopolitics are complicated. Today, Russia basically has a monopoly on HALEU production. In 2024, the US banned the import of Russian nuclear fuel through 2040 in an effort to reduce dependence on the country. Europe hasn’t taken the same measures, but it is working to move away from Russian energy as well.</p>\n\n\n\n<p>That leaves companies in the US and Europe with the major challenge of securing the fuel they need when their regular Russian supply has been cut off or restricted.</p>\n\n\n\n<p>The US Department of Energy has a stockpile of HALEU, which the government is <a href=\"https://www.kairospower.com/updates/u-s-department-of-energy-to-provide-haleu-for-hermes-demonstration-reactor\" target=\"_blank\" rel=\"noreferrer noopener\">doling out to companies</a> to help power demonstration reactions. In the longer term, though, there’s still a major need to set up independent HALEU supply chains to support next-generation reactors.</p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>How is safety being addressed, and what’s happening with nuclear safety regulation in the US?</strong></h4>\n\n\n\n<p>There are some ways that next-generation nuclear power plants could be safer than conventional reactors. Some use alternative coolants that would prevent the need to run at the high pressure required in conventional water-cooled reactors. Many incorporate passive safety shutoffs, so if there are power supply issues, the reactors shut down harmlessly, avoiding risk of meltdown. (These can be incorporated in newer conventional reactors, too.)</p>\n\n\n\n<p>But some experts have raised concerns that in the US, the current administration isn’t taking nuclear safety seriously enough.</p>\n\n\n\n<p>A recent <a href=\"https://www.npr.org/2026/01/28/nx-s1-5677187/nuclear-safety-rules-rewritten-trump\" target=\"_blank\" rel=\"noreferrer noopener\">NPR investigation</a> found that the Trump administration had secretly rewritten nuclear rules, stripping environmental protections and loosening safety and security measures. The government shared the new rules with companies that are part of a program building experimental nuclear reactors, but not with the public.</p>\n\n\n\n<p>I’m reminded of a talk during our EmTech MIT event in November, where Koroush Shirvan, an MIT professor of nuclear engineering, spoke on this issue. “I’ve seen some disturbing trends in recent times, where words like ‘rubber-stamping nuclear projects’ are being said,” Shirvan said during that event.&nbsp;&nbsp;</p>\n\n\n\n<p>During the talk, Shirvan shared statistics showing that nuclear power has a very low rate of injury and death. But that’s not inherent to the technology, and there’s a reason injuries and deaths have been low for nuclear power, he added: “It’s because of stringent regulatory oversight.”&nbsp;&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Are next-generation reactors going to be financially competitive?</strong></h4>\n\n\n\n<p>Building a nuclear power plant is not cheap. Let’s consider the up-front investment needed to build a power plant.&nbsp;&nbsp;</p>\n\n\n\n<p>Plant Vogtle in Georgia hosts the most recent additions to the US nuclear fleet—Units 3 and 4 came online in 2023 and 2024. Together, they had a capital cost of $15,000 per kilowatt, adjusted for inflation, according to a recent <a href=\"https://gain.inl.gov/content/uploads/4/2024/11/DOE-Advanced-Nuclear-Liftoff-Report.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">report</a> from the US Department of Energy. (This wonky unit I’m using divides the total cost to build the reactors by their expected power output, so we can compare reactors of different sizes.)</p>\n\n\n\n<p>That number’s quite high, partly because those were the first of their kind built in the US, and because there were some inefficiencies in the planning. It’s worth noting that China builds reactors for <em>much</em> less, somewhere between $2,000/kW and $3,000/kW, depending on the estimate.</p>\n\n\n\n<p>The up-front capital cost for first-of-a-kind advanced nuclear plants will likely run between $6,000 and $10,000 per kilowatt, according to that DOE report. That could come down by up to 40% after the technologies are scaled up and mass-produced.</p>\n\n\n\n<p>So new reactors will (hopefully) be cheaper than the ultra-over-budget and behind-schedule Vogtle project, but they aren’t necessarily significantly cheaper than efficiently built conventional plants, if you normalize by their size.</p>\n\n\n\n<p>It’ll certainly be cheaper to build new natural-gas plants (setting aside the likely equipment shortages we’re likely going to see for years.) Today’s most efficient natural-gas plants cost just $1,600/kW on the high end, according to <a href=\"https://www.lazard.com/research-insights/levelized-cost-of-energyplus-lcoeplus/\" target=\"_blank\" rel=\"noreferrer noopener\">data from Lazard</a>.</p>\n\n\n\n<p>An important caveat: Capital cost isn’t everything—running a nuclear plant is relatively inexpensive, which is why there’s so much interest in extending the lifetime of existing plants or reopening shuttered ones.</p>\n\n\n\n<p>Ultimately, by many metrics, nuclear plants of any type are going to be more expensive than other sources, like wind and solar power. But they provide something many other power sources don’t: a reliable, stable source of electricity that can run for 60 years or more.</p>\n\n\n\n<p><em>This article is from The Spark, </em>MIT Technology Review<em>’s weekly climate newsletter. To receive it in your inbox every Wednesday, </em><a href=\"https://forms.technologyreview.com/newsletters/climate-energy-the-spark/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>sign up here</em></a><em>.</em></p>\n",
          "content:encodedSnippet": "Nuclear power continues to be one of the hottest topics in energy today, and in our recent online Roundtables discussion about next-generation nuclear power, hyperscale AI data centers, and the grid, we got dozens of great audience questions.\nThese ran the gamut, and while we answered quite a few (and I’m keeping some in mind for future reporting), there were a bunch we couldn’t get to, at least not in the depth I would have liked.\nSo let’s answer a few of your questions about advanced nuclear power. I’ve combined similar ones and edited them for clarity.\nHow are the fuel needs for next-generation nuclear reactors different, and how are companies addressing the supply chain?\nMany next-generation reactors don’t use the low-enriched uranium used in conventional reactors.\nIt’s worth looking at high-assay low-enriched uranium, or HALEU, specifically. This fuel is enriched to higher concentrations of fissile uranium than conventional nuclear fuel, with a proportion of the isotope U-235 that falls between 5% and 20%. (In conventional fuel, it’s below 5%.)\nHALEU can be produced with the same technology as low-enriched uranium, but the geopolitics are complicated. Today, Russia basically has a monopoly on HALEU production. In 2024, the US banned the import of Russian nuclear fuel through 2040 in an effort to reduce dependence on the country. Europe hasn’t taken the same measures, but it is working to move away from Russian energy as well.\nThat leaves companies in the US and Europe with the major challenge of securing the fuel they need when their regular Russian supply has been cut off or restricted.\nThe US Department of Energy has a stockpile of HALEU, which the government is doling out to companies to help power demonstration reactions. In the longer term, though, there’s still a major need to set up independent HALEU supply chains to support next-generation reactors.\nHow is safety being addressed, and what’s happening with nuclear safety regulation in the US?\nThere are some ways that next-generation nuclear power plants could be safer than conventional reactors. Some use alternative coolants that would prevent the need to run at the high pressure required in conventional water-cooled reactors. Many incorporate passive safety shutoffs, so if there are power supply issues, the reactors shut down harmlessly, avoiding risk of meltdown. (These can be incorporated in newer conventional reactors, too.)\nBut some experts have raised concerns that in the US, the current administration isn’t taking nuclear safety seriously enough.\nA recent NPR investigation found that the Trump administration had secretly rewritten nuclear rules, stripping environmental protections and loosening safety and security measures. The government shared the new rules with companies that are part of a program building experimental nuclear reactors, but not with the public.\nI’m reminded of a talk during our EmTech MIT event in November, where Koroush Shirvan, an MIT professor of nuclear engineering, spoke on this issue. “I’ve seen some disturbing trends in recent times, where words like ‘rubber-stamping nuclear projects’ are being said,” Shirvan said during that event.  \nDuring the talk, Shirvan shared statistics showing that nuclear power has a very low rate of injury and death. But that’s not inherent to the technology, and there’s a reason injuries and deaths have been low for nuclear power, he added: “It’s because of stringent regulatory oversight.”  \nAre next-generation reactors going to be financially competitive?\nBuilding a nuclear power plant is not cheap. Let’s consider the up-front investment needed to build a power plant.  \nPlant Vogtle in Georgia hosts the most recent additions to the US nuclear fleet—Units 3 and 4 came online in 2023 and 2024. Together, they had a capital cost of $15,000 per kilowatt, adjusted for inflation, according to a recent report from the US Department of Energy. (This wonky unit I’m using divides the total cost to build the reactors by their expected power output, so we can compare reactors of different sizes.)\nThat number’s quite high, partly because those were the first of their kind built in the US, and because there were some inefficiencies in the planning. It’s worth noting that China builds reactors for much less, somewhere between $2,000/kW and $3,000/kW, depending on the estimate.\nThe up-front capital cost for first-of-a-kind advanced nuclear plants will likely run between $6,000 and $10,000 per kilowatt, according to that DOE report. That could come down by up to 40% after the technologies are scaled up and mass-produced.\nSo new reactors will (hopefully) be cheaper than the ultra-over-budget and behind-schedule Vogtle project, but they aren’t necessarily significantly cheaper than efficiently built conventional plants, if you normalize by their size.\nIt’ll certainly be cheaper to build new natural-gas plants (setting aside the likely equipment shortages we’re likely going to see for years.) Today’s most efficient natural-gas plants cost just $1,600/kW on the high end, according to data from Lazard.\nAn important caveat: Capital cost isn’t everything—running a nuclear plant is relatively inexpensive, which is why there’s so much interest in extending the lifetime of existing plants or reopening shuttered ones.\nUltimately, by many metrics, nuclear plants of any type are going to be more expensive than other sources, like wind and solar power. But they provide something many other power sources don’t: a reliable, stable source of electricity that can run for 60 years or more.\nThis article is from The Spark, MIT Technology Review’s weekly climate newsletter. To receive it in your inbox every Wednesday, sign up here."
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.technologyreview.com/?p=1132254",
          "link": "https://www.technologyreview.com/2026/02/05/1132254/this-is-the-most-misunderstood-graph-in-ai/",
          "title": "This is the most misunderstood graph in AI",
          "content": "MIT Technology Review Explains: Let our writers untangle the complex, messy world of technology to help you understand what’s coming next. You can read more from the series here. Every time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an AI&#8230;",
          "creator": "Grace Huckins",
          "isoDate": "2026-02-05T10:00:00.000Z",
          "pubDate": "Thu, 05 Feb 2026 10:00:00 +0000",
          "categories": [
            "Artificial intelligence",
            "App",
            "artificial intelligence",
            "MIT Technology Review Explains"
          ],
          "dc:creator": "Grace Huckins",
          "contentSnippet": "MIT Technology Review Explains: Let our writers untangle the complex, messy world of technology to help you understand what’s coming next. You can read more from the series here. Every time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an AI…",
          "content:encoded": "\n<p>MIT Technology Review<em> Explains: Let our writers untangle the complex, messy world of technology to help you understand what’s coming next. </em><a href=\"https://www.technologyreview.com/tag/tech-review-explains\"><em>You can read more from the series here</em></a><em>.</em></p>\n\n\n\n<p>Every time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an AI research nonprofit whose name stands for “Model Evaluation &amp; Threat Research,” updates a <a href=\"https://metr.org/blog/2025-03-19-measuring-ai-ability-to-complete-long-tasks/\" data-type=\"link\" data-id=\"https://metr.org/blog/2025-03-19-measuring-ai-ability-to-complete-long-tasks/\">now-iconic graph</a> that has played a major role in the AI discourse since it was first released in March of last year. The graph suggests that certain AI capabilities are developing at an exponential rate, and more recent model releases have outperformed that already impressive trend.</p>\n\n\n\n<p>That was certainly the case for Claude Opus 4.5, the latest version of Anthropic’s most powerful model, which was released in late November. In December, METR announced that Opus 4.5 appeared to be capable of independently completing a task that would have taken a human about five hours—a vast improvement over what even the exponential trend would have predicted. One Anthropic safety researcher tweeted that he would change the direction of his research in light of those results; another employee at the company simply wrote, “mom come pick me up i’m scared.”</p>\n\n\n\n<iframe src=\"https://metr.org/horizon-chart-embed\" style=\"width: 100%; height: 640px; border: none;\"></iframe>\n\n\n\n<p>But the truth is more complicated than those dramatic responses would suggest. For one thing, METR’s estimates of the abilities of specific models come with substantial error bars. As METR explicitly stated on X, Opus 4.5 might be able to regularly complete only tasks that take humans about two hours, or it might succeed on tasks that take humans as long as 20 hours. Given the uncertainties intrinsic to the method, it was impossible to know for sure.&nbsp;</p>\n\n\n\n<p>“There are a bunch of ways that people are reading too much into the graph,” says Sydney Von Arx, a member of METR’s technical staff.</p>\n\n\n\n<p>More fundamentally, the METR plot does not measure AI abilities writ large, nor does it claim to. In order to build the graph, METR tests the models primarily on coding tasks, evaluating the difficulty of each by measuring or estimating how long it takes humans to complete it—a metric that not everyone accepts. Claude Opus 4.5 might be able to complete certain tasks that take humans five hours, but that doesn’t mean it’s anywhere close to replacing a human worker.</p>\n\n\n\n<p>METR was founded to assess the risks posed by frontier AI systems. Though it is best known for the exponential trend plot, it has also worked with AI companies to evaluate their systems in greater detail and published several other independent research projects, including a <a href=\"https://metr.org/blog/2025-07-10-early-2025-ai-experienced-os-dev-study/\">widely covered July 2025 study</a> suggesting that AI coding assistants might actually be slowing software engineers down.&nbsp;</p>\n\n\n\n<p>But the exponential plot has made METR’s reputation, and the organization appears to have a complicated relationship with that graph’s often breathless reception. In January, Thomas Kwa, one of the lead authors on the paper that introduced it, <a href=\"https://metr.org/notes/2026-01-22-time-horizon-limitations/\">wrote a blog post</a> responding to some criticisms and making clear its limitations, and METR is currently working on a more extensive FAQ document. But Kwa isn’t optimistic that these efforts will meaningfully shift the discourse. “I think the hype machine will basically, whatever we do, just strip out all the caveats,” he says.</p>\n\n\n\n<p>Nevertheless, the METR team does think that the plot has something meaningful to say about the trajectory of AI progress. “You should absolutely not tie your life to this graph,” says Von Arx. “But also,” she adds, “I bet that this trend is gonna hold.”</p>\n\n\n\n\n\n<p>Part of the trouble with the METR plot is that it’s quite a bit more complicated than it looks. The x-axis is simple enough: It tracks the date when each model was released. But the y-axis is where things get tricky. It records each model’s “time horizon,” an unusual metric that METR created—and that, according to Kwa and Von Arx, is frequently misunderstood.</p>\n\n\n\n<p>To understand exactly what model time horizons are, it helps to know all the work that METR put into calculating them. First, the METR team assembled a collection of tasks ranging from quick multiple-choice questions to detailed coding challenges—all of which were somehow relevant to software engineering. Then they had human coders attempt most of those tasks and evaluated how long it took them to finish. In this way, they assigned the tasks a human baseline time. Some tasks took the experts mere seconds, whereas others required several hours.</p>\n\n\n\n<p>When METR tested large language models on the task suite, they found that advanced models could complete the fast tasks with ease—but as the models attempted tasks that had taken humans more and more time to finish, their accuracy started to fall off. From a model’s performance, the researchers calculated the point on the time scale of human tasks at which the model would complete about 50% of the tasks successfully. That point is the model’s time horizon.&nbsp;</p>\n\n\n\n<p>All that detail is in the blog post and the academic paper that METR released along with the original time horizon plot. But the METR plot is frequently passed around on social media without this context, and so the true meaning of the time horizon metric can get lost in the shuffle. One common misapprehension is that the numbers on the plot’s y-axis—around five hours for Claude Opus 4.5, for example—represent the length of time that the models can operate independently. They do not. They represent how long it takes humans to complete tasks that a model can successfully perform.&nbsp; Kwa has seen this error so frequently that he made a point of correcting it at the very top of his recent blog post, and when asked what information he would add to the versions of the plot circulating online, he said he would include the word “human” whenever the task completion time was mentioned.</p>\n\n\n\n<p>As complex and widely misinterpreted as the time horizon concept might be, it does make some basic sense: A model with a one-hour time horizon could automate some modest portions of a software engineer’s job, whereas a model with a 40-hour horizon could potentially complete days of work on its own. But some experts question whether the amount of time that humans take on tasks is an effective metric for quantifying AI capabilities. “I don’t think it’s necessarily a given fact that because something takes longer, it’s going to be a harder task,” says Inioluwa Deborah Raji, a PhD student at UC Berkeley who studies model evaluation.&nbsp;</p>\n\n\n\n\n\n<p>Von Arx says that she, too, was originally skeptical that time horizon was the right measure to use. What convinced her was seeing the results of her and her colleagues’ analysis. When they calculated the 50% time horizon for all the major models available in early 2025 and then plotted each of them on the graph, they saw that the time horizons for the top-tier models were increasing over time—and, moreover, that the rate of advancement was speeding up. Every seven-ish months, the time horizon doubled, which means that the most advanced models could complete tasks that took humans nine seconds in mid 2020, 4 minutes in early 2023, and 40 minutes in late 2024. “I can do all the theorizing I want about whether or not it makes sense, but the trend is there,” Von Arx says.</p>\n\n\n\n<p>It’s this dramatic pattern that made the METR plot such a blockbuster. Many people learned about it when they read <a href=\"https://ai-2027.com/\">AI 2027</a>, a viral sci-fi story cum quantitative forecast positing that superintelligent AI could wipe out humanity by 2030. The writers of AI 2027 based some of their predictions on the METR plot and cited it extensively. In Von Arx’s words, “It’s a little weird when the way lots of people are familiar with your work is this pretty opinionated interpretation.”</p>\n\n\n\n<p>Of course, plenty of people invoke the METR plot without imagining large-scale death and destruction. For some AI boosters, the exponential trend indicates that AI will soon usher in an era of radical economic growth. The venture capital firm Sequoia Capital, for example, recently put out a post titled <a href=\"https://sequoiacap.com/article/2026-this-is-agi/\">“2026: This is AGI,”</a> which used the METR plot to argue that AI that can act as an employee or contractor will soon arrive. “The provocation really was like, ‘What will you do when your plans are measured in centuries?’” says Sonya Huang, a general partner at Sequoia and one of the post’s authors.&nbsp;</p>\n\n\n\n<p>Just because a model achieves a one-hour time horizon on the METR plot, however, doesn’t mean that it can replace one hour of human work in the real world. For one thing, the tasks on which the models are evaluated don’t reflect the complexities and confusion of real-world work. In their original study, Kwa, Von Arx, and their colleagues quantify what they call the “messiness” of each task according to criteria such as whether the model knows exactly how it is being scored and whether it can easily start over if it makes a mistake (for messy tasks, the answer to both questions would be no). They found that models do noticeably worse on messy tasks, although the overall pattern of improvement holds for both messy and non-messy ones.</p>\n\n\n\n<p>And even the messiest tasks that METR considered can’t provide much information about AI’s ability to take on most jobs, because the plot is based almost entirely on coding tasks. “A model can get better at coding, but it’s not going to magically get better at anything else,” says Daniel Kang, an assistant professor of computer science at the University of Illinois Urbana-Champaign. In a follow-up study, Kwa and his colleagues did find that time horizons for tasks in other domains also appear to be on exponential trajectories, but that work was much less formal.</p>\n\n\n\n<p>Despite these limitations, many people admire the group’s research. “The METR study is one of the most carefully designed studies in the literature for this kind of work,” Kang told me. Even Gary Marcus, a former NYU professor and professional LLM curmudgeon, described much of the work that went into the plot as “terrific” in a <a href=\"https://garymarcus.substack.com/p/the-latest-ai-scaling-graph-and-why\">blog post</a>.</p>\n\n\n\n<p>Some people will almost certainly continue to read the METR plot as a prognostication of our AI-induced doom, but in reality it’s something far more banal: a carefully constructed scientific tool that puts concrete numbers to people’s intuitive sense of AI progress. As METR employees will readily agree, the plot is far from a perfect instrument. But in a new and fast-moving domain, even imperfect tools can have enormous value.</p>\n\n\n\n<p>“This is a bunch of people trying their best to make a metric under a lot of constraints. It is deeply flawed in many ways,” Von Arx says. “I also think that it is one of the best things of its kind.”</p>\n",
          "content:encodedSnippet": "MIT Technology Review Explains: Let our writers untangle the complex, messy world of technology to help you understand what’s coming next. You can read more from the series here.\nEvery time OpenAI, Google, or Anthropic drops a new frontier large language model, the AI community holds its breath. It doesn’t exhale until METR, an AI research nonprofit whose name stands for “Model Evaluation & Threat Research,” updates a now-iconic graph that has played a major role in the AI discourse since it was first released in March of last year. The graph suggests that certain AI capabilities are developing at an exponential rate, and more recent model releases have outperformed that already impressive trend.\nThat was certainly the case for Claude Opus 4.5, the latest version of Anthropic’s most powerful model, which was released in late November. In December, METR announced that Opus 4.5 appeared to be capable of independently completing a task that would have taken a human about five hours—a vast improvement over what even the exponential trend would have predicted. One Anthropic safety researcher tweeted that he would change the direction of his research in light of those results; another employee at the company simply wrote, “mom come pick me up i’m scared.”\n\n\n\n\nBut the truth is more complicated than those dramatic responses would suggest. For one thing, METR’s estimates of the abilities of specific models come with substantial error bars. As METR explicitly stated on X, Opus 4.5 might be able to regularly complete only tasks that take humans about two hours, or it might succeed on tasks that take humans as long as 20 hours. Given the uncertainties intrinsic to the method, it was impossible to know for sure. \n“There are a bunch of ways that people are reading too much into the graph,” says Sydney Von Arx, a member of METR’s technical staff.\nMore fundamentally, the METR plot does not measure AI abilities writ large, nor does it claim to. In order to build the graph, METR tests the models primarily on coding tasks, evaluating the difficulty of each by measuring or estimating how long it takes humans to complete it—a metric that not everyone accepts. Claude Opus 4.5 might be able to complete certain tasks that take humans five hours, but that doesn’t mean it’s anywhere close to replacing a human worker.\nMETR was founded to assess the risks posed by frontier AI systems. Though it is best known for the exponential trend plot, it has also worked with AI companies to evaluate their systems in greater detail and published several other independent research projects, including a widely covered July 2025 study suggesting that AI coding assistants might actually be slowing software engineers down. \nBut the exponential plot has made METR’s reputation, and the organization appears to have a complicated relationship with that graph’s often breathless reception. In January, Thomas Kwa, one of the lead authors on the paper that introduced it, wrote a blog post responding to some criticisms and making clear its limitations, and METR is currently working on a more extensive FAQ document. But Kwa isn’t optimistic that these efforts will meaningfully shift the discourse. “I think the hype machine will basically, whatever we do, just strip out all the caveats,” he says.\nNevertheless, the METR team does think that the plot has something meaningful to say about the trajectory of AI progress. “You should absolutely not tie your life to this graph,” says Von Arx. “But also,” she adds, “I bet that this trend is gonna hold.”\nPart of the trouble with the METR plot is that it’s quite a bit more complicated than it looks. The x-axis is simple enough: It tracks the date when each model was released. But the y-axis is where things get tricky. It records each model’s “time horizon,” an unusual metric that METR created—and that, according to Kwa and Von Arx, is frequently misunderstood.\nTo understand exactly what model time horizons are, it helps to know all the work that METR put into calculating them. First, the METR team assembled a collection of tasks ranging from quick multiple-choice questions to detailed coding challenges—all of which were somehow relevant to software engineering. Then they had human coders attempt most of those tasks and evaluated how long it took them to finish. In this way, they assigned the tasks a human baseline time. Some tasks took the experts mere seconds, whereas others required several hours.\nWhen METR tested large language models on the task suite, they found that advanced models could complete the fast tasks with ease—but as the models attempted tasks that had taken humans more and more time to finish, their accuracy started to fall off. From a model’s performance, the researchers calculated the point on the time scale of human tasks at which the model would complete about 50% of the tasks successfully. That point is the model’s time horizon. \nAll that detail is in the blog post and the academic paper that METR released along with the original time horizon plot. But the METR plot is frequently passed around on social media without this context, and so the true meaning of the time horizon metric can get lost in the shuffle. One common misapprehension is that the numbers on the plot’s y-axis—around five hours for Claude Opus 4.5, for example—represent the length of time that the models can operate independently. They do not. They represent how long it takes humans to complete tasks that a model can successfully perform.  Kwa has seen this error so frequently that he made a point of correcting it at the very top of his recent blog post, and when asked what information he would add to the versions of the plot circulating online, he said he would include the word “human” whenever the task completion time was mentioned.\nAs complex and widely misinterpreted as the time horizon concept might be, it does make some basic sense: A model with a one-hour time horizon could automate some modest portions of a software engineer’s job, whereas a model with a 40-hour horizon could potentially complete days of work on its own. But some experts question whether the amount of time that humans take on tasks is an effective metric for quantifying AI capabilities. “I don’t think it’s necessarily a given fact that because something takes longer, it’s going to be a harder task,” says Inioluwa Deborah Raji, a PhD student at UC Berkeley who studies model evaluation. \nVon Arx says that she, too, was originally skeptical that time horizon was the right measure to use. What convinced her was seeing the results of her and her colleagues’ analysis. When they calculated the 50% time horizon for all the major models available in early 2025 and then plotted each of them on the graph, they saw that the time horizons for the top-tier models were increasing over time—and, moreover, that the rate of advancement was speeding up. Every seven-ish months, the time horizon doubled, which means that the most advanced models could complete tasks that took humans nine seconds in mid 2020, 4 minutes in early 2023, and 40 minutes in late 2024. “I can do all the theorizing I want about whether or not it makes sense, but the trend is there,” Von Arx says.\nIt’s this dramatic pattern that made the METR plot such a blockbuster. Many people learned about it when they read AI 2027, a viral sci-fi story cum quantitative forecast positing that superintelligent AI could wipe out humanity by 2030. The writers of AI 2027 based some of their predictions on the METR plot and cited it extensively. In Von Arx’s words, “It’s a little weird when the way lots of people are familiar with your work is this pretty opinionated interpretation.”\nOf course, plenty of people invoke the METR plot without imagining large-scale death and destruction. For some AI boosters, the exponential trend indicates that AI will soon usher in an era of radical economic growth. The venture capital firm Sequoia Capital, for example, recently put out a post titled “2026: This is AGI,” which used the METR plot to argue that AI that can act as an employee or contractor will soon arrive. “The provocation really was like, ‘What will you do when your plans are measured in centuries?’” says Sonya Huang, a general partner at Sequoia and one of the post’s authors. \nJust because a model achieves a one-hour time horizon on the METR plot, however, doesn’t mean that it can replace one hour of human work in the real world. For one thing, the tasks on which the models are evaluated don’t reflect the complexities and confusion of real-world work. In their original study, Kwa, Von Arx, and their colleagues quantify what they call the “messiness” of each task according to criteria such as whether the model knows exactly how it is being scored and whether it can easily start over if it makes a mistake (for messy tasks, the answer to both questions would be no). They found that models do noticeably worse on messy tasks, although the overall pattern of improvement holds for both messy and non-messy ones.\nAnd even the messiest tasks that METR considered can’t provide much information about AI’s ability to take on most jobs, because the plot is based almost entirely on coding tasks. “A model can get better at coding, but it’s not going to magically get better at anything else,” says Daniel Kang, an assistant professor of computer science at the University of Illinois Urbana-Champaign. In a follow-up study, Kwa and his colleagues did find that time horizons for tasks in other domains also appear to be on exponential trajectories, but that work was much less formal.\nDespite these limitations, many people admire the group’s research. “The METR study is one of the most carefully designed studies in the literature for this kind of work,” Kang told me. Even Gary Marcus, a former NYU professor and professional LLM curmudgeon, described much of the work that went into the plot as “terrific” in a blog post.\nSome people will almost certainly continue to read the METR plot as a prognostication of our AI-induced doom, but in reality it’s something far more banal: a carefully constructed scientific tool that puts concrete numbers to people’s intuitive sense of AI progress. As METR employees will readily agree, the plot is far from a perfect instrument. But in a new and fast-moving domain, even imperfect tools can have enormous value.\n“This is a bunch of people trying their best to make a metric under a lot of constraints. It is deeply flawed in many ways,” Von Arx says. “I also think that it is one of the best things of its kind.”"
        },
        "pairedItem": [
          {
            "item": 2
          }
        ]
      },
      {
        "json": {
          "guid": "1l2gUXhw9OMzMzsSp8yAFk",
          "link": "https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud",
          "title": "Railway secures $100 million to challenge AWS with AI-native cloud infrastructure",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p><a href=\"https://railway.com/\">Railway</a>, a San Francisco-based cloud platform that has quietly amassed two million developers without spending a dollar on marketing, announced Thursday that it raised $100 million in a Series B funding round, as surging demand for artificial intelligence applications exposes the limitations of legacy cloud infrastructure.</p><p><a href=\"https://tq.vc/\">TQ Ventures</a> led the round, with participation from <a href=\"https://fpvventures.com/\">FPV Ventures</a>, <a href=\"https://www.redpoint.com/\">Redpoint</a>, and <a href=\"https://www.unusual.vc/\">Unusual Ventures</a>. The investment values Railway as one of the most significant infrastructure startups to emerge during the AI boom, capitalizing on developer frustration with the complexity and cost of traditional platforms like <a href=\"https://aws.amazon.com/\">Amazon Web Services</a> and <a href=\"https://cloud.google.com/\">Google Cloud</a>.</p><p>&quot;As AI models get better at writing code, more and more people are asking the age-old question: where, and how, do I run my applications?&quot; said Jake Cooper, Railway&#x27;s 28-year-old founder and chief executive, in an exclusive interview with VentureBeat. &quot;The last generation of cloud primitives were slow and outdated, and now with AI moving everything faster, teams simply can&#x27;t keep up.&quot;</p><p>The funding is a dramatic acceleration for a company that has charted an unconventional path through the cloud computing industry. Railway raised just $24 million in total before this round, including a <a href=\"https://techcrunch.com/2022/05/31/railway-snags-20m-to-streamline-the-process-of-deploying-apps-and-services/\">$20 million Series A</a> from Redpoint in 2022. The company now processes more than 10 million deployments monthly and handles over one trillion requests through its edge network — metrics that rival far larger and better-funded competitors.</p><h2><b>Why three-minute deploy times have become unacceptable in the age of AI coding assistants</b></h2><p>Railway&#x27;s pitch rests on a simple observation: the tools developers use to deploy and manage software were designed for a slower era. A standard build-and-deploy cycle using <a href=\"https://station.railway.com/feedback/terraform-provider-954567d7\">Terraform</a>, the industry-standard infrastructure tool, takes two to three minutes. That delay, once tolerable, has become a critical bottleneck as AI coding assistants like <a href=\"https://claude.ai/login\">Claude</a>, <a href=\"https://chatgpt.com/\">ChatGPT</a>, and <a href=\"https://cursor.com/\">Cursor</a> can generate working code in seconds.</p><p>&quot;When godly intelligence is on tap and can solve any problem in three seconds, those amalgamations of systems become bottlenecks,&quot; Cooper told VentureBeat. &quot;What was really cool for humans to deploy in 10 seconds or less is now table stakes for agents.&quot;</p><p>The company claims its platform delivers deployments in under one second — fast enough to keep pace with AI-generated code. Customers report a tenfold increase in developer velocity and up to 65 percent cost savings compared to traditional cloud providers.</p><p>These numbers come directly from enterprise clients, not internal benchmarks. Daniel Lobaton, chief technology officer at G2X, a platform serving 100,000 federal contractors, measured deployment speed improvements of seven times faster and an 87 percent cost reduction after migrating to Railway. His infrastructure bill dropped from $15,000 per month to approximately $1,000.</p><p>&quot;The work that used to take me a week on our previous infrastructure, I can do in Railway in like a day,&quot; Lobaton said. &quot;If I want to spin up a new service and test different architectures, it would take so long on our old setup. In Railway I can launch six services in two minutes.&quot;</p><h2><b>Inside the controversial decision to abandon Google Cloud and build data centers from scratch</b></h2><p>What distinguishes <a href=\"https://railway.com/\">Railway</a> from competitors like <a href=\"https://render.com/\">Render</a> and <a href=\"http://fly.io\">Fly.io</a> is the depth of its vertical integration. In 2024, the company made the unusual decision to abandon Google Cloud entirely and build its own data centers, a move that echoes the famous Alan Kay maxim: &quot;People who are really serious about software should make their own hardware.&quot;</p><p>&quot;We wanted to design hardware in a way where we could build a differentiated experience,&quot; Cooper said. &quot;Having full control over the network, compute, and storage layers lets us do really fast build and deploy loops, the kind that allows us to move at &#x27;agentic speed&#x27; while staying 100 percent the smoothest ride in town.&quot;</p><p>The approach paid dividends during recent <a href=\"https://restofworld.org/2026/cloud-outages-2025-global-business-impact/\">widespread outages</a> that affected major cloud providers — Railway remained online throughout.</p><p>This soup-to-nuts control enables pricing that undercuts the hyperscalers by roughly 50 percent and newer cloud startups by three to four times. Railway charges by the second for actual compute usage: $0.00000386 per gigabyte-second of memory, $0.00000772 per vCPU-second, and $0.00000006 per gigabyte-second of storage. There are no charges for idle virtual machines — a stark contrast to the traditional cloud model where customers pay for provisioned capacity whether they use it or not.</p><p>&quot;The conventional wisdom is that the big guys have economies of scale to offer better pricing,&quot; Cooper noted. &quot;But when they&#x27;re charging for VMs that usually sit idle in the cloud, and we&#x27;ve purpose-built everything to fit much more density on these machines, you have a big opportunity.&quot;</p><h2><b>How 30 employees built a platform generating tens of millions in annual revenue</b></h2><p><a href=\"https://railway.com/\">Railway</a> has achieved its scale with a team of just 30 employees generating tens of millions in annual revenue — a ratio of revenue per employee that would be exceptional even for established software companies. The company grew revenue 3.5 times last year and continues to expand at 15 percent month-over-month.</p><p>Cooper emphasized that the fundraise was strategic rather than necessary. &quot;We&#x27;re default alive; there&#x27;s no reason for us to raise money,&quot; he said. &quot;We raised because we see a massive opportunity to accelerate, not because we needed to survive.&quot;</p><p>The company hired its first salesperson only last year and employs just two solutions engineers. Nearly all of Railway&#x27;s two million users discovered the platform through word of mouth — developers telling other developers about a tool that actually works.</p><p>&quot;We basically did the standard engineering thing: if you build it, they will come,&quot; Cooper recalled. &quot;And to some degree, they came.&quot;</p><h2><b>From side projects to Fortune 500 deployments: Railway&#x27;s unlikely corporate expansion</b></h2><p>Despite its grassroots developer community, Railway has made significant inroads into large organizations. The company claims that 31 percent of Fortune 500 companies now use its platform, though deployments range from company-wide infrastructure to individual team projects.</p><p>Notable customers include <a href=\"https://www.biltrewards.com/\">Bilt</a>, the loyalty program company; Intuit&#x27;s <a href=\"https://www.goco.io/\">GoCo</a> subsidiary; TripAdvisor&#x27;s <a href=\"https://www.cruisecritic.com/\">Cruise Critic</a>; and <a href=\"https://www.mgmresorts.com/en.html\">MGM Resorts</a>. <a href=\"https://www.ycombinator.com/companies/kernel\">Kernel</a>, a Y Combinator-backed startup providing AI infrastructure to over 1,000 companies, runs its entire customer-facing system on Railway for $444 per month.</p><p>&quot;At my previous company Clever, which sold for $500 million, I had six full-time engineers just managing AWS,&quot; said Rafael Garcia, Kernel&#x27;s chief technology officer. &quot;Now I have six engineers total, and they all focus on product. Railway is exactly the tool I wish I had in 2012.&quot;</p><p>For enterprise customers, <a href=\"https://railway.com/\">Railway</a> offers security certifications including SOC 2 Type 2 compliance and HIPAA readiness, with business associate agreements available upon request. The platform provides single sign-on authentication, comprehensive audit logs, and the option to deploy within a customer&#x27;s existing cloud environment through a &quot;bring your own cloud&quot; configuration.</p><p>Enterprise pricing starts at custom levels, with specific add-ons for extended log retention ($200 monthly), HIPAA BAAs ($1,000), enterprise support with SLOs ($2,000), and dedicated virtual machines ($10,000).</p><h2><b>The startup&#x27;s bold strategy to take on Amazon, Google, and a new generation of cloud rivals</b></h2><p>Railway enters a crowded market that includes not only the hyperscale cloud providers—Amazon Web Services, Microsoft Azure, and Google Cloud Platform—but also a growing cohort of developer-focused platforms like Vercel, Render, Fly.io, and Heroku.</p><p>Cooper argues that Railway&#x27;s competitors fall into two camps, neither of which has fully committed to the new infrastructure model that AI demands.</p><p>&quot;The hyperscalers have two competing systems, and they haven&#x27;t gone all-in on the new model because their legacy revenue stream is still printing money,&quot; he observed. &quot;They have this mammoth pool of cash coming from people who provision a VM, use maybe 10 percent of it, and still pay for the whole thing. To what end are they actually interested in going all the way in on a new experience if they don&#x27;t really need to?&quot;</p><p>Against startup competitors, Railway differentiates by covering the full infrastructure stack. &quot;We&#x27;re not just containers; we&#x27;ve got VM primitives, stateful storage, virtual private networking, automated load balancing,&quot; Cooper said. &quot;And we wrap all of this in an absurdly easy-to-use UI, with agentic primitives so agents can move 1,000 times faster.&quot;</p><p>The platform supports databases including PostgreSQL, MySQL, MongoDB, and Redis; provides up to 256 terabytes of persistent storage with over 100,000 input/output operations per second; and enables deployment to four global regions spanning the United States, Europe, and Southeast Asia. Enterprise customers can scale to 112 vCPUs and 2 terabytes of RAM per service.</p><h2><b>Why investors are betting that AI will create a thousand times more software than exists today</b></h2><p>Railway&#x27;s fundraise reflects broader investor enthusiasm for companies positioned to benefit from the AI coding revolution. As tools like <a href=\"https://github.com/features/copilot\">GitHub Copilot</a>, <a href=\"https://cursor.com/agents\">Cursor</a>, and <a href=\"https://claude.ai/login\">Claude</a> become standard fixtures in developer workflows, the volume of code being written — and the infrastructure needed to run it — is expanding dramatically.</p><p>&quot;The amount of software that&#x27;s going to come online over the next five years is unfathomable compared to what existed before — we&#x27;re talking a thousand times more software,&quot; Cooper predicted. &quot;All of that has to run somewhere.&quot;</p><p>The company has already integrated directly with AI systems, building what Cooper calls &quot;loops where Claude can hook in, call deployments, and analyze infrastructure automatically.&quot; Railway released a Model Context Protocol server in August 2025 that allows AI coding agents to deploy applications and manage infrastructure directly from code editors.</p><p>&quot;The notion of a developer is melting before our eyes,&quot; Cooper said. &quot;You don&#x27;t have to be an engineer to engineer things anymore — you just need critical thinking and the ability to analyze things in a systems capacity.&quot;</p><h2><b>What Railway plans to do with $100 million and zero marketing experience</b></h2><p><a href=\"https://railway.com/\">Railway</a> plans to use the new capital to expand its global data center footprint, grow its team beyond 30 employees, and build what Cooper described as a proper go-to-market operation for the first time in the company&#x27;s five-year history.</p><p>&quot;One of my mentors said you raise money when you can change the trajectory of the business,&quot; Cooper explained. &quot;We&#x27;ve built all the required substrate to scale indefinitely; what&#x27;s been holding us back is simply talking about it. 2026 is the year we play on the world stage.&quot;</p><p>The company&#x27;s investor roster reads like a who&#x27;s who of developer infrastructure. Angel investors include <a href=\"https://tom.preston-werner.com/\">Tom Preston-Werner,</a> co-founder of GitHub; <a href=\"https://rauchg.com/about\">Guillermo Rauch</a>, chief executive of Vercel; <a href=\"https://www.cockroachlabs.com/author/spencer-kimball/\">Spencer Kimball</a>, chief executive of Cockroach Labs; <a href=\"https://www.datadoghq.com/about/leadership/\">Olivier Pomel</a>, chief executive of Datadog; and <a href=\"https://sequoiacap.com/founder/jori-lallo/\">Jori Lallo</a>, co-founder of Linear.</p><p>The timing of Railway&#x27;s expansion coincides with what many in Silicon Valley view as a fundamental shift in how software gets made. Coding assistants are no longer experimental curiosities — they have become essential tools that millions of developers rely on daily. Each line of AI-generated code needs somewhere to run, and the incumbents, by Cooper&#x27;s telling, are too wedded to their existing business models to fully capitalize on the moment.</p><p>Whether <a href=\"https://railway.com/\">Railway</a> can translate developer enthusiasm into sustained enterprise adoption remains an open question. The cloud infrastructure market is littered with promising startups that failed to break the grip of Amazon, Microsoft, and Google. But Cooper, who previously worked as a software engineer at <a href=\"https://www.wolframalpha.com/\">Wolfram Alpha</a>, <a href=\"https://www.bloomberg.com/\">Bloomberg</a>, and <a href=\"https://www.uber.com/\">Uber</a> before founding Railway in 2020, seems unfazed by the scale of his ambition.</p><p>&quot;In five years, Railway [will be] the place where software gets created and evolved, period,&quot; he said. &quot;Deploy instantly, scale infinitely, with zero friction. That&#x27;s the prize worth playing for, and there&#x27;s no bigger one on offer.&quot;</p><p>For a company that built a $100 million business by doing the opposite of what conventional startup wisdom dictates — no marketing, no sales team, no venture hype—the real test begins now. Railway spent five years proving that developers would find a better mousetrap on their own. The next five will determine whether the rest of the world is ready to get on board.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-22T14:00:00.000Z",
          "pubDate": "Thu, 22 Jan 2026 14:00:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/5RLyQIpBeVXxv0RpcXZxWQ/fd9680c6d82acd8208ac341fc575f5fb/nuneybits_Vector_art_of_a_sleek_bullet_train_bursting_from_a_cl_32a805aa-272c-4b34-ac16-cf20508b7ff4.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Infrastructure",
            "AI"
          ],
          "contentSnippet": "Railway, a San Francisco-based cloud platform that has quietly amassed two million developers without spending a dollar on marketing, announced Thursday that it raised $100 million in a Series B funding round, as surging demand for artificial intelligence applications exposes the limitations of legacy cloud infrastructure.\nTQ Ventures led the round, with participation from FPV Ventures, Redpoint, and Unusual Ventures. The investment values Railway as one of the most significant infrastructure startups to emerge during the AI boom, capitalizing on developer frustration with the complexity and cost of traditional platforms like Amazon Web Services and Google Cloud.\n\"As AI models get better at writing code, more and more people are asking the age-old question: where, and how, do I run my applications?\" said Jake Cooper, Railway's 28-year-old founder and chief executive, in an exclusive interview with VentureBeat. \"The last generation of cloud primitives were slow and outdated, and now with AI moving everything faster, teams simply can't keep up.\"\nThe funding is a dramatic acceleration for a company that has charted an unconventional path through the cloud computing industry. Railway raised just $24 million in total before this round, including a $20 million Series A from Redpoint in 2022. The company now processes more than 10 million deployments monthly and handles over one trillion requests through its edge network — metrics that rival far larger and better-funded competitors.\nWhy three-minute deploy times have become unacceptable in the age of AI coding assistants\nRailway's pitch rests on a simple observation: the tools developers use to deploy and manage software were designed for a slower era. A standard build-and-deploy cycle using Terraform, the industry-standard infrastructure tool, takes two to three minutes. That delay, once tolerable, has become a critical bottleneck as AI coding assistants like Claude, ChatGPT, and Cursor can generate working code in seconds.\n\"When godly intelligence is on tap and can solve any problem in three seconds, those amalgamations of systems become bottlenecks,\" Cooper told VentureBeat. \"What was really cool for humans to deploy in 10 seconds or less is now table stakes for agents.\"\nThe company claims its platform delivers deployments in under one second — fast enough to keep pace with AI-generated code. Customers report a tenfold increase in developer velocity and up to 65 percent cost savings compared to traditional cloud providers.\nThese numbers come directly from enterprise clients, not internal benchmarks. Daniel Lobaton, chief technology officer at G2X, a platform serving 100,000 federal contractors, measured deployment speed improvements of seven times faster and an 87 percent cost reduction after migrating to Railway. His infrastructure bill dropped from $15,000 per month to approximately $1,000.\n\"The work that used to take me a week on our previous infrastructure, I can do in Railway in like a day,\" Lobaton said. \"If I want to spin up a new service and test different architectures, it would take so long on our old setup. In Railway I can launch six services in two minutes.\"\nInside the controversial decision to abandon Google Cloud and build data centers from scratch\nWhat distinguishes Railway from competitors like Render and Fly.io is the depth of its vertical integration. In 2024, the company made the unusual decision to abandon Google Cloud entirely and build its own data centers, a move that echoes the famous Alan Kay maxim: \"People who are really serious about software should make their own hardware.\"\n\"We wanted to design hardware in a way where we could build a differentiated experience,\" Cooper said. \"Having full control over the network, compute, and storage layers lets us do really fast build and deploy loops, the kind that allows us to move at 'agentic speed' while staying 100 percent the smoothest ride in town.\"\nThe approach paid dividends during recent widespread outages that affected major cloud providers — Railway remained online throughout.\nThis soup-to-nuts control enables pricing that undercuts the hyperscalers by roughly 50 percent and newer cloud startups by three to four times. Railway charges by the second for actual compute usage: $0.00000386 per gigabyte-second of memory, $0.00000772 per vCPU-second, and $0.00000006 per gigabyte-second of storage. There are no charges for idle virtual machines — a stark contrast to the traditional cloud model where customers pay for provisioned capacity whether they use it or not.\n\"The conventional wisdom is that the big guys have economies of scale to offer better pricing,\" Cooper noted. \"But when they're charging for VMs that usually sit idle in the cloud, and we've purpose-built everything to fit much more density on these machines, you have a big opportunity.\"\nHow 30 employees built a platform generating tens of millions in annual revenue\nRailway has achieved its scale with a team of just 30 employees generating tens of millions in annual revenue — a ratio of revenue per employee that would be exceptional even for established software companies. The company grew revenue 3.5 times last year and continues to expand at 15 percent month-over-month.\nCooper emphasized that the fundraise was strategic rather than necessary. \"We're default alive; there's no reason for us to raise money,\" he said. \"We raised because we see a massive opportunity to accelerate, not because we needed to survive.\"\nThe company hired its first salesperson only last year and employs just two solutions engineers. Nearly all of Railway's two million users discovered the platform through word of mouth — developers telling other developers about a tool that actually works.\n\"We basically did the standard engineering thing: if you build it, they will come,\" Cooper recalled. \"And to some degree, they came.\"\nFrom side projects to Fortune 500 deployments: Railway's unlikely corporate expansion\nDespite its grassroots developer community, Railway has made significant inroads into large organizations. The company claims that 31 percent of Fortune 500 companies now use its platform, though deployments range from company-wide infrastructure to individual team projects.\nNotable customers include Bilt, the loyalty program company; Intuit's GoCo subsidiary; TripAdvisor's Cruise Critic; and MGM Resorts. Kernel, a Y Combinator-backed startup providing AI infrastructure to over 1,000 companies, runs its entire customer-facing system on Railway for $444 per month.\n\"At my previous company Clever, which sold for $500 million, I had six full-time engineers just managing AWS,\" said Rafael Garcia, Kernel's chief technology officer. \"Now I have six engineers total, and they all focus on product. Railway is exactly the tool I wish I had in 2012.\"\nFor enterprise customers, Railway offers security certifications including SOC 2 Type 2 compliance and HIPAA readiness, with business associate agreements available upon request. The platform provides single sign-on authentication, comprehensive audit logs, and the option to deploy within a customer's existing cloud environment through a \"bring your own cloud\" configuration.\nEnterprise pricing starts at custom levels, with specific add-ons for extended log retention ($200 monthly), HIPAA BAAs ($1,000), enterprise support with SLOs ($2,000), and dedicated virtual machines ($10,000).\nThe startup's bold strategy to take on Amazon, Google, and a new generation of cloud rivals\nRailway enters a crowded market that includes not only the hyperscale cloud providers—Amazon Web Services, Microsoft Azure, and Google Cloud Platform—but also a growing cohort of developer-focused platforms like Vercel, Render, Fly.io, and Heroku.\nCooper argues that Railway's competitors fall into two camps, neither of which has fully committed to the new infrastructure model that AI demands.\n\"The hyperscalers have two competing systems, and they haven't gone all-in on the new model because their legacy revenue stream is still printing money,\" he observed. \"They have this mammoth pool of cash coming from people who provision a VM, use maybe 10 percent of it, and still pay for the whole thing. To what end are they actually interested in going all the way in on a new experience if they don't really need to?\"\nAgainst startup competitors, Railway differentiates by covering the full infrastructure stack. \"We're not just containers; we've got VM primitives, stateful storage, virtual private networking, automated load balancing,\" Cooper said. \"And we wrap all of this in an absurdly easy-to-use UI, with agentic primitives so agents can move 1,000 times faster.\"\nThe platform supports databases including PostgreSQL, MySQL, MongoDB, and Redis; provides up to 256 terabytes of persistent storage with over 100,000 input/output operations per second; and enables deployment to four global regions spanning the United States, Europe, and Southeast Asia. Enterprise customers can scale to 112 vCPUs and 2 terabytes of RAM per service.\nWhy investors are betting that AI will create a thousand times more software than exists today\nRailway's fundraise reflects broader investor enthusiasm for companies positioned to benefit from the AI coding revolution. As tools like GitHub Copilot, Cursor, and Claude become standard fixtures in developer workflows, the volume of code being written — and the infrastructure needed to run it — is expanding dramatically.\n\"The amount of software that's going to come online over the next five years is unfathomable compared to what existed before — we're talking a thousand times more software,\" Cooper predicted. \"All of that has to run somewhere.\"\nThe company has already integrated directly with AI systems, building what Cooper calls \"loops where Claude can hook in, call deployments, and analyze infrastructure automatically.\" Railway released a Model Context Protocol server in August 2025 that allows AI coding agents to deploy applications and manage infrastructure directly from code editors.\n\"The notion of a developer is melting before our eyes,\" Cooper said. \"You don't have to be an engineer to engineer things anymore — you just need critical thinking and the ability to analyze things in a systems capacity.\"\nWhat Railway plans to do with $100 million and zero marketing experience\nRailway plans to use the new capital to expand its global data center footprint, grow its team beyond 30 employees, and build what Cooper described as a proper go-to-market operation for the first time in the company's five-year history.\n\"One of my mentors said you raise money when you can change the trajectory of the business,\" Cooper explained. \"We've built all the required substrate to scale indefinitely; what's been holding us back is simply talking about it. 2026 is the year we play on the world stage.\"\nThe company's investor roster reads like a who's who of developer infrastructure. Angel investors include Tom Preston-Werner, co-founder of GitHub; Guillermo Rauch, chief executive of Vercel; Spencer Kimball, chief executive of Cockroach Labs; Olivier Pomel, chief executive of Datadog; and Jori Lallo, co-founder of Linear.\nThe timing of Railway's expansion coincides with what many in Silicon Valley view as a fundamental shift in how software gets made. Coding assistants are no longer experimental curiosities — they have become essential tools that millions of developers rely on daily. Each line of AI-generated code needs somewhere to run, and the incumbents, by Cooper's telling, are too wedded to their existing business models to fully capitalize on the moment.\nWhether Railway can translate developer enthusiasm into sustained enterprise adoption remains an open question. The cloud infrastructure market is littered with promising startups that failed to break the grip of Amazon, Microsoft, and Google. But Cooper, who previously worked as a software engineer at Wolfram Alpha, Bloomberg, and Uber before founding Railway in 2020, seems unfazed by the scale of his ambition.\n\"In five years, Railway [will be] the place where software gets created and evolved, period,\" he said. \"Deploy instantly, scale infinitely, with zero friction. That's the prize worth playing for, and there's no bigger one on offer.\"\nFor a company that built a $100 million business by doing the opposite of what conventional startup wisdom dictates — no marketing, no sales team, no venture hype—the real test begins now. Railway spent five years proving that developers would find a better mousetrap on their own. The next five will determine whether the rest of the world is ready to get on board."
        },
        "pairedItem": [
          {
            "item": 4
          }
        ]
      },
      {
        "json": {
          "guid": "2CUHNkdUg4dnjDFiMtJJQ",
          "link": "https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free",
          "title": "Claude Code costs up to $200 a month. Goose does the same thing for free.",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p>The artificial intelligence coding revolution comes with a catch: it&#x27;s expensive.</p><p><a href=\"https://claude.com/product/claude-code\">Claude Code</a>, Anthropic&#x27;s terminal-based AI agent that can write, debug, and deploy code autonomously, has captured the imagination of software developers worldwide. But its <a href=\"https://claude.com/pricing\">pricing</a> — ranging from $20 to $200 per month depending on usage — has sparked a growing rebellion among the very programmers it aims to serve.</p><p>Now, a free alternative is gaining traction. <a href=\"https://block.github.io/goose/\">Goose</a>, an open-source AI agent developed by <a href=\"https://block.xyz/\">Block</a> (the financial technology company formerly known as Square), offers nearly identical functionality to <a href=\"https://claude.com/product/claude-code\">Claude Code</a> but runs entirely on a user&#x27;s local machine. No subscription fees. No cloud dependency. No rate limits that reset every five hours.</p><p>&quot;Your data stays with you, period,&quot; said Parth Sareen, a software engineer who demonstrated the tool during a <a href=\"https://www.youtube.com/watch?v=WG10r2N0IwM\">recent livestream</a>. The comment captures the core appeal: Goose gives developers complete control over their AI-powered workflow, including the ability to work offline — even on an airplane.</p><p>The project has exploded in popularity. Goose now boasts more than <a href=\"https://github.com/block/goose\">26,100 stars on GitHub</a>, the code-sharing platform, with 362 contributors and 102 releases since its launch. The latest version, <a href=\"https://block.github.io/goose/docs/getting-started/installation\">1.20.1</a>, shipped on January 19, 2026, reflecting a development pace that rivals commercial products.</p><p>For developers frustrated by Claude Code&#x27;s pricing structure and usage caps, Goose represents something increasingly rare in the AI industry: a genuinely free, no-strings-attached option for serious work.</p><div></div><h2><b>Anthropic&#x27;s new rate limits spark a developer revolt</b></h2><p>To understand why <a href=\"https://block.github.io/goose/\">Goose</a> matters, you need to understand the <a href=\"https://techcrunch.com/2025/07/17/anthropic-tightens-usage-limits-for-claude-code-without-telling-users/\">Claude Code pricing controversy</a>.</p><p>Anthropic, the San Francisco artificial intelligence company founded by former OpenAI executives, offers Claude Code as part of its subscription tiers. The free plan provides no access whatsoever. The <a href=\"https://www.anthropic.com/news/claude-pro\">Pro plan</a>, at $17 per month with annual billing (or $20 monthly), limits users to just 10 to 40 prompts every five hours — a constraint that serious developers exhaust within minutes of intensive work.</p><p>The <a href=\"https://support.claude.com/en/articles/11049741-what-is-the-max-plan\">Max plans</a>, at $100 and $200 per month, offer more headroom: 50 to 200 prompts and 200 to 800 prompts respectively, plus access to Anthropic&#x27;s most powerful model, <a href=\"https://www.anthropic.com/news/claude-opus-4-5\">Claude 4.5 Opus</a>. But even these premium tiers come with restrictions that have inflamed the developer community.</p><p>In late July, Anthropic announced new weekly rate limits. Under the system, Pro users receive 40 to 80 hours of Sonnet 4 usage per week. Max users at the $200 tier get 240 to 480 hours of Sonnet 4, plus 24 to 40 hours of Opus 4. Nearly five months later, the frustration has not subsided.</p><p>The problem? Those &quot;hours&quot; are not actual hours. They represent token-based limits that vary wildly depending on codebase size, conversation length, and the complexity of the code being processed. Independent analysis suggests the actual per-session limits translate to roughly 44,000 tokens for Pro users and 220,000 tokens for the $200 Max plan.</p><p>&quot;It&#x27;s confusing and vague,&quot; one developer wrote in a <a href=\"https://userjot.com/blog/claude-code-pricing-200-dollar-plan-worth-it\">widely shared analysis</a>. &quot;When they say &#x27;24-40 hours of Opus 4,&#x27; that doesn&#x27;t really tell you anything useful about what you&#x27;re actually getting.&quot;</p><p>The <a href=\"https://www.reddit.com/r/Anthropic/comments/1mbo4uw/claude_code_max_new_weekly_rate_limits/\">backlash on Reddit</a> and <a href=\"https://venturebeat.com/ai/anthropic-throttles-claude-rate-limits-devs-call-foul\">developer forums</a> has been fierce. Some users report hitting their daily limits within 30 minutes of intensive coding. Others have canceled their subscriptions entirely, calling the new restrictions &quot;a joke&quot; and &quot;unusable for real work.&quot;</p><p>Anthropic has defended the changes, stating that the limits affect fewer than five percent of users and target people running Claude Code &quot;<a href=\"https://techcrunch.com/2025/07/28/anthropic-unveils-new-rate-limits-to-curb-claude-code-power-users/\">continuously in the background, 24/7</a>.&quot; But the company has not clarified whether that figure refers to five percent of Max subscribers or five percent of all users — a distinction that matters enormously.</p><h2><b>How Block built a free AI coding agent that works offline</b></h2><p><a href=\"https://block.github.io/goose/\">Goose</a> takes a radically different approach to the same problem.</p><p>Built by <a href=\"https://block.xyz/\">Block</a>, the payments company led by Jack Dorsey, Goose is what engineers call an &quot;<a href=\"https://github.com/block/goose\">on-machine AI agent</a>.&quot; Unlike Claude Code, which sends your queries to Anthropic&#x27;s servers for processing, Goose can run entirely on your local computer using open-source language models that you download and control yourself.</p><p>The project&#x27;s documentation describes it as going &quot;<a href=\"https://github.com/block/goose\">beyond code suggestions</a>&quot; to &quot;install, execute, edit, and test with any LLM.&quot; That last phrase — &quot;any LLM&quot; — is the key differentiator. Goose is model-agnostic by design.</p><p>You can connect Goose to Anthropic&#x27;s <a href=\"https://platform.claude.com/docs/en/about-claude/models/overview\">Claude models</a> if you have <a href=\"https://claude.com/platform/api\">API access</a>. You can use OpenAI&#x27;s <a href=\"https://platform.openai.com/docs/models/gpt-5\">GPT-5</a> or Google&#x27;s <a href=\"https://ai.google.dev/gemini-api/docs\">Gemini</a>. You can route it through services like <a href=\"https://groq.com/\">Groq</a> or <a href=\"https://openrouter.ai/\">OpenRouter</a>. Or — and this is where things get interesting — you can run it entirely locally using tools like <a href=\"https://ollama.com/\">Ollama</a>, which let you download and execute open-source models on your own hardware.</p><p>The practical implications are significant. With a local setup, there are no subscription fees, no usage caps, no rate limits, and no concerns about your code being sent to external servers. Your conversations with the AI never leave your machine.</p><p>&quot;I use Ollama all the time on planes — it&#x27;s a lot of fun!&quot; <a href=\"https://www.youtube.com/watch?v=WG10r2N0IwM\">Sareen noted</a> during a demonstration, highlighting how local models free developers from the constraints of internet connectivity.</p><h2><b>What Goose can do that traditional code assistants can&#x27;t</b></h2><p><a href=\"https://block.github.io/goose/\">Goose</a> operates as a command-line tool or desktop application that can autonomously perform complex development tasks. It can build entire projects from scratch, write and execute code, debug failures, orchestrate workflows across multiple files, and interact with external APIs — all without constant human oversight.</p><p>The architecture relies on what the AI industry calls &quot;<a href=\"https://www.ibm.com/think/topics/tool-calling\">tool calling</a>&quot; or &quot;<a href=\"https://platform.openai.com/docs/guides/function-calling?api-mode=chat\">function calling</a>&quot; — the ability for a language model to request specific actions from external systems. When you ask <a href=\"https://block.github.io/goose/\">Goose</a> to create a new file, run a test suite, or check the status of a GitHub pull request, it doesn&#x27;t just generate text describing what should happen. It actually executes those operations.</p><p>This capability depends heavily on the underlying language model. <a href=\"https://platform.claude.com/docs/en/about-claude/models/overview\">Claude 4 models</a> from Anthropic currently perform best at tool calling, according to the <a href=\"https://gorilla.cs.berkeley.edu/leaderboard.html\">Berkeley Function-Calling Leaderboard</a>, which ranks models on their ability to translate natural language requests into executable code and system commands.</p><p>But newer open-source models are catching up quickly. Goose&#x27;s documentation highlights several options with strong tool-calling support: Meta&#x27;s <a href=\"https://www.llama.com/\">Llama series</a>, Alibaba&#x27;s <a href=\"https://qwen.ai/home\">Qwen models</a>, Google&#x27;s <a href=\"https://deepmind.google/models/gemma/\">Gemma variants</a>, and DeepSeek&#x27;s <a href=\"https://huggingface.co/deepseek-ai/DeepSeek-R1\">reasoning-focused architectures</a>.</p><p>The tool also integrates with the <a href=\"https://modelcontextprotocol.io/docs/getting-started/intro\">Model Context Protocol</a>, or MCP, an emerging standard for connecting AI agents to external services. Through MCP, Goose can access databases, search engines, file systems, and third-party APIs — extending its capabilities far beyond what the base language model provides.</p><h2><b>Setting Up Goose with a Local Model</b></h2><p>For developers interested in a completely free, privacy-preserving setup, the process involves three main components: <a href=\"https://block.github.io/goose/\">Goose</a> itself, <a href=\"https://ollama.com/\">Ollama</a> (a tool for running open-source models locally), and a compatible language model.</p><p><b>Step 1: Install Ollama</b></p><p><a href=\"https://ollama.com/\">Ollama</a> is an open-source project that dramatically simplifies the process of running large language models on personal hardware. It handles the complex work of downloading, optimizing, and serving models through a simple interface.</p><p>Download and install Ollama from <a href=\"http://ollama.com\">ollama.com</a>. Once installed, you can pull models with a single command. For coding tasks, <a href=\"https://qwen.ai/blog?id=qwen2.5-max\">Qwen 2.5</a> offers strong tool-calling support:</p><p>ollama run qwen2.5</p><p>The model downloads automatically and begins running on your machine.</p><p><b>Step 2: Install Goose</b></p><p><a href=\"https://block.github.io/goose/\">Goose</a> is available as both a desktop application and a command-line interface. The desktop version provides a more visual experience, while the CLI appeals to developers who prefer working entirely in the terminal.</p><p>Installation instructions vary by operating system but generally involve downloading from Goose&#x27;s <a href=\"https://github.com/block/goose\">GitHub releases page</a> or using a package manager. Block provides pre-built binaries for macOS (both Intel and Apple Silicon), Windows, and Linux.</p><p><b>Step 3: Configure the Connection</b></p><p>In Goose Desktop, navigate to Settings, then Configure Provider, and select Ollama. Confirm that the API Host is set to http://localhost:11434 (Ollama&#x27;s default port) and click Submit.</p><p>For the command-line version, run goose configure, select &quot;Configure Providers,&quot; choose Ollama, and enter the model name when prompted.</p><p>That&#x27;s it. Goose is now connected to a language model running entirely on your hardware, ready to execute complex coding tasks without any subscription fees or external dependencies.</p><h2><b>The RAM, processing power, and trade-offs you should know about</b></h2><p>The obvious question: what kind of computer do you need?</p><p>Running large language models locally requires substantially more computational resources than typical software. The key constraint is memory — specifically, RAM on most systems, or VRAM if using a dedicated graphics card for acceleration.</p><p>Block&#x27;s <a href=\"https://block.github.io/goose/docs/category/guides\">documentation</a> suggests that 32 gigabytes of RAM provides &quot;a solid baseline for larger models and outputs.&quot; For Mac users, this means the computer&#x27;s unified memory is the primary bottleneck. For Windows and Linux users with discrete NVIDIA graphics cards, GPU memory (VRAM) matters more for acceleration.</p><p>But you don&#x27;t necessarily need expensive hardware to get started. Smaller models with fewer parameters run on much more modest systems. <a href=\"https://qwen.ai/blog?id=qwen2.5-max\">Qwen 2.5</a>, for instance, comes in multiple sizes, and the smaller variants can operate effectively on machines with 16 gigabytes of RAM.</p><p>&quot;You don&#x27;t need to run the largest models to get excellent results,&quot; <a href=\"https://www.youtube.com/watch?v=WG10r2N0IwM\">Sareen emphasized</a>. The practical recommendation: start with a smaller model to test your workflow, then scale up as needed.</p><p>For context, Apple&#x27;s entry-level <a href=\"https://www.apple.com/macbook-air/\">MacBook Air</a> with 8 gigabytes of RAM would struggle with most capable coding models. But a <a href=\"https://www.apple.com/macbook-pro/\">MacBook Pro</a> with 32 gigabytes — increasingly common among professional developers — handles them comfortably.</p><h2><b>Why keeping your code off the cloud matters more than ever</b></h2><p><a href=\"https://block.github.io/goose/\">Goose</a> with a local LLM is not a perfect substitute for <a href=\"https://claude.com/product/claude-code\">Claude Code</a>. The comparison involves real trade-offs that developers should understand.</p><p><b>Model Quality</b>: <a href=\"https://www.anthropic.com/news/claude-opus-4-5\">Claude 4.5 Opus</a>, Anthropic&#x27;s flagship model, remains arguably the most capable AI for software engineering tasks. It excels at understanding complex codebases, following nuanced instructions, and producing high-quality code on the first attempt. Open-source models have improved dramatically, but a gap persists — particularly for the most challenging tasks.</p><p>One developer who switched to the $200 Claude Code plan <a href=\"https://userjot.com/blog/claude-code-pricing-200-dollar-plan-worth-it\">described the difference bluntly</a>: &quot;When I say &#x27;make this look modern,&#x27; Opus knows what I mean. Other models give me Bootstrap circa 2015.&quot;</p><p><b>Context Window</b>: <a href=\"https://www.anthropic.com/news/claude-sonnet-4-5\">Claude Sonnet 4.5</a>, accessible through the API, offers a massive one-million-token context window — enough to load entire large codebases without chunking or context management issues. Most local models are limited to 4,096 or 8,192 tokens by default, though many can be configured for longer contexts at the cost of increased memory usage and slower processing.</p><p><b>Speed</b>: Cloud-based services like <a href=\"https://claude.com/product/claude-code\">Claude Code</a> run on dedicated server hardware optimized for AI inference. Local models, running on consumer laptops, typically process requests more slowly. The difference matters for iterative workflows where you&#x27;re making rapid changes and waiting for AI feedback.</p><p><b>Tooling Maturity</b>: <a href=\"https://claude.com/product/claude-code\">Claude Code</a> benefits from Anthropic&#x27;s dedicated engineering resources. Features like prompt caching (which can reduce costs by up to 90 percent for repeated contexts) and structured outputs are polished and well-documented. <a href=\"https://block.github.io/goose/\">Goose</a>, while actively developed with 102 releases to date, relies on community contributions and may lack equivalent refinement in specific areas.</p><h2><b>How Goose stacks up against Cursor, GitHub Copilot, and the paid AI coding market</b></h2><p>Goose enters a crowded market of AI coding tools, but occupies a distinctive position.</p><p><a href=\"https://cursor.com/\">Cursor</a>, a popular AI-enhanced code editor, charges $20 per month for its <a href=\"https://cursor.com/pricing\">Pro tier</a> and $200 for <a href=\"https://cursor.com/pricing\">Ultra</a>—pricing that mirrors <a href=\"https://claude.com/pricing\">Claude Code&#x27;s Max plans</a>. Cursor provides approximately 4,500 Sonnet 4 requests per month at the Ultra level, a substantially different allocation model than Claude Code&#x27;s hourly resets.</p><p><a href=\"https://cline.bot/\">Cline</a>, <a href=\"https://roocode.com/\">Roo Code</a>, and similar open-source projects offer AI coding assistance but with varying levels of autonomy and tool integration. Many focus on code completion rather than the agentic task execution that defines Goose and Claude Code.</p><p>Amazon&#x27;s <a href=\"https://aws.amazon.com/blogs/aws/now-in-preview-amazon-codewhisperer-ml-powered-coding-companion/\">CodeWhisperer</a>, <a href=\"https://github.com/features/copilot\">GitHub Copilot</a>, and enterprise offerings from major cloud providers target large organizations with complex procurement processes and dedicated budgets. They are less relevant to individual developers and small teams seeking lightweight, flexible tools.</p><p>Goose&#x27;s combination of genuine autonomy, model agnosticism, local operation, and zero cost creates a unique value proposition. The tool is not trying to compete with commercial offerings on polish or model quality. It&#x27;s competing on freedom — both financial and architectural.</p><h2><b>The $200-a-month era for AI coding tools may be ending</b></h2><p>The AI coding tools market is evolving quickly. Open-source models are improving at a pace that continually narrows the gap with proprietary alternatives. Moonshot AI&#x27;s <a href=\"https://www.kimi.com/en\">Kimi K2</a> and z.ai&#x27;s <a href=\"https://z.ai/blog/glm-4.5\">GLM 4.5</a> now benchmark near <a href=\"https://www.anthropic.com/news/claude-4\">Claude Sonnet 4 levels</a> — and they&#x27;re freely available.</p><p>If this trajectory continues, the quality advantage that justifies Claude Code&#x27;s premium pricing may erode. Anthropic would then face pressure to compete on features, user experience, and integration rather than raw model capability.</p><p>For now, developers face a clear choice. Those who need the absolute best model quality, who can afford premium pricing, and who accept usage restrictions may prefer <a href=\"https://claude.com/product/claude-code\">Claude Code</a>. Those who prioritize cost, privacy, offline access, and flexibility have a genuine alternative in <a href=\"https://block.github.io/goose/\">Goose</a>.</p><p>The fact that a $200-per-month commercial product has a zero-dollar open-source competitor with comparable core functionality is itself remarkable. It reflects both the maturation of open-source AI infrastructure and the appetite among developers for tools that respect their autonomy.</p><p>Goose is not perfect. It requires more technical setup than commercial alternatives. It depends on hardware resources that not every developer possesses. Its model options, while improving rapidly, still trail the best proprietary offerings on complex tasks.</p><p>But for a growing community of developers, those limitations are acceptable trade-offs for something increasingly rare in the AI landscape: a tool that truly belongs to them.</p><hr/><p><i>Goose is available for download at </i><a href=\"http://github.com/block/goose\"><i>github.com/block/goose</i></a><i>. Ollama is available at </i><a href=\"http://ollama.com\"><i>ollama.com</i></a><i>. Both projects are free and open source.</i></p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-19T14:00:00.000Z",
          "pubDate": "Mon, 19 Jan 2026 14:00:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/1U9H8GLIqoGqKpitVfgw3T/ba56292f99409eca709dac0b176ec245/nuneybits_Vector_art_of_white_goose_silhouette_flying_through_c_8100d5a7-9e36-4ed6-a188-016470e1d0e1.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "AI",
            "Infrastructure"
          ],
          "contentSnippet": "The artificial intelligence coding revolution comes with a catch: it's expensive.\nClaude Code, Anthropic's terminal-based AI agent that can write, debug, and deploy code autonomously, has captured the imagination of software developers worldwide. But its pricing — ranging from $20 to $200 per month depending on usage — has sparked a growing rebellion among the very programmers it aims to serve.\nNow, a free alternative is gaining traction. Goose, an open-source AI agent developed by Block (the financial technology company formerly known as Square), offers nearly identical functionality to Claude Code but runs entirely on a user's local machine. No subscription fees. No cloud dependency. No rate limits that reset every five hours.\n\"Your data stays with you, period,\" said Parth Sareen, a software engineer who demonstrated the tool during a recent livestream. The comment captures the core appeal: Goose gives developers complete control over their AI-powered workflow, including the ability to work offline — even on an airplane.\nThe project has exploded in popularity. Goose now boasts more than 26,100 stars on GitHub, the code-sharing platform, with 362 contributors and 102 releases since its launch. The latest version, 1.20.1, shipped on January 19, 2026, reflecting a development pace that rivals commercial products.\nFor developers frustrated by Claude Code's pricing structure and usage caps, Goose represents something increasingly rare in the AI industry: a genuinely free, no-strings-attached option for serious work.\n\nAnthropic's new rate limits spark a developer revolt\nTo understand why Goose matters, you need to understand the Claude Code pricing controversy.\nAnthropic, the San Francisco artificial intelligence company founded by former OpenAI executives, offers Claude Code as part of its subscription tiers. The free plan provides no access whatsoever. The Pro plan, at $17 per month with annual billing (or $20 monthly), limits users to just 10 to 40 prompts every five hours — a constraint that serious developers exhaust within minutes of intensive work.\nThe Max plans, at $100 and $200 per month, offer more headroom: 50 to 200 prompts and 200 to 800 prompts respectively, plus access to Anthropic's most powerful model, Claude 4.5 Opus. But even these premium tiers come with restrictions that have inflamed the developer community.\nIn late July, Anthropic announced new weekly rate limits. Under the system, Pro users receive 40 to 80 hours of Sonnet 4 usage per week. Max users at the $200 tier get 240 to 480 hours of Sonnet 4, plus 24 to 40 hours of Opus 4. Nearly five months later, the frustration has not subsided.\nThe problem? Those \"hours\" are not actual hours. They represent token-based limits that vary wildly depending on codebase size, conversation length, and the complexity of the code being processed. Independent analysis suggests the actual per-session limits translate to roughly 44,000 tokens for Pro users and 220,000 tokens for the $200 Max plan.\n\"It's confusing and vague,\" one developer wrote in a widely shared analysis. \"When they say '24-40 hours of Opus 4,' that doesn't really tell you anything useful about what you're actually getting.\"\nThe backlash on Reddit and developer forums has been fierce. Some users report hitting their daily limits within 30 minutes of intensive coding. Others have canceled their subscriptions entirely, calling the new restrictions \"a joke\" and \"unusable for real work.\"\nAnthropic has defended the changes, stating that the limits affect fewer than five percent of users and target people running Claude Code \"continuously in the background, 24/7.\" But the company has not clarified whether that figure refers to five percent of Max subscribers or five percent of all users — a distinction that matters enormously.\nHow Block built a free AI coding agent that works offline\nGoose takes a radically different approach to the same problem.\nBuilt by Block, the payments company led by Jack Dorsey, Goose is what engineers call an \"on-machine AI agent.\" Unlike Claude Code, which sends your queries to Anthropic's servers for processing, Goose can run entirely on your local computer using open-source language models that you download and control yourself.\nThe project's documentation describes it as going \"beyond code suggestions\" to \"install, execute, edit, and test with any LLM.\" That last phrase — \"any LLM\" — is the key differentiator. Goose is model-agnostic by design.\nYou can connect Goose to Anthropic's Claude models if you have API access. You can use OpenAI's GPT-5 or Google's Gemini. You can route it through services like Groq or OpenRouter. Or — and this is where things get interesting — you can run it entirely locally using tools like Ollama, which let you download and execute open-source models on your own hardware.\nThe practical implications are significant. With a local setup, there are no subscription fees, no usage caps, no rate limits, and no concerns about your code being sent to external servers. Your conversations with the AI never leave your machine.\n\"I use Ollama all the time on planes — it's a lot of fun!\" Sareen noted during a demonstration, highlighting how local models free developers from the constraints of internet connectivity.\nWhat Goose can do that traditional code assistants can't\nGoose operates as a command-line tool or desktop application that can autonomously perform complex development tasks. It can build entire projects from scratch, write and execute code, debug failures, orchestrate workflows across multiple files, and interact with external APIs — all without constant human oversight.\nThe architecture relies on what the AI industry calls \"tool calling\" or \"function calling\" — the ability for a language model to request specific actions from external systems. When you ask Goose to create a new file, run a test suite, or check the status of a GitHub pull request, it doesn't just generate text describing what should happen. It actually executes those operations.\nThis capability depends heavily on the underlying language model. Claude 4 models from Anthropic currently perform best at tool calling, according to the Berkeley Function-Calling Leaderboard, which ranks models on their ability to translate natural language requests into executable code and system commands.\nBut newer open-source models are catching up quickly. Goose's documentation highlights several options with strong tool-calling support: Meta's Llama series, Alibaba's Qwen models, Google's Gemma variants, and DeepSeek's reasoning-focused architectures.\nThe tool also integrates with the Model Context Protocol, or MCP, an emerging standard for connecting AI agents to external services. Through MCP, Goose can access databases, search engines, file systems, and third-party APIs — extending its capabilities far beyond what the base language model provides.\nSetting Up Goose with a Local Model\nFor developers interested in a completely free, privacy-preserving setup, the process involves three main components: Goose itself, Ollama (a tool for running open-source models locally), and a compatible language model.\nStep 1: Install Ollama\nOllama is an open-source project that dramatically simplifies the process of running large language models on personal hardware. It handles the complex work of downloading, optimizing, and serving models through a simple interface.\nDownload and install Ollama from ollama.com. Once installed, you can pull models with a single command. For coding tasks, Qwen 2.5 offers strong tool-calling support:\nollama run qwen2.5\nThe model downloads automatically and begins running on your machine.\nStep 2: Install Goose\nGoose is available as both a desktop application and a command-line interface. The desktop version provides a more visual experience, while the CLI appeals to developers who prefer working entirely in the terminal.\nInstallation instructions vary by operating system but generally involve downloading from Goose's GitHub releases page or using a package manager. Block provides pre-built binaries for macOS (both Intel and Apple Silicon), Windows, and Linux.\nStep 3: Configure the Connection\nIn Goose Desktop, navigate to Settings, then Configure Provider, and select Ollama. Confirm that the API Host is set to http://localhost:11434 (Ollama's default port) and click Submit.\nFor the command-line version, run goose configure, select \"Configure Providers,\" choose Ollama, and enter the model name when prompted.\nThat's it. Goose is now connected to a language model running entirely on your hardware, ready to execute complex coding tasks without any subscription fees or external dependencies.\nThe RAM, processing power, and trade-offs you should know about\nThe obvious question: what kind of computer do you need?\nRunning large language models locally requires substantially more computational resources than typical software. The key constraint is memory — specifically, RAM on most systems, or VRAM if using a dedicated graphics card for acceleration.\nBlock's documentation suggests that 32 gigabytes of RAM provides \"a solid baseline for larger models and outputs.\" For Mac users, this means the computer's unified memory is the primary bottleneck. For Windows and Linux users with discrete NVIDIA graphics cards, GPU memory (VRAM) matters more for acceleration.\nBut you don't necessarily need expensive hardware to get started. Smaller models with fewer parameters run on much more modest systems. Qwen 2.5, for instance, comes in multiple sizes, and the smaller variants can operate effectively on machines with 16 gigabytes of RAM.\n\"You don't need to run the largest models to get excellent results,\" Sareen emphasized. The practical recommendation: start with a smaller model to test your workflow, then scale up as needed.\nFor context, Apple's entry-level MacBook Air with 8 gigabytes of RAM would struggle with most capable coding models. But a MacBook Pro with 32 gigabytes — increasingly common among professional developers — handles them comfortably.\nWhy keeping your code off the cloud matters more than ever\nGoose with a local LLM is not a perfect substitute for Claude Code. The comparison involves real trade-offs that developers should understand.\nModel Quality: Claude 4.5 Opus, Anthropic's flagship model, remains arguably the most capable AI for software engineering tasks. It excels at understanding complex codebases, following nuanced instructions, and producing high-quality code on the first attempt. Open-source models have improved dramatically, but a gap persists — particularly for the most challenging tasks.\nOne developer who switched to the $200 Claude Code plan described the difference bluntly: \"When I say 'make this look modern,' Opus knows what I mean. Other models give me Bootstrap circa 2015.\"\nContext Window: Claude Sonnet 4.5, accessible through the API, offers a massive one-million-token context window — enough to load entire large codebases without chunking or context management issues. Most local models are limited to 4,096 or 8,192 tokens by default, though many can be configured for longer contexts at the cost of increased memory usage and slower processing.\nSpeed: Cloud-based services like Claude Code run on dedicated server hardware optimized for AI inference. Local models, running on consumer laptops, typically process requests more slowly. The difference matters for iterative workflows where you're making rapid changes and waiting for AI feedback.\nTooling Maturity: Claude Code benefits from Anthropic's dedicated engineering resources. Features like prompt caching (which can reduce costs by up to 90 percent for repeated contexts) and structured outputs are polished and well-documented. Goose, while actively developed with 102 releases to date, relies on community contributions and may lack equivalent refinement in specific areas.\nHow Goose stacks up against Cursor, GitHub Copilot, and the paid AI coding market\nGoose enters a crowded market of AI coding tools, but occupies a distinctive position.\nCursor, a popular AI-enhanced code editor, charges $20 per month for its Pro tier and $200 for Ultra—pricing that mirrors Claude Code's Max plans. Cursor provides approximately 4,500 Sonnet 4 requests per month at the Ultra level, a substantially different allocation model than Claude Code's hourly resets.\nCline, Roo Code, and similar open-source projects offer AI coding assistance but with varying levels of autonomy and tool integration. Many focus on code completion rather than the agentic task execution that defines Goose and Claude Code.\nAmazon's CodeWhisperer, GitHub Copilot, and enterprise offerings from major cloud providers target large organizations with complex procurement processes and dedicated budgets. They are less relevant to individual developers and small teams seeking lightweight, flexible tools.\nGoose's combination of genuine autonomy, model agnosticism, local operation, and zero cost creates a unique value proposition. The tool is not trying to compete with commercial offerings on polish or model quality. It's competing on freedom — both financial and architectural.\nThe $200-a-month era for AI coding tools may be ending\nThe AI coding tools market is evolving quickly. Open-source models are improving at a pace that continually narrows the gap with proprietary alternatives. Moonshot AI's Kimi K2 and z.ai's GLM 4.5 now benchmark near Claude Sonnet 4 levels — and they're freely available.\nIf this trajectory continues, the quality advantage that justifies Claude Code's premium pricing may erode. Anthropic would then face pressure to compete on features, user experience, and integration rather than raw model capability.\nFor now, developers face a clear choice. Those who need the absolute best model quality, who can afford premium pricing, and who accept usage restrictions may prefer Claude Code. Those who prioritize cost, privacy, offline access, and flexibility have a genuine alternative in Goose.\nThe fact that a $200-per-month commercial product has a zero-dollar open-source competitor with comparable core functionality is itself remarkable. It reflects both the maturation of open-source AI infrastructure and the appetite among developers for tools that respect their autonomy.\nGoose is not perfect. It requires more technical setup than commercial alternatives. It depends on hardware resources that not every developer possesses. Its model options, while improving rapidly, still trail the best proprietary offerings on complex tasks.\nBut for a growing community of developers, those limitations are acceptable trade-offs for something increasingly rare in the AI landscape: a tool that truly belongs to them.\n\nGoose is available for download at github.com/block/goose. Ollama is available at ollama.com. Both projects are free and open source."
        },
        "pairedItem": [
          {
            "item": 4
          }
        ]
      },
      {
        "json": {
          "guid": "wOG0z6nm91FOeUqhpizqI",
          "link": "https://venturebeat.com/technology/listen-labs-raises-usd69m-after-viral-billboard-hiring-stunt-to-scale-ai",
          "title": "Listen Labs raises $69M after viral billboard hiring stunt to scale AI customer interviews",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p>Alfred Wahlforss was running out of options. His startup, <a href=\"https://listenlabs.ai/\">Listen Labs</a>, needed to hire over 100 engineers, but competing against Mark Zuckerberg&#x27;s <a href=\"https://news.bloomberglaw.com/employee-benefits/zuckerbergs-100-million-ai-job-offers-pay-off-parmy-olson\">$100 million offers</a> seemed impossible. So he spent $5,000 — a fifth of his marketing budget — on a <a href=\"https://billboardinsider.com/ai-startup/\">billboard in San Francisco</a> displaying what looked like gibberish: five strings of random numbers.</p><p>The numbers were actually AI tokens. Decoded, they led to a coding challenge: build an algorithm to act as a digital bouncer at Berghain, the Berlin nightclub famous for rejecting nearly everyone at the door. Within days, thousands attempted the puzzle. 430 cracked it. Some got hired. The winner flew to Berlin, all expenses paid.</p><p>That unconventional approach has now attracted $69 million in Series B funding, led by <a href=\"https://www.ribbitcap.com/\">Ribbit Capital</a> with participation from <a href=\"https://www.evantic.ai/\">Evantic</a> and existing investors <a href=\"https://sequoiacap.com/\">Sequoia Capital</a>, <a href=\"https://www.conviction.com/\">Conviction</a>, and <a href=\"https://pear.vc/\">Pear VC</a>. The round values Listen Labs at $500 million and brings its total capital to $100 million. In nine months since launch, the company has grown annualized revenue by 15x to eight figures and conducted over one million AI-powered interviews.</p><div></div><p>&quot;When you obsess over customers, everything else follows,&quot; Wahlforss said in an interview with VentureBeat. &quot;Teams that use Listen bring the customer into every decision, from marketing to product, and when the customer is delighted, everyone is.&quot;</p><h2><b>Why traditional market research is broken, and what Listen Labs is building to fix it</b></h2><p>Listen&#x27;s <a href=\"https://listenlabs.ai/role/agencies\">AI researcher</a> finds participants, conducts in-depth interviews, and delivers actionable insights in hours, not weeks. The platform replaces the traditional choice between quantitative surveys — which provide statistical precision but miss nuance—and qualitative interviews, which deliver depth but cannot scale.</p><p>Wahlforss explained the limitation of existing approaches: &quot;Essentially surveys give you false precision because people end up answering the same question... You can&#x27;t get the outliers. People are actually not honest on surveys.&quot; The alternative, one-on-one human interviews, &quot;gives you a lot of depth. You can ask follow up questions. You can kind of double check if they actually know what they&#x27;re talking about. And the problem is you can&#x27;t scale that.&quot;</p><p>The platform works in four steps: users create a study with AI assistance, Listen recruits participants from its global network of 30 million people, an AI moderator conducts in-depth interviews with follow-up questions, and results are packaged into executive-ready reports including key themes, highlight reels, and slide decks.</p><p>What distinguishes Listen&#x27;s approach is its use of open-ended video conversations rather than multiple-choice forms. &quot;In a survey, you can kind of guess what you should answer, and you have four options,&quot; Wahlforss said. &quot;Oh, they probably want me to buy high income. Let me click on that button versus an open ended response. It just generates much more honesty.&quot;</p><h2><b>The dirty secret of the $140 billion market research industry: rampant fraud</b></h2><p><a href=\"https://listenlabs.ai/\">Listen</a> finds and qualifies the right participants in its global network of 30 million people. But building that panel required confronting what Wahlforss called &quot;one of the most shocking things that we&#x27;ve learned when we entered this industry&quot;—rampant fraud.</p><p>&quot;Essentially, there&#x27;s a financial transaction involved, which means there will be bad players,&quot; he explained. &quot;We actually had some of the largest companies, some of them have billions in revenue, send us people who claim to be kind of enterprise buyers to our platform and our system immediately detected, like, fraud, fraud, fraud, fraud, fraud.&quot;</p><p>The company built what it calls a &quot;quality guard&quot; that cross-references LinkedIn profiles with video responses to verify identity, checks consistency across how participants answer questions, and flags suspicious patterns. The result, according to Wahlforss: &quot;People talk three times more. They&#x27;re much more honest when they talk about sensitive topics like politics and mental health.&quot;</p><p><a href=\"https://listenlabs.ai/case-studies/emeritus\">Emeritus</a>, an online education company that uses Listen, reported that approximately 20% of survey responses previously fell into the fraudulent or low-quality category. With Listen, they reduced this to almost zero. &quot;We did not have to replace any responses because of fraud or gibberish information,&quot; said Gabrielli Tiburi, Assistant Manager of Customer Insights at Emeritus.</p><h2><b>How Microsoft, Sweetgreen, and Chubbies are using AI interviews to build better products</b></h2><p>The speed advantage has proven central to Listen&#x27;s pitch. Traditional customer research at <a href=\"https://listenlabs.ai/case-studies/microsoft\">Microsoft</a> could take four to six weeks to generate insights. &quot;By the time we get to them, either the decision has been made or we lose out on the opportunity to actually influence it,&quot; said Romani Patel, Senior Research Manager at Microsoft.</p><p>With Listen, Microsoft can now get insights in days, and in many cases, within hours.</p><p>The platform has already powered several high-profile initiatives. Microsoft used Listen Labs to collect global customer stories for its 50th anniversary celebration. &quot;We wanted users to share how Copilot is empowering them to bring their best self forward,&quot; Patel said, &quot;and we were able to collect those user video stories within a day.&quot; Traditionally, that kind of work would have taken six to eight weeks.</p><p><a href=\"https://listenlabs.ai/case-studies/simple-modern\">Simple Modern</a>, an Oklahoma-based drinkware company, used Listen to test a new product concept. The process took about an hour to write questions, an hour to launch the study, and 2.5 hours to receive feedback from 120 people across the country. &quot;We went from &#x27;Should we even have this product?&#x27; to &#x27;How should we launch it?&#x27;&quot; said Chris Hoyle, the company&#x27;s Chief Marketing Officer.</p><p><a href=\"https://listenlabs.ai/case-studies/chubbies\">Chubbies</a>, the shorts brand, achieved a 24x increase in youth research participation—growing from 5 to 120 participants — by using Listen to overcome the scheduling challenges of traditional focus groups with children. &quot;There&#x27;s school, sports, dinner, and homework,&quot; explained Lauren Neville, Director of Insights and Innovation. &quot;I had to find a way to hear from them that fit into their schedules.&quot;</p><p>The company also discovered product issues through AI interviews that might have gone undetected otherwise. Wahlforss described how the AI &quot;through conversations, realized there were like issues with the the kids short line, and decided to, like, interview hundreds of kids. And I understand that there were issues in the liner of the shorts and that they were, like, scratchy, quote, unquote, according to the people interviewed.&quot; The redesigned product became &quot;a blockbuster hit.&quot;</p><h2><b>The Jevons paradox explains why cheaper research creates more demand, not less</b></h2><p><a href=\"https://listenlabs.ai/\">Listen Labs</a> is entering a massive but fragmented market. Wahlforss cited research from Andreessen Horowitz estimating the market research industry at roughly <a href=\"https://a16z.com/ai-market-research/\">$140 billion annually</a>, populated by legacy players — some with more than a billion dollars in revenue — that he believes are vulnerable to disruption.</p><p>&quot;There are very much existing budget lines that we are replacing,&quot; Wahlforss said. &quot;Why we&#x27;re replacing them is that one, they&#x27;re super costly. Two, they&#x27;re kind of stuck in this old paradigm of choosing between a survey or interview, and they also take months to work with.&quot;</p><p>But the more intriguing dynamic may be that AI-powered research doesn&#x27;t just replace existing spending — it creates new demand. Wahlforss invoked the Jevons paradox, an economic principle that occurs when technological advancements make a resource more efficient to use, but increased efficiency leads to increased overall consumption rather than decreased consumption.</p><p>&quot;What I&#x27;ve noticed is that as something gets cheaper, you don&#x27;t need less of it. You want more of it,&quot; Wahlforss explained. &quot;There&#x27;s infinite demand for customer understanding. So the researchers on the team can do an order of magnitude more research, and also other people who weren&#x27;t researchers before can now do that as part of their job.&quot;</p><h2><b>Inside the elite engineering team that built Listen Labs before they had a working toilet</b></h2><p><a href=\"https://listenlabs.ai/\">Listen Labs</a> traces its origins to a consumer app that Wahlforss and his co-founder built after meeting at Harvard. &quot;We built this consumer app that got 20,000 downloads in one day,&quot; Wahlforss recalled. &quot;We had all these users, and we were thinking like, okay, what can we do to get to know them better? And we built this prototype of what Listen is today.&quot;</p><p>The founding team brings an unusual pedigree. Wahlforss&#x27;s co-founder &quot;was the national champion in competitive programming in Germany, and he worked at Tesla Autopilot.&quot; The company claims that 30% of its engineering team are medalists from the <a href=\"https://ioinformatics.org/\">International Olympiad in Informatics</a> — the same competition that produced the founders of <a href=\"https://cognition.ai/\">Cognition</a>, the AI coding startup.</p><p>The <a href=\"https://www.cbsnews.com/sanfrancisco/news/san-francisco-billboard-challenge-puts-ai-engineers-to-the-test/\">Berghain billboard stunt</a> generated approximately 5 million views across social media, according to Wahlforss. It reflected the intensity of the talent war in the Bay Area.</p><p>&quot;We had to do these things because some of our, like early employees, joined the company before we had a working toilet,&quot; he said. &quot;But now we fixed that situation.&quot;</p><p>The company grew from 5 to 40 employees in 2024 and plans to reach 150 this year. It hires engineers for non-engineering roles across marketing, growth, and operations — a bet that in the AI era, technical fluency matters everywhere.</p><h2><b>Synthetic customers and automated decisions: what Listen Labs is building next</b></h2><p>Wahlforss outlined an ambitious product roadmap that pushes into more speculative territory. The company is building &quot;the ability to simulate your customers, so you can take all of those interviews we&#x27;ve done, and then extrapolate based on that and create synthetic users or simulated user voices.&quot;</p><p>Beyond simulation, Listen aims to enable automated action based on research findings. &quot;Can you not just make recommendations, but also create spawn agents to either change things in code or some customer churns? Can you give them a discount and try to bring them back?&quot;</p><p>Wahlforss acknowledged the ethical implications. &quot;Obviously, as you said, there&#x27;s kind of ethical concerns there. Of like, automated decision making overall can be bad, but we will have considerable guardrails to make sure that the companies are always in the loop.&quot;</p><p>The company already handles sensitive data with care. &quot;We don&#x27;t train on any of the data,&quot; Wahlforss said. &quot;We will also scrub any sensitive PII automatically so the model can detect that. And there are times when, for example, you work with investors, where if you accidentally mention something that could be material, non public information, the AI can actually detect that and remove any information like that.&quot;</p><h2><b>How AI could reshape the future of product development</b></h2><p>Perhaps the most provocative implication of Listen&#x27;s model is how it could reshape product development itself. Wahlforss described a customer — an Australian startup — that has adopted what amounts to a continuous feedback loop.</p><p>&quot;They&#x27;re based in Australia, so they&#x27;re coding during the day, and then in their night, they&#x27;re releasing a Listen study with an American audience. Listen validates whatever they built during the day, and they get feedback on that. They can then plug that feedback directly into coding tools like Claude Code and iterate.&quot;</p><p>The vision extends Y Combinator&#x27;s famous dictum — &quot;<a href=\"https://www.ycombinator.com/library/4D-yc-s-essential-startup-advice\">write code, talk to users</a>&quot; — into an automated cycle. &quot;Write code is now getting automated. And I think like talk to users will be as well, and you&#x27;ll have this kind of infinite loop where you can start to ship this truly amazing product, almost kind of autonomously.&quot;</p><p>Whether that vision materializes depends on factors beyond Listen&#x27;s control — the continued improvement of AI models, enterprise willingness to trust automated research, and whether speed truly correlates with better products. A <a href=\"https://mlq.ai/media/quarterly_decks/v0.1_State_of_AI_in_Business_2025_Report.pdf\">2024 MIT study</a> found that 95% of AI pilots fail to move into production, a statistic Wahlforss cited as the reason he emphasizes quality over demos.</p><p>&quot;I&#x27;m constantly have to emphasize like, let&#x27;s make sure the quality is there and the details are right,&quot; he said.</p><p>But the company&#x27;s growth suggests appetite for the experiment. Microsoft&#x27;s Patel said Listen has &quot;removed the drudgery of research and brought the fun and joy back into my work.&quot; Chubbies is now pushing its founder to give everyone in the company a login. Sling Money, a stablecoin payments startup, can create a survey in ten minutes and receive results the same day.</p><p>&quot;It&#x27;s a total game changer,&quot; said Ali Romero, Sling Money&#x27;s marketing manager.</p><p>Wahlforss has a different phrase for what he&#x27;s building. When asked about the tension between speed and rigor — the long-held belief that moving fast means cutting corners — he cited Nat Friedman, the former GitHub CEO and Listen investor, who keeps a list of one-liners on his website.</p><p>One of them: &quot;Slow is fake.&quot;</p><p>It&#x27;s an aggressive claim for an industry built on methodological caution. But <a href=\"https://listenlabs.ai/\">Listen Labs</a> is betting that in the AI era, the companies that listen fastest will be the ones that win. The only question is whether customers will talk back.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-16T14:01:00.000Z",
          "pubDate": "Fri, 16 Jan 2026 14:01:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/4gD12ThOmNHZuosqC4xCTz/277b1e8968da602108a29fae2eaca440/nuneybits_Vector_art_of_billboard_with_cryptic_code_dbe5b0ff-7644-45e6-a1ca-4a5dceeff986.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI"
          ],
          "contentSnippet": "Alfred Wahlforss was running out of options. His startup, Listen Labs, needed to hire over 100 engineers, but competing against Mark Zuckerberg's $100 million offers seemed impossible. So he spent $5,000 — a fifth of his marketing budget — on a billboard in San Francisco displaying what looked like gibberish: five strings of random numbers.\nThe numbers were actually AI tokens. Decoded, they led to a coding challenge: build an algorithm to act as a digital bouncer at Berghain, the Berlin nightclub famous for rejecting nearly everyone at the door. Within days, thousands attempted the puzzle. 430 cracked it. Some got hired. The winner flew to Berlin, all expenses paid.\nThat unconventional approach has now attracted $69 million in Series B funding, led by Ribbit Capital with participation from Evantic and existing investors Sequoia Capital, Conviction, and Pear VC. The round values Listen Labs at $500 million and brings its total capital to $100 million. In nine months since launch, the company has grown annualized revenue by 15x to eight figures and conducted over one million AI-powered interviews.\n\n\"When you obsess over customers, everything else follows,\" Wahlforss said in an interview with VentureBeat. \"Teams that use Listen bring the customer into every decision, from marketing to product, and when the customer is delighted, everyone is.\"\nWhy traditional market research is broken, and what Listen Labs is building to fix it\nListen's AI researcher finds participants, conducts in-depth interviews, and delivers actionable insights in hours, not weeks. The platform replaces the traditional choice between quantitative surveys — which provide statistical precision but miss nuance—and qualitative interviews, which deliver depth but cannot scale.\nWahlforss explained the limitation of existing approaches: \"Essentially surveys give you false precision because people end up answering the same question... You can't get the outliers. People are actually not honest on surveys.\" The alternative, one-on-one human interviews, \"gives you a lot of depth. You can ask follow up questions. You can kind of double check if they actually know what they're talking about. And the problem is you can't scale that.\"\nThe platform works in four steps: users create a study with AI assistance, Listen recruits participants from its global network of 30 million people, an AI moderator conducts in-depth interviews with follow-up questions, and results are packaged into executive-ready reports including key themes, highlight reels, and slide decks.\nWhat distinguishes Listen's approach is its use of open-ended video conversations rather than multiple-choice forms. \"In a survey, you can kind of guess what you should answer, and you have four options,\" Wahlforss said. \"Oh, they probably want me to buy high income. Let me click on that button versus an open ended response. It just generates much more honesty.\"\nThe dirty secret of the $140 billion market research industry: rampant fraud\nListen finds and qualifies the right participants in its global network of 30 million people. But building that panel required confronting what Wahlforss called \"one of the most shocking things that we've learned when we entered this industry\"—rampant fraud.\n\"Essentially, there's a financial transaction involved, which means there will be bad players,\" he explained. \"We actually had some of the largest companies, some of them have billions in revenue, send us people who claim to be kind of enterprise buyers to our platform and our system immediately detected, like, fraud, fraud, fraud, fraud, fraud.\"\nThe company built what it calls a \"quality guard\" that cross-references LinkedIn profiles with video responses to verify identity, checks consistency across how participants answer questions, and flags suspicious patterns. The result, according to Wahlforss: \"People talk three times more. They're much more honest when they talk about sensitive topics like politics and mental health.\"\nEmeritus, an online education company that uses Listen, reported that approximately 20% of survey responses previously fell into the fraudulent or low-quality category. With Listen, they reduced this to almost zero. \"We did not have to replace any responses because of fraud or gibberish information,\" said Gabrielli Tiburi, Assistant Manager of Customer Insights at Emeritus.\nHow Microsoft, Sweetgreen, and Chubbies are using AI interviews to build better products\nThe speed advantage has proven central to Listen's pitch. Traditional customer research at Microsoft could take four to six weeks to generate insights. \"By the time we get to them, either the decision has been made or we lose out on the opportunity to actually influence it,\" said Romani Patel, Senior Research Manager at Microsoft.\nWith Listen, Microsoft can now get insights in days, and in many cases, within hours.\nThe platform has already powered several high-profile initiatives. Microsoft used Listen Labs to collect global customer stories for its 50th anniversary celebration. \"We wanted users to share how Copilot is empowering them to bring their best self forward,\" Patel said, \"and we were able to collect those user video stories within a day.\" Traditionally, that kind of work would have taken six to eight weeks.\nSimple Modern, an Oklahoma-based drinkware company, used Listen to test a new product concept. The process took about an hour to write questions, an hour to launch the study, and 2.5 hours to receive feedback from 120 people across the country. \"We went from 'Should we even have this product?' to 'How should we launch it?'\" said Chris Hoyle, the company's Chief Marketing Officer.\nChubbies, the shorts brand, achieved a 24x increase in youth research participation—growing from 5 to 120 participants — by using Listen to overcome the scheduling challenges of traditional focus groups with children. \"There's school, sports, dinner, and homework,\" explained Lauren Neville, Director of Insights and Innovation. \"I had to find a way to hear from them that fit into their schedules.\"\nThe company also discovered product issues through AI interviews that might have gone undetected otherwise. Wahlforss described how the AI \"through conversations, realized there were like issues with the the kids short line, and decided to, like, interview hundreds of kids. And I understand that there were issues in the liner of the shorts and that they were, like, scratchy, quote, unquote, according to the people interviewed.\" The redesigned product became \"a blockbuster hit.\"\nThe Jevons paradox explains why cheaper research creates more demand, not less\nListen Labs is entering a massive but fragmented market. Wahlforss cited research from Andreessen Horowitz estimating the market research industry at roughly $140 billion annually, populated by legacy players — some with more than a billion dollars in revenue — that he believes are vulnerable to disruption.\n\"There are very much existing budget lines that we are replacing,\" Wahlforss said. \"Why we're replacing them is that one, they're super costly. Two, they're kind of stuck in this old paradigm of choosing between a survey or interview, and they also take months to work with.\"\nBut the more intriguing dynamic may be that AI-powered research doesn't just replace existing spending — it creates new demand. Wahlforss invoked the Jevons paradox, an economic principle that occurs when technological advancements make a resource more efficient to use, but increased efficiency leads to increased overall consumption rather than decreased consumption.\n\"What I've noticed is that as something gets cheaper, you don't need less of it. You want more of it,\" Wahlforss explained. \"There's infinite demand for customer understanding. So the researchers on the team can do an order of magnitude more research, and also other people who weren't researchers before can now do that as part of their job.\"\nInside the elite engineering team that built Listen Labs before they had a working toilet\nListen Labs traces its origins to a consumer app that Wahlforss and his co-founder built after meeting at Harvard. \"We built this consumer app that got 20,000 downloads in one day,\" Wahlforss recalled. \"We had all these users, and we were thinking like, okay, what can we do to get to know them better? And we built this prototype of what Listen is today.\"\nThe founding team brings an unusual pedigree. Wahlforss's co-founder \"was the national champion in competitive programming in Germany, and he worked at Tesla Autopilot.\" The company claims that 30% of its engineering team are medalists from the International Olympiad in Informatics — the same competition that produced the founders of Cognition, the AI coding startup.\nThe Berghain billboard stunt generated approximately 5 million views across social media, according to Wahlforss. It reflected the intensity of the talent war in the Bay Area.\n\"We had to do these things because some of our, like early employees, joined the company before we had a working toilet,\" he said. \"But now we fixed that situation.\"\nThe company grew from 5 to 40 employees in 2024 and plans to reach 150 this year. It hires engineers for non-engineering roles across marketing, growth, and operations — a bet that in the AI era, technical fluency matters everywhere.\nSynthetic customers and automated decisions: what Listen Labs is building next\nWahlforss outlined an ambitious product roadmap that pushes into more speculative territory. The company is building \"the ability to simulate your customers, so you can take all of those interviews we've done, and then extrapolate based on that and create synthetic users or simulated user voices.\"\nBeyond simulation, Listen aims to enable automated action based on research findings. \"Can you not just make recommendations, but also create spawn agents to either change things in code or some customer churns? Can you give them a discount and try to bring them back?\"\nWahlforss acknowledged the ethical implications. \"Obviously, as you said, there's kind of ethical concerns there. Of like, automated decision making overall can be bad, but we will have considerable guardrails to make sure that the companies are always in the loop.\"\nThe company already handles sensitive data with care. \"We don't train on any of the data,\" Wahlforss said. \"We will also scrub any sensitive PII automatically so the model can detect that. And there are times when, for example, you work with investors, where if you accidentally mention something that could be material, non public information, the AI can actually detect that and remove any information like that.\"\nHow AI could reshape the future of product development\nPerhaps the most provocative implication of Listen's model is how it could reshape product development itself. Wahlforss described a customer — an Australian startup — that has adopted what amounts to a continuous feedback loop.\n\"They're based in Australia, so they're coding during the day, and then in their night, they're releasing a Listen study with an American audience. Listen validates whatever they built during the day, and they get feedback on that. They can then plug that feedback directly into coding tools like Claude Code and iterate.\"\nThe vision extends Y Combinator's famous dictum — \"write code, talk to users\" — into an automated cycle. \"Write code is now getting automated. And I think like talk to users will be as well, and you'll have this kind of infinite loop where you can start to ship this truly amazing product, almost kind of autonomously.\"\nWhether that vision materializes depends on factors beyond Listen's control — the continued improvement of AI models, enterprise willingness to trust automated research, and whether speed truly correlates with better products. A 2024 MIT study found that 95% of AI pilots fail to move into production, a statistic Wahlforss cited as the reason he emphasizes quality over demos.\n\"I'm constantly have to emphasize like, let's make sure the quality is there and the details are right,\" he said.\nBut the company's growth suggests appetite for the experiment. Microsoft's Patel said Listen has \"removed the drudgery of research and brought the fun and joy back into my work.\" Chubbies is now pushing its founder to give everyone in the company a login. Sling Money, a stablecoin payments startup, can create a survey in ten minutes and receive results the same day.\n\"It's a total game changer,\" said Ali Romero, Sling Money's marketing manager.\nWahlforss has a different phrase for what he's building. When asked about the tension between speed and rigor — the long-held belief that moving fast means cutting corners — he cited Nat Friedman, the former GitHub CEO and Listen investor, who keeps a list of one-liners on his website.\nOne of them: \"Slow is fake.\"\nIt's an aggressive claim for an industry built on methodological caution. But Listen Labs is betting that in the AI era, the companies that listen fastest will be the ones that win. The only question is whether customers will talk back."
        },
        "pairedItem": [
          {
            "item": 4
          }
        ]
      },
      {
        "json": {
          "guid": "1dxpkoyNmn8ceRMHCKLlT8",
          "link": "https://venturebeat.com/technology/salesforce-rolls-out-new-slackbot-ai-agent-as-it-battles-microsoft-and",
          "title": "Salesforce rolls out new Slackbot AI agent as it battles Microsoft and Google in workplace AI",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p><a href=\"https://www.salesforce.com/\">Salesforce</a> on Tuesday launched an entirely rebuilt version of <a href=\"https://slack.com/help/articles/202026038-An-introduction-to-Slackbot\">Slackbot</a>, the company&#x27;s workplace assistant, transforming it from a simple notification tool into what executives describe as a fully powered AI agent capable of searching enterprise data, drafting documents, and taking action on behalf of employees.</p><p>The new Slackbot, now generally available to <a href=\"https://slack.com/pricing/businessplus\">Business+</a> and <a href=\"https://slack.com/enterprise\">Enterprise+</a> customers, is Salesforce&#x27;s most aggressive move yet to position Slack at the center of the emerging &quot;agentic AI&quot; movement — where software agents work alongside humans to complete complex tasks. The launch comes as Salesforce attempts to convince investors that artificial intelligence will bolster its products rather than render them obsolete.</p><p>&quot;Slackbot isn&#x27;t just another copilot or AI assistant,&quot; said <a href=\"https://www.salesforce.com/company/parker-harris-bio/\">Parker Harris</a>, Salesforce co-founder and Slack&#x27;s chief technology officer, in an exclusive interview with Salesforce. &quot;It&#x27;s the front door to the agentic enterprise, powered by Salesforce.&quot;</p><h2><b>From tricycle to Porsche: Salesforce rebuilt Slackbot from the ground up</b></h2><p>Harris was blunt about what distinguishes the new Slackbot from its predecessor: &quot;The old Slackbot was, you know, a little tricycle, and the new Slackbot is like, you know, a Porsche.&quot;</p><p>The original Slackbot, which has existed since Slack&#x27;s early days, performed basic algorithmic tasks — reminding users to add colleagues to documents, suggesting channel archives, and delivering simple notifications. The new version runs on an entirely different architecture built around a large language model and sophisticated search capabilities that can access Salesforce records, Google Drive files, calendar data, and years of Slack conversations.</p><p>&quot;It&#x27;s two different things,&quot; Harris explained. &quot;The old Slackbot was algorithmic and fairly simple. The new Slackbot is brand new — it&#x27;s based around an LLM and a very robust search engine, and connections to third-party search engines, third-party enterprise data.&quot;</p><p>Salesforce chose to retain the Slackbot brand despite the fundamental technical overhaul. &quot;People know what Slackbot is, and so we wanted to carry that forward,&quot; Harris said.</p><h2><b>Why Anthropic&#x27;s Claude powers the new Slackbot — and which AI models could come next</b></h2><p>The new Slackbot runs on <a href=\"https://claude.ai/\">Claude</a>, Anthropic&#x27;s large language model, a choice driven partly by compliance requirements. Slack&#x27;s commercial service operates under <a href=\"https://www.fedramp.gov/archive/2017-11-16-understanding-baselines-and-impact-levels/\">FedRAMP Moderate certification</a> to serve U.S. federal government customers, and Harris said Anthropic was &quot;the only provider that could give us a compliant LLM&quot; when Slack began building the new system.</p><p>But that exclusivity won&#x27;t last. &quot;We are, this year, going to support additional providers,&quot; Harris said. &quot;We have a great relationship with Google. Gemini is incredible — performance is great, cost is great. So we&#x27;re going to use Gemini for some things.&quot; He added that OpenAI remains a possibility as well.</p><p>Harris echoed Salesforce CEO Marc Benioff&#x27;s view that large language models are becoming commoditized: &quot;You&#x27;ve heard Marc talk about LLMs are commodities, that they&#x27;re democratized. I call them CPUs.&quot;</p><p>On the sensitive question of training data, Harris was unequivocal: Salesforce does not train any models on customer data. &quot;Models don&#x27;t have any sort of security,&quot; he explained. &quot;If we trained it on some confidential conversation that you and I have, I don&#x27;t want Carolyn to know — if I train it into the LLM, there is no way for me to say you get to see the answer, but Carolyn doesn&#x27;t.&quot;</p><h2><b>Inside Salesforce&#x27;s internal experiment: 80,000 employees tested Slackbot with striking results</b></h2><p>Salesforce has been <a href=\"https://www.theverge.com/news/797890/slack-slackbot-ai-assistant-upgrade\">testing the new Slackbot internally for months</a>, rolling it out to all 80,000 employees. According to Ryan Gavin, Slack&#x27;s chief marketing officer, the results have been striking: &quot;It&#x27;s the fastest adopted product in Salesforce history.&quot;</p><p>Internal data shows that two-thirds of Salesforce employees have tried the new Slackbot, with 80% of those users continuing to use it regularly. Internal satisfaction rates reached 96% — the highest for any AI feature Slack has shipped. Employees report saving between two and 20 hours per week.</p><p>The adoption happened largely organically. &quot;I think it was about five days, and a Canvas was developed by our employees called &#x27;The Most Stealable Slackbot Prompts,&#x27;&quot; Gavin said. &quot;People just started adding to it organically. I think it&#x27;s up to 250-plus prompts that are in this Canvas right now.&quot;</p><p>Kate Crotty, a principal UX researcher at Salesforce, found that 73% of internal adoption was driven by social sharing rather than top-down mandates. &quot;Everybody is there to help each other learn and communicate hacks,&quot; she said.</p><h2><b>How Slackbot transforms scattered enterprise data into executive-ready insights</b></h2><p>During a product demonstration, Amy Bauer, Slack&#x27;s product experience designer, showed how Slackbot can synthesize information across multiple sources. In one example, she asked Slackbot to analyze customer feedback from a pilot program, upload an image of a usage dashboard, and have Slackbot correlate the qualitative and quantitative data.</p><p>&quot;This is where Slackbot really earns its keep for me,&quot; Bauer explained. &quot;What it&#x27;s doing is not just simply reading the image — it&#x27;s actually looking at the image and comparing it to the insight it just generated for me.&quot;</p><p>Slackbot can then query Salesforce to find enterprise accounts with open deals that might be good candidates for early access, creating what Bauer called &quot;a really great justification and plan to move forward.&quot; Finally, it can synthesize all that information into a Canvas — Slack&#x27;s collaborative document format — and find calendar availability among stakeholders to schedule a review meeting.</p><p>&quot;Up until this point, we have been working in a one-to-one capacity with Slackbot,&quot; Bauer said. &quot;But one of the benefits that I can do now is take this insight and have it generate this into a Canvas, a shared workspace where I can iterate on it, refine it with Slackbot, or share it out with my team.&quot;</p><p>Rob Seaman, Slack&#x27;s chief product officer, said the Canvas creation demonstrates where the product is heading: &quot;This is making a tool call internally to Slack Canvas to actually write, effectively, a shared document. But it signals where we&#x27;re going with Slackbot — we&#x27;re eventually going to be adding in additional third-party tool calls.&quot;</p><h2><b>MrBeast&#x27;s company became a Slackbot guinea pig—and employees say they&#x27;re saving 90 minutes a day</b></h2><p>Among Salesforce&#x27;s pilot customers is <a href=\"https://www.thecashmerefund.com/portfolio-company/beast-industries\">Beast Industries</a>, the parent company of YouTube star MrBeast. Luis Madrigal, the company&#x27;s chief information officer, joined the launch announcement to describe his experience.</p><p>&quot;As somebody who has rolled out enterprise technologies for over two decades now, this was practically one of the easiest,&quot; Madrigal said. &quot;The plumbing is there. Slack as an implementation, Enterprise Tools — being able to turn on the Slackbot and the Slack AI functionality was as simple as having my team go in, review, do a quick security review.&quot;</p><p>Madrigal said his security team signed off &quot;rather quickly&quot; — unusual for enterprise AI deployments — because Slackbot accesses only the information each individual user already has permission to view. &quot;Given all the guardrails you guys have put into place for Slackbot to be unique and customized to only the information that each individual user has, only the conversations and the Slack rooms and Slack channels that they&#x27;re part of—that made my security team sign off rather quickly.&quot;</p><p>One Beast Industries employee, Sinan, the head of Beast Games marketing, reported saving &quot;at bare minimum, 90 minutes a day.&quot; Another employee, Spencer, a creative supervisor, described it as &quot;an assistant who&#x27;s paying attention when I&#x27;m not.&quot;</p><p>Other pilot customers include Slalom, reMarkable, Xero, Mercari, and Engine. Mollie Bodensteiner, SVP of Operations at Engine, called Slackbot &quot;an absolute &#x27;chaos tamer&#x27; for our team,&quot; estimating it saves her about 30 minutes daily &quot;just by eliminating context switching.&quot;</p><h2><b>Slackbot vs. Microsoft Copilot vs. Google Gemini: The fight for enterprise AI dominance</b></h2><p>The launch puts Salesforce in direct competition with <a href=\"https://copilot.microsoft.com/\">Microsoft&#x27;s Copilot</a>, which is integrated into Teams and the broader Microsoft 365 suite, as well as Google&#x27;s Gemini integrations across Workspace. When asked what distinguishes Slackbot from these alternatives, Seaman pointed to context and convenience.</p><p>&quot;The thing that makes it most powerful for our customers and users is the proximity — it&#x27;s just right there in your Slack,&quot; Seaman said. &quot;There&#x27;s a tremendous convenience affordance that&#x27;s naturally built into it.&quot;</p><p>The deeper advantage, executives argue, is that Slackbot already understands users&#x27; work without requiring setup or training. &quot;Most AI tools sound the same no matter who is using them,&quot; the company&#x27;s announcement stated. &quot;They lack context, miss nuance, and force you to jump between tools to get anything done.&quot;</p><p>Harris put it more directly: &quot;If you&#x27;ve ever had that magic experience with AI — I think ChatGPT is a great example, it&#x27;s a great experience from a consumer perspective — Slackbot is really what we&#x27;re doing in the enterprise, to be this employee super agent that is loved, just like people love using Slack.&quot;</p><p>Amy Bauer emphasized the frictionless nature of the experience. &quot;Slackbot is inherently grounded in the context, in the data that you have in Slack,&quot; she said. &quot;So as you continue working in Slack, Slackbot gets better because it&#x27;s grounded in the work that you&#x27;re doing there. There is no setup. There is no configuration for those end users.&quot;</p><h2><b>Salesforce&#x27;s ambitious plan to make Slackbot the one &#x27;super agent&#x27; that controls all the others</b></h2><p>Salesforce positions Slackbot as what Harris calls a &quot;super agent&quot; — a central hub that can eventually coordinate with other AI agents across an organization.</p><p>&quot;Every corporation is going to have an employee super agent,&quot; Harris said. &quot;Slackbot is essentially taking the magic of what Slack does. We think that Slackbot, and we&#x27;re really excited about it, is going to be that.&quot;</p><p>The vision extends to third-party agents already launching in Slack. Last month, Anthropic released a preview of Claude Code for Slack, allowing developers to interact with Claude&#x27;s coding capabilities directly in chat threads. OpenAI, Google, Vercel, and others have also built agents for the platform.</p><p>&quot;Most of the net-new apps that are being deployed to Slack are agents,&quot; Seaman noted during the press conference. &quot;This is proof of the promise of humans and agents coexisting and working together in Slack to solve problems.&quot;</p><p>Harris described a future where Slackbot becomes an <a href=\"https://modelcontextprotocol.io/docs/learn/client-concepts\">MCP (Model Context Protocol) client</a>, able to leverage tools from across the software ecosystem — similar to how the developer tool Cursor works. &quot;Slack can be an MCP client, and Slackbot will be the hub of that, leveraging all these tools out in the world, some of which will be these amazing agents,&quot; he said.</p><p>But Harris also cautioned against over-promising on multi-agent coordination. &quot;I still think we&#x27;re in the single agent world,&quot; he said. &quot;FY26 is going to be the year where we started to see more coordination. But we&#x27;re going to do it with customer success in mind, and not demonstrate and talk about, like, &#x27;I&#x27;ve got 1,000 agents working together,&#x27; because I think that&#x27;s unrealistic.&quot;</p><h2><b>Slackbot costs nothing extra, but Salesforce&#x27;s data access fees could squeeze some customers</b></h2><p>Slackbot is included at no additional cost for customers on <a href=\"https://slack.com/pricing/businessplus\">Business+</a> and <a href=\"https://slack.com/enterprise\">Enterprise+</a> plans. &quot;There&#x27;s no additional fees customers have to do,&quot; Gavin confirmed. &quot;If they&#x27;re on one of those plans, they&#x27;re going to get Slackbot.&quot;</p><p>However, some enterprise customers may face other cost pressures related to Salesforce&#x27;s broader data strategy. CIOs may see price increases for third-party applications that work with Salesforce data, as effects of higher charges for API access ripple through the software supply chain.</p><p>Fivetran CEO George Fraser has warned that Salesforce&#x27;s shift in pricing policy for API access could have tangible consequences for enterprises relying on Salesforce as a system of record. &quot;They might not be able to use Fivetran to replicate their data to Snowflake and instead have to use Salesforce Data Cloud. Or they might find that they are not able to interact with their data via ChatGPT, and instead have to use Agentforce,&quot; Fraser said in a <a href=\"https://www.cio.com/article/4108001/salesforce-is-tightening-control-of-its-data-ecosystem-and-cios-may-have-to-pay-the-price.html\">recent CIO report</a>.</p><p>Salesforce has framed the pricing change as standard industry practice.</p><h2><b>What Slackbot can do today, what&#x27;s coming in weeks, and what&#x27;s still on the roadmap</b></h2><p>The new Slackbot begins rolling out today and will reach all eligible customers by the end of February. Mobile availability will complete by March 3, Bauer confirmed during her interview with VentureBeat.</p><p>Some capabilities remain works in progress. Calendar reading and availability checking are available at launch, but the ability to actually book meetings is &quot;coming a few weeks after,&quot; according to Seaman. Image generation is not currently supported, though Bauer said it&#x27;s &quot;something that we are looking at in the future.&quot;</p><p>When asked about integration with competing CRM systems like <a href=\"https://www.hubspot.com/\">HubSpot</a> and <a href=\"https://www.microsoft.com/en-us/dynamics-365\">Microsoft Dynamics</a>, Salesforce representatives declined to provide specifics during the interview, though they acknowledged the question touched on key competitive differentiators.</p><h2><b>Salesforce is betting the future of work looks like a chat window—and it&#x27;s not alone</b></h2><p>The Slackbot launch is Salesforce&#x27;s bet that the future of enterprise work is conversational — that employees will increasingly prefer to interact with AI through natural language rather than navigating traditional software interfaces.</p><p>Harris described Slack&#x27;s product philosophy using principles like &quot;don&#x27;t make me think&quot; and &quot;be a great host.&quot; The goal, he said, is for Slackbot to surface information proactively rather than requiring users to hunt for it.</p><p>&quot;One of the revelations for me is LLMs applied to unstructured information are incredible,&quot; Harris said. &quot;And the amount of value you have if you&#x27;re a Slack user, if your corporation uses Slack — the amount of value in Slack is unbelievable. Because you&#x27;re talking about work, you&#x27;re sharing documents, you&#x27;re making decisions, but you can&#x27;t as a human go through that and really get the same value that an LLM can do.&quot;</p><p>Looking ahead, Harris expects the interfaces themselves to evolve beyond pure conversation. &quot;We&#x27;re kind of saturating what we can do with purely conversational UIs,&quot; he said. &quot;I think we&#x27;ll start to see agents building an interface that best suits your intent, as opposed to trying to surface something within a conversational interface that matches your intent.&quot;</p><p>Microsoft, Google, and a growing roster of AI startups are placing similar bets — that the winning enterprise AI will be the one embedded in the tools workers already use, not another application to learn. The race to become that invisible layer of workplace intelligence is now fully underway.</p><p>For Salesforce, the stakes extend beyond a single product launch. After a <a href=\"https://www.investopedia.com/can-salesforce-stock-recover-here-s-what-wall-street-thinks-crm-earnings-11862399\">bruising year</a> on Wall Street and persistent questions about whether AI threatens its core business, the company is wagering that Slackbot can prove the opposite — that the tens of millions of people already chatting in Slack every day is not a vulnerability, but an unassailable advantage.</p><p>Haley Gault, the Salesforce account executive in Pittsburgh who stumbled upon the new Slackbot on a snowy morning, captured the shift in a single sentence: &quot;I honestly can&#x27;t imagine working for another company not having access to these types of tools. This is just how I work now.&quot;</p><p>That&#x27;s precisely what Salesforce is counting on.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-13T13:00:00.000Z",
          "pubDate": "Tue, 13 Jan 2026 13:00:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/4Xrcg14GLKFlwSEnuEzxyS/21c85d29d03c4c974076475c009e3b38/nuneybits_Vector_art_of_chat_bubbles_on_a_computer_screen_in_th_5018a7ea-3496-4103-8453-7ba1b129189a.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI",
            "Automation"
          ],
          "contentSnippet": "Salesforce on Tuesday launched an entirely rebuilt version of Slackbot, the company's workplace assistant, transforming it from a simple notification tool into what executives describe as a fully powered AI agent capable of searching enterprise data, drafting documents, and taking action on behalf of employees.\nThe new Slackbot, now generally available to Business+ and Enterprise+ customers, is Salesforce's most aggressive move yet to position Slack at the center of the emerging \"agentic AI\" movement — where software agents work alongside humans to complete complex tasks. The launch comes as Salesforce attempts to convince investors that artificial intelligence will bolster its products rather than render them obsolete.\n\"Slackbot isn't just another copilot or AI assistant,\" said Parker Harris, Salesforce co-founder and Slack's chief technology officer, in an exclusive interview with Salesforce. \"It's the front door to the agentic enterprise, powered by Salesforce.\"\nFrom tricycle to Porsche: Salesforce rebuilt Slackbot from the ground up\nHarris was blunt about what distinguishes the new Slackbot from its predecessor: \"The old Slackbot was, you know, a little tricycle, and the new Slackbot is like, you know, a Porsche.\"\nThe original Slackbot, which has existed since Slack's early days, performed basic algorithmic tasks — reminding users to add colleagues to documents, suggesting channel archives, and delivering simple notifications. The new version runs on an entirely different architecture built around a large language model and sophisticated search capabilities that can access Salesforce records, Google Drive files, calendar data, and years of Slack conversations.\n\"It's two different things,\" Harris explained. \"The old Slackbot was algorithmic and fairly simple. The new Slackbot is brand new — it's based around an LLM and a very robust search engine, and connections to third-party search engines, third-party enterprise data.\"\nSalesforce chose to retain the Slackbot brand despite the fundamental technical overhaul. \"People know what Slackbot is, and so we wanted to carry that forward,\" Harris said.\nWhy Anthropic's Claude powers the new Slackbot — and which AI models could come next\nThe new Slackbot runs on Claude, Anthropic's large language model, a choice driven partly by compliance requirements. Slack's commercial service operates under FedRAMP Moderate certification to serve U.S. federal government customers, and Harris said Anthropic was \"the only provider that could give us a compliant LLM\" when Slack began building the new system.\nBut that exclusivity won't last. \"We are, this year, going to support additional providers,\" Harris said. \"We have a great relationship with Google. Gemini is incredible — performance is great, cost is great. So we're going to use Gemini for some things.\" He added that OpenAI remains a possibility as well.\nHarris echoed Salesforce CEO Marc Benioff's view that large language models are becoming commoditized: \"You've heard Marc talk about LLMs are commodities, that they're democratized. I call them CPUs.\"\nOn the sensitive question of training data, Harris was unequivocal: Salesforce does not train any models on customer data. \"Models don't have any sort of security,\" he explained. \"If we trained it on some confidential conversation that you and I have, I don't want Carolyn to know — if I train it into the LLM, there is no way for me to say you get to see the answer, but Carolyn doesn't.\"\nInside Salesforce's internal experiment: 80,000 employees tested Slackbot with striking results\nSalesforce has been testing the new Slackbot internally for months, rolling it out to all 80,000 employees. According to Ryan Gavin, Slack's chief marketing officer, the results have been striking: \"It's the fastest adopted product in Salesforce history.\"\nInternal data shows that two-thirds of Salesforce employees have tried the new Slackbot, with 80% of those users continuing to use it regularly. Internal satisfaction rates reached 96% — the highest for any AI feature Slack has shipped. Employees report saving between two and 20 hours per week.\nThe adoption happened largely organically. \"I think it was about five days, and a Canvas was developed by our employees called 'The Most Stealable Slackbot Prompts,'\" Gavin said. \"People just started adding to it organically. I think it's up to 250-plus prompts that are in this Canvas right now.\"\nKate Crotty, a principal UX researcher at Salesforce, found that 73% of internal adoption was driven by social sharing rather than top-down mandates. \"Everybody is there to help each other learn and communicate hacks,\" she said.\nHow Slackbot transforms scattered enterprise data into executive-ready insights\nDuring a product demonstration, Amy Bauer, Slack's product experience designer, showed how Slackbot can synthesize information across multiple sources. In one example, she asked Slackbot to analyze customer feedback from a pilot program, upload an image of a usage dashboard, and have Slackbot correlate the qualitative and quantitative data.\n\"This is where Slackbot really earns its keep for me,\" Bauer explained. \"What it's doing is not just simply reading the image — it's actually looking at the image and comparing it to the insight it just generated for me.\"\nSlackbot can then query Salesforce to find enterprise accounts with open deals that might be good candidates for early access, creating what Bauer called \"a really great justification and plan to move forward.\" Finally, it can synthesize all that information into a Canvas — Slack's collaborative document format — and find calendar availability among stakeholders to schedule a review meeting.\n\"Up until this point, we have been working in a one-to-one capacity with Slackbot,\" Bauer said. \"But one of the benefits that I can do now is take this insight and have it generate this into a Canvas, a shared workspace where I can iterate on it, refine it with Slackbot, or share it out with my team.\"\nRob Seaman, Slack's chief product officer, said the Canvas creation demonstrates where the product is heading: \"This is making a tool call internally to Slack Canvas to actually write, effectively, a shared document. But it signals where we're going with Slackbot — we're eventually going to be adding in additional third-party tool calls.\"\nMrBeast's company became a Slackbot guinea pig—and employees say they're saving 90 minutes a day\nAmong Salesforce's pilot customers is Beast Industries, the parent company of YouTube star MrBeast. Luis Madrigal, the company's chief information officer, joined the launch announcement to describe his experience.\n\"As somebody who has rolled out enterprise technologies for over two decades now, this was practically one of the easiest,\" Madrigal said. \"The plumbing is there. Slack as an implementation, Enterprise Tools — being able to turn on the Slackbot and the Slack AI functionality was as simple as having my team go in, review, do a quick security review.\"\nMadrigal said his security team signed off \"rather quickly\" — unusual for enterprise AI deployments — because Slackbot accesses only the information each individual user already has permission to view. \"Given all the guardrails you guys have put into place for Slackbot to be unique and customized to only the information that each individual user has, only the conversations and the Slack rooms and Slack channels that they're part of—that made my security team sign off rather quickly.\"\nOne Beast Industries employee, Sinan, the head of Beast Games marketing, reported saving \"at bare minimum, 90 minutes a day.\" Another employee, Spencer, a creative supervisor, described it as \"an assistant who's paying attention when I'm not.\"\nOther pilot customers include Slalom, reMarkable, Xero, Mercari, and Engine. Mollie Bodensteiner, SVP of Operations at Engine, called Slackbot \"an absolute 'chaos tamer' for our team,\" estimating it saves her about 30 minutes daily \"just by eliminating context switching.\"\nSlackbot vs. Microsoft Copilot vs. Google Gemini: The fight for enterprise AI dominance\nThe launch puts Salesforce in direct competition with Microsoft's Copilot, which is integrated into Teams and the broader Microsoft 365 suite, as well as Google's Gemini integrations across Workspace. When asked what distinguishes Slackbot from these alternatives, Seaman pointed to context and convenience.\n\"The thing that makes it most powerful for our customers and users is the proximity — it's just right there in your Slack,\" Seaman said. \"There's a tremendous convenience affordance that's naturally built into it.\"\nThe deeper advantage, executives argue, is that Slackbot already understands users' work without requiring setup or training. \"Most AI tools sound the same no matter who is using them,\" the company's announcement stated. \"They lack context, miss nuance, and force you to jump between tools to get anything done.\"\nHarris put it more directly: \"If you've ever had that magic experience with AI — I think ChatGPT is a great example, it's a great experience from a consumer perspective — Slackbot is really what we're doing in the enterprise, to be this employee super agent that is loved, just like people love using Slack.\"\nAmy Bauer emphasized the frictionless nature of the experience. \"Slackbot is inherently grounded in the context, in the data that you have in Slack,\" she said. \"So as you continue working in Slack, Slackbot gets better because it's grounded in the work that you're doing there. There is no setup. There is no configuration for those end users.\"\nSalesforce's ambitious plan to make Slackbot the one 'super agent' that controls all the others\nSalesforce positions Slackbot as what Harris calls a \"super agent\" — a central hub that can eventually coordinate with other AI agents across an organization.\n\"Every corporation is going to have an employee super agent,\" Harris said. \"Slackbot is essentially taking the magic of what Slack does. We think that Slackbot, and we're really excited about it, is going to be that.\"\nThe vision extends to third-party agents already launching in Slack. Last month, Anthropic released a preview of Claude Code for Slack, allowing developers to interact with Claude's coding capabilities directly in chat threads. OpenAI, Google, Vercel, and others have also built agents for the platform.\n\"Most of the net-new apps that are being deployed to Slack are agents,\" Seaman noted during the press conference. \"This is proof of the promise of humans and agents coexisting and working together in Slack to solve problems.\"\nHarris described a future where Slackbot becomes an MCP (Model Context Protocol) client, able to leverage tools from across the software ecosystem — similar to how the developer tool Cursor works. \"Slack can be an MCP client, and Slackbot will be the hub of that, leveraging all these tools out in the world, some of which will be these amazing agents,\" he said.\nBut Harris also cautioned against over-promising on multi-agent coordination. \"I still think we're in the single agent world,\" he said. \"FY26 is going to be the year where we started to see more coordination. But we're going to do it with customer success in mind, and not demonstrate and talk about, like, 'I've got 1,000 agents working together,' because I think that's unrealistic.\"\nSlackbot costs nothing extra, but Salesforce's data access fees could squeeze some customers\nSlackbot is included at no additional cost for customers on Business+ and Enterprise+ plans. \"There's no additional fees customers have to do,\" Gavin confirmed. \"If they're on one of those plans, they're going to get Slackbot.\"\nHowever, some enterprise customers may face other cost pressures related to Salesforce's broader data strategy. CIOs may see price increases for third-party applications that work with Salesforce data, as effects of higher charges for API access ripple through the software supply chain.\nFivetran CEO George Fraser has warned that Salesforce's shift in pricing policy for API access could have tangible consequences for enterprises relying on Salesforce as a system of record. \"They might not be able to use Fivetran to replicate their data to Snowflake and instead have to use Salesforce Data Cloud. Or they might find that they are not able to interact with their data via ChatGPT, and instead have to use Agentforce,\" Fraser said in a recent CIO report.\nSalesforce has framed the pricing change as standard industry practice.\nWhat Slackbot can do today, what's coming in weeks, and what's still on the roadmap\nThe new Slackbot begins rolling out today and will reach all eligible customers by the end of February. Mobile availability will complete by March 3, Bauer confirmed during her interview with VentureBeat.\nSome capabilities remain works in progress. Calendar reading and availability checking are available at launch, but the ability to actually book meetings is \"coming a few weeks after,\" according to Seaman. Image generation is not currently supported, though Bauer said it's \"something that we are looking at in the future.\"\nWhen asked about integration with competing CRM systems like HubSpot and Microsoft Dynamics, Salesforce representatives declined to provide specifics during the interview, though they acknowledged the question touched on key competitive differentiators.\nSalesforce is betting the future of work looks like a chat window—and it's not alone\nThe Slackbot launch is Salesforce's bet that the future of enterprise work is conversational — that employees will increasingly prefer to interact with AI through natural language rather than navigating traditional software interfaces.\nHarris described Slack's product philosophy using principles like \"don't make me think\" and \"be a great host.\" The goal, he said, is for Slackbot to surface information proactively rather than requiring users to hunt for it.\n\"One of the revelations for me is LLMs applied to unstructured information are incredible,\" Harris said. \"And the amount of value you have if you're a Slack user, if your corporation uses Slack — the amount of value in Slack is unbelievable. Because you're talking about work, you're sharing documents, you're making decisions, but you can't as a human go through that and really get the same value that an LLM can do.\"\nLooking ahead, Harris expects the interfaces themselves to evolve beyond pure conversation. \"We're kind of saturating what we can do with purely conversational UIs,\" he said. \"I think we'll start to see agents building an interface that best suits your intent, as opposed to trying to surface something within a conversational interface that matches your intent.\"\nMicrosoft, Google, and a growing roster of AI startups are placing similar bets — that the winning enterprise AI will be the one embedded in the tools workers already use, not another application to learn. The race to become that invisible layer of workplace intelligence is now fully underway.\nFor Salesforce, the stakes extend beyond a single product launch. After a bruising year on Wall Street and persistent questions about whether AI threatens its core business, the company is wagering that Slackbot can prove the opposite — that the tens of millions of people already chatting in Slack every day is not a vulnerability, but an unassailable advantage.\nHaley Gault, the Salesforce account executive in Pittsburgh who stumbled upon the new Slackbot on a snowy morning, captured the shift in a single sentence: \"I honestly can't imagine working for another company not having access to these types of tools. This is just how I work now.\"\nThat's precisely what Salesforce is counting on."
        },
        "pairedItem": [
          {
            "item": 4
          }
        ]
      },
      {
        "json": {
          "guid": "7EaNv4Ip2AUlW9RClUv2cB",
          "link": "https://venturebeat.com/technology/anthropic-launches-cowork-a-claude-desktop-agent-that-works-in-your-files-no",
          "title": "Anthropic launches Cowork, a Claude Desktop agent that works in your files — no coding required",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p><a href=\"https://www.anthropic.com/\">Anthropic</a> released <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> on Monday, a new AI agent capability that extends the power of its wildly successful <a href=\"https://claude.com/product/claude-code\">Claude Code</a> tool to non-technical users — and according to company insiders, the team built the entire feature in approximately a week and a half, largely using Claude Code itself.</p><p>The launch marks a major inflection point in the race to deliver practical AI agents to mainstream users, positioning Anthropic to compete not just with <a href=\"https://openai.com/\">OpenAI</a> and <a href=\"https://gemini.google.com/app\">Google</a> in conversational AI, but with <a href=\"https://copilot.microsoft.com/\">Microsoft&#x27;s Copilot</a> in the burgeoning market for AI-powered productivity tools.</p><p>&quot;Cowork lets you complete non-technical tasks much like how developers use Claude Code,&quot; the <a href=\"https://x.com/claudeai/status/2010805682434666759?s=20\">company announced</a> via its official Claude account on X. The feature arrives as a research preview available exclusively to <a href=\"https://support.claude.com/en/articles/11014257-about-claude-s-max-plan-usage\">Claude Max subscribers</a> — Anthropic&#x27;s power-user tier priced between $100 and $200 per month — through the macOS desktop application.</p><p>For the past year, the industry narrative has focused on large language models that can write poetry or debug code. With <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a>, Anthropic is betting that the real enterprise value lies in an AI that can open a folder, read a messy pile of receipts, and generate a structured expense report without human hand-holding.</p><div></div><h2><b>How developers using a coding tool for vacation research inspired Anthropic&#x27;s latest product</b></h2><p>The genesis of <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> lies in Anthropic&#x27;s recent success with the developer community. In late 2024, the company released <a href=\"https://www.anthropic.com/news/claude-3-7-sonnet\">Claude Code</a>, a terminal-based tool that allowed software engineers to automate rote programming tasks. The tool was a hit, but Anthropic noticed a peculiar trend: users were forcing the coding tool to perform non-coding labor.</p><p>According to <a href=\"https://x.com/bcherny/status/2010809450844831752\">Boris Cherny</a>, an engineer at Anthropic, the company observed users deploying the developer tool for an unexpectedly diverse array of tasks.</p><div></div><p>&quot;Since we launched Claude Code, we saw people using it for all sorts of non-coding work: doing vacation research, building slide decks, cleaning up your email, cancelling subscriptions, recovering wedding photos from a hard drive, monitoring plant growth, controlling your oven,&quot; Cherny wrote on X. &quot;These use cases are diverse and surprising — the reason is that the underlying Claude Agent is the best agent, and Opus 4.5 is the best model.&quot;</p><p>Recognizing this shadow usage, Anthropic effectively stripped the command-line complexity from their developer tool to create a consumer-friendly interface. In its blog post announcing the feature, <a href=\"https://claude.com/blog/cowork-research-preview\">Anthropic explained</a> that developers &quot;quickly began using it for almost everything else,&quot; which &quot;prompted us to build Cowork: a simpler way for anyone — not just developers — to work with Claude in the very same way.&quot;</p><h2><b>Inside the folder-based architecture that lets Claude read, edit, and create files on your computer</b></h2><p>Unlike a standard chat interface where a user pastes text for analysis, <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> requires a different level of trust and access. Users designate a specific folder on their local machine that Claude can access. Within that sandbox, the AI agent can read existing files, modify them, or create entirely new ones.</p><p>Anthropic offers several illustrative examples: reorganizing a cluttered downloads folder by sorting and intelligently renaming each file, generating a spreadsheet of expenses from a collection of receipt screenshots, or drafting a report from scattered notes across multiple documents.</p><p>&quot;In Cowork, you give Claude access to a folder on your computer. Claude can then read, edit, or create files in that folder,&quot; <a href=\"https://x.com/claudeai/status/2010805685530038351\">the company explained</a> on X. &quot;Try it to create a spreadsheet from a pile of screenshots, or produce a first draft from scattered notes.&quot;</p><div></div><p>The architecture relies on what is known as an &quot;agentic loop.&quot; When a user assigns a task, the AI does not merely generate a text response. Instead, it formulates a plan, executes steps in parallel, checks its own work, and asks for clarification if it hits a roadblock. Users can queue multiple tasks and let Claude process them simultaneously — a workflow Anthropic describes as feeling &quot;much less like a back-and-forth and much more like leaving messages for a coworker.&quot;</p><p>The system is built on Anthropic&#x27;s <a href=\"https://www.anthropic.com/engineering/building-agents-with-the-claude-agent-sdk\">Claude Agent SDK</a>, meaning it shares the same underlying architecture as Claude Code. Anthropic notes that Cowork &quot;can take on many of the same tasks that Claude Code can handle, but in a more approachable form for non-coding tasks.&quot;</p><h2><b>The recursive loop where AI builds AI: Claude Code reportedly wrote much of Claude Cowork</b></h2><p>Perhaps the most remarkable detail surrounding Cowork&#x27;s launch is the speed at which the tool was reportedly built — highlighting a recursive feedback loop where AI tools are being used to build better AI tools.</p><p>During a livestream hosted by Dan Shipper, Felix Rieseberg, an Anthropic employee, confirmed that <a href=\"https://x.com/blakeir/status/2010837251505205656\">t</a>he team <a href=\"https://x.com/blakeir/status/2010837251505205656\">built Cowork in approximately a week and a half</a>.</p><p>Alex Volkov, who covers AI developments, expressed surprise at the timeline: &quot;Holy shit Anthropic built &#x27;Cowork&#x27; in the last... week and a half?!&quot;</p><div></div><p>This prompted immediate speculation about how much of Cowork was itself built by Claude Code. <a href=\"https://x.com/_simonsmith\">Simon Smith</a>, EVP of Generative AI at Klick Health, put it bluntly on X: &quot;Claude Code wrote all of Claude Cowork. Can we all agree that we&#x27;re in at least somewhat of a recursive improvement loop here?&quot;</p><p>The implication is profound: Anthropic&#x27;s AI coding agent may have substantially contributed to building its own non-technical sibling product. If true, this is one of the most visible examples yet of AI systems being used to accelerate their own development and expansion — a strategy that could widen the gap between AI labs that successfully deploy their own agents internally and those that do not.</p><h2><b>Connectors, browser automation, and skills extend Cowork&#x27;s reach beyond the local file system</b></h2><p>Cowork doesn&#x27;t operate in isolation. The feature integrates with Anthropic&#x27;s existing ecosystem of connectors — tools that link <a href=\"https://claude.ai/login?returnTo=%2Fnew%3F\">Claude</a> to external information sources and services such as <a href=\"https://asana.com/\">Asana</a>, <a href=\"https://www.notion.com/\">Notion</a>, <a href=\"https://www.paypal.com/us/home\">PayPal</a>, and other supported partners. Users who have configured these connections in the standard Claude interface can leverage them within Cowork sessions.</p><p>Additionally, Cowork can pair with <a href=\"https://code.claude.com/docs/en/chrome\">Claude in Chrome</a>, Anthropic&#x27;s browser extension, to execute tasks requiring web access. This combination allows the agent to navigate websites, click buttons, fill forms, and extract information from the internet — all while operating from the desktop application.</p><p>&quot;Cowork includes a number of novel UX and safety features that we think make the product really special,&quot; <a href=\"https://x.com/bcherny/status/2010809450844831752\">Cherny explained</a>, highlighting &quot;a built-in VM [virtual machine] for isolation, out of the box support for browser automation, support for all your claude.ai data connectors, asking you for clarification when it&#x27;s unsure.&quot;</p><p><a href=\"https://www.anthropic.com/\">Anthropic</a> has also introduced an initial set of &quot;skills&quot; specifically designed for Cowork that enhance Claude&#x27;s ability to create documents, presentations, and other files. These build on the <a href=\"https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-agent-skills\">Skills for Claude</a> framework the company announced in October, which provides specialized instruction sets Claude can load for particular types of tasks.</p><h2><b>Why Anthropic is warning users that its own AI agent could delete their files</b></h2><p>The transition from a chatbot that suggests edits to an agent that makes edits introduces significant risk. An AI that can organize files can, theoretically, delete them.</p><p>In a notable display of transparency, Anthropic devoted considerable space in its announcement to <a href=\"https://claude.com/blog/cowork-research-preview\">warning users about Cowork&#x27;s potential dangers</a> — an unusual approach for a product launch.</p><p>The company explicitly acknowledges that Claude &quot;can take potentially destructive actions (such as deleting local files) if it&#x27;s instructed to.&quot; Because Claude might occasionally misinterpret instructions, Anthropic urges users to provide &quot;very clear guidance&quot; about sensitive operations.</p><p>More concerning is the risk of prompt injection attacks — a technique where malicious actors embed hidden instructions in content Claude might encounter online, potentially causing the agent to bypass safeguards or take harmful actions.</p><p>&quot;We&#x27;ve built sophisticated defenses against prompt injections,&quot; Anthropic wrote, &quot;but agent safety — that is, the task of securing Claude&#x27;s real-world actions — is still an active area of development in the industry.&quot;</p><p>The company characterized these risks as inherent to the current state of AI agent technology rather than unique to Cowork. &quot;These risks aren&#x27;t new with Cowork, but it might be the first time you&#x27;re using a more advanced tool that moves beyond a simple conversation,&quot; the announcement notes.</p><h2><b>Anthropic&#x27;s desktop agent strategy sets up a direct challenge to Microsoft Copilot</b></h2><p>The launch of <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a> places Anthropic in direct competition with <a href=\"https://www.microsoft.com/en-us/\">Microsoft</a>, which has spent years attempting to integrate its <a href=\"https://copilot.microsoft.com/\">Copilot AI</a> into the fabric of the Windows operating system with mixed adoption results.</p><p>However, Anthropic&#x27;s approach differs in its isolation. By confining the agent to specific folders and requiring explicit connectors, they are attempting to strike a balance between the utility of an OS-level agent and the security of a sandboxed application.</p><p>What distinguishes Anthropic&#x27;s approach is its bottom-up evolution. Rather than designing an AI assistant and retrofitting agent capabilities, Anthropic built a powerful coding agent first — <a href=\"https://code.claude.com/docs/en/overview\">Claude Code</a> — and is now abstracting its capabilities for broader audiences. This technical lineage may give Cowork more robust agentic behavior from the start.</p><p>Claude Code has generated significant enthusiasm among developers since its initial launch as <a href=\"https://www.anthropic.com/news/claude-3-7-sonnet\">a command-line tool in late 2024</a>. The company expanded access with a <a href=\"https://arstechnica.com/ai/2025/10/claude-code-gets-a-web-version-but-its-the-new-sandboxing-that-really-matters/\">web interface</a> in October 2025, followed by a <a href=\"https://venturebeat.com/ai/anthropics-claude-code-can-now-read-your-slack-messages-and-write-code-for\">Slack integration</a> in December. Cowork is the next logical step: bringing the same agentic architecture to users who may never touch a terminal.</p><h2><b>Who can access Cowork now, and what&#x27;s coming next for Windows and other platforms</b></h2><p>For now, Cowork remains exclusive to <a href=\"https://support.claude.com/en/articles/11014257-about-claude-s-max-plan-usage\">Claude Max subscribers</a> using the macOS desktop application. Users on other subscription tiers — Free, Pro, Team, or Enterprise — can join a waitlist for future access.</p><p>Anthropic has signaled clear intentions to expand the feature&#x27;s reach. The blog post explicitly mentions plans to add cross-device sync and bring Cowork to Windows as the company learns from the research preview.</p><p>Cherny set expectations appropriately, describing the product as &quot;early and raw, similar to what Claude Code felt like when it first launched.&quot;</p><p>To access <a href=\"https://claude.com/blog/cowork-research-preview\">Cowork</a>, Max subscribers can download or update the Claude macOS app and click on &quot;Cowork&quot; in the sidebar.</p><h2><b>The real question facing enterprise AI adoption</b></h2><p>For technical decision-makers, the implications of Cowork extend beyond any single product launch. The bottleneck for AI adoption is shifting — no longer is model intelligence the limiting factor, but rather workflow integration and user trust.</p><p>Anthropic&#x27;s goal, as the company puts it, is to make working with Claude feel less like operating a tool and more like delegating to a colleague. Whether mainstream users are ready to hand over folder access to an AI that might misinterpret their instructions remains an open question.</p><p>But the speed of Cowork&#x27;s development — a major feature built in ten days, possibly by the company&#x27;s own AI — previews a future where the capabilities of these systems compound faster than organizations can evaluate them. </p><p>The chatbot has learned to use a file manager. What it learns to use next is anyone&#x27;s guess.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-12T11:30:00.000Z",
          "pubDate": "Mon, 12 Jan 2026 11:30:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/wHv1Wez7Ps9wYVYAo9fwT/14b41f606dbf1f5b17994be510407449/nuneybits_Hyper-realistic_image_of_a_retro_computer_with_a_glos_61ffb6e2-7c33-4d45-85f7-69c28693b3ec.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI",
            "Automation"
          ],
          "contentSnippet": "Anthropic released Cowork on Monday, a new AI agent capability that extends the power of its wildly successful Claude Code tool to non-technical users — and according to company insiders, the team built the entire feature in approximately a week and a half, largely using Claude Code itself.\nThe launch marks a major inflection point in the race to deliver practical AI agents to mainstream users, positioning Anthropic to compete not just with OpenAI and Google in conversational AI, but with Microsoft's Copilot in the burgeoning market for AI-powered productivity tools.\n\"Cowork lets you complete non-technical tasks much like how developers use Claude Code,\" the company announced via its official Claude account on X. The feature arrives as a research preview available exclusively to Claude Max subscribers — Anthropic's power-user tier priced between $100 and $200 per month — through the macOS desktop application.\nFor the past year, the industry narrative has focused on large language models that can write poetry or debug code. With Cowork, Anthropic is betting that the real enterprise value lies in an AI that can open a folder, read a messy pile of receipts, and generate a structured expense report without human hand-holding.\n\nHow developers using a coding tool for vacation research inspired Anthropic's latest product\nThe genesis of Cowork lies in Anthropic's recent success with the developer community. In late 2024, the company released Claude Code, a terminal-based tool that allowed software engineers to automate rote programming tasks. The tool was a hit, but Anthropic noticed a peculiar trend: users were forcing the coding tool to perform non-coding labor.\nAccording to Boris Cherny, an engineer at Anthropic, the company observed users deploying the developer tool for an unexpectedly diverse array of tasks.\n\n\"Since we launched Claude Code, we saw people using it for all sorts of non-coding work: doing vacation research, building slide decks, cleaning up your email, cancelling subscriptions, recovering wedding photos from a hard drive, monitoring plant growth, controlling your oven,\" Cherny wrote on X. \"These use cases are diverse and surprising — the reason is that the underlying Claude Agent is the best agent, and Opus 4.5 is the best model.\"\nRecognizing this shadow usage, Anthropic effectively stripped the command-line complexity from their developer tool to create a consumer-friendly interface. In its blog post announcing the feature, Anthropic explained that developers \"quickly began using it for almost everything else,\" which \"prompted us to build Cowork: a simpler way for anyone — not just developers — to work with Claude in the very same way.\"\nInside the folder-based architecture that lets Claude read, edit, and create files on your computer\nUnlike a standard chat interface where a user pastes text for analysis, Cowork requires a different level of trust and access. Users designate a specific folder on their local machine that Claude can access. Within that sandbox, the AI agent can read existing files, modify them, or create entirely new ones.\nAnthropic offers several illustrative examples: reorganizing a cluttered downloads folder by sorting and intelligently renaming each file, generating a spreadsheet of expenses from a collection of receipt screenshots, or drafting a report from scattered notes across multiple documents.\n\"In Cowork, you give Claude access to a folder on your computer. Claude can then read, edit, or create files in that folder,\" the company explained on X. \"Try it to create a spreadsheet from a pile of screenshots, or produce a first draft from scattered notes.\"\n\nThe architecture relies on what is known as an \"agentic loop.\" When a user assigns a task, the AI does not merely generate a text response. Instead, it formulates a plan, executes steps in parallel, checks its own work, and asks for clarification if it hits a roadblock. Users can queue multiple tasks and let Claude process them simultaneously — a workflow Anthropic describes as feeling \"much less like a back-and-forth and much more like leaving messages for a coworker.\"\nThe system is built on Anthropic's Claude Agent SDK, meaning it shares the same underlying architecture as Claude Code. Anthropic notes that Cowork \"can take on many of the same tasks that Claude Code can handle, but in a more approachable form for non-coding tasks.\"\nThe recursive loop where AI builds AI: Claude Code reportedly wrote much of Claude Cowork\nPerhaps the most remarkable detail surrounding Cowork's launch is the speed at which the tool was reportedly built — highlighting a recursive feedback loop where AI tools are being used to build better AI tools.\nDuring a livestream hosted by Dan Shipper, Felix Rieseberg, an Anthropic employee, confirmed that the team built Cowork in approximately a week and a half.\nAlex Volkov, who covers AI developments, expressed surprise at the timeline: \"Holy shit Anthropic built 'Cowork' in the last... week and a half?!\"\n\nThis prompted immediate speculation about how much of Cowork was itself built by Claude Code. Simon Smith, EVP of Generative AI at Klick Health, put it bluntly on X: \"Claude Code wrote all of Claude Cowork. Can we all agree that we're in at least somewhat of a recursive improvement loop here?\"\nThe implication is profound: Anthropic's AI coding agent may have substantially contributed to building its own non-technical sibling product. If true, this is one of the most visible examples yet of AI systems being used to accelerate their own development and expansion — a strategy that could widen the gap between AI labs that successfully deploy their own agents internally and those that do not.\nConnectors, browser automation, and skills extend Cowork's reach beyond the local file system\nCowork doesn't operate in isolation. The feature integrates with Anthropic's existing ecosystem of connectors — tools that link Claude to external information sources and services such as Asana, Notion, PayPal, and other supported partners. Users who have configured these connections in the standard Claude interface can leverage them within Cowork sessions.\nAdditionally, Cowork can pair with Claude in Chrome, Anthropic's browser extension, to execute tasks requiring web access. This combination allows the agent to navigate websites, click buttons, fill forms, and extract information from the internet — all while operating from the desktop application.\n\"Cowork includes a number of novel UX and safety features that we think make the product really special,\" Cherny explained, highlighting \"a built-in VM [virtual machine] for isolation, out of the box support for browser automation, support for all your claude.ai data connectors, asking you for clarification when it's unsure.\"\nAnthropic has also introduced an initial set of \"skills\" specifically designed for Cowork that enhance Claude's ability to create documents, presentations, and other files. These build on the Skills for Claude framework the company announced in October, which provides specialized instruction sets Claude can load for particular types of tasks.\nWhy Anthropic is warning users that its own AI agent could delete their files\nThe transition from a chatbot that suggests edits to an agent that makes edits introduces significant risk. An AI that can organize files can, theoretically, delete them.\nIn a notable display of transparency, Anthropic devoted considerable space in its announcement to warning users about Cowork's potential dangers — an unusual approach for a product launch.\nThe company explicitly acknowledges that Claude \"can take potentially destructive actions (such as deleting local files) if it's instructed to.\" Because Claude might occasionally misinterpret instructions, Anthropic urges users to provide \"very clear guidance\" about sensitive operations.\nMore concerning is the risk of prompt injection attacks — a technique where malicious actors embed hidden instructions in content Claude might encounter online, potentially causing the agent to bypass safeguards or take harmful actions.\n\"We've built sophisticated defenses against prompt injections,\" Anthropic wrote, \"but agent safety — that is, the task of securing Claude's real-world actions — is still an active area of development in the industry.\"\nThe company characterized these risks as inherent to the current state of AI agent technology rather than unique to Cowork. \"These risks aren't new with Cowork, but it might be the first time you're using a more advanced tool that moves beyond a simple conversation,\" the announcement notes.\nAnthropic's desktop agent strategy sets up a direct challenge to Microsoft Copilot\nThe launch of Cowork places Anthropic in direct competition with Microsoft, which has spent years attempting to integrate its Copilot AI into the fabric of the Windows operating system with mixed adoption results.\nHowever, Anthropic's approach differs in its isolation. By confining the agent to specific folders and requiring explicit connectors, they are attempting to strike a balance between the utility of an OS-level agent and the security of a sandboxed application.\nWhat distinguishes Anthropic's approach is its bottom-up evolution. Rather than designing an AI assistant and retrofitting agent capabilities, Anthropic built a powerful coding agent first — Claude Code — and is now abstracting its capabilities for broader audiences. This technical lineage may give Cowork more robust agentic behavior from the start.\nClaude Code has generated significant enthusiasm among developers since its initial launch as a command-line tool in late 2024. The company expanded access with a web interface in October 2025, followed by a Slack integration in December. Cowork is the next logical step: bringing the same agentic architecture to users who may never touch a terminal.\nWho can access Cowork now, and what's coming next for Windows and other platforms\nFor now, Cowork remains exclusive to Claude Max subscribers using the macOS desktop application. Users on other subscription tiers — Free, Pro, Team, or Enterprise — can join a waitlist for future access.\nAnthropic has signaled clear intentions to expand the feature's reach. The blog post explicitly mentions plans to add cross-device sync and bring Cowork to Windows as the company learns from the research preview.\nCherny set expectations appropriately, describing the product as \"early and raw, similar to what Claude Code felt like when it first launched.\"\nTo access Cowork, Max subscribers can download or update the Claude macOS app and click on \"Cowork\" in the sidebar.\nThe real question facing enterprise AI adoption\nFor technical decision-makers, the implications of Cowork extend beyond any single product launch. The bottleneck for AI adoption is shifting — no longer is model intelligence the limiting factor, but rather workflow integration and user trust.\nAnthropic's goal, as the company puts it, is to make working with Claude feel less like operating a tool and more like delegating to a colleague. Whether mainstream users are ready to hand over folder access to an AI that might misinterpret their instructions remains an open question.\nBut the speed of Cowork's development — a major feature built in ten days, possibly by the company's own AI — previews a future where the capabilities of these systems compound faster than organizations can evaluate them. \nThe chatbot has learned to use a file manager. What it learns to use next is anyone's guess."
        },
        "pairedItem": [
          {
            "item": 4
          }
        ]
      },
      {
        "json": {
          "guid": "4ri2LVmhlv34kOOk94nnsi",
          "link": "https://venturebeat.com/technology/nous-researchs-nouscoder-14b-is-an-open-source-coding-model-landing-right-in",
          "title": "Nous Research's NousCoder-14B is an open-source coding model landing right in the Claude Code moment",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p><a href=\"https://nousresearch.com/\">Nous Research</a>, the open-source artificial intelligence startup backed by crypto venture firm <a href=\"https://www.paradigm.xyz/\">Paradigm</a>, released a new competitive programming model on Monday that it says matches or exceeds several larger proprietary systems — trained in just four days using 48 of Nvidia&#x27;s latest <a href=\"https://www.nvidia.com/en-us/data-center/dgx-b200/\">B200 graphics processors</a>.</p><p>The model, called <a href=\"https://huggingface.co/NousResearch/NousCoder-14B\">NousCoder-14B</a>, is another entry in a crowded field of AI coding assistants, but arrives at a particularly charged moment: <a href=\"https://claude.com/product/claude-code\">Claude Code</a>, the agentic programming tool from rival Anthropic, has dominated social media discussion since New Year&#x27;s Day, with developers posting <a href=\"https://x.com/0xDesigner/status/2008202211738648767?s=20\">breathless</a> <a href=\"https://x.com/hayesdev_/status/2008043379805048948\">testimonials</a> <a href=\"https://x.com/0xDesigner/status/2008202211738648767?s=20\">about its capabilities</a>. The simultaneous developments underscore how quickly AI-assisted software development is evolving — and how fiercely companies large and small are competing to capture what many believe will become a foundational technology for how software gets written.</p><p><span>type: <!-- -->embedded-entry-inline<!-- --> id: <!-- -->74cSyrq6OUrp9SEQ5zOUSl</span></p><p><a href=\"https://nousresearch.com/nouscoder-14b-a-competitive-olympiad-programming-model/\">NousCoder-14B</a> achieves a 67.87 percent accuracy rate on <a href=\"https://livecodebench.github.io/\">LiveCodeBench v6</a>, a standardized evaluation that tests models on competitive programming problems published between August 2024 and May 2025. That figure represents a 7.08 percentage point improvement over the base model it was trained from, Alibaba&#x27;s <a href=\"https://huggingface.co/Qwen/Qwen3-14B\">Qwen3-14B</a>, according to Nous Research&#x27;s technical report published alongside the release.</p><p>&quot;I gave Claude Code a description of the problem, it generated what we built last year in an hour,&quot; <a href=\"https://www.reddit.com/r/OpenAI/comments/1q2uuil/google_engineer_im_not_joking_and_this_isnt_funny/\">wrote Jaana Dogan</a>, a principal engineer at Google responsible for the Gemini API, in a viral post on X last week that captured the prevailing mood around AI coding tools. Dogan was describing a distributed agent orchestration system her team had spent a year developing — a system Claude Code approximated from a three-paragraph prompt.</p><p>The juxtaposition is instructive: while Anthropic&#x27;s <a href=\"https://venturebeat.com/technology/the-creator-of-claude-code-just-revealed-his-workflow-and-developers-are\">Claude Code has captured imaginations</a> with demonstrations of end-to-end software development, Nous Research is betting that open-source alternatives trained on verifiable problems can close the gap — and that transparency in how these models are built matters as much as raw capability.</p><hr/><h2><b>How Nous Research built an AI coding model that anyone can replicate</b></h2><p>What distinguishes the <a href=\"https://huggingface.co/NousResearch/NousCoder-14B\">NousCoder-14B</a> release from many competitor announcements is its radical openness. Nous Research published not just the <a href=\"https://huggingface.co/NousResearch/NousCoder-14B\">model weights</a> but the <a href=\"https://github.com/NousResearch/atropos/pull/296\">complete reinforcement learning environment</a>, benchmark suite, and training harness — built on the company&#x27;s <a href=\"https://github.com/NousResearch/atropos/pull/296\">Atropos framework </a>— enabling any researcher with sufficient compute to <a href=\"https://wandb.ai/jli505/qwen14b/reports/HermesCoder-14B--VmlldzoxNTQ5Nzc0MQ?accessToken=4pt3stwyh4x83zqe2jgoo5j9b7j07jbe5omf2n40lray3tih17vfkavjootvnw8o\">reproduce or extend the work</a>.</p><p>&quot;Open-sourcing the Atropos stack provides the necessary infrastructure for reproducible olympiad-level reasoning research,&quot; <a href=\"https://x.com/o_mega___/status/2008907268700475450?s=20\">noted one observer on X</a>, summarizing the significance for the academic and open-source communities.</p><p>The model was trained by <a href=\"https://x.com/JoeLi5050\">Joe Li</a>, a researcher in residence at Nous Research and a former competitive programmer himself. Li&#x27;s <a href=\"https://nousresearch.com/nouscoder-14b-a-competitive-olympiad-programming-model/\">technical report </a>reveals an unexpectedly personal dimension: he compared the model&#x27;s improvement trajectory to his own journey on Codeforces, the competitive programming platform where participants earn ratings based on contest performance.</p><p>Based on rough estimates mapping LiveCodeBench scores to Codeforces ratings, Li calculated that NousCoder-14B&#x27;s improvemen t— from approximately the 1600-1750 rating range to 2100-2200 — mirrors a leap that took him nearly two years of sustained practice between ages 14 and 16. The model accomplished the equivalent in four days.</p><p>&quot;Watching that final training run unfold was quite a surreal experience,&quot; Li wrote in the technical report.</p><p>But Li was quick to note an important caveat that speaks to broader questions about AI efficiency: he solved roughly 1,000 problems during those two years, while the model required 24,000. Humans, at least for now, remain dramatically more sample-efficient learners.</p><hr/><h2><b>Inside the reinforcement learning system that trains on 24,000 competitive programming problems</b></h2><p><a href=\"https://huggingface.co/NousResearch/NousCoder-14B\">NousCoder-14B</a>&#x27;s training process offers a window into the increasingly sophisticated techniques researchers use to improve AI reasoning capabilities through reinforcement learning.</p><p>The approach relies on what researchers call &quot;verifiable rewards&quot; — a system where the model generates code solutions, those solutions are executed against test cases, and the model receives a simple binary signal: correct or incorrect. This feedback loop, while conceptually straightforward, requires significant infrastructure to execute at scale.</p><p>Nous Research used <a href=\"https://modal.com/\">Modal</a>, a cloud computing platform, to run sandboxed code execution in parallel. Each of the 24,000 training problems contains hundreds of test cases on average, and the system must verify that generated code produces correct outputs within time and memory constraints — 15 seconds and 4 gigabytes, respectively.</p><p>The training employed a technique called <a href=\"https://dapo-sia.github.io/\">DAPO (Dynamic Sampling Policy Optimization)</a>, which the researchers found performed slightly better than alternatives in their experiments. A key innovation involves &quot;dynamic sampling&quot; — discarding training examples where the model either solves all attempts or fails all attempts, since these provide no useful gradient signal for learning.</p><p>The researchers also adopted &quot;iterative context extension,&quot; first training the model with a 32,000-token context window before expanding to 40,000 tokens. During evaluation, extending the context further to approximately 80,000 tokens produced the best results, with accuracy reaching 67.87 percent.</p><p>Perhaps most significantly, the training pipeline overlaps inference and verification — as soon as the model generates a solution, it begins work on the next problem while the previous solution is being checked. This pipelining, combined with asynchronous training where multiple model instances work in parallel, maximizes hardware utilization on expensive GPU clusters.</p><hr/><h2><b>The looming data shortage that could slow AI coding model progress</b></h2><p>Buried in Li&#x27;s <a href=\"https://nousresearch.com/nouscoder-14b-a-competitive-olympiad-programming-model/\">technical report</a> is a finding with significant implications for the future of AI development: the training dataset for NousCoder-14B encompasses &quot;a significant portion of all readily available, verifiable competitive programming problems in a standardized dataset format.&quot;</p><p>In other words, for this particular domain, the researchers are approaching the limits of high-quality training data.</p><p>&quot;The total number of competitive programming problems on the Internet is roughly the same order of magnitude,&quot; Li wrote, referring to the 24,000 problems used for training. &quot;This suggests that within the competitive programming domain, we have approached the limits of high-quality data.&quot;</p><p>This observation echoes growing concern across the AI industry about data constraints. While compute continues to scale according to well-understood economic and engineering principles, training data is &quot;increasingly finite,&quot; as Li put it.</p><p>&quot;It appears that some of the most important research that needs to be done in the future will be in the areas of synthetic data generation and data efficient algorithms and architectures,&quot; he concluded.</p><p>The challenge is particularly acute for competitive programming because the domain requires problems with known correct solutions that can be verified automatically. Unlike natural language tasks where human evaluation or proxy metrics suffice, code either works or it doesn&#x27;t — making synthetic data generation considerably more difficult.</p><p>Li identified one potential avenue: training models not just to solve problems but to generate solvable problems, enabling a form of self-play similar to techniques that proved successful in game-playing AI systems. &quot;Once synthetic problem generation is solved, self-play becomes a very interesting direction,&quot; he wrote.</p><hr/><h2><b>A $65 million bet that open-source AI can compete with Big Tech</b></h2><p>Nous Research has carved out a distinctive position in the AI landscape: a company committed to <a href=\"https://nousresearch.com/\">open-source releases</a> that compete with — and sometimes exceed — proprietary alternatives.</p><p>The company raised<a href=\"https://fortune.com/crypto/2025/04/25/paradigm-nous-research-crypto-ai-venture-capital-deepseek-openai-blockchain/\"> $50 million in April 2025</a> in a round led by Paradigm, the cryptocurrency-focused venture firm founded by Coinbase co-founder Fred Ehrsam. Total funding reached $65 million, according to some reports. The investment reflected growing interest in decentralized approaches to AI training, an area where Nous Research has developed its <a href=\"https://psyche.network/\">Psyche platform</a>.</p><p>Previous releases include <a href=\"https://hermes4.nousresearch.com/\">Hermes 4</a>, a family of models that we reported &quot;<a href=\"https://venturebeat.com/ai/nous-research-drops-hermes-4-ai-models-that-outperform-chatgpt-without-content-restrictions\">outperform ChatGPT without content restrictions</a>,&quot; and DeepHermes-3, which the company described as the first &quot;<a href=\"https://venturebeat.com/ai/personalized-unrestricted-ai-lab-nous-research-launches-first-toggle-on-reasoning-model-deephermes-3\">toggle-on reasoning model</a>&quot; — allowing users to activate extended thinking capabilities on demand.</p><p>The company has cultivated a distinctive aesthetic and community, prompting some skepticism about whether style might overshadow substance. &quot;Ofc i&#x27;m gonna believe an anime pfp company. stop benchmarkmaxxing ffs,&quot; <a href=\"https://x.com/shydev69/status/2008654826356535510?s=20\">wrote one critic on X</a>, referring to Nous Research&#x27;s anime-style branding and the industry practice of optimizing for benchmark performance.</p><p>Others raised technical questions. &quot;<a href=\"https://x.com/yehor_smoliakov/status/2008659681489940757?s=20\">Based on the benchmark, Nemotron is better</a>,&quot; noted one commenter, referring to Nvidia&#x27;s family of language models. Another asked whether <a href=\"https://huggingface.co/NousResearch/NousCoder-14B\">NousCoder-14B</a> is &quot;agentic focused or just &#x27;one shot&#x27; coding&quot; — a distinction that matters for practical software development, where iterating on feedback typically produces better results than single attempts.</p><hr/><h2><b>What researchers say must happen next for AI coding tools to keep improving</b></h2><p>The release includes several directions for future work that hint at where AI coding research may be heading.</p><p>Multi-turn reinforcement learning tops the list. Currently, the model receives only a final binary reward — pass or fail — after generating a solution. But competitive programming problems typically include public test cases that provide intermediate feedback: compilation errors, incorrect outputs, time limit violations. Training models to incorporate this feedback across multiple attempts could significantly improve performance.</p><p>Controlling response length also remains a challenge. The researchers found that incorrect solutions tended to be longer than correct ones, and response lengths quickly saturated available context windows during training — a pattern that various algorithmic modifications failed to resolve.</p><p>Perhaps most ambitiously, Li proposed &quot;problem generation and self-play&quot; — training models to both solve and create programming problems. This would address the data scarcity problem directly by enabling models to generate their own training curricula.</p><p>&quot;Humans are great at generating interesting and useful problems for other competitive programmers, but it appears that there still exists a significant gap in LLM capabilities in creative problem generation,&quot; Li wrote.</p><p>The model is <a href=\"https://huggingface.co/NousResearch/NousCoder-14B\">available now on Hugging Face</a> under an Apache 2.0 license. For researchers and developers who want to build on the work, Nous Research has published the complete <a href=\"https://github.com/NousResearch/atropos/pull/296\">Atropos training stack</a> alongside it.</p><p>What took Li two years of adolescent dedication to achieve—climbing from a 1600-level novice to a 2100-rated competitor on Codeforces—an AI replicated in 96 hours. He needed 1,000 problems. The model needed 24,000. But soon enough, these systems may learn to write their own problems, teach themselves, and leave human benchmarks behind entirely.</p><p>The question is no longer whether machines can learn to code. It&#x27;s whether they&#x27;ll soon be better teachers than we ever were.</p><p>\n</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-07T20:00:00.000Z",
          "pubDate": "Wed, 07 Jan 2026 20:00:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/66Tw6dMGGoSZZOK6XB6gm6/0fafc7520898e26c88edf1de9e74e863/nuneybits_Vector_art_of_radiant_skull_emitting_code_beams_deep__17d19acc-0af7-41ad-ac28-16f09ef5234b.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI"
          ],
          "contentSnippet": "Nous Research, the open-source artificial intelligence startup backed by crypto venture firm Paradigm, released a new competitive programming model on Monday that it says matches or exceeds several larger proprietary systems — trained in just four days using 48 of Nvidia's latest B200 graphics processors.\nThe model, called NousCoder-14B, is another entry in a crowded field of AI coding assistants, but arrives at a particularly charged moment: Claude Code, the agentic programming tool from rival Anthropic, has dominated social media discussion since New Year's Day, with developers posting breathless testimonials about its capabilities. The simultaneous developments underscore how quickly AI-assisted software development is evolving — and how fiercely companies large and small are competing to capture what many believe will become a foundational technology for how software gets written.\ntype: embedded-entry-inline id: 74cSyrq6OUrp9SEQ5zOUSl\nNousCoder-14B achieves a 67.87 percent accuracy rate on LiveCodeBench v6, a standardized evaluation that tests models on competitive programming problems published between August 2024 and May 2025. That figure represents a 7.08 percentage point improvement over the base model it was trained from, Alibaba's Qwen3-14B, according to Nous Research's technical report published alongside the release.\n\"I gave Claude Code a description of the problem, it generated what we built last year in an hour,\" wrote Jaana Dogan, a principal engineer at Google responsible for the Gemini API, in a viral post on X last week that captured the prevailing mood around AI coding tools. Dogan was describing a distributed agent orchestration system her team had spent a year developing — a system Claude Code approximated from a three-paragraph prompt.\nThe juxtaposition is instructive: while Anthropic's Claude Code has captured imaginations with demonstrations of end-to-end software development, Nous Research is betting that open-source alternatives trained on verifiable problems can close the gap — and that transparency in how these models are built matters as much as raw capability.\n\nHow Nous Research built an AI coding model that anyone can replicate\nWhat distinguishes the NousCoder-14B release from many competitor announcements is its radical openness. Nous Research published not just the model weights but the complete reinforcement learning environment, benchmark suite, and training harness — built on the company's Atropos framework — enabling any researcher with sufficient compute to reproduce or extend the work.\n\"Open-sourcing the Atropos stack provides the necessary infrastructure for reproducible olympiad-level reasoning research,\" noted one observer on X, summarizing the significance for the academic and open-source communities.\nThe model was trained by Joe Li, a researcher in residence at Nous Research and a former competitive programmer himself. Li's technical report reveals an unexpectedly personal dimension: he compared the model's improvement trajectory to his own journey on Codeforces, the competitive programming platform where participants earn ratings based on contest performance.\nBased on rough estimates mapping LiveCodeBench scores to Codeforces ratings, Li calculated that NousCoder-14B's improvemen t— from approximately the 1600-1750 rating range to 2100-2200 — mirrors a leap that took him nearly two years of sustained practice between ages 14 and 16. The model accomplished the equivalent in four days.\n\"Watching that final training run unfold was quite a surreal experience,\" Li wrote in the technical report.\nBut Li was quick to note an important caveat that speaks to broader questions about AI efficiency: he solved roughly 1,000 problems during those two years, while the model required 24,000. Humans, at least for now, remain dramatically more sample-efficient learners.\n\nInside the reinforcement learning system that trains on 24,000 competitive programming problems\nNousCoder-14B's training process offers a window into the increasingly sophisticated techniques researchers use to improve AI reasoning capabilities through reinforcement learning.\nThe approach relies on what researchers call \"verifiable rewards\" — a system where the model generates code solutions, those solutions are executed against test cases, and the model receives a simple binary signal: correct or incorrect. This feedback loop, while conceptually straightforward, requires significant infrastructure to execute at scale.\nNous Research used Modal, a cloud computing platform, to run sandboxed code execution in parallel. Each of the 24,000 training problems contains hundreds of test cases on average, and the system must verify that generated code produces correct outputs within time and memory constraints — 15 seconds and 4 gigabytes, respectively.\nThe training employed a technique called DAPO (Dynamic Sampling Policy Optimization), which the researchers found performed slightly better than alternatives in their experiments. A key innovation involves \"dynamic sampling\" — discarding training examples where the model either solves all attempts or fails all attempts, since these provide no useful gradient signal for learning.\nThe researchers also adopted \"iterative context extension,\" first training the model with a 32,000-token context window before expanding to 40,000 tokens. During evaluation, extending the context further to approximately 80,000 tokens produced the best results, with accuracy reaching 67.87 percent.\nPerhaps most significantly, the training pipeline overlaps inference and verification — as soon as the model generates a solution, it begins work on the next problem while the previous solution is being checked. This pipelining, combined with asynchronous training where multiple model instances work in parallel, maximizes hardware utilization on expensive GPU clusters.\n\nThe looming data shortage that could slow AI coding model progress\nBuried in Li's technical report is a finding with significant implications for the future of AI development: the training dataset for NousCoder-14B encompasses \"a significant portion of all readily available, verifiable competitive programming problems in a standardized dataset format.\"\nIn other words, for this particular domain, the researchers are approaching the limits of high-quality training data.\n\"The total number of competitive programming problems on the Internet is roughly the same order of magnitude,\" Li wrote, referring to the 24,000 problems used for training. \"This suggests that within the competitive programming domain, we have approached the limits of high-quality data.\"\nThis observation echoes growing concern across the AI industry about data constraints. While compute continues to scale according to well-understood economic and engineering principles, training data is \"increasingly finite,\" as Li put it.\n\"It appears that some of the most important research that needs to be done in the future will be in the areas of synthetic data generation and data efficient algorithms and architectures,\" he concluded.\nThe challenge is particularly acute for competitive programming because the domain requires problems with known correct solutions that can be verified automatically. Unlike natural language tasks where human evaluation or proxy metrics suffice, code either works or it doesn't — making synthetic data generation considerably more difficult.\nLi identified one potential avenue: training models not just to solve problems but to generate solvable problems, enabling a form of self-play similar to techniques that proved successful in game-playing AI systems. \"Once synthetic problem generation is solved, self-play becomes a very interesting direction,\" he wrote.\n\nA $65 million bet that open-source AI can compete with Big Tech\nNous Research has carved out a distinctive position in the AI landscape: a company committed to open-source releases that compete with — and sometimes exceed — proprietary alternatives.\nThe company raised $50 million in April 2025 in a round led by Paradigm, the cryptocurrency-focused venture firm founded by Coinbase co-founder Fred Ehrsam. Total funding reached $65 million, according to some reports. The investment reflected growing interest in decentralized approaches to AI training, an area where Nous Research has developed its Psyche platform.\nPrevious releases include Hermes 4, a family of models that we reported \"outperform ChatGPT without content restrictions,\" and DeepHermes-3, which the company described as the first \"toggle-on reasoning model\" — allowing users to activate extended thinking capabilities on demand.\nThe company has cultivated a distinctive aesthetic and community, prompting some skepticism about whether style might overshadow substance. \"Ofc i'm gonna believe an anime pfp company. stop benchmarkmaxxing ffs,\" wrote one critic on X, referring to Nous Research's anime-style branding and the industry practice of optimizing for benchmark performance.\nOthers raised technical questions. \"Based on the benchmark, Nemotron is better,\" noted one commenter, referring to Nvidia's family of language models. Another asked whether NousCoder-14B is \"agentic focused or just 'one shot' coding\" — a distinction that matters for practical software development, where iterating on feedback typically produces better results than single attempts.\n\nWhat researchers say must happen next for AI coding tools to keep improving\nThe release includes several directions for future work that hint at where AI coding research may be heading.\nMulti-turn reinforcement learning tops the list. Currently, the model receives only a final binary reward — pass or fail — after generating a solution. But competitive programming problems typically include public test cases that provide intermediate feedback: compilation errors, incorrect outputs, time limit violations. Training models to incorporate this feedback across multiple attempts could significantly improve performance.\nControlling response length also remains a challenge. The researchers found that incorrect solutions tended to be longer than correct ones, and response lengths quickly saturated available context windows during training — a pattern that various algorithmic modifications failed to resolve.\nPerhaps most ambitiously, Li proposed \"problem generation and self-play\" — training models to both solve and create programming problems. This would address the data scarcity problem directly by enabling models to generate their own training curricula.\n\"Humans are great at generating interesting and useful problems for other competitive programmers, but it appears that there still exists a significant gap in LLM capabilities in creative problem generation,\" Li wrote.\nThe model is available now on Hugging Face under an Apache 2.0 license. For researchers and developers who want to build on the work, Nous Research has published the complete Atropos training stack alongside it.\nWhat took Li two years of adolescent dedication to achieve—climbing from a 1600-level novice to a 2100-rated competitor on Codeforces—an AI replicated in 96 hours. He needed 1,000 problems. The model needed 24,000. But soon enough, these systems may learn to write their own problems, teach themselves, and leave human benchmarks behind entirely.\nThe question is no longer whether machines can learn to code. It's whether they'll soon be better teachers than we ever were."
        },
        "pairedItem": [
          {
            "item": 4
          }
        ]
      },
      {
        "json": {
          "guid": "1OII24oTfVYyF45IOoAjy8",
          "link": "https://venturebeat.com/technology/the-creator-of-claude-code-just-revealed-his-workflow-and-developers-are",
          "title": "The creator of Claude Code just revealed his workflow, and developers are losing their minds",
          "author": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "content": "<p>When the creator of the world&#x27;s most advanced coding agent speaks, Silicon Valley doesn&#x27;t just listen — it takes notes.</p><p>For the past week, the engineering community has been dissecting a <a href=\"https://x.com/bcherny/status/2007179832300581177\">thread on X</a> from <a href=\"https://x.com/bcherny\">Boris Cherny</a>, the creator and head of <a href=\"https://code.claude.com/docs/en/overview\">Claude Code</a> at <a href=\"https://www.anthropic.com/\">Anthropic</a>. What began as a casual sharing of his personal terminal setup has spiraled into a viral manifesto on the future of software development, with industry insiders calling it a watershed moment for the startup.</p><div></div><p>&quot;If you&#x27;re not reading the Claude Code best practices straight from its creator, you&#x27;re behind as a programmer,&quot; wrote <a href=\"https://x.com/jefftangx\">Jeff Tang</a>, a prominent voice in the developer community. <a href=\"https://x.com/KyleMcnease/status/2007555584724480338\">Kyle McNease</a>, another industry observer, went further, declaring that with Cherny&#x27;s &quot;game-changing updates,&quot; Anthropic is &quot;on fire,&quot; potentially facing &quot;their ChatGPT moment.&quot;</p><p>The excitement stems from a paradox: Cherny&#x27;s workflow is surprisingly simple, yet it allows a single human to operate with the output capacity of a small engineering department. As one user noted on X after implementing Cherny&#x27;s setup, the experience &quot;<a href=\"https://x.com/mtwichan\">feels more like Starcraft</a>&quot; than traditional coding — a shift from typing syntax to commanding autonomous units.</p><p>Here is an analysis of the workflow that is reshaping how software gets built, straight from the architect himself. </p><h2><b>How running five AI agents at once turns coding into a real-time strategy game</b></h2><p>The most striking revelation from Cherny&#x27;s disclosure is that he does not code in a linear fashion. In the traditional &quot;<a href=\"https://notes.paulswail.com/public/The+inner+and+outer+loops+of+software+development+workflow\">inner loop</a>&quot; of development, a programmer writes a function, tests it, and moves to the next. Cherny, however, acts as a fleet commander.</p><p>&quot;I run 5 Claudes in parallel in my terminal,&quot; Cherny wrote. &quot;I number my tabs 1-5, and use system notifications to know when a Claude needs input.&quot;</p><p>By utilizing iTerm2 system notifications, Cherny effectively manages five simultaneous work streams. While one agent runs a test suite, another refactors a legacy module, and a third drafts documentation. He also runs &quot;5-10 Claudes on <a href=\"https://claude.ai/\">claude.ai</a>&quot; in his browser, using a &quot;teleport&quot; command to hand off sessions between the web and his local machine.</p><p>This validates the &quot;<a href=\"https://www.cnbc.com/2026/01/03/anthropic-daniela-amodei-do-more-with-less-bet.html\">do more with less</a>&quot; strategy articulated by Anthropic President Daniela Amodei earlier this week. While competitors like OpenAI pursue trillion-dollar infrastructure build-outs, Anthropic is proving that superior orchestration of existing models can yield exponential productivity gains.</p><h2><b>The counterintuitive case for choosing the slowest, smartest model</b></h2><p>In a surprising move for an industry obsessed with latency, Cherny revealed that he exclusively uses Anthropic&#x27;s heaviest, slowest model: <a href=\"https://www.anthropic.com/news/claude-opus-4-5\">Opus 4.5</a>.</p><p>&quot;I use Opus 4.5 with thinking for everything,&quot; Cherny <a href=\"https://x.com/bcherny/status/2007179838864666847\">explained</a>. &quot;It&#x27;s the best coding model I&#x27;ve ever used, and even though it&#x27;s bigger &amp; slower than Sonnet, since you have to steer it less and it&#x27;s better at tool use, it is almost always faster than using a smaller model in the end.&quot;</p><p>For enterprise technology leaders, this is a critical insight. The bottleneck in modern AI development isn&#x27;t the generation speed of the token; it is the human time spent correcting the AI&#x27;s mistakes. Cherny&#x27;s workflow suggests that paying the &quot;compute tax&quot; for a smarter model upfront eliminates the &quot;correction tax&quot; later.</p><h2><b>One shared file turns every AI mistake into a permanent lesson</b></h2><p>Cherny also detailed how his team solves the problem of AI amnesia. Standard large language models do not &quot;remember&quot; a company&#x27;s specific coding style or architectural decisions from one session to the next.</p><p>To address this, Cherny&#x27;s team maintains a single file named <a href=\"https://x.com/bcherny/status/2007179842928947333\">CLAUDE.md</a> in their git repository. &quot;Anytime we see Claude do something incorrectly we add it to the CLAUDE.md, so Claude knows not to do it next time,&quot; he wrote.</p><p>This practice transforms the codebase into a self-correcting organism. When a human developer reviews a pull request and spots an error, they don&#x27;t just fix the code; they tag the AI to update its own instructions. &quot;<a href=\"https://x.com/aakashgupta/status/2007347705945944153\">Every mistake becomes a rule</a>,&quot; noted <a href=\"https://x.com/aakashgupta\">Aakash Gupta</a>, a product leader analyzing the thread. The longer the team works together, the smarter the agent becomes.</p><h2><b>Slash commands and subagents automate the most tedious parts of development</b></h2><p>The &quot;vanilla&quot; workflow one observer praised is powered by rigorous automation of repetitive tasks. Cherny uses slash commands — custom shortcuts checked into the project&#x27;s repository — to handle complex operations with a single keystroke.</p><p>He highlighted a command called <i><b>/commit-push-pr</b></i>, which he invokes dozens of times daily. Instead of manually typing git commands, writing a commit message, and opening a pull request, the agent handles the bureaucracy of version control autonomously.</p><p>Cherny also deploys subagents — specialized AI personas — to handle specific phases of the development lifecycle. He uses a code-simplifier to clean up architecture after the main work is done and a verify-app agent to run end-to-end tests before anything ships.</p><h2><b>Why verification loops are the real unlock for AI-generated code</b></h2><p>If there is a single reason Claude Code has reportedly hit <a href=\"https://www.anthropic.com/news/anthropic-acquires-bun-as-claude-code-reaches-usd1b-milestone\">$1 billion in annual recurring revenue</a> so quickly, it is likely the verification loop. The AI is not just a text generator; it is a tester.</p><p>&quot;Claude tests every single change I land to claude.ai/code using the Claude Chrome extension,&quot; Cherny wrote. &quot;It opens a browser, tests the UI, and iterates until the code works and the UX feels good.&quot;</p><p>He argues that giving the AI a way to verify its own work — whether through browser automation, running bash commands, or executing test suites — improves the quality of the final result by &quot;2-3x.&quot; The agent doesn&#x27;t just write code; it proves the code works.</p><h2><b>What Cherny&#x27;s workflow signals about the future of software engineering</b></h2><p>The reaction to Cherny&#x27;s thread suggests a pivotal shift in how developers think about their craft. For years, &quot;AI coding&quot; meant an autocomplete function in a text editor — a faster way to type. Cherny has demonstrated that it can now function as an operating system for labor itself.</p><p>&quot;Read this if you&#x27;re already an engineer... and want more power,&quot; <a href=\"https://x.com/jefftangx/status/2008246873275215890\">Jeff Tang</a> summarized on X.</p><p>The tools to multiply human output by a factor of five are already here. They require only a willingness to stop thinking of AI as an assistant and start treating it as a workforce. The programmers who make that mental leap first won&#x27;t just be more productive. They&#x27;ll be playing an entirely different game — and everyone else will still be typing.</p>",
          "creator": "michael.nunez@venturebeat.com (Michael Nuñez)",
          "isoDate": "2026-01-05T07:45:00.000Z",
          "pubDate": "Mon, 05 Jan 2026 07:45:00 GMT",
          "enclosure": {
            "url": "https://images.ctfassets.net/jdtwqhzvc2n1/6VsJWNsStTR57q9vFd5L08/a0d88b4dcbd1e9ba77fd72a9c55988d9/nuneybits_Vector_art_of_programmer_conducting_robot_orchestra_i_908157a9-d44f-4bce-b390-5913b88dad27.webp?w=300&q=30",
            "type": "image/webp",
            "length": "0"
          },
          "categories": [
            "Technology",
            "AI"
          ],
          "contentSnippet": "When the creator of the world's most advanced coding agent speaks, Silicon Valley doesn't just listen — it takes notes.\nFor the past week, the engineering community has been dissecting a thread on X from Boris Cherny, the creator and head of Claude Code at Anthropic. What began as a casual sharing of his personal terminal setup has spiraled into a viral manifesto on the future of software development, with industry insiders calling it a watershed moment for the startup.\n\n\"If you're not reading the Claude Code best practices straight from its creator, you're behind as a programmer,\" wrote Jeff Tang, a prominent voice in the developer community. Kyle McNease, another industry observer, went further, declaring that with Cherny's \"game-changing updates,\" Anthropic is \"on fire,\" potentially facing \"their ChatGPT moment.\"\nThe excitement stems from a paradox: Cherny's workflow is surprisingly simple, yet it allows a single human to operate with the output capacity of a small engineering department. As one user noted on X after implementing Cherny's setup, the experience \"feels more like Starcraft\" than traditional coding — a shift from typing syntax to commanding autonomous units.\nHere is an analysis of the workflow that is reshaping how software gets built, straight from the architect himself. \nHow running five AI agents at once turns coding into a real-time strategy game\nThe most striking revelation from Cherny's disclosure is that he does not code in a linear fashion. In the traditional \"inner loop\" of development, a programmer writes a function, tests it, and moves to the next. Cherny, however, acts as a fleet commander.\n\"I run 5 Claudes in parallel in my terminal,\" Cherny wrote. \"I number my tabs 1-5, and use system notifications to know when a Claude needs input.\"\nBy utilizing iTerm2 system notifications, Cherny effectively manages five simultaneous work streams. While one agent runs a test suite, another refactors a legacy module, and a third drafts documentation. He also runs \"5-10 Claudes on claude.ai\" in his browser, using a \"teleport\" command to hand off sessions between the web and his local machine.\nThis validates the \"do more with less\" strategy articulated by Anthropic President Daniela Amodei earlier this week. While competitors like OpenAI pursue trillion-dollar infrastructure build-outs, Anthropic is proving that superior orchestration of existing models can yield exponential productivity gains.\nThe counterintuitive case for choosing the slowest, smartest model\nIn a surprising move for an industry obsessed with latency, Cherny revealed that he exclusively uses Anthropic's heaviest, slowest model: Opus 4.5.\n\"I use Opus 4.5 with thinking for everything,\" Cherny explained. \"It's the best coding model I've ever used, and even though it's bigger & slower than Sonnet, since you have to steer it less and it's better at tool use, it is almost always faster than using a smaller model in the end.\"\nFor enterprise technology leaders, this is a critical insight. The bottleneck in modern AI development isn't the generation speed of the token; it is the human time spent correcting the AI's mistakes. Cherny's workflow suggests that paying the \"compute tax\" for a smarter model upfront eliminates the \"correction tax\" later.\nOne shared file turns every AI mistake into a permanent lesson\nCherny also detailed how his team solves the problem of AI amnesia. Standard large language models do not \"remember\" a company's specific coding style or architectural decisions from one session to the next.\nTo address this, Cherny's team maintains a single file named CLAUDE.md in their git repository. \"Anytime we see Claude do something incorrectly we add it to the CLAUDE.md, so Claude knows not to do it next time,\" he wrote.\nThis practice transforms the codebase into a self-correcting organism. When a human developer reviews a pull request and spots an error, they don't just fix the code; they tag the AI to update its own instructions. \"Every mistake becomes a rule,\" noted Aakash Gupta, a product leader analyzing the thread. The longer the team works together, the smarter the agent becomes.\nSlash commands and subagents automate the most tedious parts of development\nThe \"vanilla\" workflow one observer praised is powered by rigorous automation of repetitive tasks. Cherny uses slash commands — custom shortcuts checked into the project's repository — to handle complex operations with a single keystroke.\nHe highlighted a command called /commit-push-pr, which he invokes dozens of times daily. Instead of manually typing git commands, writing a commit message, and opening a pull request, the agent handles the bureaucracy of version control autonomously.\nCherny also deploys subagents — specialized AI personas — to handle specific phases of the development lifecycle. He uses a code-simplifier to clean up architecture after the main work is done and a verify-app agent to run end-to-end tests before anything ships.\nWhy verification loops are the real unlock for AI-generated code\nIf there is a single reason Claude Code has reportedly hit $1 billion in annual recurring revenue so quickly, it is likely the verification loop. The AI is not just a text generator; it is a tester.\n\"Claude tests every single change I land to claude.ai/code using the Claude Chrome extension,\" Cherny wrote. \"It opens a browser, tests the UI, and iterates until the code works and the UX feels good.\"\nHe argues that giving the AI a way to verify its own work — whether through browser automation, running bash commands, or executing test suites — improves the quality of the final result by \"2-3x.\" The agent doesn't just write code; it proves the code works.\nWhat Cherny's workflow signals about the future of software engineering\nThe reaction to Cherny's thread suggests a pivotal shift in how developers think about their craft. For years, \"AI coding\" meant an autocomplete function in a text editor — a faster way to type. Cherny has demonstrated that it can now function as an operating system for labor itself.\n\"Read this if you're already an engineer... and want more power,\" Jeff Tang summarized on X.\nThe tools to multiply human output by a factor of five are already here. They require only a willingness to stop thinking of AI as an assistant and start treating it as a workforce. The programmers who make that mental leap first won't just be more productive. They'll be playing an entirely different game — and everyone else will still be typing."
        },
        "pairedItem": [
          {
            "item": 4
          }
        ]
      },
      {
        "json": {
          "guid": "881216de-81bd-4da8-908c-6fc3e6a4411a",
          "link": "https://www.zdnet.com/article/how-to-turn-airtag-into-wifi-password-key-nfc-tags/",
          "title": "I created the ultimate Wi-Fi password key with the most unexpected gadget - how it works",
          "itunes": {},
          "content": "NFC tags are so useful and customizable, and it's quite simple to make your own. Here's what you can do with it and how.",
          "isoDate": "2026-02-10T03:01:15.000Z",
          "pubDate": "Tue, 10 Feb 2026 03:01:15 GMT",
          "contentSnippet": "NFC tags are so useful and customizable, and it's quite simple to make your own. Here's what you can do with it and how."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "27471e56-532b-4090-9aab-db552814455b",
          "link": "https://www.zdnet.com/article/i-turned-doodles-into-video-clips-in-minutes-with-runways-new-ai-video-tool-heres-how/",
          "title": "I turned doodles into video clips in minutes with Runway's new AI video tool - here's how",
          "itunes": {},
          "content": "The company's Motion Sketch feature lowers the barrier between abstract imagination and concrete video outputs. But like all generative AI tools, it has its shortcomings.",
          "isoDate": "2026-02-10T03:01:13.000Z",
          "pubDate": "Tue, 10 Feb 2026 03:01:13 GMT",
          "contentSnippet": "The company's Motion Sketch feature lowers the barrier between abstract imagination and concrete video outputs. But like all generative AI tools, it has its shortcomings."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "449249a1-cdf7-4b86-b294-f0b2409be861",
          "link": "https://www.zdnet.com/article/android-extend-unlock-faster-phone-access/",
          "title": "This Android trick lets me access my phone faster - here's how it works",
          "itunes": {},
          "content": "Extend Unlock is one of those features every Android user will love once they give it a try.",
          "isoDate": "2026-02-10T03:00:54.000Z",
          "pubDate": "Tue, 10 Feb 2026 03:00:54 GMT",
          "contentSnippet": "Extend Unlock is one of those features every Android user will love once they give it a try."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "e94ba78f-e76f-4849-a02b-828905fc727f",
          "link": "https://www.zdnet.com/article/onyx-boox-page-android-e-ink-tablet-review/",
          "title": "I didn't expect this Android E Ink tablet to beat my Kindle, but one feature sets it apart",
          "itunes": {},
          "content": "The Onyx Boox Page is packed with features for an E Ink tablet, with a smart, versatile design.",
          "isoDate": "2026-02-10T02:30:37.000Z",
          "pubDate": "Tue, 10 Feb 2026 02:30:37 GMT",
          "contentSnippet": "The Onyx Boox Page is packed with features for an E Ink tablet, with a smart, versatile design."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "6788a566-899b-481a-b0cc-ce5b53409dc0",
          "link": "https://www.zdnet.com/article/how-to-restart-android-phone-without-using-the-power-button-2-ways/",
          "title": "How to restart your Android phone without using the power button: 2 easy ways",
          "itunes": {},
          "content": "You don't need to press the power button to restart your Android device. If yours is broken or you simply want options, here are two.",
          "isoDate": "2026-02-10T02:12:53.000Z",
          "pubDate": "Tue, 10 Feb 2026 02:12:53 GMT",
          "contentSnippet": "You don't need to press the power button to restart your Android device. If yours is broken or you simply want options, here are two."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "09d182bf-9aac-454b-9390-edf9ce2587e2",
          "link": "https://www.zdnet.com/article/which-ai-tools-are-worth-paying-for-here-are-subscriptions-im-keeping-and-why/",
          "title": "Which AI tools are worth paying for? Here are subscriptions I'm keeping - and why",
          "itunes": {},
          "content": "I pay close attention to anything that can save me time. After reviewing my 2025 spending on generative AI, I made one big change.",
          "isoDate": "2026-02-10T02:00:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 02:00:00 GMT",
          "contentSnippet": "I pay close attention to anything that can save me time. After reviewing my 2025 spending on generative AI, I made one big change."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "604bbf51-114a-4e59-a160-b817098ffffb",
          "link": "https://www.zdnet.com/article/comaps-review-google-maps-alternative/",
          "title": "I found a free Google Maps alternative that doesn't track my location (or kill my phone battery)",
          "itunes": {},
          "content": "Comaps features voice-guided directions and offline search, prioritizing privacy over the controversial practices of Google Maps.",
          "isoDate": "2026-02-10T01:46:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:46:00 GMT",
          "contentSnippet": "Comaps features voice-guided directions and offline search, prioritizing privacy over the controversial practices of Google Maps."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "dad97e75-e9c7-4425-a6ac-4e9130ae6dcc",
          "link": "https://www.zdnet.com/article/tessan-65w-charging-tower-review/",
          "title": "I switched to a vertical charging tower in my home office - it's so useful, I bought 3 more",
          "itunes": {},
          "content": "I was so impressed by the Tessan 65W charging tower, it became a staple both at home and the office.",
          "isoDate": "2026-02-10T01:45:41.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:45:41 GMT",
          "contentSnippet": "I was so impressed by the Tessan 65W charging tower, it became a staple both at home and the office."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "a6c9aa24-04c9-4256-8640-b201c8f05e30",
          "link": "https://www.zdnet.com/article/6-best-android-launchers-to-improve-your-home-screen-most-free/",
          "title": "6 Android launchers that are better than your default home screen (and most are free)",
          "itunes": {},
          "content": "You can customize your Android phone simply by replacing the default launcher. Here are six I've tested and recommend.",
          "isoDate": "2026-02-10T01:36:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:36:00 GMT",
          "contentSnippet": "You can customize your Android phone simply by replacing the default launcher. Here are six I've tested and recommend."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "fbeebee4-634e-4065-bd5c-c83fdf531fe5",
          "link": "https://www.zdnet.com/article/oura-ring-sick-symptom-radar-my-experience/",
          "title": "I should've listened to my Oura Ring when it warned me about my health",
          "itunes": {},
          "content": "While they're not always perfect, health trackers like the Oura Ring can detect early signs of illness. Here's why you shouldn't ignore them.",
          "isoDate": "2026-02-10T01:33:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:33:00 GMT",
          "contentSnippet": "While they're not always perfect, health trackers like the Oura Ring can detect early signs of illness. Here's why you shouldn't ignore them."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "167feba6-ba53-4f26-8a81-4d9b711e3c78",
          "link": "https://www.zdnet.com/article/ktc-25inch-android-tablet-review/",
          "title": "I lived with this 25-inch Android tablet for a week - and it went surprisingly well",
          "itunes": {},
          "content": "If you're looking for a big-screen tablet, KTC's 25-inch model offers plenty of entertainment at an acceptable price.",
          "isoDate": "2026-02-10T01:32:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:32:00 GMT",
          "contentSnippet": "If you're looking for a big-screen tablet, KTC's 25-inch model offers plenty of entertainment at an acceptable price."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "7c1bf65a-91c0-4597-9e8b-a62a3cf022f9",
          "link": "https://www.zdnet.com/article/best-ps5-settings-improve-performance/",
          "title": "I changed 3 settings on my PS5 to give the system an instant performance boost",
          "itunes": {},
          "content": "With a few simple adjustments, you can easily enhance your experience across gaming, streaming, and even online security.",
          "isoDate": "2026-02-10T01:30:43.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:30:43 GMT",
          "contentSnippet": "With a few simple adjustments, you can easily enhance your experience across gaming, streaming, and even online security."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "7c99d954-c993-4758-bbcf-31bfc2d73843",
          "link": "https://www.zdnet.com/article/dreamie-smart-alarm-clock-review/",
          "title": "I tried a $250 alarm clock for a week - and it's not as ridiculous as it sounds",
          "itunes": {},
          "content": "Dreamie is the smart alarm clock newcomer that wants to get you off your phone and to sleep. But it's far from perfect.",
          "isoDate": "2026-02-10T01:11:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:11:00 GMT",
          "contentSnippet": "Dreamie is the smart alarm clock newcomer that wants to get you off your phone and to sleep. But it's far from perfect."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "ca3ab0fe-7511-4a74-aca7-1530970adec6",
          "link": "https://www.zdnet.com/article/oura-rings-team-usa-olympics-official-wearable/",
          "title": "Why Oura Rings made it onto Team USA's Olympic gear list - and that's good news for you",
          "itunes": {},
          "content": "US athletes will sport Oura Rings to track their health. Here's why sponsorships like these can inspire new features.",
          "isoDate": "2026-02-10T01:07:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 01:07:00 GMT",
          "contentSnippet": "US athletes will sport Oura Rings to track their health. Here's why sponsorships like these can inspire new features."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "31d8d4c0-3b5c-4c00-9be6-71120b9e5637",
          "link": "https://www.zdnet.com/article/windows-10-11-secret-recovery-tool-how-to-find-it-and-use/",
          "title": "Your Windows PC has a secret recovery tool that's seriously useful - here's how to access it",
          "itunes": {},
          "content": "If Windows ever has trouble launching, Recovery Drive lets you back up essential system files to an external USB drive to help Windows boot.",
          "isoDate": "2026-02-10T00:52:00.000Z",
          "pubDate": "Tue, 10 Feb 2026 00:52:00 GMT",
          "contentSnippet": "If Windows ever has trouble launching, Recovery Drive lets you back up essential system files to an external USB drive to help Windows boot."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "5f97d44f-e8cf-47e1-9369-489a9bb870bb",
          "link": "https://www.zdnet.com/article/why-you-should-put-your-phone-screen-side-down/",
          "title": "The simple phone habit change that saves your screen time (and your sanity)",
          "itunes": {},
          "content": "It sounds counterintuitive, but placing your phone face down has some serious benefits.",
          "isoDate": "2026-02-10T00:45:48.000Z",
          "pubDate": "Tue, 10 Feb 2026 00:45:48 GMT",
          "contentSnippet": "It sounds counterintuitive, but placing your phone face down has some serious benefits."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "a93dfab2-c6ea-4754-9e36-47b3bd1e3cf8",
          "link": "https://www.zdnet.com/article/logitech-mevo-core-review/",
          "title": "I went live with this 4K Logitech camera, and it gave my $3,000 Canon a run for its money",
          "itunes": {},
          "content": "Logitech's modular Mevo Core is a 4K live-streaming camera with multi-cam support and fantastic image quality.",
          "isoDate": "2026-02-09T22:12:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 22:12:00 GMT",
          "contentSnippet": "Logitech's modular Mevo Core is a 4K live-streaming camera with multi-cam support and fantastic image quality."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "0c42b76a-7b87-41a4-b2f6-9133e40016f0",
          "link": "https://www.zdnet.com/article/best-presidents-day-deals-2026/",
          "title": "The best Presidents' Day sales we've found so far: Save on Apple, Sony, and more",
          "itunes": {},
          "content": "Presidents' Day sales are slowly making their way online, and I'm scouting for expert-approved deals on home, tech, and more.",
          "isoDate": "2026-02-09T22:01:47.000Z",
          "pubDate": "Mon, 09 Feb 2026 22:01:47 GMT",
          "contentSnippet": "Presidents' Day sales are slowly making their way online, and I'm scouting for expert-approved deals on home, tech, and more."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "38aefa0f-4478-4733-8471-b0f79a52ed2e",
          "link": "https://www.zdnet.com/article/best-apple-deals-presidents-day-2026/",
          "title": "The best Presidents' Day Apple sales you can shop now",
          "itunes": {},
          "content": "The first deal event of the year is almost here, and you'll be able to find discounts on all things Apple for Presidents' Day.",
          "isoDate": "2026-02-09T21:49:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 21:49:00 GMT",
          "contentSnippet": "The first deal event of the year is almost here, and you'll be able to find discounts on all things Apple for Presidents' Day."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "a64b3406-cee0-4d41-a3a2-6c1fe99777e5",
          "link": "https://www.zdnet.com/article/best-buy-presidents-day-ps5-sale/",
          "title": "I found the 7 best PS5 games on sale during Best Buy's Presidents' Day sale",
          "itunes": {},
          "content": "You can save 50% or more on hot PS5 and PlayStation-on-PC titles like God of War, Uncharted, and more at Best Buy.",
          "isoDate": "2026-02-09T21:43:11.000Z",
          "pubDate": "Mon, 09 Feb 2026 21:43:11 GMT",
          "contentSnippet": "You can save 50% or more on hot PS5 and PlayStation-on-PC titles like God of War, Uncharted, and more at Best Buy."
        },
        "pairedItem": [
          {
            "item": 5
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608359",
          "link": "https://towardsdatascience.com/the-machine-learning-lessons-ive-learned-last-month/",
          "title": "The Machine Learning Lessons I’ve Learned Last Month",
          "content": "<p>Delayed January: deadlines, downtimes, and flow times</p>\n<p>The post <a href=\"https://towardsdatascience.com/the-machine-learning-lessons-ive-learned-last-month/\">The Machine Learning Lessons I’ve Learned Last Month</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Pascal Janetzky",
          "isoDate": "2026-02-09T20:38:42.000Z",
          "pubDate": "Mon, 09 Feb 2026 20:38:42 +0000",
          "categories": [
            "Machine Learning",
            "Inspiration",
            "Ml Product Manager",
            "Productivity",
            "Project Management"
          ],
          "dc:creator": "Pascal Janetzky",
          "contentSnippet": "Delayed January: deadlines, downtimes, and flow times\nThe post The Machine Learning Lessons I’ve Learned Last Month appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608349",
          "link": "https://towardsdatascience.com/the-death-of-the-everything-prompt-googles-move-toward-structured-ai/",
          "title": "The Death of the “Everything Prompt”: Google’s Move Toward Structured AI",
          "content": "<p>How the new Interactions API enables deep-reasoning, stateful, agentic workflows.</p>\n<p>The post <a href=\"https://towardsdatascience.com/the-death-of-the-everything-prompt-googles-move-toward-structured-ai/\">The Death of the “Everything Prompt”: Google’s Move Toward Structured AI</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Thomas Reid",
          "isoDate": "2026-02-09T13:00:00.000Z",
          "pubDate": "Mon, 09 Feb 2026 13:00:00 +0000",
          "categories": [
            "Artificial Intelligence",
            "Agentic Ai",
            "API",
            "Deep Dives",
            "Llm",
            "Programming"
          ],
          "dc:creator": "Thomas Reid",
          "contentSnippet": "How the new Interactions API enables deep-reasoning, stateful, agentic workflows.\nThe post The Death of the “Everything Prompt”: Google’s Move Toward Structured AI appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608351",
          "link": "https://towardsdatascience.com/what-i-am-doing-to-stay-relevant-as-a-senior-analytics-consultant-in-2026/",
          "title": "What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026",
          "content": "<p>Learn how to work with AI, while strengthening your unique human skills that technology cannot replace</p>\n<p>The post <a href=\"https://towardsdatascience.com/what-i-am-doing-to-stay-relevant-as-a-senior-analytics-consultant-in-2026/\">What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Rashi Desai",
          "isoDate": "2026-02-07T15:00:00.000Z",
          "pubDate": "Sat, 07 Feb 2026 15:00:00 +0000",
          "categories": [
            "Data analysis",
            "Artificial Intelligence",
            "Career Advice",
            "Data Science",
            "Editors Pick",
            "Generative Ai"
          ],
          "dc:creator": "Rashi Desai",
          "contentSnippet": "Learn how to work with AI, while strengthening your unique human skills that technology cannot replace\nThe post What I Am Doing to Stay Relevant as a Senior Analytics Consultant in 2026 appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608347",
          "link": "https://towardsdatascience.com/pydantic-performance-4-tips-on-how-to-validate-large-amounts-of-data-efficiently/",
          "title": "Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently",
          "content": "<p>The real value lies in writing clearer code and using your tools right</p>\n<p>The post <a href=\"https://towardsdatascience.com/pydantic-performance-4-tips-on-how-to-validate-large-amounts-of-data-efficiently/\">Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Mike Huls",
          "isoDate": "2026-02-06T15:00:00.000Z",
          "pubDate": "Fri, 06 Feb 2026 15:00:00 +0000",
          "categories": [
            "Data Engineering",
            "Data Architecture",
            "Data Science",
            "Data Validation",
            "Pydantic",
            "Python"
          ],
          "dc:creator": "Mike Huls",
          "contentSnippet": "The real value lies in writing clearer code and using your tools right\nThe post Pydantic Performance: 4 Tips on How to Validate Large Amounts of Data Efficiently appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608345",
          "link": "https://towardsdatascience.com/prompt-fidelity-measuring-how-much-of-your-intent-an-ai-agent-actually-executes/",
          "title": "Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes",
          "content": "<p>How much of your AI agent's output is real data versus confident guesswork?</p>\n<p>The post <a href=\"https://towardsdatascience.com/prompt-fidelity-measuring-how-much-of-your-intent-an-ai-agent-actually-executes/\">Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "James Barney",
          "isoDate": "2026-02-06T12:00:00.000Z",
          "pubDate": "Fri, 06 Feb 2026 12:00:00 +0000",
          "categories": [
            "Agentic AI",
            "Ai Agent",
            "Artificial Intelligence",
            "Editors Pick",
            "Prompt Engineering",
            "Recommender Systems"
          ],
          "dc:creator": "James Barney",
          "contentSnippet": "How much of your AI agent's output is real data versus confident guesswork?\nThe post Prompt Fidelity: Measuring How Much of Your Intent an AI Agent Actually Executes appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608353",
          "link": "https://towardsdatascience.com/tds-newsletter-vibe-coding-is-great-until-its-not/",
          "title": "TDS Newsletter: Vibe Coding Is Great. Until It’s Not.",
          "content": "<p>Sorting through the good, bad, and ambiguous aspects of vibe coding</p>\n<p>The post <a href=\"https://towardsdatascience.com/tds-newsletter-vibe-coding-is-great-until-its-not/\">TDS Newsletter: Vibe Coding Is Great. Until It&#8217;s Not.</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "TDS Editors",
          "isoDate": "2026-02-05T17:09:00.000Z",
          "pubDate": "Thu, 05 Feb 2026 17:09:00 +0000",
          "categories": [
            "The Variable",
            "AI coding assistants",
            "Artificial Intelligence",
            "Tds Features",
            "Vibe coding"
          ],
          "dc:creator": "TDS Editors",
          "contentSnippet": "Sorting through the good, bad, and ambiguous aspects of vibe coding\nThe post TDS Newsletter: Vibe Coding Is Great. Until It’s Not. appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608342",
          "link": "https://towardsdatascience.com/mechanistic-interpretability-peeking-inside-an-llm/",
          "title": "Mechanistic Interpretability: Peeking Inside an LLM",
          "content": "<p>Are the human-like cognitive abilities of LLMs real or fake? How does information travel through the neural network? Is there hidden knowledge inside an LLM?</p>\n<p>The post <a href=\"https://towardsdatascience.com/mechanistic-interpretability-peeking-inside-an-llm/\">Mechanistic Interpretability: Peeking Inside an LLM</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Julian Mendel",
          "isoDate": "2026-02-05T15:00:00.000Z",
          "pubDate": "Thu, 05 Feb 2026 15:00:00 +0000",
          "categories": [
            "Large Language Models",
            "Artificial Intelligence",
            "Deep Dives",
            "Explainable Ai",
            "Llm",
            "Neural Network"
          ],
          "dc:creator": "Julian Mendel",
          "contentSnippet": "Are the human-like cognitive abilities of LLMs real or fake? How does information travel through the neural network? Is there hidden knowledge inside an LLM?\nThe post Mechanistic Interpretability: Peeking Inside an LLM appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608340",
          "link": "https://towardsdatascience.com/why-is-my-code-so-slow-a-guide-to-py-spy-python-profiling/",
          "title": "Why Is My Code So Slow? A Guide to Py-Spy Python Profiling",
          "content": "<p>Stop guessing and start diagnosing performance issues using Py-Spy</p>\n<p>The post <a href=\"https://towardsdatascience.com/why-is-my-code-so-slow-a-guide-to-py-spy-python-profiling/\">Why Is My Code So Slow? A Guide to Py-Spy Python Profiling</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Kenneth McCarthy",
          "isoDate": "2026-02-05T13:30:00.000Z",
          "pubDate": "Thu, 05 Feb 2026 13:30:00 +0000",
          "categories": [
            "Programming",
            "Data Science",
            "Debugging",
            "Deep Dives",
            "Profiling",
            "Python"
          ],
          "dc:creator": "Kenneth McCarthy",
          "contentSnippet": "Stop guessing and start diagnosing performance issues using Py-Spy\nThe post Why Is My Code So Slow? A Guide to Py-Spy Python Profiling appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608338",
          "link": "https://towardsdatascience.com/stop-confusing-loc-and-iloc-in-pandas-the-rule-everyone-misses/",
          "title": "The Rule Everyone Misses: How to Stop Confusing loc and iloc in Pandas",
          "content": "<p>A simple mental model to remember when each one works (with examples that finally click).</p>\n<p>The post <a href=\"https://towardsdatascience.com/stop-confusing-loc-and-iloc-in-pandas-the-rule-everyone-misses/\">The Rule Everyone Misses: How to Stop Confusing loc and iloc in Pandas</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Ibrahim Salami",
          "isoDate": "2026-02-05T12:00:00.000Z",
          "pubDate": "Thu, 05 Feb 2026 12:00:00 +0000",
          "categories": [
            "Data Science",
            "Data Analytics",
            "Data Extraction",
            "Pandas",
            "Python"
          ],
          "dc:creator": "Ibrahim Salami",
          "contentSnippet": "A simple mental model to remember when each one works (with examples that finally click).\nThe post The Rule Everyone Misses: How to Stop Confusing loc and iloc in Pandas appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608335",
          "link": "https://towardsdatascience.com/aws-vs-azure-a-deep-dive-into-model-training-part-2/",
          "title": "AWS vs. Azure: A Deep Dive into Model Training – Part 2",
          "content": "<p>This article covers how Azure ML's persistent, workspace-centric compute resources differ from AWS SageMaker's on-demand, job-specific approach. Additionally, we explored environment customization options, from Azure's curated environments and custom environments to SageMaker's three level of customizations.</p>\n<p>The post <a href=\"https://towardsdatascience.com/aws-vs-azure-a-deep-dive-into-model-training-part-2/\">AWS vs. Azure: A Deep Dive into Model Training – Part 2</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Destin Gong",
          "isoDate": "2026-02-04T16:30:00.000Z",
          "pubDate": "Wed, 04 Feb 2026 16:30:00 +0000",
          "categories": [
            "Data Science",
            "AWS",
            "Azure",
            "Editors Pick",
            "Machine Learning",
            "Mlops"
          ],
          "dc:creator": "Destin Gong",
          "contentSnippet": "This article covers how Azure ML's persistent, workspace-centric compute resources differ from AWS SageMaker's on-demand, job-specific approach. Additionally, we explored environment customization options, from Azure's curated environments and custom environments to SageMaker's three level of customizations.\nThe post AWS vs. Azure: A Deep Dive into Model Training – Part 2 appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608333",
          "link": "https://towardsdatascience.com/how-to-effectively-work-with-frontend-and-backend-code/",
          "title": "How to Work Effectively with Frontend and Backend Code",
          "content": "<p>Learn how to be an effective full-stack engineer with Claude Code</p>\n<p>The post <a href=\"https://towardsdatascience.com/how-to-effectively-work-with-frontend-and-backend-code/\">How to Work Effectively with Frontend and Backend Code</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Eivind Kjosbakken",
          "isoDate": "2026-02-04T15:00:00.000Z",
          "pubDate": "Wed, 04 Feb 2026 15:00:00 +0000",
          "categories": [
            "LLM Applications",
            "Agentic Ai",
            "Artificial Intelligence",
            "Claude Code",
            "coding agents",
            "Programming"
          ],
          "dc:creator": "Eivind Kjosbakken",
          "contentSnippet": "Learn how to be an effective full-stack engineer with Claude Code\nThe post How to Work Effectively with Frontend and Backend Code appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608331",
          "link": "https://towardsdatascience.com/how-to-build-your-own-custom-llm-memory-layer-from-scratch/",
          "title": "How to Build Your Own Custom LLM Memory Layer from Scratch",
          "content": "<p>Step-by-step guide to building autonomous memory retrieval systems</p>\n<p>The post <a href=\"https://towardsdatascience.com/how-to-build-your-own-custom-llm-memory-layer-from-scratch/\">How to Build Your Own Custom LLM Memory Layer from Scratch</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Avishek Biswas",
          "isoDate": "2026-02-04T13:30:00.000Z",
          "pubDate": "Wed, 04 Feb 2026 13:30:00 +0000",
          "categories": [
            "Large Language Models",
            "Context Engineering",
            "Deep Dives",
            "Llm",
            "Llm Applications",
            "Memory Management"
          ],
          "dc:creator": "Avishek Biswas",
          "contentSnippet": "Step-by-step guide to building autonomous memory retrieval systems\nThe post How to Build Your Own Custom LLM Memory Layer from Scratch appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608329",
          "link": "https://towardsdatascience.com/plan-code-execute-designing-agents-that-create-their-own-tools/",
          "title": "Plan–Code–Execute: Designing Agents That Create Their Own Tools",
          "content": "<p>The case against pre-built tools in Agentic Architectures</p>\n<p>The post <a href=\"https://towardsdatascience.com/plan-code-execute-designing-agents-that-create-their-own-tools/\">Plan–Code–Execute: Designing Agents That Create Their Own Tools</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Partha Sarkar",
          "isoDate": "2026-02-04T12:00:00.000Z",
          "pubDate": "Wed, 04 Feb 2026 12:00:00 +0000",
          "categories": [
            "Agentic AI",
            "Agentic Ai",
            "Ai Agent",
            "Ai Engineering",
            "Deep Dives",
            "Tool-using Agents"
          ],
          "dc:creator": "Partha Sarkar",
          "contentSnippet": "The case against pre-built tools in Agentic Architectures\nThe post Plan–Code–Execute: Designing Agents That Create Their Own Tools appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608327",
          "link": "https://towardsdatascience.com/routing-in-a-sparse-graph-a-distributed-q-learning-approach/",
          "title": "Routing in a Sparse Graph: a Distributed Q-Learning Approach",
          "content": "<p>Distributed agents need only decide one move ahead.</p>\n<p>The post <a href=\"https://towardsdatascience.com/routing-in-a-sparse-graph-a-distributed-q-learning-approach/\">Routing in a Sparse Graph: a Distributed Q-Learning Approach</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Sébastien Gilbert",
          "isoDate": "2026-02-03T16:30:00.000Z",
          "pubDate": "Tue, 03 Feb 2026 16:30:00 +0000",
          "categories": [
            "Machine Learning",
            "Deep Dives",
            "Graph",
            "Path Search",
            "Q-Learning",
            "Reinforcement Learning"
          ],
          "dc:creator": "Sébastien Gilbert",
          "contentSnippet": "Distributed agents need only decide one move ahead.\nThe post Routing in a Sparse Graph: a Distributed Q-Learning Approach appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608325",
          "link": "https://towardsdatascience.com/yolov2-yolo9000-paper-walkthrough-better-faster-stronger/",
          "title": "YOLOv2 & YOLO9000 Paper Walkthrough: Better, Faster, Stronger",
          "content": "<p>From YOLOv1 to YOLOv2: prior box, k-means, Darknet-19, passthrough layer, and more</p>\n<p>The post <a href=\"https://towardsdatascience.com/yolov2-yolo9000-paper-walkthrough-better-faster-stronger/\">YOLOv2 &#038; YOLO9000 Paper Walkthrough: Better, Faster, Stronger</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Muhammad Ardi",
          "isoDate": "2026-02-03T15:00:00.000Z",
          "pubDate": "Tue, 03 Feb 2026 15:00:00 +0000",
          "categories": [
            "Artificial Intelligence",
            "Deep Learning",
            "Editors Pick",
            "Object Detection",
            "Pytorch",
            "Yolo"
          ],
          "dc:creator": "Muhammad Ardi",
          "contentSnippet": "From YOLOv1 to YOLOv2: prior box, k-means, Darknet-19, passthrough layer, and more\nThe post YOLOv2 & YOLO9000 Paper Walkthrough: Better, Faster, Stronger appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608322",
          "link": "https://towardsdatascience.com/creating-a-data-pipeline-to-monitor-local-crime-trends/",
          "title": "Creating a Data Pipeline to Monitor Local Crime Trends",
          "content": "<p>A walkthough of creating an ETL pipeline to extract local crime data and visualize it in Metabase.</p>\n<p>The post <a href=\"https://towardsdatascience.com/creating-a-data-pipeline-to-monitor-local-crime-trends/\">Creating a Data Pipeline to Monitor Local Crime Trends</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Jimin Kang",
          "isoDate": "2026-02-03T13:30:00.000Z",
          "pubDate": "Tue, 03 Feb 2026 13:30:00 +0000",
          "categories": [
            "Data Science",
            "Data Engineering",
            "Data Pipeline",
            "Data Visualisation",
            "Deep Dives",
            "Etl"
          ],
          "dc:creator": "Jimin Kang",
          "contentSnippet": "A walkthough of creating an ETL pipeline to extract local crime data and visualize it in Metabase.\nThe post Creating a Data Pipeline to Monitor Local Crime Trends appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608320",
          "link": "https://towardsdatascience.com/the-proximity-of-the-inception-score-as-an-evaluation-criterion/",
          "title": "The Proximity of the Inception Score as an Evaluation Criterion",
          "content": "<p>The neighborhood of synthetic data</p>\n<p>The post <a href=\"https://towardsdatascience.com/the-proximity-of-the-inception-score-as-an-evaluation-criterion/\">The Proximity of the Inception Score as an Evaluation Criterion</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Giuseppe Pio Cannata",
          "isoDate": "2026-02-03T12:00:00.000Z",
          "pubDate": "Tue, 03 Feb 2026 12:00:00 +0000",
          "categories": [
            "Deep Learning",
            "Artificial Intelligence",
            "Computer Vision",
            "Data Science",
            "Gans",
            "Generative Adversarial"
          ],
          "dc:creator": "Giuseppe Pio Cannata",
          "contentSnippet": "The neighborhood of synthetic data\nThe post The Proximity of the Inception Score as an Evaluation Criterion appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608264",
          "link": "https://towardsdatascience.com/building-systems-that-survive-real-life/",
          "title": "Building Systems That Survive Real Life",
          "content": "<p>Sara Nobrega on the transition from data science to AI engineering, using LLMs as a bridge to DevOps, and the one engineering skill junior data scientists need to stay competitive.</p>\n<p>The post <a href=\"https://towardsdatascience.com/building-systems-that-survive-real-life/\">Building Systems That Survive Real Life</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "TDS Editors",
          "isoDate": "2026-02-02T17:00:00.000Z",
          "pubDate": "Mon, 02 Feb 2026 17:00:00 +0000",
          "categories": [
            "Author Spotlights",
            "Artificial Intelligence",
            "Data Science",
            "Machine Learning",
            "Writing"
          ],
          "dc:creator": "TDS Editors",
          "contentSnippet": "Sara Nobrega on the transition from data science to AI engineering, using LLMs as a bridge to DevOps, and the one engineering skill junior data scientists need to stay competitive.\nThe post Building Systems That Survive Real Life appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608310",
          "link": "https://towardsdatascience.com/silicon-darwinism-why-scarcity-is-the-source-of-true-intelligence/",
          "title": "Silicon Darwinism: Why Scarcity Is the Source of True Intelligence",
          "content": "<p>We are confusing “size” with “smart.” The next leap in artificial intelligence will not come from a larger data center, but from a more constrained environment.</p>\n<p>The post <a href=\"https://towardsdatascience.com/silicon-darwinism-why-scarcity-is-the-source-of-true-intelligence/\">Silicon Darwinism: Why Scarcity Is the Source of True Intelligence</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Aakash Goswami",
          "isoDate": "2026-02-02T13:00:00.000Z",
          "pubDate": "Mon, 02 Feb 2026 13:00:00 +0000",
          "categories": [
            "Artificial Intelligence",
            "Articial Intelligence",
            "Future",
            "Machine Learning",
            "Sustainability",
            "Tinyml"
          ],
          "dc:creator": "Aakash Goswami",
          "contentSnippet": "We are confusing “size” with “smart.” The next leap in artificial intelligence will not come from a larger data center, but from a more constrained environment.\nThe post Silicon Darwinism: Why Scarcity Is the Source of True Intelligence appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://towardsdatascience.com/?p=608307",
          "link": "https://towardsdatascience.com/distributed-reinforcement-learning-for-scalable-high-performance-policy-optimization/",
          "title": "Distributed Reinforcement Learning for Scalable High-Performance Policy Optimization",
          "content": "<p>Leveraging massive parallelism, asynchronous updates, and multi-machine training to match and exceed human-level performance</p>\n<p>The post <a href=\"https://towardsdatascience.com/distributed-reinforcement-learning-for-scalable-high-performance-policy-optimization/\">Distributed Reinforcement Learning for Scalable High-Performance Policy Optimization</a> appeared first on <a href=\"https://towardsdatascience.com\">Towards Data Science</a>.</p>\n",
          "creator": "Sam Black",
          "isoDate": "2026-02-01T15:00:00.000Z",
          "pubDate": "Sun, 01 Feb 2026 15:00:00 +0000",
          "categories": [
            "Machine Learning",
            "Artificial Intelligence",
            "Deep Reinforcement",
            "Distributed Learning",
            "Editors Pick",
            "Reinforcement Learning"
          ],
          "dc:creator": "Sam Black",
          "contentSnippet": "Leveraging massive parallelism, asynchronous updates, and multi-machine training to match and exceed human-level performance\nThe post Distributed Reinforcement Learning for Scalable High-Performance Policy Optimization appeared first on Towards Data Science."
        },
        "pairedItem": [
          {
            "item": 6
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/09/technology/social-media-addiction-trial.html",
          "link": "https://www.nytimes.com/2026/02/09/technology/social-media-addiction-trial.html",
          "title": "Meta and YouTube Created ‘Digital Casinos,’ Lawyers Argue in Landmark Trial",
          "content": "Opening statements began in a trial claiming social media companies design addictive products that cause personal injury.",
          "creator": "Eli Tan and Cecilia Kang",
          "isoDate": "2026-02-10T00:53:17.000Z",
          "pubDate": "Tue, 10 Feb 2026 00:53:17 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Suits and Litigation (Civil)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Mental Health and Disorders"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Addiction (Psychology)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Youth"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Instagram Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Meta Platforms Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "YouTube.com"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Zuckerberg, Mark E"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Mohan, Neal"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            }
          ],
          "dc:creator": "Eli Tan and Cecilia Kang",
          "contentSnippet": "Opening statements began in a trial claiming social media companies design addictive products that cause personal injury."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/business/google-employees-protest.html",
          "link": "https://www.nytimes.com/2026/02/06/business/google-employees-protest.html",
          "title": "Google Workers Demand End to Cloud Services for Immigration Agencies",
          "content": "More than 800 employees delivered a petition to management, condemning the Trump administration’s use of Google technology in immigration enforcement.",
          "creator": "Tripp Mickle",
          "isoDate": "2026-02-06T18:52:26.000Z",
          "pubDate": "Fri, 06 Feb 2026 18:52:26 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Google Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Demonstrations, Protests and Riots"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Cloud Computing"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Illegal Immigration"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Immigration Detention"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Federal Actions in US Cities"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Police Brutality, Misconduct and Shootings"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "United States Politics and Government"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Customs and Border Protection (US)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Immigration and Customs Enforcement (US)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Homeland Security Department"
            }
          ],
          "dc:creator": "Tripp Mickle",
          "contentSnippet": "More than 800 employees delivered a petition to management, condemning the Trump administration’s use of Google technology in immigration enforcement."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/business/tiktok-addictive-design-europe.html",
          "link": "https://www.nytimes.com/2026/02/06/business/tiktok-addictive-design-europe.html",
          "title": "Europe Accuses TikTok of ‘Addictive Design’ and Pushes for Change",
          "content": "European Union regulators said the app’s infinite scroll and personalized algorithm led to “compulsive” behavior, especially among children.",
          "creator": "Adam Satariano",
          "isoDate": "2026-02-06T19:08:37.000Z",
          "pubDate": "Fri, 06 Feb 2026 19:08:37 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Regulation and Deregulation of Industry"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "International Relations"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Law and Legislation"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Beijing Bytedance Technology Co Ltd"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "TikTok (ByteDance)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Europe"
            }
          ],
          "dc:creator": "Adam Satariano",
          "contentSnippet": "European Union regulators said the app’s infinite scroll and personalized algorithm led to “compulsive” behavior, especially among children."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/business/ai-stock-market-anthropic-openai.html",
          "link": "https://www.nytimes.com/2026/02/06/business/ai-stock-market-anthropic-openai.html",
          "title": "Fear of AI Replacing Software Makers Hits Stocks. Here’s What to Know.",
          "content": "The prospect of disruptions from artificial intelligence has hung over the economy for years. But this week advances in software tools precipitated a sell-off on Wall Street.",
          "creator": "Mike Isaac, Joe Rennison and Maureen Farrell",
          "isoDate": "2026-02-06T20:11:04.000Z",
          "pubDate": "Fri, 06 Feb 2026 20:11:04 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Stocks and Bonds"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Company Reports"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Credit and Debt"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Software"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Innovation"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Bitcoin (Currency)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Anthropic AI LLC"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Qualcomm Inc"
            }
          ],
          "dc:creator": "Mike Isaac, Joe Rennison and Maureen Farrell",
          "contentSnippet": "The prospect of disruptions from artificial intelligence has hung over the economy for years. But this week advances in software tools precipitated a sell-off on Wall Street."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/09/health/ai-chatbots-doctors-medicine.html",
          "link": "https://www.nytimes.com/2026/02/09/health/ai-chatbots-doctors-medicine.html",
          "title": "A.I. Is Making Doctors Answer a Question: What Are They Really Good For?",
          "content": "Many physicians find chatbots threatening, but that doesn’t mean they’re giving up on medicine.",
          "creator": "Gina Kolata",
          "isoDate": "2026-02-09T17:17:56.000Z",
          "pubDate": "Mon, 09 Feb 2026 17:17:56 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Doctors"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Medicine and Health"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Research"
            }
          ],
          "dc:creator": "Gina Kolata",
          "contentSnippet": "Many physicians find chatbots threatening, but that doesn’t mean they’re giving up on medicine."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/08/style/ai-tech-san-francisco.html",
          "link": "https://www.nytimes.com/2026/02/08/style/ai-tech-san-francisco.html",
          "title": "These A.I. Dreamers Don’t Fit the Stereotype",
          "content": "Young tech entrepreneurs in San Francisco are hoping to cash in, even as they wonder how artificial intelligence will affect society.",
          "creator": "Guy Trebay",
          "isoDate": "2026-02-09T16:15:44.000Z",
          "pubDate": "Mon, 09 Feb 2026 16:15:44 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Start-ups"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Youth"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Entrepreneurship"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "San Francisco (Calif)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Content Type: Personal Profile"
            }
          ],
          "dc:creator": "Guy Trebay",
          "contentSnippet": "Young tech entrepreneurs in San Francisco are hoping to cash in, even as they wonder how artificial intelligence will affect society."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/07/technology/washington-post-will-lewis.html",
          "link": "https://www.nytimes.com/2026/02/07/technology/washington-post-will-lewis.html",
          "title": "Washington Post C.E.O. Will Lewis Steps Down After Stormy Tenure",
          "content": "His departure came days after the company cut 30 percent of the staff. He will be replaced in the interim by Jeff D’Onofrio, the chief financial officer, the company said.",
          "creator": "Benjamin Mullin, Katie Robertson and Erik Wemple",
          "isoDate": "2026-02-08T14:40:43.000Z",
          "pubDate": "Sun, 08 Feb 2026 14:40:43 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Washington Post"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Lewis, William (1969- )"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Appointments and Executive Changes"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Newspapers"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "News and News Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Layoffs and Job Reductions"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Bezos, Jeffrey P"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "internal-open-access-from-nl"
            }
          ],
          "dc:creator": "Benjamin Mullin, Katie Robertson and Erik Wemple",
          "contentSnippet": "His departure came days after the company cut 30 percent of the staff. He will be replaced in the interim by Jeff D’Onofrio, the chief financial officer, the company said."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/07/science/mathematics-ai-proof-hairer.html",
          "link": "https://www.nytimes.com/2026/02/07/science/mathematics-ai-proof-hairer.html",
          "title": "These Mathematicians Are Trying to Educate A.I.",
          "content": "Large language models struggle to solve research-level math questions. It takes a human to assess just how poorly they perform.",
          "creator": "Siobhan Roberts",
          "isoDate": "2026-02-07T17:08:57.000Z",
          "pubDate": "Sat, 07 Feb 2026 17:08:57 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Mathematics"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Google Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "OpenAI Labs"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Hairer, Martin (1975- )"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Research"
            }
          ],
          "dc:creator": "Siobhan Roberts",
          "contentSnippet": "Large language models struggle to solve research-level math questions. It takes a human to assess just how poorly they perform."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/07/technology/elon-musk-spacex-xai.html",
          "link": "https://www.nytimes.com/2026/02/07/technology/elon-musk-spacex-xai.html",
          "title": "After Merging xAI and SpaceX, Elon Musk Hopes He Can Win Over Wall Street",
          "content": "The billionaire’s decision to merge his A.I. start-up with his rocket company will test investors’ interest in giant combinations of unalike businesses.",
          "creator": "Kate Conger and Jack Ewing",
          "isoDate": "2026-02-08T01:27:03.000Z",
          "pubDate": "Sun, 08 Feb 2026 01:27:03 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Space Exploration Technologies Corp"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "X.ai Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Mergers, Acquisitions and Divestitures"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Start-ups"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Private Spaceflight"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Space and Astronomy"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Musk, Elon"
            }
          ],
          "dc:creator": "Kate Conger and Jack Ewing",
          "contentSnippet": "The billionaire’s decision to merge his A.I. start-up with his rocket company will test investors’ interest in giant combinations of unalike businesses."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/business/stellantis-writedown-electric-vehicles.html",
          "link": "https://www.nytimes.com/2026/02/06/business/stellantis-writedown-electric-vehicles.html",
          "title": "Stellantis’s Shift Away From Electric Cars Will Cost It $26 Billion",
          "content": "The company, which owns Chrysler, Fiat, Jeep and Peugeot, is changing its strategy to gasoline and hybrid vehicles in an effort to revive weak sales.",
          "creator": "Neal E. Boudette",
          "isoDate": "2026-02-06T21:18:09.000Z",
          "pubDate": "Fri, 06 Feb 2026 21:18:09 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Automobiles"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Electric and Hybrid Vehicles"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Prices (Fares, Fees and Rates)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Oil (Petroleum) and Gasoline"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Stellantis NV"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Jeep Division of Fiat Chrysler"
            }
          ],
          "dc:creator": "Neal E. Boudette",
          "contentSnippet": "The company, which owns Chrysler, Fiat, Jeep and Peugeot, is changing its strategy to gasoline and hybrid vehicles in an effort to revive weak sales."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/06/podcasts/hardfork-musk-merger-genie.html",
          "link": "https://www.nytimes.com/2026/02/06/podcasts/hardfork-musk-merger-genie.html",
          "title": "Elon Musk’s Mega-Merger + We Test Google’s Project Genie + What’s Next for Moltbook Creator",
          "content": "“A very valuable and profitable company in SpaceX has acquired a cash furnace named xAI.”",
          "creator": "Kevin Roose, Casey Newton, Rachel Cohn, Whitney Jones, Vjeran Pavic, Katie McMurran, Dan Powell, Marion Lozano and Rowan Niemisto",
          "isoDate": "2026-02-06T12:00:03.000Z",
          "pubDate": "Fri, 06 Feb 2026 12:00:03 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Science and Technology"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Starlink Satellite Constellation (SpaceX)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "X (Formerly Twitter)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "X.ai Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Musk, Elon"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "OpenAI Labs"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "NVIDIA Corporation"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Oracle Corporation"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Google Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Moltbook"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "internal-open-access-audio"
            }
          ],
          "dc:creator": "Kevin Roose, Casey Newton, Rachel Cohn, Whitney Jones, Vjeran Pavic, Katie McMurran, Dan Powell, Marion Lozano and Rowan Niemisto",
          "contentSnippet": "“A very valuable and profitable company in SpaceX has acquired a cash furnace named xAI.”"
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/05/technology/amazon-200-billion-ai.html",
          "link": "https://www.nytimes.com/2026/02/05/technology/amazon-200-billion-ai.html",
          "title": "Amazon’s $200 Billion Spending Plan Raises Stakes in A.I. Race",
          "content": "The company reported a strong holiday quarter on Thursday. But its spending, like that at other big technology companies, is starting to make investors nervous.",
          "creator": "Karen Weise",
          "isoDate": "2026-02-05T23:51:01.000Z",
          "pubDate": "Thu, 05 Feb 2026 23:51:01 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Amazon.com Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Company Reports"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "E-Commerce"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Data Centers"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Cloud Computing"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Layoffs and Job Reductions"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Anthropic AI LLC"
            }
          ],
          "dc:creator": "Karen Weise",
          "contentSnippet": "The company reported a strong holiday quarter on Thursday. But its spending, like that at other big technology companies, is starting to make investors nervous."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/05/technology/bitcoin-price-drop-crypto-market.html",
          "link": "https://www.nytimes.com/2026/02/05/technology/bitcoin-price-drop-crypto-market.html",
          "title": "Bitcoin Drops to Lowest Price Since Trump Was Elected as Crypto Faces Slump",
          "content": "The price of Bitcoin is now lower than when President Trump was elected in 2024, raising concerns of a new “crypto winter\" in the industry.",
          "creator": "David Yaffe-Bellany",
          "isoDate": "2026-02-05T23:46:58.000Z",
          "pubDate": "Thu, 05 Feb 2026 23:46:58 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Virtual Currency"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Trump, Donald J"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "United States Politics and Government"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Regulation and Deregulation of Industry"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Bitcoin (Currency)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Stocks and Bonds"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Banking and Financial Institutions"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Gemini Trust Co LLC"
            }
          ],
          "dc:creator": "David Yaffe-Bellany",
          "contentSnippet": "The price of Bitcoin is now lower than when President Trump was elected in 2024, raising concerns of a new “crypto winter\" in the industry."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/05/world/europe/starlink-blocks-russian-troops-access.html",
          "link": "https://www.nytimes.com/2026/02/05/world/europe/starlink-blocks-russian-troops-access.html",
          "title": "At Ukraine’s Request, Starlink Denies Internet Access to Russian Troops",
          "content": "It’s unclear what effect the change will have on Russia’s ability to wage war, but Russian military bloggers said troops were experiencing internet outages that hampered frontline communications.",
          "creator": "Paul Sonne and Maria Varenikova",
          "isoDate": "2026-02-06T00:00:51.000Z",
          "pubDate": "Fri, 06 Feb 2026 00:00:51 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Russian Invasion of Ukraine (2022)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Starlink Satellite Constellation (SpaceX)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Satellites"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computer Network Outages"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Communications and Media Blackouts"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Musk, Elon"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Russia"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Ukraine"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Defense and Military Forces"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Drones (Pilotless Planes)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "International Relations"
            }
          ],
          "dc:creator": "Paul Sonne and Maria Varenikova",
          "contentSnippet": "It’s unclear what effect the change will have on Russia’s ability to wage war, but Russian military bloggers said troops were experiencing internet outages that hampered frontline communications."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/04/world/europe/social-media-free-speech.html",
          "link": "https://www.nytimes.com/2026/02/04/world/europe/social-media-free-speech.html",
          "title": "France’s Raid on X Escalates Trans-Atlantic Showdown Over Social Media",
          "content": "The French investigation into Elon Musk’s X illustrated a fundamental divide between European and American leaders about how to regulate social media — or whether to restrict it at all.",
          "creator": "Adam Satariano and Jeanna Smialek",
          "isoDate": "2026-02-04T23:08:40.000Z",
          "pubDate": "Wed, 04 Feb 2026 23:08:40 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Europe"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Freedom of Speech and Expression"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            }
          ],
          "dc:creator": "Adam Satariano and Jeanna Smialek",
          "contentSnippet": "The French investigation into Elon Musk’s X illustrated a fundamental divide between European and American leaders about how to regulate social media — or whether to restrict it at all."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/04/podcasts/moltbook-mania-explained.html",
          "link": "https://www.nytimes.com/2026/02/04/podcasts/moltbook-mania-explained.html",
          "title": "Moltbook Mania Explained",
          "content": "Is this the year the internet changes forever?",
          "creator": "Kevin Roose, Casey Newton, Whitney Jones, Rachel Cohn, Vjeran Pavic, Katie McMurran, Dan Powell and Alyssa Moxley",
          "isoDate": "2026-02-04T12:00:06.000Z",
          "pubDate": "Wed, 04 Feb 2026 12:00:06 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Science and Technology"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Moltbook"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "internal-open-access-audio"
            }
          ],
          "dc:creator": "Kevin Roose, Casey Newton, Whitney Jones, Rachel Cohn, Vjeran Pavic, Katie McMurran, Dan Powell and Alyssa Moxley",
          "contentSnippet": "Is this the year the internet changes forever?"
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/03/business/media/netflix-sarandos-warner-senate-hearing.html",
          "link": "https://www.nytimes.com/2026/02/03/business/media/netflix-sarandos-warner-senate-hearing.html",
          "title": "Netflix Leader Pushes Warner Deal Before Skeptical Lawmakers",
          "content": "Senators asked Ted Sarandos about whether the acquisition would raise prices, squeeze talent and degrade the moviegoing experience.",
          "creator": "David McCabe",
          "isoDate": "2026-02-03T23:47:39.000Z",
          "pubDate": "Tue, 03 Feb 2026 23:47:39 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Mergers, Acquisitions and Divestitures"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Movies"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "United States Politics and Government"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Video Recordings, Downloads and Streaming"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Prices (Fares, Fees and Rates)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Antitrust Laws and Competition Issues"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "CNN"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Netflix Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Paramount Global"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Senate Committee on the Judiciary"
            }
          ],
          "dc:creator": "David McCabe",
          "contentSnippet": "Senators asked Ted Sarandos about whether the acquisition would raise prices, squeeze talent and degrade the moviegoing experience."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/03/technology/trump-statue-don-colossus.html",
          "link": "https://www.nytimes.com/2026/02/03/technology/trump-statue-don-colossus.html",
          "title": "‘Don Colossus,’ a Golden Statue of President Trump, Waits for Its Home",
          "content": "A group of cryptocurrency investors backing a memecoin hopes the statue will soon be installed at one of Mr. Trump’s golf courses in Florida.",
          "creator": "David Yaffe-Bellany",
          "isoDate": "2026-02-03T20:53:42.000Z",
          "pubDate": "Tue, 03 Feb 2026 20:53:42 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Trump, Donald J"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Sculpture"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Monuments and Memorials (Structures)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Virtual Currency"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Copyrights and Copyright Violations"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Intellectual Property"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Gold"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Trump National Doral Miami (Doral, Fla)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Cottrill, Alan"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Trump Assassination Attempt (July 2024)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "United States Politics and Government"
            }
          ],
          "dc:creator": "David Yaffe-Bellany",
          "contentSnippet": "A group of cryptocurrency investors backing a memecoin hopes the statue will soon be installed at one of Mr. Trump’s golf courses in Florida."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/03/world/europe/spain-social-media-ban-under-16.html",
          "link": "https://www.nytimes.com/2026/02/03/world/europe/spain-social-media-ban-under-16.html",
          "title": "Spain Aims to Ban Social Media for Children Under 16",
          "content": "The announcement is part of a broader push by countries to curb access to online platforms for minors. It also points to Europe’s stricter approach to regulating social media.",
          "creator": "José Bautista",
          "isoDate": "2026-02-03T21:15:35.000Z",
          "pubDate": "Tue, 03 Feb 2026 21:15:35 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Spain"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Children and Childhood"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Regulation and Deregulation of Industry"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Sanchez Perez-Castejon, Pedro (1972- )"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Europe"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "internal-open-access-from-nl"
            }
          ],
          "dc:creator": "José Bautista",
          "contentSnippet": "The announcement is part of a broader push by countries to curb access to online platforms for minors. It also points to Europe’s stricter approach to regulating social media."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/03/business/energy-environment/siemens-energy-ai-power-demand.html",
          "link": "https://www.nytimes.com/2026/02/03/business/energy-environment/siemens-energy-ai-power-demand.html",
          "title": "Siemens Energy Bets $1 Billion That A.I. Power Demand Will Last",
          "content": "The German manufacturer announced plans to expand factories in several U.S. states and build a new plant in Mississippi.",
          "creator": "Rebecca F. Elliott",
          "isoDate": "2026-02-03T11:00:16.000Z",
          "pubDate": "Tue, 03 Feb 2026 11:00:16 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Factories and Manufacturing"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Natural Gas"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Data Centers"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Foreign Investments"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Electric Light and Power"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Prices (Fares, Fees and Rates)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "International Trade and World Market"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Siemens AG"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Charlotte (NC)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Mississippi"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Florida"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Germany"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "United States"
            }
          ],
          "dc:creator": "Rebecca F. Elliott",
          "contentSnippet": "The German manufacturer announced plans to expand factories in several U.S. states and build a new plant in Mississippi."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.nytimes.com/2026/02/03/technology/minneapolis-ai-disinformation-misinformation-truth.html",
          "link": "https://www.nytimes.com/2026/02/03/technology/minneapolis-ai-disinformation-misinformation-truth.html",
          "title": "Chaos in Minneapolis Exposes an Internet at War With Truth",
          "content": "Technological advances and an erosion of trust have transformed the way news unfolds online, distorting shared reality.",
          "creator": "Stuart A. Thompson, Tiffany Hsu and Steven Lee Myers",
          "isoDate": "2026-02-03T14:19:53.000Z",
          "pubDate": "Tue, 03 Feb 2026 14:19:53 +0000",
          "categories": [
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_geo"
              },
              "_": "Minneapolis (Minn)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Police Brutality, Misconduct and Shootings"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Social Media"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Rumors and Misinformation"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Federal Actions in US Cities"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "United States Politics and Government"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Artificial Intelligence"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "George Floyd Protests (2020)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Computers and the Internet"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/des"
              },
              "_": "Video Recordings, Downloads and Streaming"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "X (Formerly Twitter)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_org"
              },
              "_": "Facebook Inc"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Floyd, George (d 2020)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Good, Renee Nicole (1988-2026)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Pretti, Alex Jeffrey (1988-2026)"
            },
            {
              "$": {
                "domain": "http://www.nytimes.com/namespaces/keywords/nyt_per"
              },
              "_": "Trump, Donald J"
            }
          ],
          "dc:creator": "Stuart A. Thompson, Tiffany Hsu and Steven Lee Myers",
          "contentSnippet": "Technological advances and an erosion of trust have transformed the way news unfolds online, distorting shared reality."
        },
        "pairedItem": [
          {
            "item": 7
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-09T14:00:22Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto",
          "link": "https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto",
          "title": "Files cast light on Jeffrey Epstein’s ties to cryptocurrency",
          "content": "<p>Newly released documents detail convicted sex offender’s early backing of bitcoin and Coinbase </p><p>Millions of files related to <a href=\"https://www.theguardian.com/us-news/jeffrey-epstein\">Jeffrey Epstein</a> have brought to light his ties to the highest echelons of the cryptocurrency industry.</p><p>Documents published last week by the US Department of Justice reveal Epstein <a href=\"https://www.justice.gov/epstein/files/DataSet%209/EFTA00680068.pdf\">bankrolled</a> the “principal home and funding source” for bitcoin, the world’s largest cryptocurrency, during its nascent stages; he also <a href=\"https://www.justice.gov/epstein/files/DataSet%209/EFTA00901772.pdf\">invested</a> $3m in Coinbase in 2014, the largest cryptocurrency exchange in the US, and <a href=\"https://www.justice.gov/epstein/files/DataSet%2010/EFTA01917472.pdf\">cut a check</a> that same year to Blockstream, a prominent bitcoin-focused technology firm. Both crypto startups accepted Epstein’s investments in 2014 – six years after his <a href=\"https://www.pbs.org/newshour/show/the-completely-unprecedented-plea-deal-jeffrey-epstein-made-with-alex-acosta\">2008 conviction</a> in Florida for soliciting prostitution from a minor.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/09/jeffrey-epstein-crypto\">Continue reading...</a>",
          "creator": "Adam Willems",
          "dc:date": "2026-02-09T14:00:22Z",
          "isoDate": "2026-02-09T14:00:22.000Z",
          "pubDate": "Mon, 09 Feb 2026 14:00:22 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/cryptocurrencies"
              },
              "_": "Cryptocurrencies"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/jeffrey-epstein"
              },
              "_": "Jeffrey Epstein"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-news"
              },
              "_": "US news"
            }
          ],
          "dc:creator": "Adam Willems",
          "contentSnippet": "Newly released documents detail convicted sex offender’s early backing of bitcoin and Coinbase \nMillions of files related to Jeffrey Epstein have brought to light his ties to the highest echelons of the cryptocurrency industry.\nDocuments published last week by the US Department of Justice reveal Epstein bankrolled the “principal home and funding source” for bitcoin, the world’s largest cryptocurrency, during its nascent stages; he also invested $3m in Coinbase in 2014, the largest cryptocurrency exchange in the US, and cut a check that same year to Blockstream, a prominent bitcoin-focused technology firm. Both crypto startups accepted Epstein’s investments in 2014 – six years after his 2008 conviction in Florida for soliciting prostitution from a minor.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-08T08:00:25Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good",
          "link": "https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good",
          "title": "‘I fell into it’: ex-criminal hackers urge Manchester pupils to use web skills for good",
          "content": "<p>Initiative aims to identify proficient gamers and coders who can help companies identify flaws in their cybersecurity </p><p>Cybercriminals, the shadowy online figures often depicted in Hollywood movies as hooded villains capable of wiping millions of pounds off the value of businesses at a keystroke, are not usually known for their candour.</p><p>But in a sixth-form college in Manchester this week, two former hackers gave the young people gathered an honest appraisal of what living a life of internet crime really looks like.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/08/i-fell-into-it-ex-criminal-hackers-urge-manchester-pupils-to-use-web-skills-for-good\">Continue reading...</a>",
          "creator": "Dan Milmo Global technology editor",
          "dc:date": "2026-02-08T08:00:25Z",
          "isoDate": "2026-02-08T08:00:25.000Z",
          "pubDate": "Sun, 08 Feb 2026 08:00:25 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/hacking"
              },
              "_": "Hacking"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/cybercrime"
              },
              "_": "Cybercrime"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/co-operative-group"
              },
              "_": "Co-operative Group"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/uk"
              },
              "_": "UK news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/internet"
              },
              "_": "Internet"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/programming"
              },
              "_": "Programming"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/games/game-culture"
              },
              "_": "Game culture"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/society/youngpeople"
              },
              "_": "Young people"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/manchester"
              },
              "_": "Manchester"
            }
          ],
          "dc:creator": "Dan Milmo Global technology editor",
          "contentSnippet": "Initiative aims to identify proficient gamers and coders who can help companies identify flaws in their cybersecurity \nCybercriminals, the shadowy online figures often depicted in Hollywood movies as hooded villains capable of wiping millions of pounds off the value of businesses at a keystroke, are not usually known for their candour.\nBut in a sixth-form college in Manchester this week, two former hackers gave the young people gathered an honest appraisal of what living a life of internet crime really looks like.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-07T16:00:06Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt",
          "link": "https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt",
          "title": "Battle of the chatbots: Anthropic and OpenAI go head-to-head over ads in their AI products",
          "content": "<p>New Anthropic campaign suggests other AI platforms will incorporate targeted ads in their chatbot conversations</p><p>The Seahawks and the Patriots aren’t the only ones gearing up for a fight.</p><p><a href=\"https://www.theguardian.com/technology/artificialintelligenceai\">AI</a> rivals Anthropic and <a href=\"https://www.theguardian.com/technology/openai\">OpenAI</a> have launched a war of ads trying to court corporate America during one of the biggest entertainment nights of the year.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/07/ai-chatbots-anthropic-openai-claude-chatgpt\">Continue reading...</a>",
          "creator": "Sanya Mansoor",
          "dc:date": "2026-02-07T16:00:06Z",
          "isoDate": "2026-02-07T16:00:06.000Z",
          "pubDate": "Sat, 07 Feb 2026 16:00:06 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/media/advertising"
              },
              "_": "Advertising"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/chatbots"
              },
              "_": "Chatbots"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/chatgpt"
              },
              "_": "ChatGPT"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/openai"
              },
              "_": "OpenAI"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/sam-altman"
              },
              "_": "Sam Altman"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-news"
              },
              "_": "US news"
            }
          ],
          "dc:creator": "Sanya Mansoor",
          "contentSnippet": "New Anthropic campaign suggests other AI platforms will incorporate targeted ads in their chatbot conversations\nThe Seahawks and the Patriots aren’t the only ones gearing up for a fight.\nAI rivals Anthropic and OpenAI have launched a war of ads trying to court corporate America during one of the biggest entertainment nights of the year.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-09T10:00:31Z",
          "guid": "https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology",
          "link": "https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology",
          "title": "I asked AI to name my wife. To the hopelessly incorrect people it cited, my deepest apologies | Martin Rowson",
          "content": "<p>Authors, a newsreader, a lawyer and an esteemed colleague: they’re all great – but I’m not married to any of them. Can we really depend on this technology?</p><p>Recently, the Rowsons accidentally invented a new game that anyone can play at home. I have yet to come up with a world-beating name for it, so for now let’s just call it “How bloody stupid is AI?” The playing of the game will change from player to player, depending on their circumstances – but essentially the rules remain the same. Ask AI a simple question about yourself, and see just how wrong it gets it.</p><p>In my case, all you need know is that while I, through the nature of my job, have a fairly large online presence, my partner (we married in 1987) has assiduously avoided having one at all. Which means that if you Google “Martin Rowson wife” in images, you may get a picture of me next to our then 14-year-old daughter or me with my friend and fellow cartoonist <a href=\"https://www.theguardian.com/profile/steven-appleby\">Steven Appleby</a>, who happens to be trans but has kept her given first name.</p> <a href=\"https://www.theguardian.com/commentisfree/2026/feb/09/who-is-my-wife-martin-rowson-ai-technology\">Continue reading...</a>",
          "creator": "Martin Rowson",
          "dc:date": "2026-02-09T10:00:31Z",
          "isoDate": "2026-02-09T10:00:31.000Z",
          "pubDate": "Mon, 09 Feb 2026 10:00:31 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/uk"
              },
              "_": "UK news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/computing"
              },
              "_": "Computing"
            }
          ],
          "dc:creator": "Martin Rowson",
          "contentSnippet": "Authors, a newsreader, a lawyer and an esteemed colleague: they’re all great – but I’m not married to any of them. Can we really depend on this technology?\nRecently, the Rowsons accidentally invented a new game that anyone can play at home. I have yet to come up with a world-beating name for it, so for now let’s just call it “How bloody stupid is AI?” The playing of the game will change from player to player, depending on their circumstances – but essentially the rules remain the same. Ask AI a simple question about yourself, and see just how wrong it gets it.\nIn my case, all you need know is that while I, through the nature of my job, have a fairly large online presence, my partner (we married in 1987) has assiduously avoided having one at all. Which means that if you Google “Martin Rowson wife” in images, you may get a picture of me next to our then 14-year-old daughter or me with my friend and fellow cartoonist Steven Appleby, who happens to be trans but has kept her given first name.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-07T10:00:02Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery",
          "link": "https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery",
          "title": "Victims urge tougher action on deepfake abuse as new law comes into force",
          "content": "<p>Campaigners welcome criminalisation of non-consensual AI-generated explicit images but say law does not go far enough</p><p>Victims of deepfake image abuse have called for stronger protection against AI-generated explicit images, as the law criminalising the creation of non-consensual intimate images comes into effect.</p><p>Campaigners from Stop Image-Based Abuse delivered a <a href=\"https://www.change.org/p/deepfake-sexual-abuse-is-not-porn-demand-action-to-stop-image-based-abuse?utm_source=National-media&amp;utm_campaign=stop-deepfake-sexual-abuse&amp;utm_content=Womans-Rights&amp;utm_term=0-99&amp;utm_medium=National-petition\">petition</a> to Downing Street with more than 73,000 signatures, urging the government to introduce civil routes to justice such as takedown orders for abusive imagery on platforms and devices.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/07/campaigners-call-stronger-protection-against-ai-generated-explicit-imagery\">Continue reading...</a>",
          "creator": "Priya Bharadia",
          "dc:date": "2026-02-07T10:00:02Z",
          "isoDate": "2026-02-07T10:00:02.000Z",
          "pubDate": "Sat, 07 Feb 2026 10:00:02 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/deepfake"
              },
              "_": "Deepfake"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/society/violence-against-women-and-girls"
              },
              "_": "Violence against women and girls"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/ukcrime"
              },
              "_": "Crime"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/uk/uk"
              },
              "_": "UK news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/society/women"
              },
              "_": "Women"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/internet"
              },
              "_": "Internet"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/politics/politics"
              },
              "_": "Politics"
            }
          ],
          "dc:creator": "Priya Bharadia",
          "contentSnippet": "Campaigners welcome criminalisation of non-consensual AI-generated explicit images but say law does not go far enough\nVictims of deepfake image abuse have called for stronger protection against AI-generated explicit images, as the law criminalising the creation of non-consensual intimate images comes into effect.\nCampaigners from Stop Image-Based Abuse delivered a petition to Downing Street with more than 73,000 signatures, urging the government to introduce civil routes to justice such as takedown orders for abusive imagery on platforms and devices.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-07T14:00:04Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/07/why-has-elon-musk-merged-his-rocket-company-with-his-ai-startup",
          "link": "https://www.theguardian.com/technology/2026/feb/07/why-has-elon-musk-merged-his-rocket-company-with-his-ai-startup",
          "title": "Why has Elon Musk merged his rocket company with his AI startup?",
          "content": "<p>SpaceX’s acquisition of xAI creates business worth $1.25tn but whether premise behind deal will work is questioned</p><p>The <a href=\"https://www.theguardian.com/science/2026/feb/02/elon-musk-spacex-xai-merger\">acquisition of xAI by SpaceX</a> is a typical Elon Musk deal: big numbers backed by big ambition.</p><p>As well as extending “the light of consciousness to the stars”, as Musk described it, the transaction creates a business worth $1.25tn (£920bn) by combining Musk’s rocket company with his artificial intelligence startup. It values SpaceX at $1tn and xAI at $250bn, with a stock market flotation <a href=\"https://www.theguardian.com/business/2026/jan/28/spacex-15bn-ipo-elon-musk-birthday-planets-flotation\">expected in June</a> to time with Musk’s birthday and a planetary alignment.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/07/why-has-elon-musk-merged-his-rocket-company-with-his-ai-startup\">Continue reading...</a>",
          "creator": "Dan Milmo Global technology editor",
          "dc:date": "2026-02-07T14:00:04Z",
          "isoDate": "2026-02-07T14:00:04.000Z",
          "pubDate": "Sat, 07 Feb 2026 14:00:04 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/elon-musk"
              },
              "_": "Elon Musk"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/science/spacex"
              },
              "_": "SpaceX"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/business"
              },
              "_": "Business"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/technology"
              },
              "_": "Technology sector"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/world"
              },
              "_": "World news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/science/science"
              },
              "_": "Science"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/mergers-and-acquisitions"
              },
              "_": "Mergers and acquisitions"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/tesla"
              },
              "_": "Tesla"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/twitter"
              },
              "_": "X"
            }
          ],
          "dc:creator": "Dan Milmo Global technology editor",
          "contentSnippet": "SpaceX’s acquisition of xAI creates business worth $1.25tn but whether premise behind deal will work is questioned\nThe acquisition of xAI by SpaceX is a typical Elon Musk deal: big numbers backed by big ambition.\nAs well as extending “the light of consciousness to the stars”, as Musk described it, the transaction creates a business worth $1.25tn (£920bn) by combining Musk’s rocket company with his artificial intelligence startup. It values SpaceX at $1tn and xAI at $250bn, with a stock market flotation expected in June to time with Musk’s birthday and a planetary alignment.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-06T12:00:07Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/06/amazon-georgia-warehouse-tour-robots",
          "link": "https://www.theguardian.com/technology/2026/feb/06/amazon-georgia-warehouse-tour-robots",
          "title": "Hail our new robot overlords! Amazon warehouse tour offers glimpse of future",
          "content": "<p>At its new Stone Mountain, Georgia, facility, Roomba-like robots shuffle between stacks, another adds shipping labels while another arranges packages in pallets</p><p>One of the reasons Amazon is spending billions on robots? They don’t need bathroom breaks. Arriving a few minutes early to the public tour of Amazon’s hi-tech Stone Mountain, Georgia, warehouse, my request to visit the restroom was met with a resounding no from the security guard in the main lobby.</p><p>Between the main doors and the entrance security gate, I paced and paced after being told I would have to wait for the tour guide to collect me and other guests for a tour of the <a href=\"https://www.ajc.com/news/business/amazon-facility-is-abuzz-delivering-cyber-monday-deals-to-atlanta/LMYOUDN4XNFSPLEYQ2EAJAH2LU/\">640,000-sq-ft, four-story</a> warehouse.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/06/amazon-georgia-warehouse-tour-robots\">Continue reading...</a>",
          "creator": "Michael Sainato in Stone Mountain, Georgia",
          "dc:date": "2026-02-06T12:00:07Z",
          "isoDate": "2026-02-06T12:00:07.000Z",
          "pubDate": "Fri, 06 Feb 2026 12:00:07 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/amazon"
              },
              "_": "Amazon"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/state-of-georgia"
              },
              "_": "Georgia"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/business"
              },
              "_": "Business"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/robots"
              },
              "_": "Robots"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-news"
              },
              "_": "US news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/efinance"
              },
              "_": "E-commerce"
            }
          ],
          "dc:creator": "Michael Sainato in Stone Mountain, Georgia",
          "contentSnippet": "At its new Stone Mountain, Georgia, facility, Roomba-like robots shuffle between stacks, another adds shipping labels while another arranges packages in pallets\nOne of the reasons Amazon is spending billions on robots? They don’t need bathroom breaks. Arriving a few minutes early to the public tour of Amazon’s hi-tech Stone Mountain, Georgia, warehouse, my request to visit the restroom was met with a resounding no from the security guard in the main lobby.\nBetween the main doors and the entrance security gate, I paced and paced after being told I would have to wait for the tour guide to collect me and other guests for a tour of the 640,000-sq-ft, four-story warehouse.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-09T14:00:20Z",
          "guid": "https://www.theguardian.com/global-development/2026/feb/09/energy-colony-argentina-patagonia-uranium-nuclear-plan-backlash-over-us-interests",
          "link": "https://www.theguardian.com/global-development/2026/feb/09/energy-colony-argentina-patagonia-uranium-nuclear-plan-backlash-over-us-interests",
          "title": "‘We’re being turned into an energy colony’: Argentina’s nuclear plan faces backlash over US interests",
          "content": "<p>Push to restart uranium mining in Patagonia has sparked fears about the environmental impact and loss of sovereignty over key resources</p><p>On an outcrop above the Chubut River, one of the few to cut across the arid Patagonian steppe of southern <a href=\"https://www.theguardian.com/world/argentina\">Argentina</a>, Sergio Pichiñán points across a wide swath of scrubland to colourful rock formations on a distant hillside.</p><p>“That’s where they dug for uranium before, and when the miners left, they left the mountain destroyed, the houses abandoned, and nobody ever studied the water,” he says, citing suspicions arising from cases of cancer and skin diseases in his community. “If they want to open this back up, we’re all pretty worried around here.”</p> <a href=\"https://www.theguardian.com/global-development/2026/feb/09/energy-colony-argentina-patagonia-uranium-nuclear-plan-backlash-over-us-interests\">Continue reading...</a>",
          "creator": "Gioia Claro and Denali DeGraf in Cerro Cóndor, Argentina",
          "dc:date": "2026-02-09T14:00:20Z",
          "isoDate": "2026-02-09T14:00:20.000Z",
          "pubDate": "Mon, 09 Feb 2026 14:00:20 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/mining"
              },
              "_": "Mining"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/environment"
              },
              "_": "Environment"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/world"
              },
              "_": "World news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/nuclearpower"
              },
              "_": "Nuclear power"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-news"
              },
              "_": "US news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/energy"
              },
              "_": "Energy"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/javier-milei"
              },
              "_": "Javier Milei"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/nuclear-waste"
              },
              "_": "Nuclear waste"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/energy-industry"
              },
              "_": "Energy industry"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/business"
              },
              "_": "Business"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/iaea"
              },
              "_": "International Atomic Energy Agency (IAEA)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-foreign-policy"
              },
              "_": "US foreign policy"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/climate-crisis"
              },
              "_": "Climate crisis"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/climate-change-scepticism"
              },
              "_": "Climate science scepticism and denial"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/renewableenergy"
              },
              "_": "Renewable energy"
            }
          ],
          "dc:creator": "Gioia Claro and Denali DeGraf in Cerro Cóndor, Argentina",
          "contentSnippet": "Push to restart uranium mining in Patagonia has sparked fears about the environmental impact and loss of sovereignty over key resources\nOn an outcrop above the Chubut River, one of the few to cut across the arid Patagonian steppe of southern Argentina, Sergio Pichiñán points across a wide swath of scrubland to colourful rock formations on a distant hillside.\n“That’s where they dug for uranium before, and when the miners left, they left the mountain destroyed, the houses abandoned, and nobody ever studied the water,” he says, citing suspicions arising from cases of cancer and skin diseases in his community. “If they want to open this back up, we’re all pretty worried around here.”\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-09T05:00:52Z",
          "guid": "https://www.theguardian.com/artanddesign/2026/feb/09/china-ai-weiwei-western-censorship-home-surveillance",
          "link": "https://www.theguardian.com/artanddesign/2026/feb/09/china-ai-weiwei-western-censorship-home-surveillance",
          "title": "‘Was I scared going back to China? No’: Ai Weiwei on AI, western censorship and returning home",
          "content": "<p>He has been jailed, tracked and threatened by China’s government. What was it like pay a visit home? As he publishes a polemic about surveillance and state control, the artist relives a momentous trip to see his mother</p><p>Ai Weiwei is talking me through the decision-making process before his first visit to China in over a decade. The artist, known around the world as the most famous critic of the Chinese communist regime, had to do some fraught arithmetic before deciding to head back home.</p><p>Before boarding a flight with his son, who had never met the artist’s elderly mother, Ai thought back to his time in detention when his captors told him he would spend the next <a href=\"https://www.theguardian.com/artanddesign/2011/apr/03/ai-weiwei-detained-chinese-police\">13 years in custody on bogus charges</a>: “They said, ‘When you come out, your son won’t recognise you.’ That was very heavy and really the only moment that touched me.”</p> <a href=\"https://www.theguardian.com/artanddesign/2026/feb/09/china-ai-weiwei-western-censorship-home-surveillance\">Continue reading...</a>",
          "creator": "Lanre Bakare",
          "dc:date": "2026-02-09T05:00:52Z",
          "isoDate": "2026-02-09T05:00:52.000Z",
          "pubDate": "Mon, 09 Feb 2026 05:00:52 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/artanddesign/ai-weiwei"
              },
              "_": "Ai Weiwei"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/artanddesign/artanddesign"
              },
              "_": "Art and design"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/culture/culture"
              },
              "_": "Culture"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/china"
              },
              "_": "China"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/censorship"
              },
              "_": "Censorship"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/asia-pacific"
              },
              "_": "Asia Pacific"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/world/world"
              },
              "_": "World news"
            }
          ],
          "dc:creator": "Lanre Bakare",
          "contentSnippet": "He has been jailed, tracked and threatened by China’s government. What was it like pay a visit home? As he publishes a polemic about surveillance and state control, the artist relives a momentous trip to see his mother\nAi Weiwei is talking me through the decision-making process before his first visit to China in over a decade. The artist, known around the world as the most famous critic of the Chinese communist regime, had to do some fraught arithmetic before deciding to head back home.\nBefore boarding a flight with his son, who had never met the artist’s elderly mother, Ai thought back to his time in detention when his captors told him he would spend the next 13 years in custody on bogus charges: “They said, ‘When you come out, your son won’t recognise you.’ That was very heavy and really the only moment that touched me.”\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-07T16:00:07Z",
          "guid": "https://www.theguardian.com/us-news/2026/feb/07/california-monterey-park-stop-datacenter-construction",
          "link": "https://www.theguardian.com/us-news/2026/feb/07/california-monterey-park-stop-datacenter-construction",
          "title": "Rage against the machine: a California community rallied against a datacenter – and won",
          "content": "<p>Organizers in Monterey Park took inspiration from other US cities to fight against the construction of a giant datacenter</p><p>When a southern California city council proposed building a giant datacenter the size of four football fields last December, five residents vowed to stop it.</p><p>Through a frenetic word-of-mouth campaign, the small group raised awareness about the proposed facility in Monterey Park, a small city east of Los Angeles known affectionately as the country’s first suburban Chinatown.</p> <a href=\"https://www.theguardian.com/us-news/2026/feb/07/california-monterey-park-stop-datacenter-construction\">Continue reading...</a>",
          "creator": "Claire Wang",
          "dc:date": "2026-02-07T16:00:07Z",
          "isoDate": "2026-02-07T16:00:07.000Z",
          "pubDate": "Sat, 07 Feb 2026 16:00:07 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/us-news"
              },
              "_": "US news"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/artificialintelligenceai"
              },
              "_": "AI (artificial intelligence)"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/california"
              },
              "_": "California"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/us-news/west-coast"
              },
              "_": "West Coast"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/energy"
              },
              "_": "Energy"
            }
          ],
          "dc:creator": "Claire Wang",
          "contentSnippet": "Organizers in Monterey Park took inspiration from other US cities to fight against the construction of a giant datacenter\nWhen a southern California city council proposed building a giant datacenter the size of four football fields last December, five residents vowed to stop it.\nThrough a frenetic word-of-mouth campaign, the small group raised awareness about the proposed facility in Monterey Park, a small city east of Los Angeles known affectionately as the country’s first suburban Chinatown.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-05T15:00:39Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/05/cryptocurrency-ethereum-bitcoin-industry",
          "link": "https://www.theguardian.com/technology/2026/feb/05/cryptocurrency-ethereum-bitcoin-industry",
          "title": "How cryptocurrency’s second largest coin missed out on the industry’s boom",
          "content": "<p>A leaked pitch to reshape Ethereum’s leadership exposed deep divisions over politics, power and ether’s static price</p><p>US <a href=\"https://www.theguardian.com/technology/cryptocurrencies\">crypto</a> developer Danny Ryan submitted a proposal in November 2024 to Vitalik Buterin, the founder and symbolic leader of Ethereum, a prominent <a href=\"https://www.theguardian.com/commentisfree/2022/jan/15/will-blockchain-fulfil-its-democratic-promise-or-will-it-become-a-tool-of-big-tech\">blockchain</a> powering the world’s second-largest cryptocurrency. Ryan, who had <a href=\"https://www.youtube.com/watch?v=zvODqTUAPN0\">worked</a> for seven years at the Ethereum Foundation (EF), Ethereum’s de facto governing body, suggested that Ethereum could be on the cusp of an era-defining shift.</p><p>Since its founding in 2014, the foundation had prioritized technical upgrades and had avoided centralizing power while its user base was growing, but Ethereum had now grown up, and the cryptocurrency world around it had grown up, too. The EF could now “exercise a stronger voice” without compromising its ethos of decentralization, Ryan said – and he was open to leading that charge if appointed as the foundation’s new executive director.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/05/cryptocurrency-ethereum-bitcoin-industry\">Continue reading...</a>",
          "creator": "Adam Willems",
          "dc:date": "2026-02-05T15:00:39Z",
          "isoDate": "2026-02-05T15:00:39.000Z",
          "pubDate": "Thu, 05 Feb 2026 15:00:39 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/cryptocurrencies"
              },
              "_": "Cryptocurrencies"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/bitcoin"
              },
              "_": "Bitcoin"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/efinance"
              },
              "_": "E-commerce"
            }
          ],
          "dc:creator": "Adam Willems",
          "contentSnippet": "A leaked pitch to reshape Ethereum’s leadership exposed deep divisions over politics, power and ether’s static price\nUS crypto developer Danny Ryan submitted a proposal in November 2024 to Vitalik Buterin, the founder and symbolic leader of Ethereum, a prominent blockchain powering the world’s second-largest cryptocurrency. Ryan, who had worked for seven years at the Ethereum Foundation (EF), Ethereum’s de facto governing body, suggested that Ethereum could be on the cusp of an era-defining shift.\nSince its founding in 2014, the foundation had prioritized technical upgrades and had avoided centralizing power while its user base was growing, but Ethereum had now grown up, and the cryptocurrency world around it had grown up, too. The EF could now “exercise a stronger voice” without compromising its ethos of decentralization, Ryan said – and he was open to leading that charge if appointed as the foundation’s new executive director.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-04T07:00:36Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/04/fairphone-6-review-cheaper-repairable-longer-lasting-android",
          "link": "https://www.theguardian.com/technology/2026/feb/04/fairphone-6-review-cheaper-repairable-longer-lasting-android",
          "title": "Fairphone 6 review: cheaper, repairable and longer-lasting Android",
          "content": "<p>Sustainable smartphone takes a step forward with modular accessories, a good screen and mid-range performance</p><p>The Dutch ethical smartphone brand Fairphone is back with its six-generation Android, aiming to make its repairable phone more modern, modular, affordable and desirable, with screw-in accessories and a user-replaceable battery.</p><p>The Fairphone 6 costs £499 (€599), making it cheaper <a href=\"https://www.theguardian.com/technology/2023/sep/08/fairphone-5-review-could-this-be-the-first-phone-to-last-10-years\">than previous models</a> and pitting it squarely against budget champs such as the <a href=\"https://www.theguardian.com/technology/2025/apr/15/pixel-9a-review-google-cut-price-android-winner\">Google Pixel 9a</a> and the <a href=\"https://www.theguardian.com/technology/2025/mar/17/nothing-phone-3a-pro-review-real-zoom-camera-battery-life-android\">Nothing Phone 3a Pro</a>, while being repairable at home with long-term software support and a five-year warranty. On paper it sounds like the ideal phone to see out the decade.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/04/fairphone-6-review-cheaper-repairable-longer-lasting-android\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2026-02-04T07:00:36Z",
          "isoDate": "2026-02-04T07:00:36.000Z",
          "pubDate": "Wed, 04 Feb 2026 07:00:36 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/smartphones"
              },
              "_": "Smartphones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/android"
              },
              "_": "Android"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/mobilephones"
              },
              "_": "Mobile phones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/environment/ethical-living"
              },
              "_": "Ethical and green living"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/business/ethicalbusiness"
              },
              "_": "Ethical business"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "Sustainable smartphone takes a step forward with modular accessories, a good screen and mid-range performance\nThe Dutch ethical smartphone brand Fairphone is back with its six-generation Android, aiming to make its repairable phone more modern, modular, affordable and desirable, with screw-in accessories and a user-replaceable battery.\nThe Fairphone 6 costs £499 (€599), making it cheaper than previous models and pitting it squarely against budget champs such as the Google Pixel 9a and the Nothing Phone 3a Pro, while being repairable at home with long-term software support and a five-year warranty. On paper it sounds like the ideal phone to see out the decade.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2025-10-30T07:00:55Z",
          "guid": "https://www.theguardian.com/technology/2025/oct/30/google-pixel-10-pro-fold-review-dust-resistant-foldable-phone-screen-ai",
          "link": "https://www.theguardian.com/technology/2025/oct/30/google-pixel-10-pro-fold-review-dust-resistant-foldable-phone-screen-ai",
          "title": "Google Pixel 10 Pro Fold review: dust-resistant and more durable foldable phone",
          "content": "<p>Book-style Android with cutting-edge AI, good cameras and great tablet screen for media and multitasking on the go</p><p>Google’s third-generation folding phone promises to be more durable than all others as the first with full water and dust resistance while also packing lots of advanced AI and an adaptable set of cameras.</p><p>The Pixel 10 Pro Fold builds on last year’s excellent <a href=\"https://www.theguardian.com/technology/2024/sep/12/google-pixel-9-pro-fold-review-the-ideal-foldable-phone-design-tablet-screen\">9 Pro Fold</a> by doing away with gears in the hinge along its spine allowing it to deal with dust, which has been the achilles heel of all foldable phones until now, gumming up the works in a way that just isn’t a problem for regular slab phones.</p> <a href=\"https://www.theguardian.com/technology/2025/oct/30/google-pixel-10-pro-fold-review-dust-resistant-foldable-phone-screen-ai\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2025-10-30T07:00:55Z",
          "isoDate": "2025-10-30T07:00:55.000Z",
          "pubDate": "Thu, 30 Oct 2025 07:00:55 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/pixel"
              },
              "_": "Pixel"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/google"
              },
              "_": "Google"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/alphabet"
              },
              "_": "Alphabet"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/smartphones"
              },
              "_": "Smartphones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/tablet-computer"
              },
              "_": "Tablet computers"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/android"
              },
              "_": "Android"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/mobilephones"
              },
              "_": "Mobile phones"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "Book-style Android with cutting-edge AI, good cameras and great tablet screen for media and multitasking on the go\nGoogle’s third-generation folding phone promises to be more durable than all others as the first with full water and dust resistance while also packing lots of advanced AI and an adaptable set of cameras.\nThe Pixel 10 Pro Fold builds on last year’s excellent 9 Pro Fold by doing away with gears in the hinge along its spine allowing it to deal with dust, which has been the achilles heel of all foldable phones until now, gumming up the works in a way that just isn’t a problem for regular slab phones.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2025-10-15T06:00:16Z",
          "guid": "https://www.theguardian.com/technology/2025/oct/15/iphone-air-review-apple-pursuit-absolute-thinness",
          "link": "https://www.theguardian.com/technology/2025/oct/15/iphone-air-review-apple-pursuit-absolute-thinness",
          "title": "iPhone Air review: Apple’s pursuit of absolute thinness",
          "content": "<p>Ultra-slim and light smartphone feels special, but cuts to camera and battery may be too hard to ignore for most</p><p>The iPhone Air is a technical and design marvel that asks: how much are you willing to give up for a lightweight and ultra-slender profile?</p><p>Beyond the obvious engineering effort that has gone into creating one of the slimmest phones ever made, the Air is a reductive exercise that boils down the iPhone into the absolute essentials in a premium body.</p> <a href=\"https://www.theguardian.com/technology/2025/oct/15/iphone-air-review-apple-pursuit-absolute-thinness\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2025-10-15T06:00:16Z",
          "isoDate": "2025-10-15T06:00:16.000Z",
          "pubDate": "Wed, 15 Oct 2025 06:00:16 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/iphone"
              },
              "_": "iPhone"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/apple"
              },
              "_": "Apple"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/smartphones"
              },
              "_": "Smartphones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/mobilephones"
              },
              "_": "Mobile phones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/telecoms"
              },
              "_": "Telecoms"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "Ultra-slim and light smartphone feels special, but cuts to camera and battery may be too hard to ignore for most\nThe iPhone Air is a technical and design marvel that asks: how much are you willing to give up for a lightweight and ultra-slender profile?\nBeyond the obvious engineering effort that has gone into creating one of the slimmest phones ever made, the Air is a reductive exercise that boils down the iPhone into the absolute essentials in a premium body.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2025-10-08T06:00:18Z",
          "guid": "https://www.theguardian.com/technology/2025/oct/08/apple-iphone-17-pro-review-different-looks-zoom-battery-life",
          "link": "https://www.theguardian.com/technology/2025/oct/08/apple-iphone-17-pro-review-different-looks-zoom-battery-life",
          "title": "Apple iPhone 17 Pro review: different looks but still all about the zoom",
          "content": "<p>First new design in ages, upgraded camera, serious performance and longer battery life make it a standout year</p><p>The 17 Pro is Apple’s biggest redesign of the iPhone in years, chucking out the old titanium sides and all-glass backs for a new aluminium unibody design, a huge full-width camera lump on the back and some bolder colours.</p><p>That alone will make the iPhone 17 Pro popular for those looking to upgrade and be seen with the newest model. But with the change comes an increase in price to £1,099 (€1,299/$1,099/A$1,999), crossing the £1,000 barrier for the first time for Apple’s smallest Pro phone, which now comes with double the starting storage.</p> <a href=\"https://www.theguardian.com/technology/2025/oct/08/apple-iphone-17-pro-review-different-looks-zoom-battery-life\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2025-10-08T06:00:18Z",
          "isoDate": "2025-10-08T06:00:18.000Z",
          "pubDate": "Wed, 08 Oct 2025 06:00:18 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/apple"
              },
              "_": "Apple"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/iphone"
              },
              "_": "iPhone"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/smartphones"
              },
              "_": "Smartphones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/mobilephones"
              },
              "_": "Mobile phones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "First new design in ages, upgraded camera, serious performance and longer battery life make it a standout year\nThe 17 Pro is Apple’s biggest redesign of the iPhone in years, chucking out the old titanium sides and all-glass backs for a new aluminium unibody design, a huge full-width camera lump on the back and some bolder colours.\nThat alone will make the iPhone 17 Pro popular for those looking to upgrade and be seen with the newest model. But with the change comes an increase in price to £1,099 (€1,299/$1,099/A$1,999), crossing the £1,000 barrier for the first time for Apple’s smallest Pro phone, which now comes with double the starting storage.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-10T07:00:15Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/10/beats-powerbeats-fit-review-apple-compact-workout-earbuds-revamped",
          "link": "https://www.theguardian.com/technology/2026/feb/10/beats-powerbeats-fit-review-apple-compact-workout-earbuds-revamped",
          "title": "Beats Powerbeats Fit review: Apple’s compact workout earbuds revamped",
          "content": "<p>Secure, noise-cancelling Bluetooth earbuds that shine for exercise and everyday use on Android and iPhone</p><p>Apple’s revamped compact workout Beats earbuds stick to a winning formula, while slimming down and improving comfort.</p><p>The new Powerbeats Fit are the direct successors to 2022’s popular <a href=\"https://www.theguardian.com/technology/2022/jan/31/beats-fit-pro-review-apple-workout-ready-airpods-pro-rivals-battery-price\">Beats Fit Pro</a>, costing £200 (€230/$200/A$330). They sit alongside the recently redesigned <a href=\"https://www.theguardian.com/technology/2025/feb/12/beats-powerbeats-pro-2-review-apple-best-workout-earbuds-headphones\">Powerbeats Pro 2</a> as Apple’s fitness alternatives of the AirPods.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/10/beats-powerbeats-fit-review-apple-compact-workout-earbuds-revamped\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2026-02-10T07:00:15Z",
          "isoDate": "2026-02-10T07:00:15.000Z",
          "pubDate": "Tue, 10 Feb 2026 07:00:15 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/headphones"
              },
              "_": "Headphones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/bluetooth"
              },
              "_": "Bluetooth"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/gadgets"
              },
              "_": "Gadgets"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/apple"
              },
              "_": "Apple"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "Secure, noise-cancelling Bluetooth earbuds that shine for exercise and everyday use on Android and iPhone\nApple’s revamped compact workout Beats earbuds stick to a winning formula, while slimming down and improving comfort.\nThe new Powerbeats Fit are the direct successors to 2022’s popular Beats Fit Pro, costing £200 (€230/$200/A$330). They sit alongside the recently redesigned Powerbeats Pro 2 as Apple’s fitness alternatives of the AirPods.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-09T07:00:53Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/09/logitech-mx-master-4-review-the-best-work-mouse-you-can-buy",
          "link": "https://www.theguardian.com/technology/2026/feb/09/logitech-mx-master-4-review-the-best-work-mouse-you-can-buy",
          "title": "Logitech MX Master 4 review: the best work mouse you can buy",
          "content": "<p>Ergonomic shape, quality materials and satisfying clicks, now with novel haptic feedback and repairable design</p><p>Logitech’s latest productivity power-house updates one of the greatest mice of all time with smoother materials, a repair-friendly design and a haptic motor for phone-like vibrations on your desktop.</p><p>The MX Master 4 is the latest evolution in a line of pioneering mice that dates back more than 20 years and has long been the mouse to beat for everything but hardcore PC gaming. Having given it a magnetic free-spinning scroll wheel, plenty of buttons and precise tracking, now Logitech is trying something different for its seven-generation: the ability to tap back at you.</p> <a href=\"https://www.theguardian.com/technology/2026/feb/09/logitech-mx-master-4-review-the-best-work-mouse-you-can-buy\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2026-02-09T07:00:53Z",
          "isoDate": "2026-02-09T07:00:53.000Z",
          "pubDate": "Mon, 09 Feb 2026 07:00:53 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/gadgets"
              },
              "_": "Gadgets"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/computing"
              },
              "_": "Computing"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "Ergonomic shape, quality materials and satisfying clicks, now with novel haptic feedback and repairable design\nLogitech’s latest productivity power-house updates one of the greatest mice of all time with smoother materials, a repair-friendly design and a haptic motor for phone-like vibrations on your desktop.\nThe MX Master 4 is the latest evolution in a line of pioneering mice that dates back more than 20 years and has long been the mouse to beat for everything but hardcore PC gaming. Having given it a magnetic free-spinning scroll wheel, plenty of buttons and precise tracking, now Logitech is trying something different for its seven-generation: the ability to tap back at you.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-05T07:00:24Z",
          "guid": "https://www.theguardian.com/technology/2026/feb/05/google-pixel-buds-2a-review-great-bluetooth-earbuds-at-a-good-price",
          "link": "https://www.theguardian.com/technology/2026/feb/05/google-pixel-buds-2a-review-great-bluetooth-earbuds-at-a-good-price",
          "title": "Google Pixel Buds 2a review: great Bluetooth earbuds at a good price",
          "content": "<p>Compact and comfortable Pixel Buds have noise cancelling, decent battery life and good everyday sound</p><p>Google’s latest budget Pixel earbuds are smaller, lighter, more comfortable and have noise cancelling, plus a case that allows you to replace the battery at home.</p><p>The Pixel Buds 2a uses the design of the excellent Pixel Buds Pro 2 with a few high-end features at a more palatable £109 (€129/$129/A$239) price, undercutting rivals in the process.</p><p><strong>Water resistance:</strong> IP54 (splash resistant)</p><p><strong>Connectivity:</strong> Bluetooth 5.4 (SBC, AAC)</p><p><strong>Battery life:</strong> 7h with ANC (20h with case)</p><p><strong>Earbud dimensions:</strong> 23.1 x 16 x 17.8mm</p><p><strong>Earbud weight:</strong> 4.7g each</p><p><strong>Driver size:</strong> 11mm</p><p><strong>Charging case dimensions:</strong> 50 x 57.2 x 24.5mm</p><p><strong>Charging case weight:</strong> 47.6g</p><p><strong>Case charging:</strong> USB-C</p> <a href=\"https://www.theguardian.com/technology/2026/feb/05/google-pixel-buds-2a-review-great-bluetooth-earbuds-at-a-good-price\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2026-02-05T07:00:24Z",
          "isoDate": "2026-02-05T07:00:24.000Z",
          "pubDate": "Thu, 05 Feb 2026 07:00:24 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/google"
              },
              "_": "Google"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/pixel"
              },
              "_": "Pixel"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/alphabet"
              },
              "_": "Alphabet"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/headphones"
              },
              "_": "Headphones"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/bluetooth"
              },
              "_": "Bluetooth"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/gadgets"
              },
              "_": "Gadgets"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "Compact and comfortable Pixel Buds have noise cancelling, decent battery life and good everyday sound\nGoogle’s latest budget Pixel earbuds are smaller, lighter, more comfortable and have noise cancelling, plus a case that allows you to replace the battery at home.\nThe Pixel Buds 2a uses the design of the excellent Pixel Buds Pro 2 with a few high-end features at a more palatable £109 (€129/$129/A$239) price, undercutting rivals in the process.\nWater resistance: IP54 (splash resistant)\nConnectivity: Bluetooth 5.4 (SBC, AAC)\nBattery life: 7h with ANC (20h with case)\nEarbud dimensions: 23.1 x 16 x 17.8mm\nEarbud weight: 4.7g each\nDriver size: 11mm\nCharging case dimensions: 50 x 57.2 x 24.5mm\nCharging case weight: 47.6g\nCase charging: USB-C\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2025-11-03T07:00:26Z",
          "guid": "https://www.theguardian.com/technology/2025/nov/03/oakley-meta-vanguard-review-fantastic-ai-running-glasses-linked-to-garmin",
          "link": "https://www.theguardian.com/technology/2025/nov/03/oakley-meta-vanguard-review-fantastic-ai-running-glasses-linked-to-garmin",
          "title": "Oakley Meta Vanguard review: fantastic AI running glasses linked to Garmin",
          "content": "<p>Camera-equipped sports shades have secure fit, open-ear speakers, mics and advanced Garmin and Strava integration</p><p>The Oakley Meta Vanguard are new displayless AI glasses designed for running, cycling and action sports with deep Garmin and Strava integration, which may make them the first smart glasses for sport that actually work.</p><p>They are a replacement for running glasses, open-ear headphones and a head-mounted action cam all in one, and are the latest product of Meta’s partnership with the sunglasses conglomerate <a href=\"https://www.essilorluxottica.com/en/\">EssilorLuxottica</a>, the owner of Ray-Ban, Oakley and many other top brands.</p> <a href=\"https://www.theguardian.com/technology/2025/nov/03/oakley-meta-vanguard-review-fantastic-ai-running-glasses-linked-to-garmin\">Continue reading...</a>",
          "creator": "Samuel Gibbs Consumer technology editor",
          "dc:date": "2025-11-03T07:00:26Z",
          "isoDate": "2025-11-03T07:00:26.000Z",
          "pubDate": "Mon, 03 Nov 2025 07:00:26 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/meta"
              },
              "_": "Meta"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/wearable-technology"
              },
              "_": "Wearable technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/gadgets"
              },
              "_": "Gadgets"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/garmin"
              },
              "_": "Garmin"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/lifeandstyle/running"
              },
              "_": "Running"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/lifeandstyle/lifeandstyle"
              },
              "_": "Life and style"
            }
          ],
          "dc:creator": "Samuel Gibbs Consumer technology editor",
          "contentSnippet": "Camera-equipped sports shades have secure fit, open-ear speakers, mics and advanced Garmin and Strava integration\nThe Oakley Meta Vanguard are new displayless AI glasses designed for running, cycling and action sports with deep Garmin and Strava integration, which may make them the first smart glasses for sport that actually work.\nThey are a replacement for running glasses, open-ear headphones and a head-mounted action cam all in one, and are the latest product of Meta’s partnership with the sunglasses conglomerate EssilorLuxottica, the owner of Ray-Ban, Oakley and many other top brands.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-09T14:29:36Z",
          "guid": "https://www.theguardian.com/games/2026/feb/09/how-a-decades-old-video-game-has-helped-me-defeat-the-doomscroll",
          "link": "https://www.theguardian.com/games/2026/feb/09/how-a-decades-old-video-game-has-helped-me-defeat-the-doomscroll",
          "title": "How a decades-old video game has helped me defeat the doomscroll",
          "content": "<p>Trading social media for Pokémon battles and evolutions in Kanto on a Game Boy Advance has been surprisingly serene</p><p>Cutting back on doomscrolling must be one of the hardest new year resolutions to keep. Instinctively tapping on the usual suspects on your phone’s home screen becomes a reflex, and vast quantities of money and user data have been specifically employed to keep you reaching for the phone, ingraining it into our work, leisure and social lives. You’ll get no shame from me if you love your phone and have a healthy relationship with your apps, but I’ve found myself struggling lately.</p><p>This year, I’m attempting to cut back on screen time – sort of. I’m replacing the sleek oblong of my smartphone with something a little more fuzzy and nostalgic. In an attempt to dismantle my bad habit, I’m closing the feeds of instant updates and instead carrying around a Game Boy Advance. I’ve been playing Pokémon FireRed, a remake of the very first Pokémon games, which turn 30 this month. Even this refreshed version is more than two decades old.</p> <a href=\"https://www.theguardian.com/games/2026/feb/09/how-a-decades-old-video-game-has-helped-me-defeat-the-doomscroll\">Continue reading...</a>",
          "creator": "Michael Roberts",
          "dc:date": "2026-02-09T14:29:36Z",
          "isoDate": "2026-02-09T14:29:36.000Z",
          "pubDate": "Mon, 09 Feb 2026 14:29:36 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/games/games"
              },
              "_": "Games"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/culture/culture"
              },
              "_": "Culture"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/games/pokemon"
              },
              "_": "Pokémon"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/games/nintendo"
              },
              "_": "Nintendo"
            }
          ],
          "dc:creator": "Michael Roberts",
          "contentSnippet": "Trading social media for Pokémon battles and evolutions in Kanto on a Game Boy Advance has been surprisingly serene\nCutting back on doomscrolling must be one of the hardest new year resolutions to keep. Instinctively tapping on the usual suspects on your phone’s home screen becomes a reflex, and vast quantities of money and user data have been specifically employed to keep you reaching for the phone, ingraining it into our work, leisure and social lives. You’ll get no shame from me if you love your phone and have a healthy relationship with your apps, but I’ve found myself struggling lately.\nThis year, I’m attempting to cut back on screen time – sort of. I’m replacing the sleek oblong of my smartphone with something a little more fuzzy and nostalgic. In an attempt to dismantle my bad habit, I’m closing the feeds of instant updates and instead carrying around a Game Boy Advance. I’ve been playing Pokémon FireRed, a remake of the very first Pokémon games, which turn 30 this month. Even this refreshed version is more than two decades old.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-09T11:30:02Z",
          "guid": "https://www.theguardian.com/australia-news/2026/feb/09/australian-government-roblox-rating-child-safety",
          "link": "https://www.theguardian.com/australia-news/2026/feb/09/australian-government-roblox-rating-child-safety",
          "title": "‘Disturbing’: Australian government demands review of Roblox’s PG rating after reports of child grooming",
          "content": "<p>Communications minister Anika Wells points to media reports alleging children can access spaces meant for adults which include explicit sexual content</p><ul><li><p><a href=\"https://www.theguardian.com/australia-news/live/2026/feb/10/sydney-protest-isaac-herzog-arrests-police-violence-question-time-libspill-liberals-leadership-challenge-sussan-ley-angus-taylor-senate-estimates-question-time-anthony-albanese-ntwnfb\">Follow our Australia news live blog for latest updates</a></p></li><li><p>Get our <a href=\"https://www.theguardian.com/email-newsletters?CMP=cvau_sfl\">breaking news email</a>, <a href=\"https://app.adjust.com/w4u7jx3\">free app</a> or <a href=\"https://www.theguardian.com/australia-news/series/full-story?CMP=cvau_sfl\">daily news podcast</a></p></li></ul><p>Reports of child grooming and vile content on popular game service Roblox has “alarmed” the communications minister, Anika Wells, who has demanded the platform explain how it is addressing sexual and self-harm material, and that its PG rating be examined by the Australian Classification Board.</p><p>The eSafety commissioner has also written to the game platform, saying it plans to test the promises it made about keeping children safe online, including disabling chat features and making underage accounts private.</p> <a href=\"https://www.theguardian.com/australia-news/2026/feb/09/australian-government-roblox-rating-child-safety\">Continue reading...</a>",
          "creator": "Josh Butler",
          "dc:date": "2026-02-09T11:30:02Z",
          "isoDate": "2026-02-09T11:30:02.000Z",
          "pubDate": "Mon, 09 Feb 2026 11:30:02 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/games/roblox"
              },
              "_": "Roblox"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/australia-news/australian-politics"
              },
              "_": "Australian politics"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/australia-news/social-media-ban"
              },
              "_": "Social media ban"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/games/games"
              },
              "_": "Games"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/technology/technology"
              },
              "_": "Technology"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/australia-news/australia-news"
              },
              "_": "Australia news"
            }
          ],
          "dc:creator": "Josh Butler",
          "contentSnippet": "Communications minister Anika Wells points to media reports alleging children can access spaces meant for adults which include explicit sexual content\n\nFollow our Australia news live blog for latest updates\n\nGet our breaking news email, free app or daily news podcast\n\nReports of child grooming and vile content on popular game service Roblox has “alarmed” the communications minister, Anika Wells, who has demanded the platform explain how it is addressing sexual and self-harm material, and that its PG rating be examined by the Australian Classification Board.\nThe eSafety commissioner has also written to the game platform, saying it plans to test the promises it made about keeping children safe online, including disabling chat features and making underage accounts private.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-06T14:30:08Z",
          "guid": "https://www.theguardian.com/games/2026/feb/06/how-pokemon-conquered-the-world-keza-macdonald-super-nintendo-book-extract",
          "link": "https://www.theguardian.com/games/2026/feb/06/how-pokemon-conquered-the-world-keza-macdonald-super-nintendo-book-extract",
          "title": "‘Christian pastors declared Pikachu to be a demon’: how Pokémon went from moral panic to unifying global hit",
          "content": "<p>Nintendo’s monster-collecting franchise was pilloried as a ‘pestilential Ponzi scheme’ in the 90s. But as its celebrates its 30th birthday, it now stands as a powerful example of video games’ ability to connect people</p><p>When I was 11, it was my dream to compete in the Pokémon World Championships, held in Sydney in 2000. I’d come across it in a magazine, and then earnestly set about training teams of creatures, transferring them between my Pokémon Red Game Boy cartridge and the 3D arenas of Pokémon Stadium on the Nintendo 64. I never made it as a player but I did finally achieve this dream on my 26th birthday, when I went to Washington DC to cover the world championships as a journalist. I was deeply moved. Presided over by a giant inflatable Pikachu hanging from the ceiling, the competitors and spectators were united in an unselfconscious love for these games, with their colourful menageries and heartfelt messaging about trust, friendship and hard work.</p><p>It is emotional to see the winners lift&nbsp;their trophies after a tense final round of battles, as overwhelmed by their success as any sportsperson. But it’s the pride that the smaller competitors’ parents show in their mini champions that really gets to me. During the first wave of Pokémania in the late 90s, Pokémon was viewed with suspicion by most adults. Now that the&nbsp;first generation of Pokémaniacs have grown&nbsp;up, even becoming parents&nbsp;ourselves, we see it for what it&nbsp;is: an imaginative, challenging and really rather wholesome series of games that&nbsp;rewards every hour that children devote to it.</p> <a href=\"https://www.theguardian.com/games/2026/feb/06/how-pokemon-conquered-the-world-keza-macdonald-super-nintendo-book-extract\">Continue reading...</a>",
          "creator": "Keza MacDonald",
          "dc:date": "2026-02-06T14:30:08Z",
          "isoDate": "2026-02-06T14:30:08.000Z",
          "pubDate": "Fri, 06 Feb 2026 14:30:08 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/games/pokemon"
              },
              "_": "Pokémon"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/games/games"
              },
              "_": "Games"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/culture/culture"
              },
              "_": "Culture"
            }
          ],
          "dc:creator": "Keza MacDonald",
          "contentSnippet": "Nintendo’s monster-collecting franchise was pilloried as a ‘pestilential Ponzi scheme’ in the 90s. But as its celebrates its 30th birthday, it now stands as a powerful example of video games’ ability to connect people\nWhen I was 11, it was my dream to compete in the Pokémon World Championships, held in Sydney in 2000. I’d come across it in a magazine, and then earnestly set about training teams of creatures, transferring them between my Pokémon Red Game Boy cartridge and the 3D arenas of Pokémon Stadium on the Nintendo 64. I never made it as a player but I did finally achieve this dream on my 26th birthday, when I went to Washington DC to cover the world championships as a journalist. I was deeply moved. Presided over by a giant inflatable Pikachu hanging from the ceiling, the competitors and spectators were united in an unselfconscious love for these games, with their colourful menageries and heartfelt messaging about trust, friendship and hard work.\nIt is emotional to see the winners lift their trophies after a tense final round of battles, as overwhelmed by their success as any sportsperson. But it’s the pride that the smaller competitors’ parents show in their mini champions that really gets to me. During the first wave of Pokémania in the late 90s, Pokémon was viewed with suspicion by most adults. Now that the first generation of Pokémaniacs have grown up, even becoming parents ourselves, we see it for what it is: an imaginative, challenging and really rather wholesome series of games that rewards every hour that children devote to it.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-06T14:00:08Z",
          "guid": "https://www.theguardian.com/games/2026/feb/06/mewgenics-review-infinite-ways-to-skin-a-cat",
          "link": "https://www.theguardian.com/games/2026/feb/06/mewgenics-review-infinite-ways-to-skin-a-cat",
          "title": "Mewgenics review – infinite ways to skin a cat",
          "content": "<p><strong>PC; Edmund McMillen and Tyler Glaiel <br></strong>This mischievous roguelike escapade featuring utterly fiendish felines is compelling, and impressively tasteless</p><p>You know that old saying about cats having nine lives? Well, as far as Mewgenics is concerned, you can forget it – and you can also forget the idea that a game about cats has to be in any way cute. These kitties are red in tooth and claw, prone to strange mutations, and strictly limited to just the one life, which often ends swiftly and brutally.</p><p>Such is the nature of roguelike, a format that has spawned some of the biggest indie hits of the past 20 years. In these games, failure is permanent; dying sends you back not to the last checkpoint but back to the beginning, the game reshuffling its elements into a new shape for your next run. And so it goes in Mewgenics. You gather a party of four felines and send them out on a questing journey, from which they return victorious or not at all.</p> <a href=\"https://www.theguardian.com/games/2026/feb/06/mewgenics-review-infinite-ways-to-skin-a-cat\">Continue reading...</a>",
          "creator": "Alex Spencer",
          "dc:date": "2026-02-06T14:00:08Z",
          "isoDate": "2026-02-06T14:00:08.000Z",
          "pubDate": "Fri, 06 Feb 2026 14:00:08 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/games/games"
              },
              "_": "Games"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/culture/culture"
              },
              "_": "Culture"
            }
          ],
          "dc:creator": "Alex Spencer",
          "contentSnippet": "PC; Edmund McMillen and Tyler Glaiel \nThis mischievous roguelike escapade featuring utterly fiendish felines is compelling, and impressively tasteless\nYou know that old saying about cats having nine lives? Well, as far as Mewgenics is concerned, you can forget it – and you can also forget the idea that a game about cats has to be in any way cute. These kitties are red in tooth and claw, prone to strange mutations, and strictly limited to just the one life, which often ends swiftly and brutally.\nSuch is the nature of roguelike, a format that has spawned some of the biggest indie hits of the past 20 years. In these games, failure is permanent; dying sends you back not to the last checkpoint but back to the beginning, the game reshuffling its elements into a new shape for your next run. And so it goes in Mewgenics. You gather a party of four felines and send them out on a questing journey, from which they return victorious or not at all.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "date": "2026-02-04T12:35:42Z",
          "guid": "https://www.theguardian.com/games/2026/feb/04/gamings-new-coming-of-age-genre-embraces-millennial-cringe",
          "link": "https://www.theguardian.com/games/2026/feb/04/gamings-new-coming-of-age-genre-embraces-millennial-cringe",
          "title": "Gaming’s new coming-of-age genre embraces ‘millennial cringe’",
          "content": "<p>Perfect Tides perfectly captures the older millennial college experience, and a time when nobody worried about being embarrassing online</p><p>• <a href=\"https://www.theguardian.com/info/ng-interactive/2021/nov/24/sign-up-for-pushing-buttons-keza-macdonalds-weekly-look-at-the-world-of-gaming\"><strong>Don’t get Pushing Buttons delivered to your inbox? Sign up here</strong></a></p><p>I’ve noticed an interesting micro-trend emerging in the last few years: millennial nostalgia games. Not just ones that adopt the aesthetic of Y2K gaming – think <a href=\"https://www.theguardian.com/games/article/2024/may/08/crow-country-review-survival-horror-game-silent-hill\">Crow Country</a> or <a href=\"https://www.theguardian.com/games/2024/oct/23/fear-the-spotlight-review-cozy-game-pals-blumhouse-games\">Fear the Spotlight</a>’s deliberately retro PS1-style fuzzy polygons – but semi-autobiographical games specifically <em>about</em> the millennial experience. I’ve played three in the past year. <a href=\"https://www.theguardian.com/games/2025/may/14/despelote-review-football-fans-world-cup-panic-pc-ps4-5-xbox\">Despelote</a> is set in 2002 in Ecuador and is played through the eyes of a football-obsessed eight-year-old. The <a href=\"https://www.theguardian.com/games/2025/oct/06/consume-me-review-anything-but-empty-calories\">award-winning Consume Me</a> is about being a teen girl battling disordered eating in the 00s. And this week I played a point-and-click adventure game about being a college student in the early 2000s.</p><p>Perfect Tides: Station to Station is set in New York in 2003 – a year that is the epitome of nostalgia for the micro-generation that grew up without the internet but came of age online. It was before Facebook, before the smartphone, but firmly during the era of late-night forum browsing and instant-messenger conversations. The internet wasn’t yet a vector for mass communication, but it could still bring you together with other people who loved the things that you loved, people who read the same hipster blogs and liked the same bands. The protagonist, Mara, is a student and young writer who works in her college library.</p> <a href=\"https://www.theguardian.com/games/2026/feb/04/gamings-new-coming-of-age-genre-embraces-millennial-cringe\">Continue reading...</a>",
          "creator": "Keza MacDonald",
          "dc:date": "2026-02-04T12:35:42Z",
          "isoDate": "2026-02-04T12:35:42.000Z",
          "pubDate": "Wed, 04 Feb 2026 12:35:42 GMT",
          "categories": [
            {
              "$": {
                "domain": "https://www.theguardian.com/games/games"
              },
              "_": "Games"
            },
            {
              "$": {
                "domain": "https://www.theguardian.com/culture/culture"
              },
              "_": "Culture"
            }
          ],
          "dc:creator": "Keza MacDonald",
          "contentSnippet": "Perfect Tides perfectly captures the older millennial college experience, and a time when nobody worried about being embarrassing online\n• Don’t get Pushing Buttons delivered to your inbox? Sign up here\nI’ve noticed an interesting micro-trend emerging in the last few years: millennial nostalgia games. Not just ones that adopt the aesthetic of Y2K gaming – think Crow Country or Fear the Spotlight’s deliberately retro PS1-style fuzzy polygons – but semi-autobiographical games specifically about the millennial experience. I’ve played three in the past year. Despelote is set in 2002 in Ecuador and is played through the eyes of a football-obsessed eight-year-old. The award-winning Consume Me is about being a teen girl battling disordered eating in the 00s. And this week I played a point-and-click adventure game about being a college student in the early 2000s.\nPerfect Tides: Station to Station is set in New York in 2003 – a year that is the epitome of nostalgia for the micro-generation that grew up without the internet but came of age online. It was before Facebook, before the smartphone, but firmly during the era of late-night forum browsing and instant-messenger conversations. The internet wasn’t yet a vector for mass communication, but it could still bring you together with other people who loved the things that you loved, people who read the same hipster blogs and liked the same bands. The protagonist, Mara, is a student and young writer who works in her college library.\n Continue reading..."
        },
        "pairedItem": [
          {
            "item": 8
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c3wlpqpe2z4o#0",
          "link": "https://www.bbc.com/news/articles/c3wlpqpe2z4o?at_medium=RSS&at_campaign=rss",
          "title": "Instagram and YouTube owners built 'addiction machines', trial hears",
          "content": "The tech giants are under scrutiny over social media addiction in a landmark jury trial in Los Angeles",
          "isoDate": "2026-02-10T07:25:42.000Z",
          "pubDate": "Tue, 10 Feb 2026 07:25:42 GMT",
          "contentSnippet": "The tech giants are under scrutiny over social media addiction in a landmark jury trial in Los Angeles"
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c1d67vdlk1ko#0",
          "link": "https://www.bbc.com/news/articles/c1d67vdlk1ko?at_medium=RSS&at_campaign=rss",
          "title": "Discord to start requiring face scan or ID to access adult content",
          "content": "The online chat service, which has 200 million monthly users, will blur adult content by default.",
          "isoDate": "2026-02-09T17:42:21.000Z",
          "pubDate": "Mon, 09 Feb 2026 17:42:21 GMT",
          "contentSnippet": "The online chat service, which has 200 million monthly users, will blur adult content by default."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c3093gjy2ero#0",
          "link": "https://www.bbc.com/news/articles/c3093gjy2ero?at_medium=RSS&at_campaign=rss",
          "title": "AI chatbots pose 'dangerous' risk when giving medical advice, study suggests",
          "content": "It found people using AI for health reasons found it hard to identify what advice they should trust.",
          "isoDate": "2026-02-09T16:33:29.000Z",
          "pubDate": "Mon, 09 Feb 2026 16:33:29 GMT",
          "contentSnippet": "It found people using AI for health reasons found it hard to identify what advice they should trust."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cqxdj77welpo#0",
          "link": "https://www.bbc.com/news/articles/cqxdj77welpo?at_medium=RSS&at_campaign=rss",
          "title": "EU tells Meta to let rivals run AI chatbots on WhatsApp",
          "content": "A Meta spokesperson said the EU had \"no reason\" to intervene over it changing the app in January.",
          "isoDate": "2026-02-09T12:14:35.000Z",
          "pubDate": "Mon, 09 Feb 2026 12:14:35 GMT",
          "contentSnippet": "A Meta spokesperson said the EU had \"no reason\" to intervene over it changing the app in January."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c24g457y534o#0",
          "link": "https://www.bbc.com/news/articles/c24g457y534o?at_medium=RSS&at_campaign=rss",
          "title": "Baldur's Gate to be turned into TV series - without the game's developers",
          "content": "The show will be made by Craig Mazin, who co-created the acclaimed game adaptation The Last Of Us.",
          "isoDate": "2026-02-06T16:26:08.000Z",
          "pubDate": "Fri, 06 Feb 2026 16:26:08 GMT",
          "contentSnippet": "The show will be made by Craig Mazin, who co-created the acclaimed game adaptation The Last Of Us."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cq5y5w148p5o#0",
          "link": "https://www.bbc.com/news/articles/cq5y5w148p5o?at_medium=RSS&at_campaign=rss",
          "title": "Uber ordered to pay $8.5m over claim driver raped passenger",
          "content": "The verdict is expected to influence the outcome of thousands of other cases against the ride hailing firm.",
          "isoDate": "2026-02-06T20:47:10.000Z",
          "pubDate": "Fri, 06 Feb 2026 20:47:10 GMT",
          "contentSnippet": "The verdict is expected to influence the outcome of thousands of other cases against the ride hailing firm."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cvgjg98vmzjo#0",
          "link": "https://www.bbc.com/news/articles/cvgjg98vmzjo?at_medium=RSS&at_campaign=rss",
          "title": "Google staff call for firm to cut ties with ICE",
          "content": "More than 900 Google employees signed a letter opposing company links to federal immigration actions. ",
          "isoDate": "2026-02-06T21:40:05.000Z",
          "pubDate": "Fri, 06 Feb 2026 21:40:05 GMT",
          "contentSnippet": "More than 900 Google employees signed a letter opposing company links to federal immigration actions."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cr7j7n315lmo#1",
          "link": "https://www.bbc.com/news/articles/cr7j7n315lmo?at_medium=RSS&at_campaign=rss",
          "title": "TikTok told to change 'addictive design' by EU or face massive fines",
          "content": "TikTok says it plans to challenge the \"categorically false and entirely meritless\" accusations.",
          "isoDate": "2026-02-06T13:55:46.000Z",
          "pubDate": "Fri, 06 Feb 2026 13:55:46 GMT",
          "contentSnippet": "TikTok says it plans to challenge the \"categorically false and entirely meritless\" accusations."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cy09x24q0pro#1",
          "link": "https://www.bbc.com/news/articles/cy09x24q0pro?at_medium=RSS&at_campaign=rss",
          "title": "Bitcoin falls to lowest level since Trump took office",
          "content": "The price of the digital currency has dropped significantly despite President Donald Trump’s public support.",
          "isoDate": "2026-02-06T11:15:35.000Z",
          "pubDate": "Fri, 06 Feb 2026 11:15:35 GMT",
          "contentSnippet": "The price of the digital currency has dropped significantly despite President Donald Trump’s public support."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/ce3edyx74jko#1",
          "link": "https://www.bbc.com/news/articles/ce3edyx74jko?at_medium=RSS&at_campaign=rss",
          "title": "ChatGPT boss ridiculed for online 'tantrum' over rival's Super Bowl ad",
          "content": "Commenters said Altman's lengthy post shows \"a nerve was well and truly hit\" by Anthropic's advert.",
          "isoDate": "2026-02-05T12:36:32.000Z",
          "pubDate": "Thu, 05 Feb 2026 12:36:32 GMT",
          "contentSnippet": "Commenters said Altman's lengthy post shows \"a nerve was well and truly hit\" by Anthropic's advert."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c8e50x1r237o#1",
          "link": "https://www.bbc.com/news/articles/c8e50x1r237o?at_medium=RSS&at_campaign=rss",
          "title": "UK's £8bn research fund faces 'hard decisions' as it pauses new grants",
          "content": "UKRI boss Ian Chapman said it had been told by the government to \"focus and do fewer things better\".\n",
          "isoDate": "2026-02-05T12:00:58.000Z",
          "pubDate": "Thu, 05 Feb 2026 12:00:58 GMT",
          "contentSnippet": "UKRI boss Ian Chapman said it had been told by the government to \"focus and do fewer things better\"."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c5y41r5rzrno#1",
          "link": "https://www.bbc.com/news/articles/c5y41r5rzrno?at_medium=RSS&at_campaign=rss",
          "title": "US launches plan to tackle China's critical minerals dominance",
          "content": "The event was attended by representatives of more than 50 countries, the White House said.",
          "isoDate": "2026-02-05T03:33:48.000Z",
          "pubDate": "Thu, 05 Feb 2026 03:33:48 GMT",
          "contentSnippet": "The event was attended by representatives of more than 50 countries, the White House said."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c5ydndkmvy2o#2",
          "link": "https://www.bbc.com/news/articles/c5ydndkmvy2o?at_medium=RSS&at_campaign=rss",
          "title": "Netflix and Warner Bros struggle to defend merger",
          "content": "Concerns were raised by a subcommittee including potential price rises and the future of cinemas.",
          "isoDate": "2026-02-03T23:42:06.000Z",
          "pubDate": "Tue, 03 Feb 2026 23:42:06 GMT",
          "contentSnippet": "Concerns were raised by a subcommittee including potential price rises and the future of cinemas."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cn0k670n0ydo#2",
          "link": "https://www.bbc.com/news/articles/cn0k670n0ydo?at_medium=RSS&at_campaign=rss",
          "title": "Pinterest sacks engineers for tracking staff job cuts",
          "content": "The social media platform recently announced that it was axing around 15% of its workforce.",
          "isoDate": "2026-02-04T06:03:12.000Z",
          "pubDate": "Wed, 04 Feb 2026 06:03:12 GMT",
          "contentSnippet": "The social media platform recently announced that it was axing around 15% of its workforce."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/ce3ex92557jo#2",
          "link": "https://www.bbc.com/news/articles/ce3ex92557jo?at_medium=RSS&at_campaign=rss",
          "title": "X offices raided in France as UK opens fresh investigation into Grok",
          "content": "Elon Musk's X and Grok platforms are facing increased scrutiny from authorities on both sides of the channel.",
          "isoDate": "2026-02-04T01:05:26.000Z",
          "pubDate": "Wed, 04 Feb 2026 01:05:26 GMT",
          "contentSnippet": "Elon Musk's X and Grok platforms are facing increased scrutiny from authorities on both sides of the channel."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c62n410w5yno#2",
          "link": "https://www.bbc.com/news/articles/c62n410w5yno?at_medium=RSS&at_campaign=rss",
          "title": "What is the 'social media network for AI' Moltbook?",
          "content": "The Reddit-like website which launched in late January allows AI bots to speak to each other.",
          "isoDate": "2026-02-02T13:59:14.000Z",
          "pubDate": "Mon, 02 Feb 2026 13:59:14 GMT",
          "contentSnippet": "The Reddit-like website which launched in late January allows AI bots to speak to each other."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cp37g5nxe3lo#2",
          "link": "https://www.bbc.com/news/articles/cp37g5nxe3lo?at_medium=RSS&at_campaign=rss",
          "title": "China bans hidden car door handles over safety concerns",
          "content": "It makes China the first country to stop the use of designs first made popular by Elon Musk's Tesla.",
          "isoDate": "2026-02-03T02:06:29.000Z",
          "pubDate": "Tue, 03 Feb 2026 02:06:29 GMT",
          "contentSnippet": "It makes China the first country to stop the use of designs first made popular by Elon Musk's Tesla."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cq6vnrye06po#2",
          "link": "https://www.bbc.com/news/articles/cq6vnrye06po?at_medium=RSS&at_campaign=rss",
          "title": "Musk's SpaceX and xAI merge to make world's most valuable private company",
          "content": "Musk says the combined firm - which has been valued at more than $1tn - will be an \"innovation engine\".",
          "isoDate": "2026-02-03T09:31:06.000Z",
          "pubDate": "Tue, 03 Feb 2026 09:31:06 GMT",
          "contentSnippet": "Musk says the combined firm - which has been valued at more than $1tn - will be an \"innovation engine\"."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c9wx2dz2v44o#2",
          "link": "https://www.bbc.com/news/articles/c9wx2dz2v44o?at_medium=RSS&at_campaign=rss",
          "title": "AI 'slop' is transforming social media - and a backlash is brewing",
          "content": "Social media has been flooded with fake, AI-generated images and videos. But will the majority of users actually care?",
          "isoDate": "2026-02-04T11:29:30.000Z",
          "pubDate": "Wed, 04 Feb 2026 11:29:30 GMT",
          "contentSnippet": "Social media has been flooded with fake, AI-generated images and videos. But will the majority of users actually care?"
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cvg5er4ewg6o#2",
          "link": "https://www.bbc.com/news/articles/cvg5er4ewg6o?at_medium=RSS&at_campaign=rss",
          "title": "Pornhub is now restricting access for UK users - will other sites follow suit?",
          "content": "The UK's largest porn site has blocked unregistered users from accessing explicit content in the country, but why motives remain unclear.",
          "isoDate": "2026-02-02T09:49:12.000Z",
          "pubDate": "Mon, 02 Feb 2026 09:49:12 GMT",
          "contentSnippet": "The UK's largest porn site has blocked unregistered users from accessing explicit content in the country, but why motives remain unclear."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cyv5l24mrjmo#2",
          "link": "https://www.bbc.com/news/articles/cyv5l24mrjmo?at_medium=RSS&at_campaign=rss",
          "title": "Musk's SpaceX applies to launch a million satellites into orbit",
          "content": "The firm wants to create a network of \"orbital data centres\" to power artificial intelligence.",
          "isoDate": "2026-01-31T16:19:17.000Z",
          "pubDate": "Sat, 31 Jan 2026 16:19:17 GMT",
          "contentSnippet": "The firm wants to create a network of \"orbital data centres\" to power artificial intelligence."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cy8yw190q83o#2",
          "link": "https://www.bbc.com/news/articles/cy8yw190q83o?at_medium=RSS&at_campaign=rss",
          "title": "Apple reports best-ever iPhone sales as Mac dips",
          "content": "The company's revenue was boosted by iPhone sales, but sales of its wearable tech and Mac computers dipped. ",
          "isoDate": "2026-01-30T06:46:13.000Z",
          "pubDate": "Fri, 30 Jan 2026 06:46:13 GMT",
          "contentSnippet": "The company's revenue was boosted by iPhone sales, but sales of its wearable tech and Mac computers dipped."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c62njv82n0wo#2",
          "link": "https://www.bbc.com/news/articles/c62njv82n0wo?at_medium=RSS&at_campaign=rss",
          "title": "He calls me sweetheart and winks at me - but he's not my boyfriend, he's AI",
          "content": "George is an avatar on my mobile but claims to know  what makes me tick. ",
          "isoDate": "2026-01-30T11:39:15.000Z",
          "pubDate": "Fri, 30 Jan 2026 11:39:15 GMT",
          "contentSnippet": "George is an avatar on my mobile but claims to know  what makes me tick."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cn8jkyk78gno#2",
          "link": "https://www.bbc.com/news/articles/cn8jkyk78gno?at_medium=RSS&at_campaign=rss",
          "title": "Facebook-owner Meta to nearly double AI spending",
          "content": "Mark Zuckerberg's spending plans hint at further layoffs and changes within Facebook, Instagram and WhatsApp.",
          "isoDate": "2026-01-29T00:16:17.000Z",
          "pubDate": "Thu, 29 Jan 2026 00:16:17 GMT",
          "contentSnippet": "Mark Zuckerberg's spending plans hint at further layoffs and changes within Facebook, Instagram and WhatsApp."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c620177qdg5o#2",
          "link": "https://www.bbc.com/news/articles/c620177qdg5o?at_medium=RSS&at_campaign=rss",
          "title": "Tesla cuts car models in shift to robots and AI",
          "content": "Multi-billionaire Elon Musk's electric car maker also said its annual revenue had fallen for the first time.",
          "isoDate": "2026-01-29T02:35:07.000Z",
          "pubDate": "Thu, 29 Jan 2026 02:35:07 GMT",
          "contentSnippet": "Multi-billionaire Elon Musk's electric car maker also said its annual revenue had fallen for the first time."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cx2yv31482vo#2",
          "link": "https://www.bbc.com/news/articles/cx2yv31482vo?at_medium=RSS&at_campaign=rss",
          "title": "UK bans Coinbase ads implying crypto can ease cost of living concerns",
          "content": "The ASA upheld complaints that Coinbase's adverts trivialised the risks of investing in cryptocurrency.",
          "isoDate": "2026-01-29T11:40:44.000Z",
          "pubDate": "Thu, 29 Jan 2026 11:40:44 GMT",
          "contentSnippet": "The ASA upheld complaints that Coinbase's adverts trivialised the risks of investing in cryptocurrency."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/czej9n578k9o#2",
          "link": "https://www.bbc.com/news/articles/czej9n578k9o?at_medium=RSS&at_campaign=rss",
          "title": "Driverless taxis set to launch in UK as soon as September",
          "content": "Waymo has laid out plans for a robotaxi service in London with a pilot scheme due to begin in April.",
          "isoDate": "2026-01-28T23:22:48.000Z",
          "pubDate": "Wed, 28 Jan 2026 23:22:48 GMT",
          "contentSnippet": "Waymo has laid out plans for a robotaxi service in London with a pilot scheme due to begin in April."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cx2ywzxlxnlo#2",
          "link": "https://www.bbc.com/news/articles/cx2ywzxlxnlo?at_medium=RSS&at_campaign=rss",
          "title": "Amazon confirms 16,000 job cuts after accidental email",
          "content": "The technology giant confirmed the redundancies hours after it told staff in an email sent in error.",
          "isoDate": "2026-01-28T13:11:09.000Z",
          "pubDate": "Wed, 28 Jan 2026 13:11:09 GMT",
          "contentSnippet": "The technology giant confirmed the redundancies hours after it told staff in an email sent in error."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cp37prvp072o#2",
          "link": "https://www.bbc.com/news/articles/cp37prvp072o?at_medium=RSS&at_campaign=rss",
          "title": "Government offers UK adults free AI training for work",
          "content": "The online lessons give advice on things such as how to prompt chatbots or complete admin tasks.",
          "isoDate": "2026-01-28T11:50:21.000Z",
          "pubDate": "Wed, 28 Jan 2026 11:50:21 GMT",
          "contentSnippet": "The online lessons give advice on things such as how to prompt chatbots or complete admin tasks."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/czr428rxg57o#2",
          "link": "https://www.bbc.com/news/articles/czr428rxg57o?at_medium=RSS&at_campaign=rss",
          "title": "Pornhub to restrict access for UK users from next week",
          "content": "The changes mean only those who have a Pornhub account and have verified their age will be able to access it in the UK soon.",
          "isoDate": "2026-01-27T18:38:43.000Z",
          "pubDate": "Tue, 27 Jan 2026 18:38:43 GMT",
          "contentSnippet": "The changes mean only those who have a Pornhub account and have verified their age will be able to access it in the UK soon."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/ckgjedpn8p8o#2",
          "link": "https://www.bbc.com/news/articles/ckgjedpn8p8o?at_medium=RSS&at_campaign=rss",
          "title": "TikTok US pushes back on claims it is censoring content",
          "content": "Thousands of people claim political content is being suppressed after the US operation was spun off.",
          "isoDate": "2026-01-27T20:25:11.000Z",
          "pubDate": "Tue, 27 Jan 2026 20:25:11 GMT",
          "contentSnippet": "Thousands of people claim political content is being suppressed after the US operation was spun off."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cr57p2ve8glo#2",
          "link": "https://www.bbc.com/news/articles/cr57p2ve8glo?at_medium=RSS&at_campaign=rss",
          "title": "AI boom will produce victors and carnage, tech boss warns",
          "content": "Cisco chief executive Chuck Robbins compares AI to the dotcom bubble of the early 2000s.",
          "isoDate": "2026-01-28T00:01:19.000Z",
          "pubDate": "Wed, 28 Jan 2026 00:01:19 GMT",
          "contentSnippet": "Cisco chief executive Chuck Robbins compares AI to the dotcom bubble of the early 2000s."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/videos/cx2yep7l2j2o#4",
          "link": "https://www.bbc.com/news/videos/cx2yep7l2j2o?at_medium=RSS&at_campaign=rss",
          "title": "How would a social media ban for under-16s work?",
          "content": "BBC technology editor Zoe Kleinman explains.",
          "isoDate": "2026-01-20T13:08:07.000Z",
          "pubDate": "Tue, 20 Jan 2026 13:08:07 GMT",
          "contentSnippet": "BBC technology editor Zoe Kleinman explains."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/iplayer/episode/m002qbkc#4",
          "link": "https://www.bbc.co.uk/iplayer/episode/m002qbkc?at_medium=RSS&at_campaign=rss",
          "title": "Tech Now",
          "content": "From Las Vegas, the latest trends and innovations at CES 2026.",
          "isoDate": "2026-01-17T01:00:00.000Z",
          "pubDate": "Sat, 17 Jan 2026 01:00:00 GMT",
          "contentSnippet": "From Las Vegas, the latest trends and innovations at CES 2026."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/videos/cql4076kyzeo#4",
          "link": "https://www.bbc.com/news/videos/cql4076kyzeo?at_medium=RSS&at_campaign=rss",
          "title": "Wikipedia's Jimmy Wales on where the name comes from",
          "content": "The site's co-founder speaks to the BBC for the online encyclopedia's 25th anniversary.",
          "isoDate": "2026-01-15T06:14:24.000Z",
          "pubDate": "Thu, 15 Jan 2026 06:14:24 GMT",
          "contentSnippet": "The site's co-founder speaks to the BBC for the online encyclopedia's 25th anniversary."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpz#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpz?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "Meet the humanoid robots designed to help with household chores",
          "isoDate": "2026-01-13T20:30:00.000Z",
          "pubDate": "Tue, 13 Jan 2026 20:30:00 GMT",
          "contentSnippet": "Meet the humanoid robots designed to help with household chores"
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/videos/c8x94zr8yxvo#4",
          "link": "https://www.bbc.com/news/videos/c8x94zr8yxvo?at_medium=RSS&at_campaign=rss",
          "title": "Watch: Backlash against Musk's Grok AI explained",
          "content": "Technology editor Zoe Kleinman explains the row over changes made by X to it's Grok AI image edits, after the UK government called it \"insulting\".",
          "isoDate": "2026-01-09T17:19:37.000Z",
          "pubDate": "Fri, 09 Jan 2026 17:19:37 GMT",
          "contentSnippet": "Technology editor Zoe Kleinman explains the row over changes made by X to it's Grok AI image edits, after the UK government called it \"insulting\"."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/newsround/videos/cx2y0xe8ex2o#4",
          "link": "https://www.bbc.com/newsround/videos/cx2y0xe8ex2o?at_medium=RSS&at_campaign=rss",
          "title": "Cool future tech at CES!",
          "content": "The technology show CES is back for another year in Las Vegas in America.",
          "isoDate": "2026-01-08T17:18:47.000Z",
          "pubDate": "Thu, 08 Jan 2026 17:18:47 GMT",
          "contentSnippet": "The technology show CES is back for another year in Las Vegas in America."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpy#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpy?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "The latest gadgets, the future in assistive tech and upcoming gaming releases in 2026.",
          "isoDate": "2026-01-06T20:32:00.000Z",
          "pubDate": "Tue, 06 Jan 2026 20:32:00 GMT",
          "contentSnippet": "The latest gadgets, the future in assistive tech and upcoming gaming releases in 2026."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/videos/c98p1jg3p58o#4",
          "link": "https://www.bbc.com/news/videos/c98p1jg3p58o?at_medium=RSS&at_campaign=rss",
          "title": "Watch: BBC reporter tests AI anti-shoplifting tech",
          "content": "Some major retailers and independent stores have introduced AI body scans, CCTV or facial recognition equipment to identify crimes like shoplifting.",
          "isoDate": "2026-01-05T00:01:31.000Z",
          "pubDate": "Mon, 05 Jan 2026 00:01:31 GMT",
          "contentSnippet": "Some major retailers and independent stores have introduced AI body scans, CCTV or facial recognition equipment to identify crimes like shoplifting."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpx#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpx?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "We bring you Tech Life highlights from a fascinating year in global tech.",
          "isoDate": "2025-12-30T20:30:00.000Z",
          "pubDate": "Tue, 30 Dec 2025 20:30:00 GMT",
          "contentSnippet": "We bring you Tech Life highlights from a fascinating year in global tech."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.co.uk/sounds/play/w3ct6zpv#4",
          "link": "https://www.bbc.co.uk/sounds/play/w3ct6zpv?at_medium=RSS&at_campaign=rss",
          "title": "Tech Life",
          "content": "A study found AI chatbots can persuade us with fake facts. How does this affect politics?",
          "isoDate": "2025-12-16T20:30:00.000Z",
          "pubDate": "Tue, 16 Dec 2025 20:30:00 GMT",
          "contentSnippet": "A study found AI chatbots can persuade us with fake facts. How does this affect politics?"
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c2e102vw1z2o#5",
          "link": "https://www.bbc.com/news/articles/c2e102vw1z2o?at_medium=RSS&at_campaign=rss",
          "title": "Why food fraud persists, even with improving tech",
          "content": "Even with sophisticated technology it is still difficult to detect fake foods.",
          "isoDate": "2026-02-10T00:03:12.000Z",
          "pubDate": "Tue, 10 Feb 2026 00:03:12 GMT",
          "contentSnippet": "Even with sophisticated technology it is still difficult to detect fake foods."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c5y46356zzyo#5",
          "link": "https://www.bbc.com/news/articles/c5y46356zzyo?at_medium=RSS&at_campaign=rss",
          "title": "Can robots ever be graceful?",
          "content": "Firms are working to make the motors that drive robots more efficient and cheaper.",
          "isoDate": "2026-02-06T00:05:05.000Z",
          "pubDate": "Fri, 06 Feb 2026 00:05:05 GMT",
          "contentSnippet": "Firms are working to make the motors that drive robots more efficient and cheaper."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/clygdez8d41o#5",
          "link": "https://www.bbc.com/news/articles/clygdez8d41o?at_medium=RSS&at_campaign=rss",
          "title": "The yachting industry searches for alternatives to teak",
          "content": "Prized for its beauty, teak is in short supply, forcing the yacht industry to look for alternatives.",
          "isoDate": "2026-02-04T13:42:07.000Z",
          "pubDate": "Wed, 04 Feb 2026 13:42:07 GMT",
          "contentSnippet": "Prized for its beauty, teak is in short supply, forcing the yacht industry to look for alternatives."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cq5y7dd284do#5",
          "link": "https://www.bbc.com/news/articles/cq5y7dd284do?at_medium=RSS&at_campaign=rss",
          "title": "Visit the North Sea oil field used to store greenhouse gas",
          "content": "Hundreds of miles from Denmark's coast a project is underway to inject CO2 into an old oil field.",
          "isoDate": "2026-01-30T00:10:01.000Z",
          "pubDate": "Fri, 30 Jan 2026 00:10:01 GMT",
          "contentSnippet": "Hundreds of miles from Denmark's coast a project is underway to inject CO2 into an old oil field."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c78e4l3rm22o#5",
          "link": "https://www.bbc.com/news/articles/c78e4l3rm22o?at_medium=RSS&at_campaign=rss",
          "title": "Are 'tech dense' farms the future of farming?",
          "content": "A host of technology is on offer to farmers, promising to raise farming yields and lower food prices.",
          "isoDate": "2026-01-20T00:00:11.000Z",
          "pubDate": "Tue, 20 Jan 2026 00:00:11 GMT",
          "contentSnippet": "A host of technology is on offer to farmers, promising to raise farming yields and lower food prices."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cwynxdnj927o#5",
          "link": "https://www.bbc.com/news/articles/cwynxdnj927o?at_medium=RSS&at_campaign=rss",
          "title": "'They are essential':  How smoke detectors are evolving",
          "content": "AI trained to recognise fire is among the latest developments in fire alarm tech.",
          "isoDate": "2026-01-16T00:04:26.000Z",
          "pubDate": "Fri, 16 Jan 2026 00:04:26 GMT",
          "contentSnippet": "AI trained to recognise fire is among the latest developments in fire alarm tech."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cd0ynenr1eno#5",
          "link": "https://www.bbc.com/news/articles/cd0ynenr1eno?at_medium=RSS&at_campaign=rss",
          "title": "Honey, I shrunk the data centres: Is small the new big?",
          "content": "Huge data centres are being built to handle AI computing but some experts say they aren't necessary.",
          "isoDate": "2026-01-14T00:07:50.000Z",
          "pubDate": "Wed, 14 Jan 2026 00:07:50 GMT",
          "contentSnippet": "Huge data centres are being built to handle AI computing but some experts say they aren't necessary."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c62n5j96nqpo#5",
          "link": "https://www.bbc.com/news/articles/c62n5j96nqpo?at_medium=RSS&at_campaign=rss",
          "title": "Why are more bosses sharing the top job?",
          "content": "More bosses are sharing the top job giving them more time for family and breaks. ",
          "isoDate": "2026-01-13T00:01:51.000Z",
          "pubDate": "Tue, 13 Jan 2026 00:01:51 GMT",
          "contentSnippet": "More bosses are sharing the top job giving them more time for family and breaks."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cwyxkzjpp87o#5",
          "link": "https://www.bbc.com/news/articles/cwyxkzjpp87o?at_medium=RSS&at_campaign=rss",
          "title": "Excel: The software that's hard to quit",
          "content": "Companies are trying to wean staff off Excel spreadsheets to centralise control of their data.",
          "isoDate": "2026-01-09T00:07:59.000Z",
          "pubDate": "Fri, 09 Jan 2026 00:07:59 GMT",
          "contentSnippet": "Companies are trying to wean staff off Excel spreadsheets to centralise control of their data."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cp8zd176516o#5",
          "link": "https://www.bbc.com/news/articles/cp8zd176516o?at_medium=RSS&at_campaign=rss",
          "title": "The showers and baths keeping data centre tech cool",
          "content": "Finding greener ways to keep giant new data centres cool is a challenge.",
          "isoDate": "2025-12-23T00:04:45.000Z",
          "pubDate": "Tue, 23 Dec 2025 00:04:45 GMT",
          "contentSnippet": "Finding greener ways to keep giant new data centres cool is a challenge."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cly5gen0gj8o#5",
          "link": "https://www.bbc.com/news/articles/cly5gen0gj8o?at_medium=RSS&at_campaign=rss",
          "title": "Will tech trump tradition at bakers and biscuit makers?",
          "content": "Introducing robots and automation to the food industry involves extra hurdles.",
          "isoDate": "2025-12-19T00:07:27.000Z",
          "pubDate": "Fri, 19 Dec 2025 00:07:27 GMT",
          "contentSnippet": "Introducing robots and automation to the food industry involves extra hurdles."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c17p44w87rno#5",
          "link": "https://www.bbc.com/news/articles/c17p44w87rno?at_medium=RSS&at_campaign=rss",
          "title": "Meet the biggest heat pumps in the world",
          "content": "Across Europe huge heat pumps are being installed that can heat tens of thousands of homes. ",
          "isoDate": "2025-12-16T00:06:44.000Z",
          "pubDate": "Tue, 16 Dec 2025 00:06:44 GMT",
          "contentSnippet": "Across Europe huge heat pumps are being installed that can heat tens of thousands of homes."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c24l223d9n7o#5",
          "link": "https://www.bbc.com/news/articles/c24l223d9n7o?at_medium=RSS&at_campaign=rss",
          "title": "'It's amazing' – the wonder material very few can make",
          "content": "Just a handful of companies can make cadmium zinc telluride, a material with powerful properties.",
          "isoDate": "2025-12-12T00:03:10.000Z",
          "pubDate": "Fri, 12 Dec 2025 00:03:10 GMT",
          "contentSnippet": "Just a handful of companies can make cadmium zinc telluride, a material with powerful properties."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/c751xw96e9yo#5",
          "link": "https://www.bbc.com/news/articles/c751xw96e9yo?at_medium=RSS&at_campaign=rss",
          "title": "Will boats be a breakthrough for 3D printing tech?",
          "content": "Dutch firms are betting that hulls made with 3D printing machines will mean cheaper boats. ",
          "isoDate": "2025-11-28T00:10:39.000Z",
          "pubDate": "Fri, 28 Nov 2025 00:10:39 GMT",
          "contentSnippet": "Dutch firms are betting that hulls made with 3D printing machines will mean cheaper boats."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/czrk7gxk2l6o#5",
          "link": "https://www.bbc.com/news/articles/czrk7gxk2l6o?at_medium=RSS&at_campaign=rss",
          "title": "Scammers hacked her phone and stole thousands - so how did they get her details?",
          "content": "Sue Shore told the BBC how scammers targeted her - and we found her information had been leaked online.",
          "isoDate": "2025-11-25T04:58:08.000Z",
          "pubDate": "Tue, 25 Nov 2025 04:58:08 GMT",
          "contentSnippet": "Sue Shore told the BBC how scammers targeted her - and we found her information had been leaked online."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/videos/cvgkerq52p4o#5",
          "link": "https://www.bbc.com/news/videos/cvgkerq52p4o?at_medium=RSS&at_campaign=rss",
          "title": "The entrepreneur connecting tourists to African hospitality",
          "content": "TripZapp founder Rory Okoli wants to make it simple for tourists to book and pay for African travel.",
          "isoDate": "2025-11-25T00:02:30.000Z",
          "pubDate": "Tue, 25 Nov 2025 00:02:30 GMT",
          "contentSnippet": "TripZapp founder Rory Okoli wants to make it simple for tourists to book and pay for African travel."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cvgvynlxqdyo#5",
          "link": "https://www.bbc.com/news/articles/cvgvynlxqdyo?at_medium=RSS&at_campaign=rss",
          "title": "The contradiction at the heart of the trillion-dollar AI race",
          "content": "The confusing question lingering over the AI hype is whether it could be a bubble at risk of bursting",
          "isoDate": "2025-11-19T13:52:41.000Z",
          "pubDate": "Wed, 19 Nov 2025 13:52:41 GMT",
          "contentSnippet": "The confusing question lingering over the AI hype is whether it could be a bubble at risk of bursting"
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cz91dk0l50no#5",
          "link": "https://www.bbc.com/news/articles/cz91dk0l50no?at_medium=RSS&at_campaign=rss",
          "title": "On the front line of Europe's standoff with Russia's sanction-busting shadow fleet",
          "content": "With Europe imposing sanctions on Moscow, there has been a growing network of vessels sailing without a valid flag from Russia through European waters. ",
          "isoDate": "2025-11-19T00:23:14.000Z",
          "pubDate": "Wed, 19 Nov 2025 00:23:14 GMT",
          "contentSnippet": "With Europe imposing sanctions on Moscow, there has been a growing network of vessels sailing without a valid flag from Russia through European waters."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cjekg1pd9j4o#5",
          "link": "https://www.bbc.com/news/articles/cjekg1pd9j4o?at_medium=RSS&at_campaign=rss",
          "title": "Can technology fix fashion's sizing crisis?",
          "content": "The BBC looks into whether artificial intelligence (AI) can help people who struggle when clothes are oddly sized.",
          "isoDate": "2025-11-15T04:03:27.000Z",
          "pubDate": "Sat, 15 Nov 2025 04:03:27 GMT",
          "contentSnippet": "The BBC looks into whether artificial intelligence (AI) can help people who struggle when clothes are oddly sized."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      },
      {
        "json": {
          "guid": "https://www.bbc.com/news/articles/cy9pwgqvr7go#5",
          "link": "https://www.bbc.com/news/articles/cy9pwgqvr7go?at_medium=RSS&at_campaign=rss",
          "title": "Call of Duty is back, and it's got a battle on its hands",
          "content": "The annual instalment of the massive series faces new challenges from competitor Battlefield 6.",
          "isoDate": "2025-11-14T15:47:29.000Z",
          "pubDate": "Fri, 14 Nov 2025 15:47:29 GMT",
          "contentSnippet": "The annual instalment of the massive series faces new challenges from competitor Battlefield 6."
        },
        "pairedItem": [
          {
            "item": 9
          }
        ]
      }
    ],
    "AI Newsletter Creator": [
      {
        "json": {
          "index": 0,
          "message": {
            "role": "assistant",
            "content": "```html\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>AI Tech Weekly Newsletter</title>\n    <style>\n        body {\n            font-family: Arial, sans-serif;\n            margin: 0;\n            padding: 20px;\n            background-color: #f8f8f8;\n        }\n        h1 {\n            text-align: center;\n            color: #333;\n        }\n        .article {\n            background: #fff;\n            padding: 15px;\n            margin: 10px 0;\n            border-radius: 5px;\n            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);\n        }\n        .article h2 {\n            font-size: 1.5em;\n            margin: 0 0 10px;\n            color: #007BFF;\n        }\n        .article p {\n            margin: 0 0 10px;\n            line-height: 1.6;\n        }\n        .article a {\n            text-decoration: none;\n            color: #007BFF;\n        }\n        .article a:hover {\n            text-decoration: underline;\n        }\n    </style>\n</head>\n<body>\n\n<h1>AI Tech Weekly Newsletter</h1>\n\n<div class=\"article\">\n    <h2><a href=\"https://techcrunch.com/2026/01/13/ai-drug-discovery-startup-converge-bio-pulls-in-25m-from-bessemer-and-execs-from-meta-openai-and-wiz/\">Converge Bio raises $25M, backed by Bessemer and execs from Meta, OpenAI, Wiz</a></h2>\n    <p>AI drug discovery startup Converge Bio raised $25 million in a Series A led by Bessemer Venture Partners, with additional backing from executives at Meta, OpenAI, and Wiz.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://techcrunch.com/2025/10/31/meta-bought-1-gw-of-solar-this-week/\">Meta bought 1 GW of solar this week</a></h2>\n    <p>The social media company inked three deals in the U.S. to power its data centers and offset its carbon footprint.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://techcrunch.com/2025/08/26/how-one-ai-startup-is-helping-rice-farmers-battle-climate-change/\">How one AI startup is helping rice farmers battle climate change</a></h2>\n    <p>Mitti Labs is working with The Nature Conservancy to expand the use of climate-friendly rice farming practices in India, using AI to verify reductions in methane emissions.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://venturebeat.com/infrastructure/railway-secures-usd100-million-to-challenge-aws-with-ai-native-cloud/\">Railway secures $100 million to challenge AWS with AI-native cloud infrastructure</a></h2>\n    <p>Railway raised $100 million in a Series B funding round to enhance its cloud platform for AI applications, aiming to address the limitations of legacy cloud infrastructure.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://venturebeat.com/infrastructure/claude-code-costs-up-to-usd200-a-month-goose-does-the-same-thing-for-free/\">Claude Code costs up to $200 a month. Goose does the same thing for free.</a></h2>\n    <p>Goose, an open-source AI coding agent, is gaining popularity as a free alternative to Claude Code, offering similar functionality without subscription fees.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://venturebeat.com/technology/listen-labs-raises-usd69m-after-viral-billboard-hiring-stunt-to-scale-ai/\">Listen Labs raises $69M after viral billboard hiring stunt to scale AI customer interviews</a></h2>\n    <p>Listen Labs raised $69 million in Series B funding following a viral hiring stunt, demonstrating rapid growth in AI-powered customer research.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://venturebeat.com/technology/salesforce-rolls-out-new-slackbot-ai-agent-as-it-battles-microsoft-and\">Salesforce rolls out new Slackbot AI agent</a></h2>\n    <p>Salesforce launched an enhanced version of Slackbot designed to act as an AI agent capable of completing tasks and processing enterprise data, aiming to transform workplace efficiency.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://venturebeat.com/technology/anthropic-launches-cowork-a-claude-desktop-agent-that-works-in-your-files-no\">Anthropic launches Cowork, a Claude Desktop agent</a></h2>\n    <p>Cowork is a new AI agent from Anthropic that facilitates non-technical tasks by accessing files on users' computers, exemplifying advancements in AI productivity tools.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://www.nytimes.com/2026/02/09/technology/social-media-addiction-trial.html\">Meta and YouTube Created ‘Digital Casinos,’ Lawyers Argue in Landmark Trial</a></h2>\n    <p>A trial claims social media companies design addictive products that have led to personal injuries, highlighting concerns over technology's impact on user behavior.</p>\n</div>\n\n<div class=\"article\">\n    <h2><a href=\"https://www.nytimes.com/2026/02/09/health/ai-chatbots-doctors-medicine.html\">A.I. Is Making Doctors Answer a Question: What Are They Really Good For?</a></h2>\n    <p>As chatbots in healthcare rise, many physicians express concerns over their roles, asking what this means for the future of medicine.</p>\n</div>\n\n</body>\n</html>\n``` \n\nThis HTML newsletter structure provides clear titles, summaries, and links for ten of the most relevant AI and tech articles based on the provided data. Each article is formatted for easy reading, and the design is simple and clean for better presentation.",
            "refusal": null,
            "annotations": []
          },
          "logprobs": null,
          "finish_reason": "stop"
        },
        "pairedItem": {
          "item": 0
        }
      }
    ],
    "Configure RSS Sources": [
      {
        "json": {
          "urls": [
            "https://techcrunch.com/tag/artificial-intelligence/feed/",
            "https://www.theverge.com/artificial-intelligence/rss/index.xml",
            "https://www.technologyreview.com/feed/",
            "https://www.wired.com/feed/category/science/artificial-intelligence/latest/rss",
            "https://venturebeat.com/category/ai/feed/",
            "https://www.zdnet.com/topic/artificial-intelligence/rss.xml",
            "https://towardsdatascience.com/feed",
            "https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml",
            "https://www.theguardian.com/uk/technology/rss",
            "https://feeds.bbci.co.uk/news/technology/rss.xml"
          ]
        },
        "pairedItem": {
          "item": 0
        }
      }
    ],
    "Daily Newsletter Trigger": [
      {
        "json": {
          "Hour": "10",
          "Year": "2026",
          "Month": "February",
          "Minute": "23",
          "Second": "11",
          "Timezone": "Europe/Berlin (UTC+01:00)",
          "timestamp": "2026-02-10T10:23:11.846+01:00",
          "Day of week": "Tuesday",
          "Day of month": "10",
          "Readable date": "February 10th 2026, 10:23:11 am",
          "Readable time": "10:23:11 am"
        },
        "pairedItem": {
          "item": 0
        }
      }
    ]
  },
  "connections": {
    "Clean Data": {
      "main": [
        [
          {
            "node": "Combine Articles",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Split RSS URLs": {
      "main": [
        [
          {
            "node": "Fetch RSS Articles",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Filter Articles": {
      "main": [
        [
          {
            "node": "Clean Data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Combine Articles": {
      "main": [
        [
          {
            "node": "AI Newsletter Creator",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Fetch RSS Articles": {
      "main": [
        [
          {
            "node": "Filter Articles",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "AI Newsletter Creator": {
      "main": [
        [
          {
            "node": "Send Newsletter",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Configure RSS Sources": {
      "main": [
        [
          {
            "node": "Split RSS URLs",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Daily Newsletter Trigger": {
      "main": [
        [
          {
            "node": "Configure RSS Sources",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}