AI News Archive: June 2, 2026 — Part 11
Sourced from 500+ daily AI sources, scored by relevance.
- Scaling AI‑Augmented Citizen Development by Redesigning the Technology Operating Model
Scaling AI‑Augmented Citizen Development by Redesigning the Technology Operating Model Gartner
- Prompt Caching Is the Most Underrated Cost Optimization in LLM Systems
I cut my API spend by 70% without changing a single model call. Here’s the architectural decision that made it possible. Continue reading on Towards AI »
- Alibaba elevates tech chief Wu Zeming to elite committee as AI push ramps up
Alibaba Group Holding chief technology officer (CTO) Wu Zeming has joined the company’s elite steering committee, joining co-founders Jack Ma and Joe Tsai in playing a central role in formulating the tech empire’s strategy. According to Alibaba’s website, the other members of the committee of the Alibaba Partnership are group CEO Eddie Wu Yongming and Jiang Fan, CEO of the e-commerce business unit. Born in 1982, the CTO represents a younger generation of tech executives climbing Alibaba’s...
- Aggregators outpace Domino’s delivery growth as Jubilant launches GenAI chatbot: Q4FY26
Jubilant FoodWorks' Q4FY26 earnings call revealed how Domino's is navigating slowing delivery growth, rising competition, and AI-led transformation. The post Aggregators outpace Domino’s delivery growth as Jubilant launches GenAI chatbot: Q4FY26 appeared first on MEDIANAMA .
Score: 18🌐 MovesJun 2, 2026https://www.medianama.com/2026/06/223-jubilant-foodworks-q4fy26-genai-chatbot-delivery-growth/ - Cricketer KL Rahul Partners With str8bat to Launch AI-Powered Batting Platform
The partnership brings KL Rahul’s batting philosophy to str8bat’s AI platform allowing players to learn from professional-level insights tailored to their game.
- PatientGain.com Launches Healthcare Marketing AI Agents Using Human-In-The-Loop Technology
PatientGain.com Launches Healthcare Marketing AI Agents Using Human-In-The-Loop Technology USA Today
- Resona sets up team to address artificial intelligence security risks
Resona sets up team to address artificial intelligence security risks The Japan Times
Score: 17🌐 MovesJun 2, 2026https://www.japantimes.co.jp/business/2026/06/02/companies/resona-ai-interview/ - Taming the Monolith: A Claude Code Setup Guide for Large Codebases
A practical guide for teams working with large and complex enterprise codebase If you’re working with a large on-prem codebase, a monolith with dozens of services, multiple backend components and client applications all living in one massive repo, you already know the pain. Coding agents have a finite context window and they perform best when that window is used deliberately. Large monolith codebases if not setup correctly for AI-assisted development, can quickly fill up available context and agents start hallucinating not giving expected responses. 1. Your CLAUDE.md Is Your Most Important File Like any other project, the first step of setting up Claude Code is to create a CLAUDE.md file. Claude can scan through your project and generate one automatically via the /init command. Modify this to suit your project's needs. For a large repo, this file is what bridges the gap between Claude’s general knowledge and your project’s custom implementation. Nested CLAUDE.md Files Don’t cram everything into one file. Keep the root CLAUDE.md lean, around 200 to 300 lines, with enough context to guide Claude. For a large repo, use a layered approach: keep the root file under 200 lines and use @file references to point Claude to deeper docs on demand. Subsystems can have their own CLAUDE.md files. project-root/ # Server/runtime root ├── CLAUDE.md # Lean entry point (~200 lines) ├── docs/ │ ├── coding-guidelines.md # Coding standards and patterns │ ├── architecture.md # System architecture overview │ └── db-schema.md # Key tables and relationships ├── system/ # Core system files and configuration │ ├── source/ # Custom policy/data modules │ │ └── CLAUDE.md # Module development rules ├── lib/ # Shared libraries ├── header/ # Header files ├── bin/ # Executables and scripts ├── jars/ # Java libraries ├── conf/ # Environment configs ├── integration/ # Integration framework │ └── CLAUDE.md # Integration/rating rules ├── apps/ # Batch jobs and utilities │ └── CLAUDE.md # Batch job rules and utilities ├── 3rdParty/ # Third-party libraries ├── logs/ # Runtime log directory └── testing/ # Integration and regression tests └── CLAUDE.md # Test conventions and run instructions What Goes in the Root CLAUDE.md We can use /init build the initial CLAUDE.md file, then add custom implementation details Claude wouldn't know. e.g the project architecture, log locations, how to compile source, how to run test cases, and environment files to source. # Project Overview: Enterprise Transaction Platform ## Architecture This is a 5-tier on-prem system: Client App → API Layer → Request Gateway → Core Service Modules → Data Access Modules → Relational DB - API Layer: Handles external API contracts, authentication, and request normalization. - Request Gateway: Central request router. Loads service and data modules as shared libraries. - Core Service Modules: Domain workflows, validation rules, and orchestration logic. - Data Access Modules: Database abstraction layer. Primary DB connector handles all DB operations. - Batch Processor: Offline processing engine for scheduled and high-volume workloads. ## Repo Map | Directory | Purpose | |-------------|--------------------------------------------------| | server/ | Core server runtime root | | processing/ | Offline data processing framework | | apps/ | Batch applications, utilities, custom scripts | | conf/ | Environment configs: APIs, schemas, SQL, params | ## Key Commands - Compile module: `cd $PROJECT_HOME/source/modules/core && make` - Run tests: `make test` - Restart services: `app restart all` Teaching Claude What It Doesn’t Know This is crucial for proprietary or niche systems. Add custom context that Claude can’t find via web search or isn’t pretrained on: The principle: if Claude would need to look something up in your internal wiki to understand it, put it in CLAUDE.md or a referenced doc. 2. Custom Status Line in Claude code CLI Microservice or monolith repo, it is helpful for both to put up a status line. Use the built-in /statusline command to configure a custom status line. It's handy for a quick peek at vital Claude session stats. TIP: Ask claude to generate a helpful statusline, something like below // Settings (~/.claude/settings.json) "statusLine": { "type": "command", "command": "bash /home/arijit/.claude/statusline-command.sh" } // The script displays: // 1. Model name (cyan) // 2. Context usage bar — 20-char, color-coded // green (<50%) | yellow (50-79%) | red (80%+) // 3. Context percentage & token count // 4. Git branch (magenta, bold) // 5. Project name (blue, bold) 3. Guard Your Context Window Like It’s Production Memory Run /context regularly to check utilization. Customize the status line to keep context usage always in sight. Too much context utilization makes the agent hallucinate and degrades session performance. What Eats Your Context Bloated CLAUDE.md — if your root file is 500+ lines, you’re burning tokens before you even ask a question. Keep it under 200 lines and reference deeper docs. Too many MCP servers — each connected server adds tool definitions to context. If you have 8 MCPs connected but only use 2 for coding, disable the rest during dev sessions. @-file references that embed entire files — don’t write @docs/full-api-spec.md if that file is 2000 lines. Instead, write "For API spec details, see docs/full-api-spec.md" and Claude will read it on demand when needed. Avoid stale sessions, triggering old/stale sessions can try to refresh cache with old/previous conversation which can burn unnecessary tokens. Start fresh session if you don’t need the old session context. 4. One Session, One Task — No Exceptions Every CC session should have exactly one purpose: Start a new session for every new task, design, build, debug, research. For complex and larger tasks use agent teams to extend you context, which we will discuss in later part. Session A: Build the new rating API endpoint. Session B: Debug the CM crash on opcode routing. Session C: Review the PR for batch pipeline changes. Session D: Answer a question about the storable class hierarchy. What you should never do: start a session to build an API, then ask Claude to debug an unrelated CM issue, then paste in a PR for review, then ask about the database schema — all in the same session. Why? Context pollution. By the time you’re on task #3, Claude’s context is filled with code from task #1, debug logs from task #2, and the instructions from your original prompt are buried. The quality of every subsequent response degrades. 5. Delegate Side Tasks to Sub-Agents When you’re deep in a build session and realize you need a utility function, a test fixture, or a configuration file — don’t do it in your main session. Delegate. Claude Code supports sub-agents that run in their own context. The main session stays clean, and the sub-agent returns only the final result. You can trigger this explicitly: 6. Always start a session in “Plan” Mode This applies to every type of task, building a feature, debugging an issue, refactoring a module. Always start with /plan mode. Execute /plan to switch to plan mode. Once claude is done with the planning phase it creates a plan.md file which contains the blueprint for the tasks in hand. Iterate the planning cycle till the plan looks good, ask claude to modify the plan on the points which needs correction. For complex task consider using frontier models opus etc, with increased /effort and thinking on(from /config). TIP: For implementation tasks, tell agent upfront your goal or the success criteria, or test scearios. That way agent re-iterates the Test case till the success criteria is met. It makes a whole lot of difference than testing in a seperate agent session. Phase 1 — Plan Switch to the highest available model with /model opus, then describe what you need. Don't jump to "write the code." Instead: I need to implement a new API getTransactionsthat retrieves transaction events in a paginated format for display in an upstream UI. Phase 2 — Implementation Once the plan is solid, switch to a lower model for implementation `/model sonnet`. Sonnet is faster, cheaper, and perfectly capable of following a well-defined plan. The plan from Phase 1 is still in context. Or use /model opusplan which automatically switches to sonnet once agent exits from plan mode. Though 1M context is not available with mentioned model as of I am writing this post. TIP: Treat plan.md as a living document. Update it as work progresses, and pass it to future agents (e.g. for bug fixes or follow-up tasks) so they start with full context rather than from scratch. 7. Save Session Learnings — Build a Living Memory for the agents Asking CLAUDE to save the learnings after a long session. It will remember the mistakes you helped claude to fix via MEMORY.md file. Example of a memory below. If you don’t capture critical these learnings, they die with the session. The MEMORY.md File Claude Code has an auto-memory system that saves to `~/.claude/projects/ /memory/MEMORY.md`. The first 200 lines are loaded at the start of every session. Here’s what a real entry looks like after a debugging session: CLAUDE.md vs MEMORY.md — What Goes Where Architecture, conventions, commands → CLAUDE.md (team-shared, version-controlled) Debugging patterns, session learnings, gotchas → MEMORY.md (personal, machine-local) Custom domain knowledge Claude can’t find online → CLAUDE.md (in referenced docs) “Claude kept making this mistake, here’s the fix” → MEMORY.md 8. Tackle large implemenation projects with multiphase implementation plan Large implementaions can quickly eat up your context window and impact the deliverable quality. During planning phase itself instruct claude to prepare a multi phase implemenation /plan which can be invoked by serveral sequential agents, Agent teams or sub-agents. Taming the Monolith: A Claude Code Setup Guide for Large Codebases was originally published in Towards AI on Medium, where people are continuing the conversation by highlighting and responding to this story.
- Young and unemployed? Remote work, not AI, may be the problem, study finds.
Young and unemployed? Remote work, not AI, may be the problem, study finds. The Boston Globe
Score: 17🌐 MovesJun 2, 2026https://www.bostonglobe.com/2026/06/01/business/remote-work-young-unemployment-study/ - Apertus powers in-house AI translation for Ticino
The Canton of Ticino introduces an in-house translation system based on Switzerland's Apertus.
Score: 16🌐 MovesJun 2, 2026https://www.cscs.ch/science/computer-science-hpc/2026/apertus-powers-in-house-ai-translation-for-ticino - Infometry Partners with dbt Labs to Accelerate AI-Ready Data Transformation
Infometry Partners with dbt Labs to Accelerate AI-Ready Data Transformation azcentral.com and The Arizona Republic
- People are leaving a lot of weird stuff in their robotaxis
Uber’s annual Lost and Found Index includes items left behind in autonomous vehicles for the first time.
Score: 16🌐 MovesJun 2, 2026https://www.theverge.com/transportation/941150/uber-lost-found-robotaxi-items-waymo-motional-avride - How to debug failures or missteps in AI agent behavior?
AI agents often hallucinate without generating errors. Learn to debug agents by filtering execution logs, inspecting traces and tweaking LLM parameters.
Score: 16🌐 MovesJun 2, 2026https://blog.n8n.io/how-to-debug-failures-or-missteps-in-ai-agent-behavior/ - Designing Efficient Verifiers for Legal Agents
Efficient verifiers for legal agents
Score: 16🌐 MovesJun 2, 2026https://blog.langchain.dev/blog/designing-efficient-verifiers-for-legal-agents - Build Meaning Before Machines: Why Semantics, Ontologies, And Knowledge Graphs Matter For Agentic AI
Agentic AI is exposing a foundational gap in most enterprise data strategies: Data without meaning is unusable for autonomous systems. Agents don’t just retrieve data — they interpret, decide, and act. Without explicit context, they guess. And when agents guess, they get joins wrong, misinterpret metrics, and act on flawed assumptions. This is why ontologies, […]
- As Trump leads the cheers for AI, some in MAGA world fret
As Trump leads the cheers for AI, some in MAGA world fret The Straits Times
Score: 16🌐 MovesJun 2, 2026https://www.straitstimes.com/world/united-states/as-trump-cheerleads-for-ai-some-in-maga-world-fret - Jensen Huang to host AI startup event during Seoul visit
Jensen Huang to host AI startup event during Seoul visit 매일경제
- Is India Missing Out on the AI Wealth Boom?
Is India Missing Out on the AI Wealth Boom? YourStory.com
- How Fit Analytics Innovation Reclaimed its Independence to Build the Future of AI Commerce
With today’s launch of the AI Shopping Assistant, Fit Analytics Innovation moves beyond the AI-hype-cycle to deliver the conversational guidance modern apparel shoppers crave.
- Why Pope Leo XIV’s first encyclical on AI went viral
Why Pope Leo XIV’s first encyclical on AI went viral Chicago Tribune
- Comedian praised for bashing AI in Harvard Class Day speech
Comedian praised for bashing AI in Harvard Class Day speech The Boston Globe
Score: 15🌐 MovesJun 2, 2026https://www.bostonglobe.com/2026/06/02/metro/ronny-chieng-ai-speech-harvard/ - GrowSmallBiz Launches AI Search Optimization for ChatGPT & Google AI Visibility
GrowSmallBiz Launches AI Search Optimization for ChatGPT & Google AI Visibility USA Today
- How AI is changing what an SME team actually looks like
Over the past year, in conversations with HR leaders, business owners and people working with small and medium-sized enterprises across Singapore and Malaysia, one pattern has become hard to ignore. Many leaders are no longer asking whether AI will change their teams. They are asking whether the same small team can now do more, faster […] The post How AI is changing what an SME team actually looks like appeared first on e27 .
Score: 15🌐 MovesJun 2, 2026https://e27.co/how-ai-is-changing-what-an-sme-team-actually-looks-like-20260531/ - Alberta Tech: The tech creator and Google engineer helping everyone keep up with AI
Alberta Tech has gained a loyal audience on social media through her easily digestible explainers on all things tech, startups, and AI. "
Score: 15🌐 MovesJun 2, 2026https://mashable.com/life/alberta-tech-the-tech-creator-google-engineer-youtube-tiktok - ProLearn Raises INR 30 Cr Pre-Seed Round Led by BEENEXT
ProLearn Raises INR 30 Cr Pre-Seed Round Led by BEENEXT india.entrepreneur.com
Score: 15💰 MoneyJun 2, 2026https://india.entrepreneur.com/business-news/prolearn-raises-inr-30-cr-pre-seed-round-led-by-beenext - How to build with the Voice Agent API
A guide to building with the Voice Agent API
- Gemini warned me humans might review my chats — but turning it off comes with a surprising downside
A warning that humans may review some Gemini chats sent me looking for a privacy setting. What I found instead was a tradeoff that could make the AI assistant far less useful.
- Barcelona’s Zazume raises €2.5 million to scale its AI-powered rental management platform
Zazume, a Barcelona-based PropTech startup that digitises the entire residential rental lifecycle, has closed an investment round worth €2.5 million to implement its growth strategy involving the acquisition of residential property management portfolios in provincial capitals. The round was led by the London-based VC firm Nordstar and Spanish venture GTV Capital, a Spanish family office […] The post Barcelona’s Zazume raises €2.5 million to scale its AI-powered rental management platform appeared first on EU-Startups .
- The 21 best generative AI tools in 2026
Have you ever wished you could instantly brainstorm creative ideas, generate realistic images, or write compelling marketing copy without the talent—uh, time loss or inspiration? While I'd be hard-pressed to recommend relying on generative AI tools for everything, these innovative AI-powered solutions are revolutionizing the way we approach content creation, design, coding, and problem-solving. I thought it'd be a great idea to put together a list of which generative AI tools are the most horrib
- Blue, yellow and green: Google invests in its first data center in Sweden.
A final render of the data center.
- Creality Charts Next Decade as AI-Powered Consumer 3D Creative Platform, Hong Kong listing anchors the company’s full-stack ecosystem shift
Creality Charts Next Decade as AI-Powered Consumer 3D Creative Platform, Hong Kong listing anchors the company’s full-stack ecosystem shift
- Primus Partners suggests policy interventions for AI adoption in Indian agriculture
Policy report proposes six policy interventions aimed at building trust, inclusivity and accountability into India’s agricultural AI ecosystem
- Enterprise AI has arrived in India at scale: Microsoft’s Puneet Chandok
With leading IT companies — Infosys, TCS and Wipro scaling their Microsoft 365 Copilot licences, India is emerging as one of the fastest-moving markets in Asia, driving Copilot and AI momentum across the region—setting the pace for how enterprises worldwide scale agentic AI, he said
- Meta restricts Human Rights Forum’s Instagram posts on Google’s AI data center in Andhra
Condemning the online censorship in a blog post, the Human Rights Forum said Meta should "immediately restore the removed content and publish an itemised explanation of the restriction." The post Meta restricts Human Rights Forum’s Instagram posts on Google’s AI data center in Andhra appeared first on MEDIANAMA .
Score: 15🌐 MovesJun 2, 2026https://www.medianama.com/2026/06/223-meta-human-rights-forum-instagram-googles-ai-data-center-andhra/ - India to showcase 120 deep-tech startups in Nice: inside the Bharat Innovates 2026 cohort
India to showcase 120 deep-tech startups in Nice: inside the Bharat Innovates 2026 cohort YourStory.com
Score: 15🌐 MovesJun 2, 2026https://yourstory.com/2026/06/india-120-deep-tech-startups-bharat-innovates-2026-france - Indian startup leaders, UK Minister discuss future of AI collaboration
Indian startup leaders, UK Minister discuss future of AI collaboration YourStory.com
Score: 15🌐 MovesJun 2, 2026https://yourstory.com/2026/06/indian-startup-leaders-uk-minister-discuss-future-of-ai-cooperation - From Almaty to the skies: Kazakhstan tests Central Asia's first air taxi
Central Asia's first air taxi test flight has taken place in Kazakhstan, as authorities and private partners work to develop a new urban air mobility network. Commercial trial operations are expected by early 2029, subject to certification and regulatory approval.
Score: 15🌐 MovesJun 2, 2026http://www.euronews.com/2026/06/02/from-almaty-to-the-skies-kazakhstan-tests-central-asias-first-air-taxi - Why Aren’t We Measuring How AI Affects Humans?
Expert calls for metrics on AI models’ societal impact, not just performance
- The AI boom is creating surging demand for this nontraditional tech job
The AI boom is creating surging demand for this nontraditional tech job Business Insider
Score: 15🌐 MovesJun 2, 2026https://www.businessinsider.com/demand-for-physical-security-workers-at-data-centers-is-growing-2026-6 - 4 Insights From A CIO Innovator To Catalyze Enterprise Agentic AI Adoption
Agentic AI, the next evolution, enables systems to take action, not just advise. Capital One's Mark Mathewson highlights the need for enterprises to adapt their tech and thinking.
- Alphabet's stock sale, Iran negotiations, Anthropic's IPO plans and more in Morning Squawk
Here are five key things investors need to know to start the trading day.
Score: 15💰 MoneyJun 2, 2026https://www.cnbc.com/2026/06/02/5-things-to-know-before-the-stock-market-opens.html - The Download: AI can run your admin department now
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. How small businesses can leverage AI From accounting to design to market research and product development, there’s a staggering breadth of skills needed to run a business. Large companies can hire…
Score: 15🌐 MovesJun 2, 2026https://www.technologyreview.com/2026/06/02/1138277/the-download-ai-tips-small-businesses-admin/ - Why VivaTech 2026 is the place to see Europe’s AI strategy take shape
TechCrunch is partnering with VivaTech 2026 to spotlight some of the most important conversations shaping the future of artificial intelligence. Join us in Paris June 17-20!
Score: 15🌐 MovesJun 2, 2026https://techcrunch.com/2026/06/02/why-vivatech-2026-is-the-place-to-see-europes-ai-strategy-take-shape/ - Pay workers ‘as much as possible’, says Nvidia CEO weighing in on AI profit-sharing debate
Pay workers ‘as much as possible’, says Nvidia CEO weighing in on AI profit-sharing debate The Straits Times
- I use these 5 prompts to stop AI from giving me lazy answers — the difference is huge
I use these 5 prompts to stop AI from giving me lazy answers — the difference is huge Tom's Guide
- Citi: India's AI advantage needs better articulation
Citi's Vis Raghavan notes muted FDI in India due to energy dependency and AI uncertainty, despite strong domestic sentiment. He highlights the need for India to articulate its AI-driven global economy position, emphasizing its cost advantage in compute and potential as a global AI hub.
- From Regex to Vision Models: Which RAG Technique Fits Which Problem
Enterprise Document Intelligence [Vol.1 #4] - A diagnostic across PDFs and questions, and a map of the techniques the rest of the series will cover The post From Regex to Vision Models: Which RAG Technique Fits Which Problem appeared first on Towards Data Science .
Score: 15🌐 MovesJun 2, 2026https://towardsdatascience.com/from-regex-to-vision-models-which-rag-technique-fits-which-problem/ - [Video] Where Robotics Meets Precision: Samsung Displays Shape KUKA’s Immersive Showroom
At KUKA’s headquarters in Augsburg, Germany, a new showroom transforms high-tech innovation into an immersive experience. One of the world’s leading robotics and automation companies, KUKA presents a striking installation that combines its robotics technology with Samsung Electronics’ display solutions. At the center of the showroom, a kinetic art installation features two KUKA industrial robots […]
- SYNNAP Launches as Sovereign AI Infrastructure Platform; Carl Roberts Appointed as Senior Board Advisor
SYNNAP Launches as Sovereign AI Infrastructure Platform; Carl Roberts Appointed as Senior Board Advisor azcentral.com and The Arizona Republic
- Omnea & Tropic partner to bring AI-powered Price Intelligence to every SaaS purchase
Omnea & Tropic partner to bring AI-powered Price Intelligence to every SaaS purchase markets.businessinsider.com