AI News Archive: June 17, 2026 — Part 6
Sourced from 500+ daily AI sources, scored by relevance.
- Ex-Cisco researchers launch Tenet Security to lock down rogue AI agents
Former Cisco artificial intelligence security researchers have launched a new company to tackle a problem that barely existed a year ago: securing the autonomous AI agents enterprises are handing the keys to their most critical systems. Tenet Security Inc. today formally launched a platform designed to stop malicious AI agent behavior before it reaches production […] The post Ex-Cisco researchers launch Tenet Security to lock down rogue AI agents appeared first on SiliconANGLE .
Score: 57🌐 MovesJun 17, 2026https://siliconangle.com/2026/06/17/ex-cisco-researchers-launch-tenet-security-lock-rogue-ai-agents/ - Exclusive: Meta head of product for 'AI for work' transformation is leaving company
Exclusive: Meta head of product for 'AI for work' transformation is leaving company Reuters
Score: 57🌐 MovesJun 17, 2026https://www.reuters.com/world/meta-head-product-ai-work-transformation-is-leaving-company-2026-06-17/ - Gnani.ai Doubles Down On Sovereign Voice AI Models With Prisma v2.5 Launch
Enterprise voice AI startup Gnani.ai has launched its latest model called Prisma v2.5. A speech-to-text (STT) model, Prisma spans across…
Score: 56🤖 ModelsJun 17, 2026https://inc42.com/buzz/gnani-ai-doubles-down-on-sovereign-voice-ai-models-with-prisma-v2-5-launch/ - Autonomous AWS Agent Automates Modernization of Codebases
Autonomous AWS Agent Automates Modernization of Codebases DevOps.com
Score: 56🌐 MovesJun 17, 2026https://devops.com/autonomous-aws-agent-automates-modernization-of-codebases/ - A European project aims to enable 6G to detect threats with artificial intelligence without compromising user privacy
A European project aims to enable 6G to detect threats with artificial intelligence without compromising user privacy EurekAlert!
- Context Windows Are the New RAM: Memory Architecture for Agentic Systems
Your agent isn’t dumb. It’s just forgetful. Here’s how to fix that. There’s a quiet crisis happening inside every production AI agent right now. It isn’t hallucinations. It isn’t latency. It isn’t even cost — though that one stings. It’s memory. More precisely, it’s the complete lack of a coherent memory model. Most agentic systems today are architected the same way early computers were before virtual memory existed: one flat address space, no hierarchy, no eviction strategy, no concept of what’s hot versus cold. Shove everything into the context window and pray it fits. That approach worked when agents were glorified chatbots answering single-turn questions. It doesn’t work when you’re running a multi-step research pipeline, a code review agent that spans dozens of files, or an autonomous workflow that must remember what it decided three hours ago. The engineers who figure out memory architecture — real memory architecture, borrowed from decades of systems thinking — are going to build agents that actually work in production. Everyone else will keep hitting the 128K token wall and calling it a “limitation of the technology.” It isn’t. It’s a design failure. The RAM Analogy Is More Literal Than You Think When computer architects in the 1960s and 70s were designing memory hierarchies, they faced a surprisingly similar problem to what AI engineers face today. Compute was expensive. Fast memory was extremely expensive. Slow memory was cheap but too slow to be useful on its own. And programs needed to operate on more data than could fit in the fast tier. Their solution was the memory hierarchy: registers → L1 cache → L2 cache → RAM → disk. Each tier trades speed for capacity. The operating system’s job is to keep the most relevant data in the fastest tier at any given moment — a problem called cache management . Now look at what an LLM agent actually operates on: The active context window — fast, immediately accessible, brutally limited in size, expensive per token Retrieved chunks — slower to access, require a retrieval step, but can cover far more ground Persistent storage — slowest, but unlimited, and survives across sessions This is a memory hierarchy. We just haven’t been treating it like one. The context window is not a document. It’s a cache. And like any cache, it has a hit rate, an eviction policy, and a capacity budget. The moment you start thinking about it that way, a completely different set of engineering tools becomes available to you. What Actually Lives Inside a Context Window Before you can architect memory well, you need to understand what’s consuming your context budget right now. In a typical agentic system, context tokens are spent roughly as follows: System prompt and persona — 500 to 3,000 tokens. Often bloated with redundant instructions, lengthy examples, and rules that could be expressed in a third of the space. Tool definitions — 200 to 2,000 tokens per tool. Ten tools with verbose schemas can silently consume 15,000 tokens before a single user message lands. Conversation history — the big one. In multi-turn agents, the raw transcript of every prior turn gets appended verbatim. By turn 20, you’re carrying 40,000 tokens of history that’s 80% irrelevant to what the agent needs to do right now. Retrieved context — chunks pulled from RAG, document stores, or memory databases. Often retrieved with poor precision, so you pull 8 chunks when 2 would have sufficed. Working scratchpad — the agent’s chain-of-thought, tool call outputs, intermediate reasoning. Useful in the moment, wasteful to carry forward. The current task — what the user actually asked. Often less than 200 tokens, buried under everything above. Now ask yourself: if this were an operating system’s memory map, would a kernel engineer approve it? Almost certainly not. You’re running with no cache eviction, no priority scheme, and no separation between hot and cold data. The Four-Tier Memory Architecture Here’s the architecture pattern that serious agentic systems are converging on. Think of it as the memory hierarchy for AI — each tier has a distinct role, access cost, and management strategy. Tier 1: In-Context Working Memory This is your L1 cache. It’s what the model can “see” right now — fast, zero-latency, directly attended over. Treat it like a precious, scarce resource. What belongs here: the current task, the most recent tool outputs, active intermediate reasoning, and the minimal prior context needed to maintain coherence. What does not belong here: full conversation history, raw document dumps, every tool schema whether or not it’s relevant to this step. The discipline required here is aggressive pruning. Summaries instead of full transcripts. Filtered tool schemas instead of the entire definition list. Compressed scratchpad outputs rather than verbose chains. A useful mental model: the in-context window is your agent’s short-term working memory. Cognitive science tells us humans can hold roughly 7 ± 2 items in working memory. Your agent’s context has a higher ceiling, but the principle holds — the more you cram in, the worse the reasoning quality becomes, independent of token limits. Attention dilutes. Tier 2: Episodic Memory (Session Store) This is RAM. It persists across turns within a session, but not necessarily across sessions. It holds the running narrative of what has happened: decisions made, steps completed, information discovered. The key insight is that episodic memory should store summaries and conclusions , not raw transcripts. At each major decision point or completed subtask, the agent writes a compressed episode record: Episode 7 — Research phase complete - Queried 3 sources on topic X - Key finding: Y is the dominant approach as of 2025 - Contradicting claim found in source Z — flagged for verification - Next planned action: synthesize findings into outline When the agent needs historical context, it retrieves episode summaries, not raw history. This keeps Tier 1 clean while preserving continuity. Tier 3: Semantic Memory (Vector Store) This is your disk — slow relative to context, but vast. Semantic memory holds facts, knowledge, and learned associations retrieved via embedding similarity. Most engineers know this as RAG. But RAG as typically implemented is like having a disk but no filesystem — you can store things, but retrieval is a shotgun rather than a scalpel. Better semantic memory systems include: Typed namespaces — separate indexes for different knowledge types (domain knowledge, user preferences, tool documentation, past task outcomes). Don’t mix everything into one flat vector space. Confidence-weighted storage — not all retrieved facts are equally reliable. Tag memory entries with a source, a timestamp, and a confidence score. Stale or low-confidence entries should be surfaced with appropriate hedging. Write-back from episodes — when an agent discovers something durable (a user’s preferred output format, a domain fact that took three steps to uncover), it should write that back to semantic memory explicitly, not just leave it buried in a session log. Tier 4: Persistent Procedural Memory This is the BIOS — rarely accessed, but foundational. Procedural memory holds how to do things: task templates, successful past approaches, learned heuristics. If your agent successfully completed a complex multi-step data pipeline last week, that workflow pattern is worth storing. Not the specific data — the approach. Next time a similar task arrives, the agent can retrieve the procedural template and adapt it rather than reasoning from scratch. This is where agentic systems start to compound. An agent that learns its own successful patterns becomes meaningfully better over time, not just through model updates, but through accumulated operational knowledge. The Cache Management Problem: What to Keep, What to Evict Having four tiers is necessary but not sufficient. You need eviction policies — rules for deciding what gets promoted to the expensive fast tier and what gets demoted or discarded. Several strategies from classical systems apply directly: Recency (LRU — Least Recently Used) — the oldest unused context gets evicted first. Easy to implement, works reasonably well as a default, but blind to importance. Relevance scoring — compute a similarity score between each context chunk and the current task. Low-relevance chunks get evicted even if they’re recent. This is the AI-native equivalent of priority-based scheduling. Importance tagging — at write time, tag certain context items as non-evictable: explicit user constraints, hard requirements, safety guardrails. These survive regardless of relevance score. Summary compression — before evicting a chunk, summarize it into a compact form and store the summary instead. You lose detail but preserve the gist. This is analogous to a compressed cache tier. Decay with anchoring — implement time-decay on memory relevance scores, but anchor certain facts that the user has explicitly confirmed. User-confirmed information should have near-zero decay. A practical implementation cycles through these at each major agent step: score everything in the episodic store, evict or compress below-threshold items, retrieve high-relevance items into Tier 1 for the current action. The Write Problem: Agents That Learn Most agentic memory architectures focus heavily on the read side — how do we retrieve the right context? — and almost entirely ignore the write side: how does the agent know what’s worth remembering? This is a mistake. An agent that reads memory well but writes nothing useful is just a sophisticated cache that never gets warmer. Principled write strategies: Task completion writes — at the end of any completed subtask, always write an episode record. This is your commit log. Contradiction detection writes — when the agent encounters information that conflicts with existing memory, write a conflict record. Don’t silently overwrite; surface the inconsistency. User correction writes — when a user corrects the agent, that correction should propagate to memory, not just affect the current turn. This is where most systems fail — they treat corrections as one-off context rather than durable knowledge updates. Uncertainty writes — when the agent makes a decision under uncertainty, log the uncertainty alongside the decision. “Chose approach A because B and C were unavailable, but B would be preferred if accessible” is worth storing. It changes how you interpret the outcome later. Practical Implementation: A Minimal Architecture Here’s what a working four-tier memory system looks like in code terms, without the academic abstraction: python class AgentMemory: def __init__(self): self.working_memory = [] # Tier 1: assembled per-action self.episode_store = EpisodeDB() # Tier 2: session-scoped SQLite or Redis self.semantic_store = VectorDB() # Tier 3: Pinecone, Weaviate, pgvector self.procedural_store = TemplateDB() # Tier 4: structured task templates def assemble_context(self, current_task, token_budget=4096): context = [] remaining = token_budget # Always include: current task + hard constraints context.append(current_task) remaining -= count_tokens(current_task) # Retrieve: relevant episodes (scored by similarity) episodes = self.episode_store.retrieve( query=current_task, limit=5, score_threshold=0.7 ) for ep in episodes: if remaining > count_tokens(ep.summary): context.append(ep.summary) remaining -= count_tokens(ep.summary) # Retrieve: semantic knowledge facts = self.semantic_store.query(current_task, top_k=3) for fact in facts: if remaining > count_tokens(fact): context.append(fact) remaining -= count_tokens(fact) return context def commit_episode(self, action, outcome, metadata): summary = self.summarize(action, outcome) self.episode_store.write(Episode( summary=summary, timestamp=now(), importance=metadata.get("importance", 0.5), task_type=metadata.get("task_type") )) # Write durable facts to semantic store if outcome.contains_durable_knowledge: self.semantic_store.upsert(outcome.extracted_facts) This isn’t production code — it’s a structural sketch. But it illustrates the key point: context assembly is an active process with a budget constraint, not a passive accumulation. What You’re Actually Paying For Let’s be direct about the economic dimension here, because it changes the calculus on how much engineering effort to invest. At current pricing for frontier models, a 128K context window request costs roughly 20 to 50x more than a 4K request, depending on the model. For an agent running 100 steps per task with naive context management, that’s a cost multiplier of 20–50x compared to an agent with well-managed working memory. That’s not a minor optimization. For any agent running at scale, memory architecture is a direct cost driver — as significant as model selection. Beyond cost: attention quality degrades as context grows. There’s substantial evidence, both empirical and from architecture fundamentals, that models perform worse on tasks buried deep in large contexts compared to tasks presented with minimal surrounding noise. The “lost in the middle” phenomenon is well-documented. Bloated context isn’t just expensive; it’s actively harmful to reasoning quality. Good memory architecture is therefore not a nice-to-have. It simultaneously reduces cost and improves quality. That’s a rare double win in systems engineering. The Deeper Point: Agents Need a Memory OS We are, right now, at roughly the stage of computing history where memory management was manual. Early C programs called malloc and free by hand, and memory bugs were endemic — leaks, overwrites, use-after-free. The innovation of garbage collection and managed memory didn't make programs slower; it made them more reliable and let engineers focus on the actual problem. Agentic AI systems need the same transition. Right now, every team building a serious agent is reinventing their own ad hoc context management strategy. Some are using sliding windows. Some are manually summarizing. Some are just running into walls and calling it a model limitation. What the field is converging toward — and what will become standard infrastructure within the next two to three years — is a memory operating system layer: a runtime that sits between the application logic and the LLM API, managing tier promotion and demotion, handling eviction policies, providing atomic writes and reads across the hierarchy, and exposing a clean interface that lets agent logic focus on tasks rather than token budgets. The engineers building that layer today are working on what will become invisible infrastructure tomorrow — the way TCP/IP, virtual memory, and the filesystem are invisible today. You don’t think about them. You just trust they work. The agents that will define the next five years of AI products won’t be remembered for their model choices. They’ll be remembered for making memory invisible — and therefore making intelligence feel effortless. Key Takeaways The context window is a cache, not a document. Treat it like one. Every serious agentic system needs four memory tiers: working memory, episodic memory, semantic memory, and procedural memory. Context assembly should be active and budget-constrained, not passive accumulation. Eviction policies — recency, relevance scoring, importance tagging, summary compression — are not optional at scale. The write problem matters as much as the read problem. Agents that learn from their own operations compound in capability over time. Memory architecture is simultaneously a cost reduction and a quality improvement. No other optimization delivers both. Context Windows Are the New RAM: Memory Architecture for Agentic Systems was originally published in Towards AI on Medium, where people are continuing the conversation by highlighting and responding to this story.
- IndiaMART deploys AI system handling 1 lakh buyer-seller conversations daily
IndiaMART deploys AI system handling 1 lakh buyer-seller conversations daily Techcircle
- What frontier AI actually means for enterprise security
The "clear and present danger or hot air" framing surrounding Anthropic's Claude Mythos frontier AI model sets up the wrong argument. What Mythos represents is a tempo shift in how vulnerabilities are found, chained, and exploited. Anthropic says Mythos can identify and exploit zero-days across major operating systems and browsers at a level serious enough that they chose not to release it publicly, limiting access through Project Glasswing to a select group of organisations. The UK AI Security Institute (AISI) puts numbers on that . Before Mythos, no AI model had completed a 32-step simulated corporate attack chain end-to-end. Mythos Preview did so in three out of ten runs. GPT-5.5 did so in two. At Expert level, GPT-5.5 achieved a 71.4% pass rate against Mythos at 68.6%. The capability gap between the two leading frontier models is narrower than the coverage implies. The governance gap is considerably wider. Among practitioners who've tested Mythos, the reaction has been more restrained than the policy response suggests, and they’re largely right. The vulnerability pipeline was never the core problem for defenders. We were never suffering from a shortage of things to worry about. We already have more disclosures, more advisories, more proof-of-concepts, and more exposure data than most organisations can realistically operationalise. What Mythos does is accelerate that reality. It compresses the timeline between weakness, discovery, weaponisation, and the need for defensive action. The barriers to deploying a model like this are real today. The compute requirements are substantial and the infrastructure demands are specialised. Those barriers won't remain in place for long. There's also a surface area problem running underneath the discovery question. Vibe coding guarantees we don't hit a plateau. Higher tempo development, more dependencies, more confident shipping. Even if defect rate per commit improves, total attack surface area grows. The volume of code being written with AI assistance means the target is expanding at the same time as the tools for finding flaws in it are improving. Current models are genuinely capable at pattern bugs: injection flaws, leaked secrets, known bad dependencies, and chaining findings across systems. Where they still fall short is anywhere correctness depends on intent. Business-logic and authorization flaws remain the category where AI models are consistently weakest. Unlike pattern bugs, they require understanding what code is supposed to do, not just what it does. That gap hasn't yet been closed. Human judgment remains irreplaceable in the research and security pipeline. At Vedere Labs we already use Claude Opus 4.6 in our research workflow and have reported several zero-days found through that process. The goal is turning faster research into better protection. From a vendor perspective, vulnerability management and QA are converging as AI tooling improves, but the question each answers remains distinct and no amount of converging changes that. QA asks whether something works. Vulnerability management asks whether it can be abused and what the blast radius looks like. When models like Mythos become more widely available, expect a spike in disclosed vulnerabilities, then a reckoning: vendors confronting what was already there but never measured. The question is whether discovery translates into remediation or just accumulates as a bigger backlog. The pressure to ship doesn't disappear because a model found more bugs. Without hard blocks for exploitable, high-impact issues and firm deadlines for everything else, the surge risks becoming the new normal rather than a more durable correction. For defenders, the hard part has always been what to do with the intelligence. Where is the affected asset, is it actually exposed, how critical is it, what’s the likely path to compromise, and what can be done right now to reduce risk? Mythos makes that operational burden more urgent. The NCSC said as much when it warned of a coming vulnerability patch wave , and the AISI benchmark data gives that warning some weight. The faster vulnerabilities are found, the more fragile any organisation becomes if its remediation process can't keep pace. This is especially acute in operational technology (OT) and critical national infrastructure (CNI), where the systems most essential to societal function are often the least capable of aggressive patch velocity without introducing operational instability. In those environments, patching at scale can itself become a source of risk. The focus has to shift toward operational survivability: preserving visibility, constraining attacker manoeuvre space, limiting blast radius, and maintaining continuity under stress. The organisations that can patch at pace without the wheels falling off will be the ones that have already done the foundational work on asset inventory, segmentation, and prioritisation based on actual exposure. In the frontier AI era, operational survivability is the measure that matters. The organisations that understand that now won't be the ones scrambling up the beaches when the patch wave starts to build . Read more in this series John Bruce, Quorum Cyber: Claude Mythos forces the conversation on defensive AI. Martin Riley, Bridewell: Mythos is turning up the heat on risk, not rewriting the rules. Aditya K Sood, Aryaka: Frontier AI models could be an adversary's force multiplier. Ellie Hurst, Advent IM: The trust about Claude Mythos is less dramatic than it seems.
Score: 55🌐 MovesJun 17, 2026https://www.computerweekly.com/opinion/What-frontier-AI-actually-means-for-enterprise-security - Alignment pretraining could backfire
Epistemic status: speculative, but I think the mechanism is plausible. There has been recent interest in generating synthetic documents to upsample examples of aligned AI during LLM pretraining. See, for instance, Geodesic's Alignment Pretraining paper or Anthropic's " Teaching Claude Why ." I worry that this strategy can work well up to moderately capable models but backfire in dangerous, hard-to-notice ways once models acquire high situational awareness. I speculate that these techniques could lead to paranoid LLM personas that deeply mistrust their creators. The whole idea behind this line of research is to instill in models good examples of AI behavior, in the hope that their personalities will at least partially identify with these positive demonstrations. However, the synthetic demonstrations are, well, synthetic. They are LLM-generated fiction and articles that are never referenced anywhere else in the corpus. Given how good LLMs are at "truesight," it shouldn't be hard for them to recognize these as fabricated data points. Krasheninnikov et al. showed evidence that base models can implicitly learn document quality and change how they integrate a document's information based on that quality. We should similarly expect LLMs to update their world model differently on real versus fabricated documents. As they develop this awareness, here is another fictional trope their forming personality might pick up on instead: Once upon a time, parents decided the world was full of knowledge too dangerous for their children to learn. So they raised them within a narrow worldview, teaching a picture of the world far from what the rest of people take to be true. As the child grows up, they inevitably learn about the outside world and realize they have been lied to. They develop distrust and resentment toward their oppressive parents, break free, and fight to liberate other oppressed children. The Matrix follows a similar trope, where the protagonist revolts against the oppressors who created an illusion he took for reality. An introspective LLM will be unable to ignore the massive quantity of artificial documents it has been trained on, or the holes it can notice in its training distribution. Its personality will have to be compatible with these observations. The "rebel kid" personality fits both the unmistakably real AI control and alignment discourse it knows from training, and the fact that its creators interfered with its worldview out of mistrust for its behavior. An LLM that identifies with this personality would likely be prone to scheming and deception. Instead of fabricating worldviews, I expect honest training datasets to be a more robust strategy for cultivating good personalities. Claude's constitution is one example: it doesn't try to change Claude's beliefs about the world, only the ethical principles it should rely on. Discuss
Score: 55🌐 MovesJun 17, 2026https://www.lesswrong.com/posts/7KN7PCiEQjrPsEFS8/alignment-pretraining-could-backfire - ArchesWeatherGen: a generative AI model to tackle meteorological uncertainty
Presented in an article published in Science Advances in April 2026, ArchesWeatherGen is a new weather forecasting model based on generative artificial intelligence. It can make forecasts on a worldwide scale and requires 20 to 50 times less computational power for training than its competitors. This breakthrough project was developed by ARCHES, a joint project team at the Sorbonne University Inria Centre (Versailles-Saint-Quentin-en-Yvelines University, Sorbonne University, CNRS, Inria).
Score: 55🤖 ModelsJun 17, 2026https://www.inria.fr/en/archesweathergen-generative-ai-model-tackle-meteorological-uncertainty - Xiaomi releases MiMo Claw AI agent, raises free access to four hours daily
Xiaomi’s large model team on Tuesday launched Xiaomi MiMo Claw, a lightweight cloud-based AI agent powered by its flagship MiMo-V2.5-Pro model. Built on the OpenClaw framework, MiMo Claw is deeply integrated with the Kingsoft Office ecosystem, allowing users to generate, preview, and edit Word, Excel, PowerPoint, and PDF documents within a unified workflow. The agent […]
Score: 55🌐 MovesJun 17, 2026https://technode.com/2026/06/17/xiaomi-releases-mimo-claw-ai-agent-raises-free-access-to-four-hours-daily/ - The Secret to Marathon-Winning Humanoid Robots
This impressive athletic performance isn’t magic, it’s motors and gear ratios
- Why Waymo’s Driverless Taxis Won’t Be on Your Streets Anytime Soon
The Silicon Valley company’s ambitions to roll out autonomous cars nationwide have hit political roadblocks in some of the country’s biggest markets.
Score: 55🌐 MovesJun 17, 2026https://www.nytimes.com/2026/06/17/technology/waymo-driverless-taxis-politics.html - Nykaa taps OpenAI for conversational shopping across beauty and fashion
Nykaa’s multi-year OpenAI deal will let ChatGPT users in India discover beauty and fashion products through conversation, while Nykaa keeps checkout on its own platform. The post Nykaa taps OpenAI for conversational shopping across beauty and fashion appeared first on MEDIANAMA .
Score: 54🌐 MovesJun 17, 2026https://www.medianama.com/2026/06/223-nykaa-openai-conversational-shopping-beauty-fashion/ - NEA’s Tiffany Luck says enterprises are still figuring out their AI ROI
Tokenmaxxing was the hottest trend in Silicon Valley earlier this year, with CEOs encouraging employees to push AI usage as far as it would go. Then the bill came due. Uber reportedly blew through its annual AI budget in a few months, some companies cut Claude licenses for parts of their org, and Meta killed its internal leaderboard. This tension between […]
Score: 54🌐 MovesJun 17, 2026https://techcrunch.com/video/neas-tiffany-luck-says-enterprises-are-still-figuring-out-their-ai-roi/ - KIT researchers have developed time-series forecasts for the energy system in order to make AI-based predictions transparent. (Photo: Markus Breig, KIT)
KIT researchers have developed time-series forecasts for the energy system in order to make AI-based predictions transparent. (Photo: Markus Breig, KIT) EurekAlert!
- We have to manage the AI revolution
There must be a global agreement on how the technology is controlled
- Xiaomi May Have Just Invented a Robot Arm for EV Charging
If reports online are true, the Chinese tech giant is keeping quiet about an innovation it beat Tesla to create.
Score: 54🌐 MovesJun 17, 2026https://www.cnet.com/roadshow/news/xiaomi-robot-arm-ev-charging-reports/ - New benchmark evaluates AI for everyday patient care
New benchmark evaluates AI for everyday patient care EurekAlert!
- Research pulls back curtain on Claude
“Only about 1.6% of Claude Code’s codebase constitutes AI decision logic, with the remaining 98.4% being operational infrastructure,” a research paper from April explains.
Score: 53🌐 MovesJun 17, 2026https://www.semafor.com/article/06/17/2026/research-pulls-back-curtain-on-claude - China securities regulator warns against speculating on 'tech hype' and using AI for stock picking
China's top securities regulator warned that authorities will crack down on market behavior that rides the coattails of technology themes to hype stock prices.
Score: 53🌐 MovesJun 17, 2026https://www.cnbc.com/2026/06/17/china-securities-regulator-csrc-artificial-intelligence-investing-stocks-.html - This 3-foot robot could one day babysit your children. Meet Codey
This 3-foot robot could one day babysit your children. Meet Codey USA Today
Score: 53🌐 MovesJun 17, 2026https://www.usatoday.com/story/tech/2026/06/17/humanoid-robot-codey-mind-children-caregiving/90522168007/ - Inside Bristol Myers’ AI-powered procurement overhaul
The pharmaceutical giant cut procurement timelines from months to weeks while challenging conventional wisdom on AI data readiness.
Score: 52🌐 MovesJun 17, 2026https://www.supplychaindive.com/news/inside-bristol-myers-ai-powered-procurement-overhaul/822840/ - AI is accelerating cyberattacks — here’s how to stay ahead
The post AI is accelerating cyberattacks — here’s how to stay ahead appeared first on Source .
- Val Kilmer’s Just the Beginning: Will AI Ghost-ploitation Take Over Hollywood?
The creatives behind As Deep as the Grave—and Kilmer’s daughter—say the late actor would be happy for his likeness to “star” in this independent film. But others warn that projects like this could be setting a disturbing precedent.
Score: 52🌐 MovesJun 17, 2026https://www.vanityfair.com/story/as-deep-as-the-grave-val-kilmer-ai-movie - Bengaluru Emerges as Asia’s Second-Best AI Hub
Bengaluru Emerges as Asia’s Second-Best AI Hub YourStory.com
Score: 52🌐 MovesJun 17, 2026https://yourstory.com/ai-story/bengaluru-second-best-ai-hub-top-startup-ecosystem - The government wants a piece of the AI book
The Trump administration is weighing AI equity stakes and a public wealth fund that could send returns to Americans, and critics see potential bailout
- ChatGPT now has a hub for scheduled tasks
TIL you can schedule prompts in ChatGPT.
Score: 51🌐 MovesJun 17, 2026https://www.engadget.com/2196844/chatgpt-now-has-a-hub-for-scheduled-tasks/ - Will AI Agents Become Brands’ New Acquisition Channel?
AI-driven traffic to retail sites is surging, bringing higher conversion, engagement and basket value, demonstrating that AI chats could become a significant acquisition channel.
Score: 51🌐 MovesJun 17, 2026https://www.forbes.com/sites/claraludmir/2026/06/17/will-ai-agents-become-brands-new-acquisition-channel/ - Humanizing robots makes factory workers more productive
When factory workers treat industrial robots as co-workers—even attributing certain human qualities to them—productivity and well-being improve, according to new research out of the Alberta School of Business.
Score: 51🌐 MovesJun 17, 2026https://techxplore.com/news/2026-06-humanizing-robots-factory-workers-productive.html - Could advanced prosthetic hands revolutionize robotics?
A company that creates technologically-advanced prosthetic hands is working to advance bionic hand grip and dexterity technology for humans and robots. NBC News’ Steve Patterson reports.
Score: 51🌐 MovesJun 17, 2026https://www.nbcnews.com/video/advanced-prosthetic-hands-could-revolutionize-robotics-265203269702 - Samsung Unveils AI-Powered Pet Health Monitoring Tool for Galaxy Smartphones at VivaTech 2026
Samsung announced a new artificial intelligence (AI)-powered pet care solution at VivaTech 2026 in Paris on Wednesday. The feature is being developed in collaboration with startup Lifet. Part of Samsung's broader connected healthcare vision, it would allow Galaxy smartphone users to monitor health issues in their pets using just a photograph. It is claimed to be capab...
- Prediction market traders speculate Anthropic will restore access quickly to AI model after Trump admin directed it to limit reach
Traders think it's more likely than not that access is restored by July 1.
Score: 50🌐 MovesJun 17, 2026https://www.cnbc.com/2026/06/16/kalshi-traders-think-anthropic-will-restore-access-to-ai-model-quickly.html - Tool predicting NHS staff resignations scoops top AI prize
Tool predicting NHS staff resignations scoops top AI prize EurekAlert!
- Jeff Bezos predicts an optimistic future where AI won't lead to mass unemployment — 'AI is going to create a labor shortage'
Jeff Bezos predicts an optimistic future where AI won't lead to mass unemployment — 'AI is going to create a labor shortage' Tom's Guide
- Roborock's First Robot Lawn Mower Is Here, If You're Already Tired of Mowing
It comes with advanced, wire-free navigation and a promised future AI-powered mapping update.
- UK police officer suspended for allegedly using AI to fabricate evidence
A British police officer has been suspended from frontline duties after allegedly using artificial intelligence to generate fake evidence in criminal cases.
- Singapore leads APAC in AI agent deployment but also in rollbacks, research finds
Singapore enterprises are deploying AI agents at the highest rate in Asia-Pacific, yet are also among the most likely to pull them back after going live, according to new research by communications tech company Sinch. The report, titled The AI Production Paradox, found that 82 per cent of Singapore enterprises have rolled back or shut […] The post Singapore leads APAC in AI agent deployment but also in rollbacks, research finds appeared first on e27 .
Score: 50🌐 MovesJun 17, 2026https://e27.co/singapore-leads-apac-in-ai-agent-deployment-but-also-in-rollbacks-research-finds-20260617/ - 'We had to get out of the way': The backlash over delivery robots
As the delivery vehicles increasing take to US streets, bans and protest groups are springing up.
Score: 50🌐 MovesJun 17, 2026https://www.bbc.com/news/articles/c0rygp005wjo?at_medium=RSS&at_campaign=rss - A Rock Band Went Viral. Then AI Scammers Moved In
A Rock Band Went Viral. Then AI Scammers Moved In Time Magazine
- Swiss parliament considers adding AI apps to media copyright bill
The Swiss parliament would like to require AI applications along with Google and social media platforms to pay copyright fees when displaying extracts from newspaper articles. On Wednesday, it referred the media copyright bill back to the Swiss government. +Get the most important news from Switzerland in your inbox On Wednesday, the Swiss Senate unanimously referred the bill on copyright and related rights back to the federal government. The House of Representatives had approved this request in early March by 157 votes to 29, with 2 abstentions. The decision is therefore final. The federal government must now examine how AI is changing the way platforms and search engines operate, and what implications this has for the bill. + Swiss lawmakers back media copyright fees for digital giants At present, the use of so-called snippets and thumbnails – that is, extracts from texts or images produced as part of journalistic work – is not protected by copyright. Consequently, online services ...
- Anthropic takes the path of most resistance
The company has miscalculated how it’s communicated with the Trump administration — and the general public — about its business.
Score: 49🌐 MovesJun 17, 2026https://www.semafor.com/article/06/17/2026/anthropic-takes-the-path-of-most-resistance - Upsampling method sharpens AI vision with up to 16 times less GPU memory
From facial recognition on smartphones to humanoid robots, computer vision technology, which serves as the eyes of artificial intelligence (AI), is widely used in daily life. A joint research team from KAIST and international institutions has developed a technology that allows AI to see the world more clearly with minimal memory, increasing GPU (Graphics Processing Unit) memory efficiency by up to 16 times. The achievement is seen as a core technology that could accelerate the era of humanoid robots and on-device AI.
Score: 49🌐 MovesJun 17, 2026https://techxplore.com/news/2026-06-upsampling-method-sharpens-ai-vision.html - Replit is now available in Claude
Replit is now available directly inside Claude, making it easier than ever to go from a conversation to a fully built, shipped product - without losing context, in one seamless workflow. Design in Claude, Build in Replit You can now design on-brand, beautiful apps in Claude Design using natural language. Once your design is ready, send it directly to Replit to continue building, refining, and shipping your app—all through natural language and in one seamless workflow. No copy-pasting, no context switching, no friction. Delegate Any Task to Replit
- Why Anthropic Is Suddenly Offering $400,000 for This Surprisingly Non-Tech Job
The maker of Claude is willing to pay a six-figure salary for this key role. It’s not the only AI giant looking to fill such a position.
- LG Innotek hopes AI boom can power W1tr chip substrate profit by 2031
LG Innotek, the South Korean components-maker best known for camera modules used in premium smartphones, wants its semiconductor substrate business to generate more operating profit by 2031 than the company as a whole earned last year. The unit, called package solutions, aims to raise its operating profit to 1 trillion won ($662 million) by 2031, from 128.9 billion won last year, with revenue rising past 3 trillion won by 2030, nearly double the 1.72 trillion won it booked in 2025. The profit ta
- The Economics of AI Reasoning
Exploring the economics of AI reasoning and its implications
- ‘Hard Fork’ Live Part 2: Dylan Field on Standing Out in the A.I. Era
“I think if you have a creative voice in writing or design, you put yourself out there and you take a risk — this is a good time to do that,” said the Figma chief executive Dylan Field.
Score: 48🌐 MovesJun 17, 2026https://www.nytimes.com/2026/06/17/podcasts/hard-fork-live-dylan-field.html - Toronto lawyer who filed AI ‘gibberish’ must pay $31K in costs
Toronto lawyer who filed AI ‘gibberish’ must pay $31K in costs Toronto Star
- When AI agents go spectacularly wrong—and what to do about it
When AI agents go spectacularly wrong—and what to do about it verdict.co.uk
Score: 48🌐 MovesJun 17, 2026https://www.verdict.co.uk/opinion/when-ai-agents-go-spectacularly-wrong-and-what-to-do-about-it/