<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>IEEE Spectrum</title><link>https://spectrum.ieee.org/</link><description>IEEE Spectrum</description><atom:link href="https://spectrum.ieee.org/feeds/topic/robotics.rss" rel="self"></atom:link><language>en-us</language><lastBuildDate>Mon, 13 Jul 2026 10:19:51 -0000</lastBuildDate><image><url>https://spectrum.ieee.org/media-library/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpbWFnZSI6Imh0dHBzOi8vYXNzZXRzLnJibC5tcy8yNjg4NDUyMC9vcmlnaW4ucG5nIiwiZXhwaXJlc19hdCI6MTgyNjE0MzQzOX0.N7fHdky-KEYicEarB5Y-YGrry7baoW61oxUszI23GV4/image.png?width=210</url><link>https://spectrum.ieee.org/</link><title>IEEE Spectrum</title></image><item><title>Building a Foundation Stack for General-Purpose Robots</title><link>https://spectrum.ieee.org/x-square-robot-embodied-ai-stack</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/humanoid-robot-folding-laundry-on-a-neatly-made-bed-in-a-sunlit-bedroom.png?id=67111698&width=1200&height=800&coordinates=115%2C0%2C115%2C0"/><br/><br/><p><em>This article is brought to you by <a href="https://x2robot.com/" target="_blank">X Square Robot</a>.</em></p><p>Large language models gave artificial intelligence a working recipe. Pretrain a large model on broad data, and general capability follows. Robotics has no such recipe. Robotics systems have long been assembled from separate perception, planning, and control parts that rarely add up to intelligence a robot can carry from one task to another, or one machine to another. The central problem in embodied AI is to find the equivalent recipe, and the field does not yet agree on what it is.</p><p><a href="https://x2robot.com/" target="_blank">X Square Robot</a>, a Chinese embodied-AI company, has made an unusually explicit bet. It argues that the recipe is an integrated stack, spanning the data a robot learns from, a world model for predicting changes in the physical world, and an action model that brings together perception, planning, reasoning, and decision-making to generate executable robot behavior. The company also believes that the stack should be built and <a href="https://x2robot.com/en/research" target="_blank">released in the open</a>.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="21c864c582f34337aa34a1eb5a2c2742" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/gOYHyq87Pgk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span> <small class="image-media media-caption" placeholder="Add Photo Caption...">X Square Robot shares its vision of bringing robots into real homes.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">X Square Robot</small></p><h2>X Square Robot’s embodied AI stack</h2><p>What holds the stack together is a small set of principles rather than a single overarching model.</p><ul><li>The first is that the basic unit of robot data is an interaction, not a trajectory; a demonstration is successful only if it changes the world as intended, not simply because the joints moved. </li><li>The second is that pretraining should yield usable capability, not just an initialization for later fine-tuning. </li><li>The third is that behavior should be modeled around physical events rather than fixed slices of time. </li></ul><p>These principles make the layers interdependent, since the same robot-free data that trains the action model is also structured to feed the world model. It is worth being precise, though. The company describes the world model and the action model as complementary but independent model families that share a code base. Both sit within its broader World Unified Model, which it has presented as an architecture for training vision, language, action, and physical prediction together.</p><h2>Robot learning data: Engineering for quality and cost, not scale</h2><p>For the X Square Robot team, one of the biggest constraints on general-purpose robots is the cost and quality of interaction data, not the number of parameters. To address that, the company built its Universal Manipulation Interface (UMI) data collection system, <a href="https://x2robot.com/en/news/6a46341cc7feadddbc603a33" target="_blank">QUANXTA Zero Series</a>. It works by collecting demonstrations from people wearing a rig with dual grippers rather than teleoperating a robot. This approach is not itself new, and builds on established methods for robot-free data capture. What sets it apart are two engineering choices.</p><div class="ieee-sidebar-medium"><p class="shortcode-media shortcode-media-rebelmouse-image rm-float-left rm-resized-container rm-resized-container-25" data-rm-resized-container="25%" style="float: left;"> <img alt="Person using VR headset and handheld controllers to teleoperate a dishwashing robot system" class="rm-shortcode" data-rm-shortcode-id="3e5c65f7aab7cc856564629fde6716dc" data-rm-shortcode-name="rebelmouse-image" id="75dbc" loading="lazy" src="https://spectrum.ieee.org/media-library/person-using-vr-headset-and-handheld-controllers-to-teleoperate-a-dishwashing-robot-system.png?id=67111747&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">X Square Robot emphasizes data quality control, recording trajectories and replaying them on a real robot, with only those that actually complete the task counted as valid.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">X Square Robot</small></p></div><p>The first is quality control, and it is the most distinctive part. Rather than accepting recorded trajectories as they are, the system runs a closed inspection loop, and its notable step is physical playback. A sample of trajectories is replayed on the real robot, and only those that actually complete the task count as valid. That makes the validity rate a measured quantity rather than an assumption. For example, a gripper that closes a fraction of a second too early still looks like a grasp in the data, yet it has pushed the object away, so it shouldn’t be classified as valid. A smaller clean dataset can be worth more than a larger noisy one.</p><p>The second choice is how lower-cost human data and scarce robot data are combined. The company pretrains on a large volume of robot-free demonstrations to build general representations, then adds a small amount of real-robot data as an anchor to the specific machine’s dynamics. It reports that this reaches performance comparable to an all-robot dataset at roughly a 20-fold lower cost of collection, driven mainly by how much cheaper the wearable rig is than a teleoperation setup. </p><p>The resulting dataset is deliberately model-agnostic, formatted to feed both action models and world models. The caveat is that the strongest results are measured on the company’s own robots and data-collection pipelines. Broader independent testing will help confirm and extend these promising results across a wider range of settings.</p><h2>A world model organized around events</h2><p>In developing its world model, called <a href="https://x2robot.com/en/pages/wm" target="_blank">WALL-WM</a>, X Square Robot took a differentiated approach. Most action models predict a fixed-length chunk of motion from the current image and instruction. That is convenient, but it segments behavior into fixed-duration windows, so the boundaries fall where elapsed time dictates rather than where one action ends and the next begins. WALL-WM instead treats an action-grounded semantic event as its unit: a coherent piece of behavior such as reaching, grasping, or placing, something that can be named in language, seen in video, and executed as motion.</p><div class="ieee-sidebar-large"><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Collage of robot arms manipulating kitchen objects with charts of multimodal AI performance" class="rm-shortcode" data-rm-shortcode-id="45376efe0d6e4482760985a5be54bc35" data-rm-shortcode-name="rebelmouse-image" id="67705" loading="lazy" src="https://spectrum.ieee.org/media-library/collage-of-robot-arms-manipulating-kitchen-objects-with-charts-of-multimodal-ai-performance.png?id=67111750&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">X Square Robot’s world model, called WALL-WM, treats an action-grounded semantic event as its unit: a coherent piece of behavior such as reaching, grasping, or placing, something that can be named in language, seen in video, and executed as motion.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">X Square Robot</small></p></div><p><span>WALL-WM’s design reflects a specific concern about not discarding what large video models already know. To achieve that, a text-to-video model is coupled to a freshly initialized action network that reads from the video features without overwriting them, which preserves the visual prior. From that one process, it offers two modes. An event mode runs in variable-length segments and suits reasoning over long horizons, while a fixed-length mode produces the steady, real-time output a controller needs. That places WALL-WM between mainstream chunk-based action models and pure video world models, keeping the predictive character of a world model while still yielding executable control.</span></p><p>In a series of experiments, the company relied on a generalization test that is more specific than most. A model trained on a limited dataset was evaluated on long-horizon tasks in unseen settings and, on the company’s real-robot benchmark, reportedly outscored baselines that had been fine-tuned on related data. That is a meaningful result if it holds. For now, it is measured on the company’s own benchmark. With the code now being released, the broader community will have the opportunity to test, reproduce, and build on them across more settings.</p><h2>A policy that runs before fine-tuning, and action tokens with meaning</h2><p>The action layer carries two connected ideas. The first is a requirement the company sets for itself with <a href="https://x2robot.com/en/oss" target="_blank">Wall-OSS-0.5</a>, its vision-language-action model: The pretrained model should run on a real robot before any task-specific fine-tuning. </p><p>The interest is less in the scores than in the design behind them. The model trains three objectives together, namely discrete action tokens, language grounding, and continuous action generation. And it keeps gradients flowing through all of them rather than freezing parts of the network as some rival designs do. It’s also a more strict method, since it reports untuned behavior such as approaching, grasping, and recovering, including on a deformable task held out of training.</p><div class="ieee-sidebar-large"><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Dashboard of robot training metrics with charts and photos of a robot sorting objects" class="rm-shortcode" data-rm-shortcode-id="02e1332d4b78de0f5e74bb7cd7754667" data-rm-shortcode-name="rebelmouse-image" id="2d02b" loading="lazy" src="https://spectrum.ieee.org/media-library/dashboard-of-robot-training-metrics-with-charts-and-photos-of-a-robot-sorting-objects.png?id=67111753&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">As part of X Square Robot’s Wall-OSS-0.5 vision-language-action model design, the pretrained model should run on a real robot before any task-specific fine-tuning. </small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">X Square Robot<a href="https://spectrum.ieee.org/r/entryeditor/2677167058#/" target="_self"></a></small></p></div><p>The second idea is the action interface itself, called X-Tokenizer. Most systems that turn continuous motion into discrete tokens produce codes that the language model cannot interpret. X-Tokenizer reframes tokenization as learning a semantic interface, so that the top-level code stands for the intent of a motion while lower-level codes carry finer detail, all aligned with the language model’s own features. </p><p>A useful consequence is stability. Adding noise to an action barely moves the intent code, which is what lets one tokenizer to be reused across robots without re-tuning. The tokenizer inside the production action model is a related variant of this approach. Together, the two ideas give the action layer something rather powerful: capability that transfers.</p><h2>The future of embodied AI stacks</h2><p>X Square Robot is betting that its unique approach combining three layers, each specialized in solving a key part of the problem, will stand out from other embodied AI stacks. The physical-playback step that grounds data quality is uncommon and sensible. The reframing of world modeling around events, with one backbone serving both reasoning and control, is a genuinely distinct approach. And the pairing of a deployable pretraining standard with a tokenizer designed as a semantic interface gives the action layer unusual coherence. </p><p class="pull-quote">X Square Robot’s valuation has climbed above 20 billion yuan (about US $2.9 billion), suggesting that investors increasingly view data infrastructure, foundation models, and scalable training systems as long-term differentiators in embodied AI.</p><p>The next phase will bring broader validation. Much of the current evidence comes from X Square’s own robots and benchmarks. With the world model code now being made public, and as the community begins to test, reproduce, and build on the work, the reported capabilities will be tested across more robots, tasks, and settings.</p><p><span>X Square Robot’s recent funding rounds reflect similar confidence. The company’s valuation has climbed above 20 billion yuan (about US $2.9 billion), suggesting that investors increasingly view data infrastructure, foundation models, and scalable training systems as long-term differentiators in embodied AI.</span></p><h2>What’s next for X Square Robot</h2><p>To learn more about its future plans, the following Q&A with the X Square Robot team further explores the company’s technology, strategy, and vision.</p><p><strong>What made now the right moment, technically, to commit to this stack? What recently became possible that wasn’t possible a couple of years ago?</strong></p><p>It is not one breakthrough but several trends maturing together. Foundation models gave us a shared representation across vision, language, and action, so we can model what a robot sees, what it is asked to do, and how its actions change the world in one framework, rather than as separate perception, planning, and control modules. </p><p>Compute and infrastructure are finally sufficient for large-scale pretraining over long-horizon, multi-embodiment data. Just as importantly, we realized that data, not model size, is the real bottleneck for general robots—what is scarce is diverse, high-quality, reproducible interaction data. And world modeling has become practical. The useful question is no longer how to predict a few seconds of video, but how to understand the ways actions change objects, contacts, and task states. Two years ago these ingredients existed separately. Today they are mature enough to work as one system.</p><p class="pull-quote">“We realized that data, not model size, is the real bottleneck for general robots—what is scarce is diverse, high-quality, reproducible interaction data. And world modeling has become practical.”</p><p><strong>Your data system captures demonstrations with a wearable VR rig and custom grippers rather than teleoperating robots. What was wrong with standard teleoperation?</strong></p><p>Teleoperation is built around controlling the robot. It forces the operator to work within the machine’s kinematics, latency, and viewpoint, and the resulting demonstrations are slower, stiffer, and less diverse. <span>We built our system around capturing human skill instead. Manipulation is really about contact, timing, finger coordination, and recovery, not just the path the hand takes, and a wearable rig records those before the behavior is compressed onto one particular robot. It also breaks teleoperation’s expensive scaling law, in which every demonstration needs a robot. </span></p><p>People can generate rich data independently of any robot, and the crucial property is that those demonstrations can still be replayed and executed on a physical robot through the model. Mobility is convenient, but that replay is the real point, because it is what lets the same data be reused across different platforms.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Robot and person loading a washing machine together in a modern laundry room." class="rm-shortcode" data-rm-shortcode-id="a88f52512288b276095052d0218d9e53" data-rm-shortcode-name="rebelmouse-image" id="3283b" loading="lazy" src="https://spectrum.ieee.org/media-library/robot-and-person-loading-a-washing-machine-together-in-a-modern-laundry-room.png?id=67111806&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">In X Square Robot’s approach, demonstrations can be replayed and executed on a physical robot through the AI model, allowing the same data to be reused across different platforms.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">X Square Robot<a href="https://spectrum.ieee.org/r/entryeditor/2677167058#/" target="_self"></a></small></p><p><strong>X Square Robot reports that its pipeline has roughly an 85 percent data-validity rate. Why is quality control such an underrated bottleneck?</strong></p><p>Because errors in robot data are far more expensive than in language data. A small timing or contact error can change what a demonstration means. If a gripper closes a fraction of a second too early, the motion still looks like a grasp, but physically it has pushed the object away. A dataset that mixes failures and accidental successes teaches ambiguity, not skill, because the real unit is the interaction, not the trajectory. </p><p>So we run automated inspection, kinematic checks, and physical replay, where we play a sample of trajectories back on the real robot and count only the ones that actually complete the task. Data quality sets the ceiling on how good a policy can be. In our experience a smaller, cleaner dataset often beats a much larger, noisier one, which is why we treat quality control as part of the model, not a preprocessing afterthought.</p><p><strong>The model runs in both “event mode” and “chunk mode.” When does each matter?</strong></p><p>Both matter, for different reasons. The physical world changes through events—when contact occurs, a grasp forms, or an object slips—not in fixed-frame windows. Event mode concentrates the model’s attention on those moments, and it matters most for long-horizon tasks, like clearing a table, where progress is a sequence of semantic events rather than a smooth stream. It runs in variable-length segments that follow the task rather than a clock. Chunk mode matters for deployment. Real controllers need a stable, real-time interface, and fixed-length chunks integrate cleanly with existing control systems. </p><p>We organize learning around events in the first place because a fixed window can split one motion in half or merge two together, which turns training into short-horizon pattern matching and weakens the model on long tasks. So the world model’s job is to connect event-level understanding, which is where the reasoning happens, with a fixed-length output a real robot can actually run.</p><p><strong>Why make “deployable before fine-tuning” the criterion?</strong></p><p>Pretraining should produce capability, not just a good starting point. If a model is only useful after heavy fine-tuning, then most of the intelligence still lives in the downstream supervision, not in the foundation model. Deployable before fine-tuning is a more honest test of what pretraining actually learned. A well-pretrained robot should already know how to approach, grasp, move, avoid obstacles, and correct itself. Fine-tuning should adapt it to a specific task or robot, not create the ability from nothing. It is also a practical requirement. A robot in a home or a workplace shouldn’t need a brand-new dataset and a new policy every time the task changes, so a foundation model that already carries general skill, and some ability to recover, is the minimum bar for something genuinely useful in the real world.</p><p><strong>What is the most challenging part of cross-embodiment learning?</strong></p><p>Robots differ in control frequency, delay, compliance, sensing precision, and contact dynamics, so the same instruction can require different action decompositions and recovery strategies, and a behavior that works on one arm cannot simply be copied to another. Cross-embodiment learning needs an intermediate abstraction, lower than language but higher than joint angles: how you approach an object, how you make contact, how you apply force, and how you recover from a mistake. </p><p>When we say cross-embodiment, the main capability we mean is multi-embodiment generalization: transferring across robots, training on many embodiments at once, and adapting to different kinematics. Human-to-robot transfer and other techniques are specific approaches to that goal.</p><p class="pull-quote">“A robot in a home or workplace shouldn’t need a new dataset and policy every time the task changes. A useful foundation model should already carry general skills and the ability to recover.”</p><p><strong><span></span>What would you most like to see other researchers attempt to reproduce or stress-test?</strong></p><p>Three things, above all. Whether event-level representations really generalize beyond our own datasets, across more tasks, scenes, objects, embodiments, and failure conditions. Whether pretraining stays effective on robots the model never saw during training, or whether its capability is still too tightly coupled to what it has already seen. And whether real-robot evaluation can become a shared language for the field, so that we compare not just success rates but the reasons systems fail, where an instruction was misread, where perception broke down, or where recovery fell short. Robotics has been driven too often by impressive demonstrations, and real progress comes from results that are reproducible and diagnosable.</p><p><strong>What capability is still missing before robots become dependable in homes?</strong></p><p>Benchmarks measure competence, like whether a model can finish a task. Homes demand reliability, safe and consistent operation over time in a place that changes every day, with objects moving, instructions that are vague, and people interrupting. The missing piece is not a higher one-time success rate: it is robust recovery. A dependable home robot has to know when it is uncertain, when to slow down, when to ask for help, and how to bring the world back to a safe state after it drops something or misunderstands a request. </p><p>In a real home, failure recovery matters more than raw success, because the home does not reset itself. Homes also demand careful personalization, learning a household’s routines and preferences over time, with safety and trust as first principles. That combination, not any single skill, separates a capable demonstration from a robot people can live with.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Humanoid service robot stands by a table in a modern living room." class="rm-shortcode" data-rm-shortcode-id="f3ec231082e32418641508eee7c21e31" data-rm-shortcode-name="rebelmouse-image" id="169cf" loading="lazy" src="https://spectrum.ieee.org/media-library/humanoid-service-robot-stands-by-a-table-in-a-modern-living-room.jpg?id=67111807&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">X Square Robot’s approach is that, in a real home, failure recovery matters more than raw success, because the home does not reset itself and it demands careful personalization, with safety and trust as first principles. </small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">X Square Robot<a href="https://spectrum.ieee.org/r/entryeditor/2677167058#/" target="_self"></a></small></p><p><strong>How do the open-source components fit into X Square Robot’s World Unified Model direction?</strong></p><p>We see these releases as layers of the World Unified Model direction rather than isolated projects. <a href="https://x2robot.com/en/oss" target="_blank">Wall-OSS-0.5</a>, the action model, asks whether an open vision-language-action model can gain directly measurable capability from large-scale pretraining, so it is the capability layer. <span>WALL-WM, the world model, asks how a robot should understand change in the world, shifting from fixed windows to event-level modeling, so it is the representation layer. The data system supplies the interaction data that both of them learn from. </span></p><p>Together they form a loop in which models produce capability, world models organize understanding, and the open-source community drives reproduction and improvement. World Unified Model is the broader architecture those layers support, bringing vision, language, action, and physical prediction together. </p><p>We are releasing these pieces openly because embodied intelligence cannot be solved by one organization; it needs many embodiments, many real tasks, and broad feedback, and the long-term goal is a stack that keeps learning and ultimately moves robots from laboratory demonstrations toward reliable everyday use.</p>]]></description><pubDate>Mon, 13 Jul 2026 10:19:51 +0000</pubDate><guid>https://spectrum.ieee.org/x-square-robot-embodied-ai-stack</guid><category>Home-robots</category><category>Type-sponsored</category><category>Large-language-models</category><category>Embodied-intelligence</category><category>Ai-robots</category><category>Robot-learning</category><dc:creator>​X Square Robot</dc:creator><media:content medium="image" type="image/png" url="https://spectrum.ieee.org/media-library/humanoid-robot-folding-laundry-on-a-neatly-made-bed-in-a-sunlit-bedroom.png?id=67111698&amp;width=980"></media:content></item><item><title>Video Friday: A World Cup for Robots</title><link>https://spectrum.ieee.org/video-friday-robot-world-cup</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/humanoid-robots-play-soccer-as-a-ball-flies-toward-the-goal-in-a-tournament-arena.jpg?id=67119515&width=1200&height=800&coordinates=0%2C0%2C0%2C0"/><br/><br/><p><span><a href="https://spectrum.ieee.org/tag/video-friday" target="_blank">Video Friday</a> is your weekly selection of <a data-linked-post="2677074152" href="https://spectrum.ieee.org/video-friday-robot-grippers" target="_blank">awesome robotics videos</a>, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><h5><a href="https://2026.ieee-iros.org/">IROS 2026</a>: 27 September–1 October 2026, PITTSBURGH</h5><h5><a href="https://humanoidssummit.com/">Humanoids Summit Seoul</a>: 22–23 September 2026, SEOUL</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><blockquote class="rm-anchors" id="xuedf0fmame"><em>For the first time, two full teams of humanoid robots played an 11-vs-11 soccer match on hardware, bringing one of robotics’ most ambitious long-term visions closer to reality. Never before have two full-sized humanoid robot teams played a soccer game against each other.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="953bd653e4ba7433dcb6ab51ffd8effa" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/XuEdf0fMAME?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.robocup.org/news/192">RoboCup</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="9xjhrkpcbgi"><em>Engineers at MIT and EPFL in Lausanne, Switzerland, have designed a robot that can swim underwater, and flap out of the water to continue flying through air, much like a diving bird. The robot can help scientists study the mechanics that enable these actions in aquatic aviators and may help launch a new class of aerial-aquatic drones and vehicles.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="544e0716b82e0970f865a90932063703" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/9XJhrKpcBGI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://news.mit.edu/2026/new-flapping-robot-swims-and-flies-like-diving-bird-0709">MIT</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="qryxv3csrea"><em>We’re excited to announce our breakthrough robotic hands for the NEO platform: hands that match or exceed human-level dexterity, strength, safety, and reliability. Designed from the ground up, these 25-DoF hands combine 25 fully actuated degrees of freedom with a tendon-driven system, rich tactile sensing, and built-in compliance. The result is a hand capable of true in-hand manipulation, precision tool use, and delicate interaction.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="2fd420ccff6c455375c2bade5d74bfe7" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/QRyXV3csReA?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.1x.tech/discover/neos-hands">1X</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="zjlr7m91yue"><em>This match, Tech United played against IRIS at the mid size league at RoboCup 2026 in Incheon South-Korea.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="e65324e9f69f20b80f4e937fe0dc6850" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/zJlR7m91yUE?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://techunited.nl/?page_id=2135&lang=en">Tech United</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ezplxk78cfk"><em>Atlas arrived pitchside at NYNJ Stadium in front of 80,000 people gathered to see Brazil vs Norway. After performing some of the sport’s most memorable player celebrations, Atlas helped kick-off the second half by delivering the match ball!</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="b556f690b04de002daf0b5c554e45782" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/ezPLXk78Cfk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://bostondynamics.com/blog/can-football-teach-a-robot-to-move/">Boston Dynamics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="k7_acxnvrdi"><em>Navigating discrete terrain such as stepping stones remains a major challenge for legged robots. Conventional approaches often rely on dense environment reconstruction from cameras or LiDAR, which can be affected by latency, occlusions, and significant computational overhead. We show that proximity sensors integrated into the bottom of a quadruped’s feet enable safe, terrain-seeking autonomous locomotion.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="a365111ae31863ec30f70e9fda17584a" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/K7_acxnVrdI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://arxiv.org/abs/2606.31912">Paper</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="xsrc3tdzqv4"><em>On this holiday, Digit is on grill duty. It turns out precise force control is good for more than payload handling. Happy 4th of July from all of us at Agility.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="4f77ccc11bcda7036ad0e3e931e37a44" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/XSRC3TDzqV4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.agilityrobotics.com/">Agility</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="yyjmb-lgp8o"><em>We’ve created GEN-1, our latest milestone in scaling robot learning. We believe it to be the first general-purpose AI model that crosses a new performance threshold: mastery of simple physical tasks. It improves average success rates to 99% on tasks where previous models achieve 64%, completes tasks roughly 3x faster than state of the art, and requires only 1 hour of robot data for each of these results. GEN-1 unlocks commercial viability across a broad range of applications—and while it cannot solve all tasks today, it is a significant step towards our mission of creating generalist intelligence for the physical world.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="5895b45f89f9f2058da781ea109afd8e" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/yyJmb-LGp8o?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://generalistai.com/blog/gen-1">Generalist</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="_wgnmkmvels">4 years at Figure.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="2b904f260017298d5e11bbb9da3a2e85" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/_WGNMkmvEls?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.figure.ai/news">Figure</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="cmcvaclf9bm"><em>Reachy Mini is becoming your real AI companion. The Conversation App makes it able to talk fluently with you, help you with your to-do list, remind you of important tasks, and even chat about music. Long-term memory, voice interaction, always ready to help.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="f848e508ae3da63144d9b1e085b16bd2" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/cMcVAcLF9BM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://huggingface.co/reachy-mini">Reachy Mini</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="p8u_4v8suoq">Is this sort of thing now a real job for humanoid robots, then?</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="de985b648cd1a7ae267a310612024bae" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/P8U_4v8SUOQ?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://shop.unitree.com/collections/humanoid-robot">Unitree</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="lad1wzntj6e">Quite a story, but is it a real job?</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="4b8dccb4d6b9a88298dc305f7c32d330" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/lad1wZNTJ6E?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://en.engineai.com.cn/product-t800">EngineAI</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="tsdjodthhnk">If you have a cute animal logo for your research I will always share it.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="51a17b96aae0a3210039fe53095cc122" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/TsDJOdthhNk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://patripfr.github.io/bievr-lio/">BIEVR-LIO</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="kg3hwbaioda">This is very delicate work, although the real challenge would be picking those nuts out of a jumbled bin full of randomly sized nuts, which is how most of us live our lives.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="cb9a365225a4c03043559d4577f1b8b0" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Kg3hWbaioDA?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://sanctuary.ai/">Sanctuary</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="wdf3borclra">Not for me, thank you, although I’m not saying that most of the other humanoid robots out there are any better looking, fundamentally.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="fa7c44048165a3700c826936160ebeed" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/wdf3BORclRA?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.ubtrobot.com/en/">UBTECH</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="jqi_ucwhe2c"><em>Robotics professor, Dr. Christian Hubicki, judges robot soccer skills while knowing very little about soccer himself.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c9e2de4cd7409587288d5044ddedcc7e" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/JQi_UCWhe2c?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.optimalroboticslab.com/">ORL</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="qbm9xvrq7tg"><em>In this presentation, Brendan Schulman, Vice President of Policy at Boston Dynamics, outlines the critical role of government engagement in driving the success of the humanoid robotics industry. He demonstrates how legged robots like the Spot quadruped and Atlas humanoid are moving beyond factory settings to deliver real-world value in infrastructure inspection, industrial manufacturing, and public safety. Schulman highlights the intersection of AI and robotics, showcasing how large behavioral models and reinforcement learning enable robots to navigate slippery floors and autonomously avoid workplace hazards. Ultimately, he calls for a proactive national robotics strategy focused on workforce training, safety standards, and ethical frameworks to support supply chain resilience and global competitiveness.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="52412578a9cf4f5efb8e0d5892978810" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Qbm9XvrQ7Tg?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://humanoidssummit.com/">Humanoids Summit</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 10 Jul 2026 16:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-robot-world-cup</guid><category>Video-friday</category><category>Humanoids</category><category>Robotics</category><category>World-cup</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/humanoid-robots-play-soccer-as-a-ball-flies-toward-the-goal-in-a-tournament-arena.jpg?id=67119515&amp;width=980"></media:content></item><item><title>Ground Robots Inherit the Kill Zone</title><link>https://spectrum.ieee.org/ukraine-ground-drones</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/an-unmanned-ground-vehicle-moving-through-a-sparse-forest-landscape.jpg?id=67114838&width=1200&height=800&coordinates=156%2C0%2C156%2C0"/><br/><br/><p><a href="https://itarena.ua/speaker/borys-drozhak/" rel="noopener noreferrer" target="_blank">Borys Drozhak</a> has a vision: a frontline almost free of humans, patrolled by <a href="https://spectrum.ieee.org/autonomous-drone-warfare" target="_self">flying drones</a> and ground robots, and continuously monitored by AI-controlled sensor networks. And it’s not a pipe dream. Ukrainian roboticists have made major strides in that direction over the past four years. Remotely controlled ground vehicles fitted with machine guns and grenade launchers now patrol the no-man’s land straddling the front, part of a robotic legion that has stymied Russia’s territorial ambitions so far this year.</p><p>Drozhak is a co-founder and CEO of <a href="https://rovertech.co.ua/en/" rel="noopener noreferrer" target="_blank">RoverTech</a>, which manufactures the Zmyi, one of Ukraine’s most successful ground robots. Zmyi, Ukrainian for snake, is an 800-kilogram (1,700-pound) rover, 2.15 by 1.5 meters in size, with 75-centimeter diameter wheels. The Zmyi comes in various configurations—for demining, logistics, fighting fires, firing a machine gun, or launching grenades. </p><p>According to Drozhak, the UGV is a record-breaker among Ukrainian ground robots. It’s engineered to be nearly noiseless and emit as little heat as possible, helping it to elude Russia’s intelligence, surveillance, and reconnaissance (ISR) drones. As a result, a <a href="https://oboronka.mezha.ua/en/virobnictvo-nrk-zmiy-311311/" rel="noopener noreferrer" target="_blank">Zmyi rover</a> completes on average 57 missions across the kill zone before being destroyed. The kill zone is the roughly 35-kilometer-wide swath of land that straddles the front line; its width is variable and determined mainly by the growing range of the drones.</p><p>“Usually, a UGV [uncrewed ground vehicle] on the battlefield lasts about seven missions,” Drozhak says. “The Zmyi is quite a bit bigger and stronger” in comparison with most other UGVs, “and can make it back even if two of its wheels get destroyed.”</p><p>Drozhak is a software engineer turned roboticist whose story is echoed everywhere in the Ukrainian defense establishment. Before the Russian invasion, he was living a quiet life in Ireland, working for an international software development firm. He returned home shortly after the war began to help defend his homeland. Together with his friend, Vasyl Korenovskyi, who had been a mining engineer, he founded RoverTech with the goal of building robots to perform some of the most dangerous tasks in the war zone. In 2023, they rolled out their first product–the Zmyi de-miner. Earlier this year, one of RoverTech’s assault UGVs was part of a <a href="https://www.cnn.com/2026/04/20/europe/robots-ukraine-battlefield-drones-intl-cmd" rel="noopener noreferrer" target="_blank">widely reported</a> operation that forced a group of Russian soldiers to surrender without the presence of any Ukrainian troops. Such feats, Drozhak insists, are not rare on Ukrainian battlefields these days.</p><p>UGVs are the latest chapter in the mil-tech race spurred by the war in Ukraine. <a href="https://www.defensenews.com/unmanned/2026/04/24/ukraine-to-field-25000-ground-robots-in-push-to-replace-soldiers-for-frontline-logistics/" rel="noopener noreferrer" target="_blank">Scores of Ukrainian start-ups</a> have developed dozens of different small ground robots, each with typically multiple variants, over the past three years. They’re mostly replacing human-driven tanks and other military vehicles that used to criss-cross the war zone. These remotely controlled robotic vehicles cost a few tens of thousands of dollars apiece compared to millions for a traditional tank, and they can be tweaked and modified in front-line workshops to serve the most urgent needs. </p><h2>Zelenskyy Orders Up 50,000 More UGVs</h2><p>In April, Ukraine’s President Volodymyr Zelenskyy <a href="https://www.pravda.com.ua/eng/news/2026/04/27/8032079/" rel="noopener noreferrer" target="_blank">signed an order</a> for the government to procure 50,000 UGVs for Ukraine’s military forces by the end of 2026. That’s more than three times as many as the government purchased in 2025, and a massive increase from the 2,000 procured in 2024, according to defense analyst <a href="https://www.linkedin.com/in/marcclange/?locale=de" rel="noopener noreferrer" target="_blank">Marc C. Lange</a>.</p><p>The rise of UGVs, Lange explains, is a direct response to the war-fighting revolution ushered in by the speedy evolution of unmanned aerial vehicles that came to define the war in Ukraine.</p><p>As the number of drones zooming above the frontline rose and their range increased, the battle field became completely transparent. Today, anything that enters the kill zone gets hit by a first-person-view (FPV) kamikaze drone within minutes.</p><p>“Any armored formation, any resupply and logistics vehicle, and any manned formation anywhere near the edge of the battle area has between seconds to a low amount of minutes before it gets turned to dust,” says Lange. “The Ukrainians were losing drivers. Traditional methods of evacuating injured soldiers became impossible. That space is basically unsurvivable.”</p><p>Ukraine, suffering from a <a href="https://www.longwarjournal.org/archives/2026/06/analysis-ukraine-unveils-reforms-to-address-manpower-shortage.php" rel="noopener noreferrer" target="_blank">shortage of infantry</a>, has taken that problem more seriously than Russia, which has a larger pool of fresh recruits to draw from. UGVs began ferrying supplies to troops at frontline positions in 2024. Gradually, they took over the complex and risky evacuations of the wounded, using special enclosures to protect the soldier being transported. But this year, Lange says, is “the year of the assault UGV.”</p><p>Emerging Ukrainian tactics combine UGVs with real-time reconnaissance and surveillance from aerial drones, which discover enemy troops, often under cover of night. The reconnaissance data are then used by remote operators who guide UGVs as they stalk, corner, and shoot to kill. <a href="https://www.linkedin.com/in/oleg-fedoryshyn-a1045819/" rel="noopener noreferrer" target="_blank">Oleg Fedoryshyn</a>, the head of research and design at <a href="https://devdroid.tech/en/" rel="noopener noreferrer" target="_blank">DevDroid</a>, another prominent Ukrainian UGV developer, said the ground robots can be controlled from as far as 100 kilometers away using Starlink connectivity, LTE networks, or mesh-networked military radio systems. The UGVs can also carry strike UAVs, serve as communication relays for drones, or carry and launch communication relay drones that further extend the range of the attack vehicles. The UGV can lurk in position for up to one week without needing a battery charge, Fedoroshyn said, and wait for the enemy to move closer.</p><p>“It’s better than to put people there,” he notes. “A guy with a machine gun is always the first target for the enemy.”</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="An Ukrainian soldier adjusting an unmanned ground vehicle\u2019s machine gun." class="rm-shortcode" data-rm-shortcode-id="c2207b1f48cfaa977f74e40bee57ea35" data-rm-shortcode-name="rebelmouse-image" id="e136b" loading="lazy" src="https://spectrum.ieee.org/media-library/an-ukrainian-soldier-adjusting-an-unmanned-ground-vehicle-u2019s-machine-gun.jpg?id=67114858&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">The Droid TW 12.7, by DevDroid, is shown here outfitted with a .50-caliber M2 Browning machine gun that can be aimed and fired by a remote operator using a tablet and an encrypted communications link.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">DevDroid</small></p><p>Fedoroshyn estimates that UGVs could eventually help cut the number of soldiers needed along the frontline by 30 to 40 percent. Drozhak is even more ambitious. He envisions a future front line that’s entirely automated, relying on sensors and other systems that are only occasionally serviced by humans.</p><p class="pull-quote">A guy with a machine gun is always the first target for the enemy.</p><p>“Right now, we need a lot of UGVs because there are people on the front line and we need to deliver supplies to them,” he says. “But we can substitute many of them with sensor systems, servicing robots, and UGVs, and then we will not need that many for logistics. At some point, we could have only robots in the kill zone.”</p><p>Ukraine, with a pre-war population of around 41 million, has lost over 150,000 fighters in the war since 2022, according to <a href="https://www.csis.org/analysis/russias-grinding-war-ukraine" target="_blank">estimates</a> by the <a href="https://www.csis.org/" target="_blank">Center for Strategic and International Studies</a> and others. Hundreds of others have been mutilated or permanently disabled. Even those who return without physical injuries suffer lasting <a href="https://balticsentinel.eu/8046076/war-at-home-the-psychological-toll-on-ukraine-s-returning-soldiers" target="_blank">psychological trauma</a>. Drozhak dreams that a future robot army would put an end to the ability of autocratic regimes worldwide to brutalize their neighbors. </p><p>“There will be no need to push people on the battlefield anymore,” says Drozhak, the RoverTech CEO. “Once we achieve that in Ukraine, any country with a decent economy would be able to defend themselves just with technology.”</p><p><a href="https://www.pravda.com.ua/eng/news/2026/06/01/8037264/" rel="noopener noreferrer" target="_blank">RoverTech’s Tarantula</a> active-protection system, which uses acoustic and visual sensors combined with AI algorithms to detect approaching killer drones, is the first step in that direction, he declares.</p><p>“The future battlefield will rely on networks of robotic sensors and autonomous systems that can continuously monitor dangerous areas, provide early warning, and reduce the need for soldiers to expose themselves to direct threats,” he says. “Human operators will remain responsible for critical decisions, but increasingly advanced sensing technologies will help move people away from the most dangerous positions on the battlefield.”</p><h2>Why UGVs Are Vulnerable</h2><p>Militaries around the world were looking at UGVs prior to Russia’s 2022 invasion of Ukraine. But those were quite different, explains <a href="https://www.cna.org/our-experts/bendett-samuel" rel="noopener noreferrer" target="_blank">Samuel Bendett</a>, a defense analyst at the consultancy <a href="https://www.cna.org/" rel="noopener noreferrer" target="_blank">CNA</a>. They were larger, more complex, and conceived to operate in smaller numbers. The more compact forms now seen in Ukraine are the result of an evolution that paralleled that of the first-person-view (FPV) attack drones. Both needed to be cheap as they don’t last long and small to be less conspicuous. Now, the West is trying to understand the overall role of UGVs in <a href="https://youtu.be/0nhQjpRnBHs?si=43FvJ9ykWv2967eP" rel="noopener noreferrer" target="_blank">future warfare</a>. So far, in Bendett’s view, the impact of UGVs on warfare isn’t as profound as that of the FPVs and other aerial drones.</p><p>“Not every terrain would be applicable to using a UGV,” Bendett explains. “So far, a lot fewer countries are seeking to integrate them into their combat operations than UAVs, which very much democratized the way of enabling short-range to mid-range strikes against adversaries.”</p><p>UGVs, he points out, are much more susceptible to communication disruptions than UAVs, while being less suitable for autonomous operations and swarming due to the complexity of ground terrain.</p><p>“With UAVs, communication is much easier,” according to Bendett. “There are no interferences between the ground station and the UAV save the distance, Earth’s curvature and the radio horizon. But on Earth, there’s lots of different obstacles that interfere with radio signals.”</p><p>Most UGVs rely on <a href="https://starlink.com/" rel="noopener noreferrer" target="_blank">Starlink</a> as the first choice for operator control, but even that comes with problems. Starlink signals are easily disrupted by trees and buildings. And Russia, having been cut off from Starlink, is working hard to find ways to <a href="https://en.defence-ua.com/news/how_russians_try_to_jam_starlink_using_a_15_million_system_why_its_barely_working-18830.html" rel="noopener noreferrer" target="_blank">jam the system</a>.</p><p>On top of that, says Lange, as UAV autonomy progresses, UGVs could be left behind. The reason is that UGVs are likely to remain dependent on operator communication links for some time yet, and will therefore be vulnerable to <a href="https://spectrum.ieee.org/ukraine-killer-drones" target="_self">enemy UAVs that can’t be stopped by jamming</a> systems that still provide some protection today.</p><p>“The low production cost of strike drones will mean that UGVs will have to endure a barrage of strikes,” Lange says, “That might be too much. The question is whether you can make UGVs more survivable on the frontline both in terms of command and control and the actual survivability of that many strikes.”</p><p>Still, he thinks there’s “no path back from UGVs.” The idea of distributing a whole range of tasks in the past performed by a single large and expensive tank to a fleet of small, cheap UGVs provides more resilience against the omnipresent drones. Moreover, although many international commentators now say that Russia appears to be losing, the war grinds on—and so does the cat-and-mouse game of lethal innovation.</p>]]></description><pubDate>Fri, 10 Jul 2026 11:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/ukraine-ground-drones</guid><category>Ground-robots</category><category>Ukraine</category><category>Unmanned-vehicles</category><category>Ugvs</category><category>Sensor-networks</category><dc:creator>Tereza Pultarova</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/an-unmanned-ground-vehicle-moving-through-a-sparse-forest-landscape.jpg?id=67114838&amp;width=980"></media:content></item><item><title>IEEE Honors Robotics Pioneer Toshio Fukuda</title><link>https://spectrum.ieee.org/ieee-honors-toshio-fukuda</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/three-men-in-suits-onstage-smiling-as-one-presents-an-award-medal-in-a-box.jpg?id=67107362&width=1200&height=800&coordinates=0%2C208%2C0%2C209"/><br/><br/><p><a href="https://ethw.org/Toshio_Fukuda" rel="noopener noreferrer" target="_blank">Toshio Fukuda</a> has been blazing trails for most of his career. He is considered to be one of the most prolific scholars in <a href="https://spectrum.ieee.org/topic/robotics/" target="_self">robotics</a>, writing more than 2,000 research papers and authoring several books on the field. He’s an influential figure thanks to his pioneering work developing biomedical robotic systems, industrial robots, micro-nano robotics, mechatronics, and AI-driven automation.</p><p>Fukuda launched one of the first robotics conferences, the <a href="https://www.ieee-ras.org/conferences-workshops/financially-co-sponsored/iros/" rel="noopener noreferrer" target="_blank">IEEE/RSJ International Conference on Intelligent Robots and Systems</a> (IROS). It is still popular almost 40 years later.</p><h3>Toshio Fukuda</h3><br/><p><strong>Employer</strong></p><p>Egypt-Japan University of Science and Technology, in Alexandria</p>
<p><strong>Title</strong></p><p>Professor and vice president of research</p>
<p><strong>Member grade</strong></p><p>Life Fellow</p>
<p><strong>Alma maters</strong></p><p>Waseda University, in Tokyo; University of Tokyo </p><p>An IEEE Life Fellow, he is a professor emeritus in the department of micro-nano systems engineering and a visiting professor at <a href="https://en.nagoya-u.ac.jp/" rel="noopener noreferrer" target="_blank">Nagoya University</a>, in Japan, where he taught for nearly 25 years. Currently, he is a vice president of research at the <a href="https://ejust.edu.eg/" rel="noopener noreferrer" target="_blank">Egypt-Japan University of Science and Technology</a>, in Alexandria, Egypt.</p><p>Within IEEE, Fukuda has held top volunteer positions including the organization’s highest office: He served as <a href="https://spectrum.ieee.org/u/toshio-fukuda" target="_self">IEEE president</a> in 2020, becoming the first person of Asian descent to hold the role.</p><p>He’s a former program director of Japan’s <a href="https://www.jst.go.jp/moonshot/en/about.html" rel="noopener noreferrer" target="_blank">Moonshot program</a>, which by 2050 intends to develop advanced AI robots.</p><p>Born in Japan, Fukuda has been recognized by the country for his contributions to science with two of its highest awards: the <a href="https://en.wikipedia.org/wiki/Medals_of_Honor_(Japan)" rel="noopener noreferrer" target="_blank">Medal of Honor with a purple ribbon</a> in 2015 and the <a href="https://en.wikipedia.org/wiki/Order_of_the_Sacred_Treasure" rel="noopener noreferrer" target="_blank">Order of the Sacred Treasure</a> in 2022.</p><p>IEEE honored him with this year’s <a href="https://corporate-awards.ieee.org/award/ieee-richard-m-emberson-award/" rel="noopener noreferrer" target="_blank">Richard M. Emberson Award</a> for “distinguished service advancing the technical objectives of IEEE, especially in the area of robotics.” The IEEE Board-level award is sponsored by the <a href="https://ta.ieee.org/technical-activities-board" rel="noopener noreferrer" target="_blank">IEEE Technical Activities Board</a>. Fukuda received the award on 24 April at a <a href="https://spectrum.ieee.org/ieee-celebrates-honors-ceremony-2026" target="_self">ceremony</a> in New York City.</p><p>As a former IEEE president who has served as a master of ceremonies at several of the organization’s major award events, Fukuda noted that he is more accustomed to bestowing awards than receiving them.</p><p>“It’s very interesting to be on the receiving end,” he says.</p><h2>The journey into robotics research</h2><p>As a teenager, Fukuda spent his summer breaks teaching himself how to build things including transistor radios and steam engines.</p><p>“It was very nice to have a hands-on hobby and make these kinds of things myself,” he says. His experimentation led him to study engineering.</p><p>He earned a bachelor’s degree in engineering in 1971 from <a href="https://www.waseda.jp/top/en/" rel="noopener noreferrer" target="_blank">Waseda University</a>, in Tokyo. He says one of his professors there—<a href="https://www.humanoid.waseda.ac.jp/history.html" rel="noopener noreferrer" target="_blank">Ichiro Kato</a>, regarded as the father of Japanese robotics research—was a good mentor who made a positive impact.</p><p>Fukuda’s research interests were robotics and mechatronics, a field that combines robotics, electronics, computer science, and control systems.</p><p>He went on to earn a master’s degree and a doctorate in science from the <a href="https://www.u-tokyo.ac.jp/en/" rel="noopener noreferrer" target="_blank">University of Tokyo</a>, in 1971 and 1977. During those years, he also attended <a href="https://www.yale.edu/" rel="noopener noreferrer" target="_blank">Yale</a>, where he conducted research on advanced control theory in 1973.</p><p>He reflects fondly on his time at Yale: “It was a very nice environment and a kind of free-thinking atmosphere. It motivated me to study more.”</p><p class="pull-quote">“IEEE doesn’t care who you are, what you do, what country you are from, or whether you are male or female. IEEE accepts people who have energy and passion.”</p><p>While at Yale, Fukuda served as an assistant to his advisor—which led him to consider a career in academia, he says, because he enjoyed the freedom that research work afforded him.</p><p>But he realized that such freedom comes with a price. University researchers are expected to raise the money that funds their work. He compares researchers to small-business owners who have to bring in money to keep their enterprise afloat.</p><p>That realization led him to select robotics as his field because he intended to develop technologies useful to industry, he says.</p><p>After earning his doctorate, he returned to Japan in 1977 to work as a research scientist at the government’s Mechanical Engineering Laboratory, later renamed the <a href="https://www.aist.go.jp/aist_e/about_aist/" target="_blank">National Institute of Advanced Industrial Science and Technology</a>, in Tsukuba.</p><p>“There was a lot of research going on at the lab, including practical robotics and theory,” he says.</p><p>He left Japan in 1979 to become a visiting research fellow at the <a href="https://www.uni-stuttgart.de/en/" rel="noopener noreferrer" target="_blank">University of Stuttgart</a>, in Germany. During his year there, he studied systems, software problems, and related topics.</p><p>He returned to Japan and was hired as an associate professor of mechanical engineering at the <a href="https://www.tus.ac.jp/en/" rel="noopener noreferrer" target="_blank">Tokyo University of Science</a>. He conducted research into practical uses for robots by visiting industrial plants. He decided to develop robots that inspect industrial equipment such as those used in assembly plants, oil refineries, and power stations—places that “can be hostile environments for humans,” he says.</p><p>His work drew interest from chemical, oil, and utility companies.</p><p>“I got a lot of money from them for this very practical application, which funded my research,” he says, laughing.</p><h2>Developing popular robotic systems</h2><p>Fukuda grew tired of making those robots, he says, so he switched to creating ones for scientific applications. He developed many techniques, but he probably is best known for his modular, <a href="https://www.sciencedirect.com/science/article/abs/pii/004579069290029D" rel="noopener noreferrer" target="_blank">cellular robotic systems</a> (CEBOTs), which he introduced in 1985.</p><p>He has described how <a href="https://ieeexplore.ieee.org/search/searchresult.jsp?newsearch=true&queryText=CEBOT" rel="noopener noreferrer" target="_blank">CEBOTs work</a> in numerous papers published in the <a href="https://ieeexplore.ieee.org/Xplore/home.jsp" rel="noopener noreferrer" target="_blank">IEEE Xplore Digital Library</a>.</p><p>The CEBOT system is composed of a number of autonomous robotic cells that stick together like interlocking <a href="https://www.lego.com/en-us" rel="noopener noreferrer" target="_blank">Lego</a> plastic bricks, he says.</p><p>Each cell is a fundamental modular unit that has a function. When a simple task is given, the system can analyze it and generate the structure of the cellular manipulator. The cells connect to and detach from each other through connection mechanisms and cooperate mutually, creating complex structures and configurations.</p><p>“You start developing from the component-wise to the cell-wise to a small functional unit—and then you come up with clusters that make bigger systems. We can make a society of robot beings like that,” he explained in his <a href="https://ethw.org/Oral-History:Toshio_Fukuda" rel="noopener noreferrer" target="_blank">oral history</a> published on the <a href="https://ethw.org/Main_Page" rel="noopener noreferrer" target="_blank">Engineering and Technology History Wiki</a>. “It’s a distributed robotic system, a self-organized robotic system, and also an evolutionary robotic system.</p><p>“It’s also a fault-tolerant robot system because if something is wrong, you just remove those things and make a new one. You keep the system working. That’s a great thing.”</p><p>Today CEBOTs are used for a variety of tasks such as delivering medication in hospitals, assisting with planting crops, and transporting products in distribution centers. Check out <a href="https://spectrum.ieee.org/" target="_self"><em><em>IEEE Spectrum</em></em></a>’s <a href="https://robotsguide.com/" rel="noopener noreferrer" target="_blank">Robots Guide</a> for news from the world of robotics.</p><p>In 1989 Fukuda joined Nagoya University as a professor of mechanical engineering and micro-nano systems engineering. During his 24-year career there, he was director of the university’s <a href="https://en.nagoya-u.ac.jp/assets/pdf/pages/about/communications/schools/about_communications_schools_7.pdf" rel="noopener noreferrer" target="_blank">Center for Micro-Nano Mechatronics</a>. He developed a long list of technologies at the university, including many for medical applications. He also conducted groundbreaking research into intelligent robotic systems and micro- and nano-robotics.</p><p>Another technology he is known for is <a href="https://ieeexplore.ieee.org/document/240556" rel="noopener noreferrer" target="_blank">brachiation robots</a>, which he helped develop in 1988. He calls them <em><em>monkey robots</em></em> because they’re based on the pendulum-like movement of monkeys swinging from tree to tree. The gravity-based locomotion enables continuous movement.</p><p>Brachiation robots now are inspecting high-voltage transmission towers and bridges, searching damaged buildings for survivors, and performing maintenance on pipelines and cables.</p><p>Fukuda retired from the university in 2013 and was named professor emeritus.</p><p>He didn’t stay retired for long, though. He next held a teaching appointment at <a href="https://www.meijo-u.ac.jp/english/" rel="noopener noreferrer" target="_blank">Meijo University</a>, in Nagoya, until he left in 2022 to join the Egypt-Japan University.</p><h2>A prominent volunteer</h2><p>He joined IEEE in 1980 at the encouragement of one of his research advisors, Professor <a href="https://ethw.org/Fumio_Harashima" rel="noopener noreferrer" target="_blank">Fumio Harashima</a>, now an IEEE Life Fellow. After attending conferences and reading the organization’s publications, Fukuda says, he looked forward to becoming more involved.</p><p>“I wanted to know how to organize a conference and how to edit a paper for one of its <em><em>Transactions</em></em>,” he says. “I wanted to know what was going on from inside the organization, not just the outside.”</p><p>In 1988 he was the founding chair and organizer of IROS, in Tokyo. The conference had 330 attendees that year, and was supported by Harashima. Today it is one of the largest and most prestigious conferences on the topic, attracting more than 9,000 people annually. Out of 120,000 conferences, it was the only conference in the <a href="https://www.nature.com/nature-index/faq" rel="noopener noreferrer" target="_blank">Nature Index</a> database for this year, Fukuda says.</p><p>In 1996 he and other members launched <a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=3516" rel="noopener noreferrer" target="_blank"><em><em>IEEE Transactions on Mechatronics</em></em></a>.</p><p>He was the founding president of the <a href="https://ieeenano.org/" rel="noopener noreferrer" target="_blank">IEEE Nanotechnology Council</a>, which was established in 2002. He is considered a pioneer in nanotechnology research, particularly regarding how it relates to robotics.</p><p>Over the years, he has held numerous volunteer positions on IEEE editorial boards and committees.</p><p>He was the 1998–1999 president of the <a href="https://www.ieee-ras.org/" rel="noopener noreferrer" target="_blank">IEEE Robotics and Automation Society</a>, becoming the first non-U.S. member to hold the title.</p><p>He was director of <a href="https://ta.ieee.org/society-council-resources/society-and-council-operations/divisions-society-groupings" rel="noopener noreferrer" target="_blank">IEEE Division X</a> (2001–2002 and 2017–2018), which covers intelligent systems, biological engineering, robotics, control systems, and photonic technologies. He served as the 2013–2014 director of <a href="https://www.ieeer10.org/" rel="noopener noreferrer" target="_blank">IEEE Region 10</a> (Asia-Pacific).</p><p>As the 2020 IEEE president, Fukuda saw the organization through the early part of the <a href="https://spectrum.ieee.org/ieee-presidents-column-strength-and-solidarity-in-responding-to-the-challenges-of-covid19" target="_self">COVID-19 pandemic</a>. Because of travel restrictions, he realized IEEE should change how it offered its in-person services, specifically educational programs. He encouraged <a href="https://ea.ieee.org/ea-programs" rel="noopener noreferrer" target="_blank">IEEE Educational Activities</a> to develop an online learning platform. The <a href="https://spectrum.ieee.org/ieee-president-lets-focus-on-continuing-education" target="_self">IEEE Learning Network</a> started with just three courses and now offers nearly 2,000 courses, webinars, and learning materials.</p><h2>An award-winning member</h2><p>The Emberson Award joins a slew of other recognitions Fukuda has received from IEEE. They include several from the IEEE Robotics and Automation Society: a 2004 <a href="https://www.ieee-ras.org/awards-recognition/society-awards/pioneer-in-robotics-and-automation-award/" rel="noopener noreferrer" target="_blank">Pioneer Award</a>, a 2009 <a href="https://www.ieee-ras.org/2026-ieee-ras-award-recipients-announced/" rel="noopener noreferrer" target="_blank">Saridis Leadership Award</a>, and the 2011 <a href="https://www.ieee-ras.org/awards-recognition/conference-awards/iros-harashima-award-for-innovative-technologies/" rel="noopener noreferrer" target="_blank">Harashima Award for Innovative Technologies</a>. He is also a recipient of the Board-level 2010 IEEE Robotics and Automation <a href="https://www.ieee-ras.org/awards-recognition/ieee-awards/ieee-robotics-and-automation-technical-field-award-tfa/" rel="noopener noreferrer" target="_blank">Technical Field Award</a>.</p><p>He says he feels strongly that IEEE should be a diverse organization that is welcoming to all. As IEEE president, he led efforts to devise a <a href="https://spectrum.ieee.org/ieee-diversity-and-inclusion-efforts" target="_self">diversity, equity, and inclusion program</a>. Several policies, procedures, and bylaws were revised to give members a safe, inclusive place for discourse.</p><p>“It’s important for IEEE to make everyone feel comfortable,” he says. “DEI programs are important. All people should be equal. IEEE doesn’t care who you are, what you do, what country you are from, or whether you are male or female. IEEE accepts people who have energy and passion.</p><p>“It accepted me, from the Far East. That’s why I like it.”</p><p>You can learn more about Fukuda and his career from the <a href="https://ethw.org/Oral-History:Toshio_Fukuda" rel="noopener noreferrer" target="_blank">oral history</a> conducted by the <a href="https://www.ieee.org/about/history-center" rel="noopener noreferrer" target="_blank">IEEE History Center</a>.</p>]]></description><pubDate>Tue, 07 Jul 2026 19:02:42 +0000</pubDate><guid>https://spectrum.ieee.org/ieee-honors-toshio-fukuda</guid><category>Robotics</category><category>Robots</category><category>Ieee-member-news</category><category>Type-ti</category><category>Ieee-awards</category><category>Toshio-fukuda</category><dc:creator>Kathy Pretz</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/three-men-in-suits-onstage-smiling-as-one-presents-an-award-medal-in-a-box.jpg?id=67107362&amp;width=980"></media:content></item><item><title>Japan Pioneered Humanoid Robots—Can It Now Catch China?</title><link>https://spectrum.ieee.org/humanoid-robots-japan</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-middle-aged-asian-man-seated-next-to-an-uncannily-similar-humanoid-robot-with-the-same-hairstyle-glasses-and-clothing.jpg?id=67080305&width=1200&height=800&coordinates=0%2C83%2C0%2C84"/><br/><br/><p>“In the future, the relationship between humans and robots will deepen, and the distinction between them will probably disappear.” This prediction, from one of the attendees at the recent <a href="https://humanoidssummit.com/agenda-2" rel="noopener noreferrer" target="_blank">Humanoids Summit in Tokyo</a>, might have been unremarkable had it not come directly from an android that was first introduced to the world 20 years ago. </p><p><a href="https://eng.irl.sys.es.osaka-u.ac.jp/robot" rel="noopener noreferrer" target="_blank">Geminoid HI-6</a> is the sixth-generation of a robot originally designed in 2006. The mechanical twin of Osaka University professor <a href="https://spectrum.ieee.org/the-amazing-androids-of-hiroshi-ishiguro" target="_self">Hiroshi Ishiguro</a>, Geminoid HI-6 is now equipped with a large language model trained on Ishiguro’s own writings and interviews. It has advanced conversational skills and can even have a chat with its creator, an eerie spectacle. But at the Humanoids Summit, Geminoid was one of the few humanoid robots from Japan, the country that pioneered the form factor.</p><p>While the event in Tokyo had only about 40 robots on display, Chinese systems outnumbered Japanese by roughly three to one. Some Japanese robotics firms were even using Chinese robots in their own technology demonstrations, something that would have been unthinkable in the recent past—one Japanese engineer described the situation as “sad.” The conference was a stark reminder of how Japan has ceded its early lead in humanoid robot development to overseas competitors, and the challenge it now faces to secure a place in an ecosystem increasingly dominated by general-purpose robots powered by AI. </p><p>Twenty-five years ago, Japan was turning out <a href="https://www.youtube.com/watch?v=ESLc26fNAe8" target="_blank">groundbreaking humanoids that were showstopping in their abilities</a>, but they were not commercialized as <a href="https://spectrum.ieee.org/japan-earthquake-more-robots-to-the-rescue" target="_blank">practical machines</a> in any meaningful way. Heavily influenced by science fiction and lacking practical applications, they were mostly expensive technology demonstrations that were eventually mothballed. What Japan retains, however, is robotics design and know-how, which it must leverage to be a key player in the rapidly evolving humanoid ecosystem. </p><h3>Learning to Walk—Then Standing Still</h3><p>To anyone who has seen recent videos of Chinese humanoids doing <a href="https://www.youtube.com/watch?v=R6T-Ea5CfRE" rel="noopener noreferrer" target="_blank">kung-fu and synchronized acrobatics</a>, as well as<a href="https://www.bbc.com/news/videos/cz0e54yrppno" rel="noopener noreferrer" target="_blank"> half-marathon races</a>, China’s remarkable progress in the field is nothing new. At the Humanoids Summit, Toyota showed a video of its <a href="http://toyotatimes.jp/en/newscast/188.html" target="_blank">latest basketball-playing robot</a>, and Honda exhibited its <a href="https://global.honda/jp/RandD/field/hgrx/honda-multi-fingered-hand/" target="_blank">latest robot hand</a>, but the full-scale humanoids on the floor were mostly Chinese–the kid-size <a href="https://www.booster.tech/booster-k1/" rel="noopener noreferrer" target="_blank">K1 machines from Booster Robotics</a> of Beijing were dancing to Michael Jackson tunes. The full-scale <a href="https://robotsguide.com/robots/unitree-g1" rel="noopener noreferrer" target="_blank">G1 humanoid from Unitree Robotics</a> of Hangzhou was also doing demos. </p><p>“You cannot sell these bipedal systems in Japan for safety and compliance reasons,” says Shuichi Nagao, a frequent visitor to China as CTO of <a href="https://www.omakase.ai/robotics" rel="noopener noreferrer" target="_blank">Omakase Robotics</a>, a division of Zeals, a Japanese humanoid robot developer. Omakase was exhibiting a G1 modified with an external PC controller, a dextrous hand, a suction-cup manipulator and a sensor “hat” with an extra speaker, mic, and camera. </p><p>“In China, the government is pushing humanoid development. They didn’t have an industry 20 years ago. The people pushing it are young, in their 20s and 30s. It’s a really different mentality out there,” says Nagao. “Big players in Japan are still looking for use cases for humanoids. In China, they’re already doing mass production and reducing the cost, so other countries can’t compete with them anymore.”</p><p>Another Japanese company showing off G1 bots was summit sponsor GMO AI & Robotics, a subsidiary of Japanese internet company <a href="https://en.wikipedia.org/wiki/GMO_Internet" rel="noopener noreferrer" target="_blank">GMO</a>. It’s using the robots in partnership with Japan Airlines to <a href="https://group.gmo/en/news/article/850/" rel="noopener noreferrer" target="_blank">load and unload cargo containers</a> at Tokyo’s Haneda airport. The cargo project is a trial—like <a href="https://www.tokyoweekender.com/entertainment/tech-trends/ai-powered-robot-monk-buddharoid/" rel="noopener noreferrer" target="_blank">many other humanoid experiments</a>—but the fact that Chinese machines have penetrated so far into Japan’s ecosystem <a href="https://www.amazon.com/dp/B001SARCOI?lv=shuf&channelId=500&plpRedirect=mhFallback" rel="noopener noreferrer" target="_blank">upends a long history</a>. </p><p>In 1973, scientists at Waseda University in Tokyo built <a href="https://www.humanoid.waseda.ac.jp/booklet/kato_2.html" rel="noopener noreferrer" target="_blank">WABOT-1</a>, considered the first full-scale humanoid robot, which was capable of slow bipedal locomotion, grasping objects, and simple communication. It inspired Honda’s groundbreaking Asimo humanoid, but Asimo was never commercialized. It was eventually retired in 2022, the year ChatGPT was released. Two years later, Unitree’s G1 went on sale for US $16,000.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A 65 centimeter tall bipedal robot, its design features the head of an anime-style girl with legs directly underneath." class="rm-shortcode" data-rm-shortcode-id="d33e151c604517b22d5f593787cbba8c" data-rm-shortcode-name="rebelmouse-image" id="706b9" loading="lazy" src="https://spectrum.ieee.org/media-library/a-65-centimeter-tall-bipedal-robot-its-design-features-the-head-of-an-anime-style-girl-with-legs-directly-underneath.jpg?id=67080329&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">China’s High Torque Technology Co. showed off its Mini Pi biped, customized with an anime-inspired head, at Humanoids Summit in Tokyo. The regular version is priced at $3,500. </small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Tim Hornyak</small></p><h3>Supply and Demand</h3><p>Japan’s development of humanoids happened before practical applications or widespread demand were in place, but bad timing is only part of the story—Japan also has a history of developing technologies that might appeal to domestic consumers but not necessarily those overseas. For example, decades after its highly engineered multifunction toilets first appeared, they have only recently found a <a href="https://www.nytimes.com/2025/05/29/business/toto-toilet-japan-bidet.html" target="_blank">following abroad</a>. </p><p>Japan’s humanoid prowess was partly built on the back of its legendary industrial automation, yet even that stronghold has eroded. Ani Kelkar, a partner from McKinsey & Company in Boston who produces analytical reports about the robotics industry, told the summit audience that while Japan occupied the top spot in the world in manufacturing robot density (the number of multipurpose industrial robots in operation per 10,000 employees) from at least 1994 to 2009, it then slipped to second in 2014, third in 2019, and fifth in 2024. In that year, South Korea was at the top of the leaderboard with a robot density of 1,220 compared to Japan’s 446. </p><p>The International Federation of Robotics <a href="https://ifr.org/ifr-press-releases/news/robot-density-surges-in-europe-asia-and-americas" target="_blank">estimates</a> China now has the most operational industrial robots in the world, with around 2 million total units, approximately 4.5 times more than Japan. “The annual installation numbers are impressive too: 54 percent of all robots installed worldwide in 2024 were deployed in China,” the IFR said in a release in April 2026. </p><p>“I think the loss of Japanese leadership is more to do with the rise of China as a manufacturing powerhouse including for sectors that Japan had high export levels,” Kelkar said in an email interview. “The recovery has not yet happened as Japan “missed” the rapid acceleration in AI for robotics and is now playing catch-up.”</p><h3>How Japan Can Adapt </h3><p>Kelkar believes Japan has a $100 billion opportunity in general-purpose robotics, which are machines that can perform a wide variety of tasks, and it cannot rely on the slower-growing industrial robot market, which is centered on factory machines that do one simple and predictable task like welding car parts. He points to a McKinsey <a href="https://www.mckinsey.com/industries/industrials/our-insights/japans-100-billion-opportunity-in-general-purpose-robotics#/" target="_blank">white paper</a> suggesting that while Japan has much of the hardware and technology experience needed to support general-purpose robot development, it must change its strategy to capture a larger share in AI, software, data collection, and robotics platforms.</p><p><a href="https://ogata-lab.jp/member/ogata.html" target="_blank">Tetsuya Ogata</a> is a professor of engineering and director of the Institute for AI and Robotics at Waseda University, the birthplace of humanoids in Japan. He briefed the summit on how a nonprofit he chairs, the AI Robot Association (<a href="https://www.airoa.org/" rel="noopener noreferrer" target="_blank">AIRoA</a>), is working with Toyota and other members to develop foundational technologies for collaborative use. </p><p>For instance, AIRoA has collected some 80,000 hours of data on remote operation of mobile manipulators, which Ogata believes is the largest dataset of its kind. Using the data, it built and verified vision-language-action (VLA) models, and it has also started data collection for dual-arm mobile manipulation. In an interview, Ogata acknowledged Japan’s struggle to find its place in the changing landscape. </p><p>“The world of AI is inherently a game of scale,” says Ogata. “Therefore, Japan’s absolute prerequisite is to secure a competitive baseline of scale—in data, computing resources, and talent. Beyond that, what I consider most critical is a mind-set shift: Rather than trying to hoard scale within a single nation or company, we must grow stronger by collaborating with a diverse ecosystem of domestic and international players.” </p><p>Specifically, this means creating a “collaborative domain” to address data—the single biggest bottleneck—through industry-wide cooperation rather than data siloing. By collectively nurturing a precompetitive, shared data infrastructure and foundation model, individual companies can then compete on top of it with their own applications. “By offering this open ‘data ecosystem’ to the world, we can engage global players and establish a ‘third pole’ alongside the U.S. and China,” says Ogata. “I believe this is how Japan can reclaim its global presence.”</p><p>In 1999, Japan introduced the <a href="https://www.eurotechnology.com/2015/02/22/i-mode-mobile-internet-docomo/" rel="noopener noreferrer" target="_blank">world’s first mobile internet services platform</a>. But being first didn’t turn Japan into a smartphone manufacturing or design center—it’s now merely a supplier of parts to other countries that are leading the smartphone industry. If Japan can avoid a repeat of that experience and successfully deregulate, diversity, and commercialize its original humanoid dreams, it stands a better chance of influencing the direction of the industry and reaping billions in value. As automobiles and electronics were pillars of Japan’s industrial strategy in the last century, Japan could make humanoid robots one of its key value generators in the 21st century, an approach that would not only deliver economic benefits but give Japan greater clout in how the industry will evolve. Just like Japanese cars, electronics, and even toilets, Japanese humanoids could stand for craftsmanship and reliability. It’s a legacy that Japan can’t afford to give up. </p>]]></description><pubDate>Sat, 04 Jul 2026 11:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/humanoid-robots-japan</guid><category>Japan</category><category>Robotics</category><category>Humanoids</category><category>Humanoid-robots</category><dc:creator>Tim Hornyak</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-middle-aged-asian-man-seated-next-to-an-uncannily-similar-humanoid-robot-with-the-same-hairstyle-glasses-and-clothing.jpg?id=67080305&amp;width=980"></media:content></item><item><title>Video Friday: An Earthbound Mars Rover for the Moon</title><link>https://spectrum.ieee.org/video-friday-nasa-lunar-rover</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/mars-style-rover-prototype-on-rugged-ground-under-a-clear-sky-with-the-moon-visible.png?id=67083121&width=1200&height=800&coordinates=150%2C0%2C150%2C0"/><br/><br/><p><span><a href="https://spectrum.ieee.org/tag/video-friday" target="_blank">Video Friday</a> is your weekly selection of awesome robotics videos, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><h5><a href="https://2026.ieee-iros.org/">IROS 2026</a>: 27 September–1 October 2026, PITTSBURGH</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><blockquote class="rm-anchors" id="fmxmym6bj-y"><em>NASA is considering a mission concept for an advanced, nuclear-powered rover to be deployed to the Moon’s South Pole as part of the agency’s Moon Base plans. The PROMISE (Polar Rover for Observation, Mapping, and In-Situ Exploration) mission concept relies on the </em><em>Curiosity</em><em> Mars rover mission’s testbed rover. Some elements of the Perseverance Mars testbed rover shown in this video could be used as well. As exact duplicates of Curiosity and Perseverance, the testbed rovers are equipped with flight-proven engineering systems capable of carrying technology as well as science instruments that would advance Moon Base efforts.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="d881b87056155c504e254e7457c0db9a" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/FMXmYm6bj-Y?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>A Mars rover for the Moon? That’s some <a href="https://science.nasa.gov/resource/improved-optimism/" target="_blank">OPTIMISM</a> right there.</p><p>[ <a href="https://science.nasa.gov/resource/improved-optimism/">JPL</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="6qrzc1kf7kc">This is the absolute best thing since <a href="https://spectrum.ieee.org/festos-fantastical-flying-robots" target="_blank">Festo’s AirPenguin</a>.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="00e4026efb20337710b91d73751255f5" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/6qrZC1kF7Kc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><blockquote><em>The project explores soft, lightweight robots that can gently float around people in indoor environments and invite playful, affectionate, and everyday interactions. Unlike conventional drones, our robot is designed to be quiet, soft, touch-safe, and socially approachable. Through this work, we ask what future indoor companion robots might feel like if they were not rigid machines, but gentle floating beings that share space with us.</em></blockquote><p>[ <a href="https://dl.acm.org/doi/10.1145/3800645.3813051">Paper</a> ]</p><p>Thanks, Mingyang!</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="m7pzr90bqw4"><em>Today, we’re launching our home robot, Isaac 1. Deliveries will begin this fall.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="e69b7f71aeeb24dd3f2f6e5230c83d87" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/m7pZr90BQw4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>US $500 per month, with some basic task autonomy, plus teleoperation.</p><p>[ <a href="https://www.weaverobotics.com/isaac-1">Weave Robotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="tv90gfm9rao">A couple of things from this new Figure video: Thing one is that the cart-pulling is a good illustration of how clumsy humanoid robots still are at basic tasks relative to humans. Thing two is that there are absolutely no humans anywhere near these robots. You can see one guy at 0:19, which I can only assume is an accident, because these robots are not safe to be around from an industrial safety perspective.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="7e3f1333e519de00328492dfb7ef4c7e" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/tv90GFM9RAo?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.figure.ai/news/f-03-at-bmw">Figure</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="5mhop2g4e4u">Our very own Kohava Mendelsohn met some robots at ICRA in Vienna, and only one of them was murderous.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="1a1af487022ecf65a6777568dc82c122" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/5mHop2g4e4U?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://2026.ieee-icra.org/">ICRA 2026</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ipyxwelid9q"><em>Welcome to Robot Park, where we’re building the future with Apollo 2. Robot Park is where Apollo learns today, getting the experience needed to make a difference tomorrow. Today we’re announcing Robot Park, our nearly 90,000-square-foot facility where Apollo 2 is collecting real-world training data needed to advance autonomous humanoid robots. </em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="816a0931f93aa9181874dcf42bd8af55" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/iPyxwELiD9Q?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://apptronik.com/news-collection/welcome-to-robot-park-where-apptroniks-apollo-goes-to-work">Apptronik</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="mrlbqt5tkh4"><em>UBTech Robotics, the world’s first publicly traded humanoid robot-maker, has launched a humanlike robot that features lifelike silicone skin and “emotional AI,” as Chinese tech firms increasingly transition robots from the factory floor to the family living room.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="92bad8bc3b27bcd33826b6a23ccbc136" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/mRlbqt5tkh4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.scmp.com/tech/tech-trends/article/3358884/ubtechs-lifelike-humanoid-robots-built-companionship-arriving-homes-across-china">SCMP</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="xdq8yzehviy"><em>Spherephones are redefining how we experience sound. Created at Georgia Tech, this wearable uses spatial audio to alert users to movement from every direction—including behind and below. Built for safer human-robot collaboration, the technology is expanding into gaming and accessibility applications. See how music is becoming a new language for awareness and interaction.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="1c28bf7c33b2dc392414883d2091ce52" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Xdq8yZEhVIY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://research.gatech.edu/feature/spherephones">Georgia Tech</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="6dme3jyj3hg"><em>Humanoid robots are meant to carry out long-horizon autonomous missions in a world built for humans. This is hard. These missions consist of many steps, each of which requires them to perceive, navigate, and interact with the environment. This is exactly Flexion’s goal: building the general-purpose intelligence that turns any robot into a useful helper.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="6945395cb7a1683c987e1958c215c096" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/6dme3JYj3Hg?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://flexion.ai/news/flexion-reflect-v1.0">Flexion</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="lttnht-y47m"><em>We’re introducing KinetIQ Ascend—our reinforcement-learning approach designed to reach 99.9 percent manipulation reliability at human speed and beyond.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="4877e7fff6b2910b27cb19d0767ce946" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/ltTnHt-y47M?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://thehumanoid.ai/technology/kinetiq-ascend/">Humanoid</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="hsmj7__elk0"><em>Dr. Sebastian “Basti” Scherer has worked in field robotics since the first DARPA Grand Challenge in 2004. He runs the AirLab at Carnegie Mellon’s Robotics Institute and is the director of safe embodied AI at FieldAI. While much of the industry is focused on local skills like tabletop manipulation, Dr. Scherer sees the greatest value in solving dirty, dull, and dangerous tasks that require operating in uncertain environments where the robot needs to “just work.” When robots “just work,” they become less like robots and more like tools. “That’s the big challenge that we have to overcome,” he says. “And that’s the challenge that FieldAI is really primed to solve.”</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="5ecff8cba73b436c9ce74c64d35c3d37" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/hSmj7__ElK0?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.fieldai.com/">FieldAI</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="omzfvmtwsjc">Look, I really appreciate how valuable robots like ElliQ can be, and robots that do good work and offer a financial benefit are incredibly important, especially in the context of family care. But in my opinion, you really shouldn’t suggest that a robot with FaceTime or whatever is an equal replacement for in-person human companionship, nor should you suggest that AI can replace a human wellness coach. If you can’t afford those things, then sure, ElliQ can offer some of those capabilities in a very limited way, but that’s all.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="315485eda5755a587c9766b1833eb224" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/omzFVmTWSJc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://elliq.com/">ElliQ</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="gz4frehicfe">Very cool moves! Now get a job!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="060a0d389fced4a811f9d3d2f215155b" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/GZ4FReHiCFE?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.deeprobotics.cn/en">DEEP Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="r6f8bztjqfg"><em>Drawing inspiration from restaurant waiters in Morocco and Turkey, among other places, we equip a robot with a hanging tray to transport objects from one location to another without dropping them or spilling their contents. We incorporate this approach into an interactive robot waiter demonstration, which uses computer vision and visual servoing to steer toward a person with a raised hand to serve them.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="3d7c21407c0942982adaec884b8d7af3" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/r6F8BzTJqfg?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://arxiv.org/abs/2606.10039">Paper</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="qfsmncdh9lu">If you’re going to make robots wear skirts or shorts or pants, you have to give them butts, or it’s just not going to work. That is all.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ec4ba90db61158fac9af0a6446ff7479" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/qFSMnCDh9lU?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://techshare.co.jp/product/unitree/g1/">TechShare</a> ] via [ <a href="https://www.youtube.com/@KazumichiMoriyama">Kazumichi Moriyama</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="kfy7d-qiyjw"><em>It’s Los Alamos, so of course we have robots. Some work inside gloveboxes, while others probe unexploded ordnance in the field and aid with repetitive lifting, Doc Ock–style. Legend has it there’s a fro-yo robot in the cafeteria.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="83ab45811dfd3e9d4112cf990c38ed08" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/KfY7d-QiYJw?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.lanl.gov/media/publications/national-security-science/1224-sniffing-out-radiation">LANL</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="8aiznj4cciu">Here are a couple of talks from the recent Humanoids Summit in Japan, from Ali Agha of FieldAI as well as Hiroshi Ishiguro.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="06cf763f945761ffdcd59d66efe7aba4" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/8aiZnJ4CCIU?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="1dca24b3eda728d9e78c5074480d9ef1" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/FS3r3TUGius?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span> </p><p>[ <a href="https://humanoidssummit.com/agenda-2">Humanoids Summit</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 03 Jul 2026 15:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-nasa-lunar-rover</guid><category>Video-friday</category><category>Home-robots</category><category>Rovers</category><category>Humanoids</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/png" url="https://spectrum.ieee.org/media-library/mars-style-rover-prototype-on-rugged-ground-under-a-clear-sky-with-the-moon-visible.png?id=67083121&amp;width=980"></media:content></item><item><title>Video Friday: Give Robots a Hand</title><link>https://spectrum.ieee.org/video-friday-robot-grippers</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/three-fingered-robotic-gripper-arm-crawls-upright-on-a-white-table.gif?id=67036633&width=1200&height=800&coordinates=100%2C0%2C100%2C0"/><br/><br/><p><span>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><h5><a href="https://2026.ieee-iros.org/">IROS 2026</a>: 27 September–1 October 2026, PITTSBURGH</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><p class="rm-anchors" id="yfjuag9w2hg">The best way of introducing a new <a data-linked-post="2650254250" href="https://spectrum.ieee.org/dlr-super-robust-robot-hand" target="_blank">robot hand</a> is to have a disembodied one crawling across a table.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="52efea7250cc2729ca8c71167b1872ca" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/yFJuAG9W2hg?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.tangentrobotics.ai/">Tangent Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="auamgssnyqm"><em>MIT CSAIL’s Improbable AI Lab Director Pulkit Agrawal explains his “SoftMimic” approach to making robots safer around humans.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c1d5bc8cd43c95a2adcfec3c38d561b6" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/auAmgSSNYqM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://arxiv.org/abs/2510.17792">SoftMimic</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="uskdotwb0k4">I now have absolutely no interest in a humanoid robot for my home unless it can do this.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ac47e7d8635f0f4ec692c1a3947c9ec9" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/UskDOtwb0k4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.pndbotics.com/">PNDbotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ueon0tm0jzs"><em>The <a data-linked-post="2674294763" href="https://spectrum.ieee.org/video-friday-heavy-lift-drones" target="_blank">DARPA Lift Challenge</a> is open to the public August 6-9, 2026, at the National Museum of the US Air Force.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="b823075bf5cd608f71e990c15dfda722" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/uEoN0TM0jzs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.darpa.mil/research/challenges/lift">DARPA</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="76cusj01dn8"><em>Getting Digit to step and shuffle around an obstacle on the floor is a real test of reactive footstep planning. Digit has to spot something small and moving, recalculate where to place each foot, and keep working—all without breaking stride or losing balance. That’s the same dynamic footwork Digit uses to navigate clutter and foot traffic on a real warehouse floor.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="add9acf61ae3f08cb61ac28914b79412" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/76cUsj01DN8?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.agilityrobotics.com/">Agility Robotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="9lgujrgb_kq">This is the most aggressive <a data-linked-post="2650277136" href="https://spectrum.ieee.org/firefighting-robot-snake-flies-on-jets-of-water" target="_blank">firefighting robot</a> I’ve ever seen.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ae4bb49fc8778c2b47fed24470bf78bc" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/9LGUjRgb_KQ?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.deeprobotics.cn/en">DEEP Robotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="rio7kurb53o">Wait a sec, Dusty can print things on floors besides construction layouts? How is this not in every city, making sidewalks exciting and fun everywhere?!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="51338170a381297dd2dee459023bcca8" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/RIO7kurB53o?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.dustyrobotics.com/">Dusty</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="mtmyfvd4zcw">I am the first to admit that for US $4,900, the performance of the Unitree R1 is very impressive. But what is it going to do out in the world such that it will give you some sort of return on that investment?</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="e6b5b48073245ec52b163755031e292e" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/mTMYfVD4zCw?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.unitree.com/R1">Unitree R1</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="ij93ftr3hqe">Event cameras are extraordinarily powerful because they can see motion, but what if everything is moving because your camera is moving? Oh no!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="a268213a0882cb639ec2d215baf3de01" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/ij93FTR3HQE?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://rpg.ifi.uzh.ch/">University of Zurich Robotics & Perception Group</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="hleaklk4ixm"><em>Can we understand whale behavior and language? Harvard SEAS Professor Stephanie Gil explains the possibility of understanding animal language and behavior using AI-driven robots and machine learning.  With ongoing whale research and advancements in artificial intelligence, the potential for animal communication with whales could become a tangible reality.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="7c12b3aa2c3cd188f73b99d21bd1f525" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/HLEaKLk4ixM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://react.seas.harvard.edu/">Harvard SEAS</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="upxxhr8r7-a"><em>Rodney Brooks, founder and chief technology officer of Robust.AI, sits down with Forbes Assistant Managing Editor Kerry Dolan to discuss how he came up with the idea of the Roomba vacuum cleaner and the future of robotics.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="932d3c5b04d717a36903bea738f51398" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/UpXXhr8R7-A?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.linkedin.com/posts/rodney-brooks-1a137517_how-ants-inspired-this-founder-to-build-a-activity-7475766254587387904-ZsL9/">LinkedIn</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="h_dtuu5jl3g">Here are a couple of interesting presentations from UIST 2025, including everyday objects that move around your home with a mind of their own and a project featuring teamwork between helium balloons and ground robots called Buoyancé.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="0f4b6f354c5c5851e7585cdcf525db93" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/h_dTUU5jl3g?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="956677cf0d40b01e72cf3d08e5f7b242" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/i6HsdqwYN4g?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://programs.sigchi.org/uist/2025">UIST 2025</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 26 Jun 2026 16:30:01 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-robot-grippers</guid><category>Humanoid-robots</category><category>Video-friday</category><category>Robot-hands</category><category>Quadruped-robots</category><category>Robot-videos</category><category>Firefighting-robots</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/gif" url="https://spectrum.ieee.org/media-library/three-fingered-robotic-gripper-arm-crawls-upright-on-a-white-table.gif?id=67036633&amp;width=980"></media:content></item><item><title>Video Friday: Do Robots Even Need Legs?</title><link>https://spectrum.ieee.org/video-friday-agentic-ai-robot</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/white-service-robot-on-a-square-mobile-base-working-at-a-countertop-in-a-modern-wooden-kitchen.png?id=66959675&width=1200&height=800&coordinates=150%2C0%2C150%2C0"/><br/><br/><p><span>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><h5><a href="https://2026.ieee-iros.org/">IROS 2026</a>: 27 September–1 October 2026, PITTSBURGH</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><blockquote class="rm-anchors" id="zab62_u-a5u"><em>Eno is our first agentic robot: an AI agent and a general-purpose robot working as one system. It reasons, plans, and acts in the real world. Human in capability, not in form. Every detail with a purpose, reduced to what matters. Designed not to resemble us, but to extend us. Eno is built end to end at Genesis.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="460c8200e95c0a9fd10ba1b94712d683" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/zab62_u-a5U?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.genesis.ai/">Genesis</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="rhhqoyxvade"><em>Engineers from NASA’s Jet Propulsion Laboratory are field-testing advanced capabilities for potential future Moon and Mars rovers. In the Colorado Desert near Plaster City, California, teams used a prototype rover called ERNEST (Exploration Rover for Navigating Extreme Sloped Terrain) to test software for a potential <a data-linked-post="2675585314" href="https://spectrum.ieee.org/lunar-base-3d-printing" target="_blank">future long-range lunar mission</a>. The software enables the rover, developed at JPL, to operate autonomously and travel extreme distances with minimal intervention from human operators. </em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="8a94caff0e0c5f9ed5b89eaaa2a11eba" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/RhHQoyxVAdE?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>ERNEST is a lot more capable than it may look; here’s some recent research showing the kinds of terrain it can handle:</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="d4998c742f874cd25e870fb8875792d3" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/d684P5a3xMc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.jpl.nasa.gov/news/nasa-testing-advanced-capabilities-for-moon-mars-rovers/">NASA's Jet Propulsion Lab</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="6mzafau1puq"><em>Table tennis can produce moments that are difficult even for experienced players to anticipate…like when the ball clips the net and suddenly changes direction. For the Ace research project at Sony AI, these events were a key test of the system’s ability to operate reliably in unpredictable real-world conditions. Ace addresses this uncertainty by simulating counterfactual ball trajectories in real time. In the video, the green overlays show these alternative paths the system considers while planning its response.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="8f0c54df03490792bc84bd1bb1073945" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/6MzAfaU1puQ?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>And check out some of these rallies that the robot has with Miyuu Khiara.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="1f82d29c23ff3ea01848cf94f5f65c47" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/xmUkuVaWyD4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://ace.ai.sony/">Sony AI</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="oilpnumvgve">This video of an ANYmal deployment in a concrete plant is worth watching because it makes explicit how quadrupeds make money in <a data-linked-post="2650277724" href="https://spectrum.ieee.org/north-sea-deployment-shows-how-quadruped-robots-can-be-commercially-useful" target="_blank">inspection contexts</a>: Among other things, “a cracked crusher foundation [was] caught before a week-long shutdown, avoiding roughly $630,000 in lost production.” That pays for a lot of robots.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="70dca1eb215314e010a3a67f31a7b4a1" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/oIlPnumvgvE?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.anybotics.com/">ANYbotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="xcqgxr7efdo">A lot of interesting footage here from GITAI’s prep for a robotic satellite servicing demo mission. The thruster test-firing isn’t a robot, exactly, but it may be the coolest part.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="62a28a56cec768c8601566f029d17cf1" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/XcqgxR7efdo?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.prnewswire.com/news-releases/gitai-completes-flight-model-of-s3-robotic-satellite-for-on-orbit-servicing-demonstration-mission-302801614.html">GITAI</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="ko1cqdbsr_o">Anyone who’s tried to take a half decent photo underwater knows that it’s basically impossible, so let’s try and teach robots to cope.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="d1941d0c7183baee7bd0aacb4f41d6a1" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Ko1CQDBsR_o?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://mertcookimg.github.io/bi-aqua/">Bi-AQUA</a> ]</p><p>Thanks, Masato!</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="y41op9mupqa"><em>Handling delicate, irregular or unpredictable objects is one of the hardest problems left in automation, and one of the most important. It’s what’s holding back the next wave of robots from doing more in the real world. That’s why we’re working with PSYONIC on a new approach. Their Ability Hand, worn by hundreds of people every day, captures real-world data on touch, pressure and grip. Our GoFa cobot brings the industrial-grade accuracy and repeatability to turn that human data into reliable robotic performance.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ff615700aefe346e7bab8ddd6dc765c4" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/y41oP9MUpqA?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.abb.com/global/en/news/136690/prsrl-abb-robotics-and-psyonic-use-human-generated-data-to-advance-robotic-dexterity">ABB Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="oiyl5neg4rc"><em>Sanctuary AI has achieved world-class performance on a complex wire-plugging production task with a global Tier 1 automotive supplier. In this demonstration, Sanctuary AI’s Physical AI successfully performs a high-speed wire-plug insertion task, achieving a validated task success rate of over 99.5% with a cycle time of just 2.54 seconds, meeting live production benchmarks established by the customer.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="88690bc6b3e21686783e1d5dd57ae839" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/OIYL5nEG4rc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>WHY IS THIS STRESSING ME OUT SO MUCH?</p><p>[ <a href="https://sanctuary.ai/">Sanctuary</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="-kqaschiady">This video is quite obviously fake, but I suppose maybe there’s a market for extra beefy quadrupeds? Maybe?</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="acdeedc60b9986c19a8d6727a87e4c1a" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/-kqASChiAdY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.gotokepler.com/home">Kepler</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="vypbeg6i6og">I cannot overstate how much I do not want any robot to look at what I’m wearing and then attempt to sell me things based on what it thinks it can guess about my personality or interests.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="63f287d58f1dcf495b6ee830b943a5a8" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/vYPBEg6i6og?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.magiclab.top/en/">MagicLab</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="ylopovulwi8">I am here for fed-up robots learning how to move boxes by just kicking them.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="0f5823346ed561cb3df5a9f0f91cfa6f" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/YlopoVulwi8?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.ce.cit.tum.de/en/aipd/home/">ATARI Lab</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="cbwsags8al8">Ah, yes, very useful and very important robots that make me very uncomfortable.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="b29e76e6844bee435a9073cecac8ce17" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/CBWsaGs8al8?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://ieeexplore.ieee.org/document/11112617">Paper</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="s67z2aekbri"><em>I built GrowBot ( a ~6”, two-servo bipedal robot) that runs entirely on a $15 Raspberry Pi Zero 2 W, ~$100 in parts. An LLM drives it directly: it reads the raw IMU stream with no translation layer and narrates its own motion (“rocked side to side like a baby”), riding on a 50-Hz reinforcement-learning walk policy trained in sim and transferred to the real body.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ac663fe294d26d7632e9aa5c0ca6dd46" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/S67z2aekBrI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>The idea here is to build an open course around this project, Brit says, “so everyone can experience physical AI right now in a low-risk way.”</p><p>[ <a href="https://artoftheproblem.com/pages/growbot">GrowBot</a> ]</p><p>Thanks, Brit!</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 19 Jun 2026 15:00:02 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-agentic-ai-robot</guid><category>Video-friday</category><category>Robot-videos</category><category>Lunar-rover</category><category>Inspection-robots</category><category>Robot-hands</category><category>Robot-ai</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/png" url="https://spectrum.ieee.org/media-library/white-service-robot-on-a-square-mobile-base-working-at-a-countertop-in-a-modern-wooden-kitchen.png?id=66959675&amp;width=980"></media:content></item><item><title>What Amazon’s Astro Taught Me About Giving Robots a Soul</title><link>https://spectrum.ieee.org/amazon-astro-robot-sound</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/cute-wheeled-home-robot-with-a-tablet-face-set-against-a-blue-heart-patterned-background.jpg?id=66906422&width=1200&height=800&coordinates=0%2C83%2C0%2C84"/><br/><br/><p>In 2018, Amazon brought me in as the lead UX Sound Designer for <a href="https://spectrum.ieee.org/amazon-astro-robot" target="_blank">Astro, its first consumer home robot</a>. Astro used cameras and other sensors to map and navigate your <a href="https://spectrum.ieee.org/ai-robots" target="_blank">home and workplace</a>, and could proactively patrol, check up on loved ones, and transport small items using its built-in cargo bin. While there was a well-defined feature set and form factor, initially there was no character direction. In fact, even before <a href="https://www.amazon.com/Introducing-Amazon-Astro/dp/B078NSDFSB" target="_blank">Astro</a> had a name, there were two main questions—was it simply Alexa on wheels, or was it a robot with its own character?</p><p>The Astro team was divided. One option was to focus on Alexa, and treat the mobile robot simply as an added utility. Along with the majority of the UX team, I argued for Astro to not focus on Alexa. Our belief was that a thing that moves through your home and turns toward you with intent can never be just an appliance. People would ascribe character to it whether we wanted them to or not, and so the only question was whether we shaped that character or let it happen by accident.</p><p>Ultimately, <a href="https://www.aboutamazon.com/news/devices/meet-astro-a-home-robot-unlike-any-other" target="_blank">Astro became Astro rather than Alexa</a>, and user testing backed up our decision. People <em><em>didn’t</em></em> see the robot as Alexa. They saw it as its own character, and that’s what they wanted it to be. Alexa on the device felt somewhat strange and creepy, but building Astro its own voice was too slow and expensive in 2018. So, we settled on Alexa as a supporting character that handled any actual talking, while Astro was the main character, communicating as much as it could without words, through sound, motion, and facial expressions.</p><p>I had been brought on to the Astro team to define the robot’s sound design language and voice. But there was no one to flesh out the robot’s actual character. You cannot make a single real decision about a character without defining it first. Every choice about how Astro moved, sounded, paused, or reacted was a character choice, and those choices required all disciplines working together. As sound lead, I was weaving together sound, motion, and character, and how they played together inside each story moment. The animators, who programmed Astro’s motion and facial expressions, were extraordinary at what they did, but the emotional arc they were animating came from the sound (and therefore character) work first. So I stepped into that role, which is where my real work started. What I learned about building character for robots applies to nearly everything being built in embodied AI right now.</p><h2>Character Is a Design System</h2><p>Developing a character for Astro meant answering questions that had never been asked about a product at Amazon: What is the emotional range of this robot’s baseline state? How does this robot communicate uncertainty without eroding trust? Where is the line between being expressive and annoying? What are the vulnerabilities of this device’s character?</p><p>These are design questions. They have real answers, and every team working on the product has to build from them. For example, Astro’s emotional range was designed to be relatively small at first. We never wanted Astro to get too sad or too angry. It could play sad, but would snap out of it quickly and end the reaction on a high note to keep things positive.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="5ace7686175eb510c58a3b79ecc7f5e3" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/r1eS3TitrHc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Character leaks out of every seam and can create a disjointed experience if not defined correctly. Even if it’s just animation timing that’s slightly off, or a response that’s technically correct but contextually tone-deaf, users feel every one of these inconsistencies, even if they can’t name them. Watch what happens at the beginning and end of this Sing sequence:</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="24123281b2c3cce6b288876b59fed097" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/HtePtQyiTDs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Astro goes from nothing, into the emotional moment, and then lands back on nothing. No buildup, no cooldown, no sense that the feeling came from somewhere or had anywhere to go. I pushed hard for better character stitching, the transitions in and out of expressive moments that make a performance feel continuous rather than assembled, but it never got implemented. The moment itself works. But without the stitching, it reads as a clip playing on a robot rather than coming from within the robot character itself.</p><h2>Story and Sound at the Beginning</h2><p>We had decided that Astro would have no spoken dialogue, but it had something that functioned the same way: a vocabulary of sounds, tones, and rhythms that acted as its voice. This vocabulary became the leading output of the character’s personality. The robot’s motion and facial expressions were built around it.</p><p>Astro’s wake-up sequence is a great example. Waking wasn’t just a boot animation on the screen; it was an entire performance. Slow and humble at first, the robot oriented itself quietly, then stretched its screen, checked its wheels, and finally, with an upward gesture toward its telescoping mast, it popped it up slightly, and did a little dance of joy. Sound, motion, and eyes hit every beat<em> </em>together in full choreography.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="3f2f54b4b3d6b267224490a3eaf3d339" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/coPva7ltAgM?rel=0&start=261" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>The character’s output in that sequence was first written as a story. Astro is waking up in its new home for the first time. Its main aspiration is to be part of a family, so this is the moment it has been waiting for, this is its purpose. Being the responsible character that it is, it wants to make sure everything is good to go before it introduces itself and starts learning its new home.</p><p>This narrative came first because it drove every other decision that we made. After the story was written, sound gave that story a metaphorical voice: the excited tones, the pacing as it checked its wheels, and the bright melodic phrase as Astro looked up at its new family for the first time and introduced itself. Once the sound was laid down, the animation team did their thing with motion and facial expressions, taking cues from the emotional arc the sound had established. Motion didn’t lead—it followed the feeling of the story and the sounds, the same way an animator follows a recorded vocal take.</p><p>That wake-up sequence became one of the most-discussed moments in early user testing. People described it as “alive.” What they were responding to wasn’t any single element. It was all three channels (sound, motion, and facial expressions) expressing the same defined character in harmony.</p><h2>Context Is Where Character Becomes Real</h2><p>The most compelling characters are defined not by a fixed disposition but by how they respond to their environments and the people in them. They’re still recognizably themselves even as they adapt. This is what I call contextual character. A robot living in a home doesn’t occupy a single emotional state. It moves through rooms with different energy, encounters people in different moods, operates at different times of day, and responds to an endless range of social situations it was never explicitly designed for.</p><p>We got close to a contextual character output with Astro’s sound. When a specific piece of environmental context was fed in, the system adapted beautifully, and Astro felt completely alive. But every state like this was still a prediction we made by hand—a situation we had to imagine in advance and design a response for. A random home throws more situations at a robot than anyone can possibly predict, so there was always a longer tail of moments the system was never prepared for.</p><p>The difference between a product people describe as “smart” and one they describe as “aware” often comes down to this. Smartness is capability. Awareness is context. Presence is character. And character is always in reaction to the people around it, to its environment, to its own evolving state. That’s what makes it feel like something is emotionally present with you.</p><p>This is where AI changes the game for character design in ways that go well beyond what was possible with Astro. AI-driven adaptation doesn’t require the contextual predictions that we relied on. It learns the specific rhythms, preferences, and emotional context of the people it lives and works with. The character doesn’t just respond to context. It <em><em>grows</em></em> into it.</p><h2>What Industry Is Missing</h2><p>The character and soul of the impending wave of embodied AI products appears to almost always be an afterthought. And character defined late is character defined by default. It becomes the sum of a thousand small decisions made by different people thinking about anything but character. People project character onto devices whether you plan for it or not, especially if those devices move—a robot that moves is <em><em>already</em></em> a character. If nobody has designed this character, the result will be products that feel like nothing, or worse, feel confusing and not trustworthy. Technically impressive, but lifeless.</p><p>We did not get this fully right with Astro. So many things were moving in parallel that character was rarely treated as a utility, and it made sense why. When you are building a first-of-its-kind product, the things that are the loudest are the ones that break, the deadlines, the costs, the features a customer can point to on a box. Character is quieter than all of that. It’s easy to assume it can come later. On a team as large as the Amazon Astro team, it’s lucky to get any idea onto the road map when it is competing with a hundred others that all feel more urgent in the moment. None of this came from people not caring. It came from character being the kind of thing that is hard to prioritize until you see what its absence costs you.</p><h2>My Asks to Product Leaders</h2><p>If you are building a product that will share physical or conversational space with people, three things are worth considering:</p><p><strong>Define character before you define interactions.</strong> You need a defensible character with enough emotional logic to answer hard questions consistently. Find answers to character questions early, and have every discipline build from the same foundation.</p><p><strong>Build story and sound into the character pipeline, not the production pipeline.</strong> Story and sound developed alongside character definition has the chance to inform motion, expression, and interaction logic. This requires a different kind of collaboration, and a different kind of hire.</p><p><strong>Design for adaptation, not just consistency.</strong> A consistent character is necessary, but the products that will matter most in people’s lives are the ones that deepen through use. The infrastructure to support that is more and more accessible, but the design thinking to take advantage of it is still rare.</p><div class="horizontal-rule"></div><p><em><em>An expanded version of this story is available on <a href="https://medium.com/@mikeforstmusic/what-amazons-astro-taught-me-about-giving-ai-a-soul-989fcd9c45f4" target="_blank">Medium</a>.</em></em></p>]]></description><pubDate>Fri, 19 Jun 2026 10:00:00 +0000</pubDate><guid>https://spectrum.ieee.org/amazon-astro-robot-sound</guid><category>Amazon</category><category>Astro</category><category>Consumer-robotics</category><category>Home-robots</category><dc:creator>Mike Forst</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/cute-wheeled-home-robot-with-a-tablet-face-set-against-a-blue-heart-patterned-background.jpg?id=66906422&amp;width=980"></media:content></item><item><title>The Secret to Marathon-Winning Humanoid Robots</title><link>https://spectrum.ieee.org/china-humanoid-robot-marathon</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-red-and-black-humanoid-runs-alone-through-a-marathon-course.jpg?id=66940897&width=1200&height=800&coordinates=57%2C0%2C57%2C0"/><br/><br/><p>On 19 April 2026, the <a href="https://www.cnn.com/2026/04/19/china/china-robot-half-marathon-intl-hnk" rel="noopener noreferrer" target="_blank">Honor Lightning humanoid robot ran a half-marathon in 50 minutes and 26 seconds</a>, beating the human world record by 7 minutes and the best robot time from 2025 by almost 2 hours.</p><p>How did Honor do it? Is there some magical technology or technique that unlocked this performance? How did the company beat the significantly better-known Unitree (which reportedly had to supply its robot with an ice backpack to try and complete the race without overheating)? My doctoral thesis involved <a href="https://www.avikde.me/p/phd-defense" rel="noopener noreferrer" target="_blank">building and controlling hopping and running robots</a>, and <a href="https://www.avikde.me/p/ghost-robotics-minitaur" rel="noopener noreferrer" target="_blank">since then I’ve tried to design and build efficient commercial legged robots</a>, giving me a decent idea of the constraints involved. In this article, we take a look at the fundamental underlying constraints to try and answer these questions.</p><h3>The Physics of Running</h3><p><a href="https://spectrum.ieee.org/ai-institute" target="_blank">Running</a> consists of alternating phases of a leg pushing against the ground (“stance phase”) and the body flying through the air (“aerial phase”). In the aerial phase, the body falls due to gravity, losing vertical momentum. The leg in stance phase pushes against the ground to redirect the vertical momentum upward, while the other leg swings forward to reposition for the next foothold.</p><p><a href="https://spectrum.ieee.org/ev-motor" target="_blank">Electric motors</a> use energy to produce torque—the higher the torque, the more energy is lost as heat. Adding a gear train after the motor amplifies its torque and reduces its speed. A large reduction helps with torque production, but since the rotor of the motor itself has to spin faster, it becomes very sluggish at accelerating its output. This is obviously bad for the swing phase described above. These competing effects mean that for a particular motor, there is usually a sweet spot for the gear ratio:</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A graph showing the relationship between gearing and motor efficiency, with an optimal gearing ratio in the relationship between stance and swing." class="rm-shortcode" data-rm-shortcode-id="4c2224acc293d6b3ce8b8b6553aa30f5" data-rm-shortcode-name="rebelmouse-image" id="10bd7" loading="lazy" src="https://spectrum.ieee.org/media-library/a-graph-showing-the-relationship-between-gearing-and-motor-efficiency-with-an-optimal-gearing-ratio-in-the-relationship-between.jpg?id=66940901&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">The power consumed by a robot leg is minimized at an optimal gear ratio (30:1 in this example).</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Avik De/Datawrapper</small></p><h3>How Honor Did It</h3><p>While the Lightning’s motor specifications are not published, the hip and knee motors roughly have a 110-to-150-millimeter outer diameter. For an approximate set of motor parameters, I looked to the <a href="https://www.tq-group.com/en/products/tq-robodrive/servo-kits/ilm115x25/" target="_blank">ILM115x25 motor</a> due to its relevant size and detailed specifications.</p><p>We can use a simple physics model to estimate the power consumption for running at 7 meters per second (the Lightning’s average half-marathon speed) as gear ratio varies:</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A graph showing that optimal gearing for a robot\u2019s motor dissipates the amount of heat that the motor generates." class="rm-shortcode" data-rm-shortcode-id="0c141eb19fa96484e88fae02082f4731" data-rm-shortcode-name="rebelmouse-image" id="185f3" loading="lazy" src="https://spectrum.ieee.org/media-library/a-graph-showing-that-optimal-gearing-for-a-robot-u2019s-motor-dissipates-the-amount-of-heat-that-the-motor-generates.jpg?id=66940912&width=980"/><small class="image-media media-caption" placeholder="Add Photo Caption...">The light blue curve shows how to pick the optimal gearing (45:1). The dark blue curve shows how much heat will be produced in the knee motor, ~150W for the optimal gearing.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Avik De/Datawrapper</small></p><p>We see that the drivetrain is not magical: with a gear ratio <em><em>chosen for this task</em></em> (we’ll return to this below), the approximate robot power consumption would be a very reasonable 400 watts.</p><p>However, the dissipated knee power ( typically the main thermal limiting factor) is approximately 150 W. This is almost an unavoidable consequence—running at human speeds with a humanoid-size robot will inevitably generate this amount of heat! Over a prolonged period, keeping the motor from overheating would be a challenge, but the Lightning has a <a href="https://eu.36kr.com/en/p/3775418378027520" target="_blank">trick up its sleeve</a>:</p><blockquote>According to Honor, the liquid-cooling pipes penetrate deep into the motors like capillaries. The high-power liquid pump has a heat-exchange flow rate of more than 4 liters per minute. Each of the four drive motors in the lower limbs is equipped with an independent liquid-cooling circuit.</blockquote><p>Liquid cooling is not new, but it’s definitely not a commodity. It has shown up in research periodically, and on the commercial side <a href="https://apptronik.com/news-collection/apptronik-readies-its-humanoid-robot-for-a-summer-unveil" target="_blank">Apptronik tried it for a few of its prototypes</a> but (to my knowledge) does not use it on its main <a href="https://apptronik.com/apollo" target="_blank">Apollo</a> platform. Basic air-convection-based cooling would not continuously be able to extract 150 W out of the knee motor, and so the cooling technology is a key enabler of this type of performance.</p><h3>Why Others Couldn’t Compete</h3><p>Why did Honor’s competitors, including more <a href="https://www.forbes.com/sites/johnkoetsier/2026/01/09/top-10-humanoid-robot-companies-by-shipments-revealed/" target="_blank">established and widely shipped humanoids</a> such as from <a href="https://www.unitree.com/g1" target="_blank">Unitree</a> or <a href="https://www.agibot.com/" target="_blank">Agibot</a>, not compete as well?</p><p>We can use the same model to generate an equivalent energetics plot for walking at 1.5 m/s, a much more modest but potentially more common activity for a commercial humanoid robot:</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A graph showing that robots with gear ratios optimized for running or walking are inefficient when walking or running respectively." class="rm-shortcode" data-rm-shortcode-id="b670ffbab886f733b94ecffe3517e096" data-rm-shortcode-name="rebelmouse-image" id="616f5" loading="lazy" src="https://spectrum.ieee.org/media-library/a-graph-showing-that-robots-with-gear-ratios-optimized-for-running-or-walking-are-inefficient-when-walking-or-running-respective.jpg?id=66940939&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">The solid and dashed light blue lines show a running-optimized design, while green lines show a walking-optimized design. The optimal ratio for walking is much lower (30:1 vs. 45:1). However, the power dissipated in the knee motor while running [dark blue] is much higher at 30:1 vs. 45:1—the price to pay for running with a walking-optimized design.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Avik De/Datawrapper</small></p><p>The plot adds a new green curve for the walking power, and the optimal gearing is significantly different!</p><p>Let’s say you design your robot to excel at the normal walking task and choose the green design with 30:1 gearing. The knee motor power to run a half marathon is over 300 W (red arrow), more than two times what we had with the running-optimized design. It wouldn’t be so surprising to need ice packs!</p><p>Conversely, visually following the green curve shows that the running-optimized robot wastes more power for walking. Using larger motors sized for running increases the weight of the robot and wastes power when it is standing or walking. The larger motors also pose practical issues like bumping into objects while operating in homes or factories.</p><h3>Closing Thoughts</h3><p>Honor’s half-marathon performance was an impressive engineering effort and result. It didn’t need any magical leaps in technology, but the deployment of the capillary motor cooling solution is a notable advance without which this running pace would have been unsustainable. The cooling, weight optimization, and robustness advances may well be useful for more practical purposes like carrying heavy payloads down the line.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A comparison showing two similar humanoid robots, but one has significantly smaller motors on its hips." class="rm-shortcode" data-rm-shortcode-id="1a130ad0c24868886978a603b6b3d3ca" data-rm-shortcode-name="rebelmouse-image" id="19121" loading="lazy" src="https://spectrum.ieee.org/media-library/a-comparison-showing-two-similar-humanoid-robots-but-one-has-significantly-smaller-motors-on-its-hips.jpg?id=66941011&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">The Honor Lighting robot [right] has much larger motors driving its legs than the Unitree H1 robot, making it a more efficient runner but a less efficient walker.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Left: Wei Zhiyang/Zhejiang Daily Press Group/VCG/Getty Images; Right: VCG/Getty Images</small></p><p>However, the Lightning is not as well-suited to other tasks as a robot designed for greater versatility. Engineering is always characterized by trade-offs, and making the correct ones separates good products from great ones. With consistently improving AI language models, this very human skill is becoming the most valuable one an engineer can have.</p><p>The news coverage seemed to overly focus on the fact that the human half-marathon record had been broken by a robot. Machines and humans have very different capabilities and constraints, so why should we ever have expected the half-marathon time for a robot and human to be related? As in <a href="https://en.wikipedia.org/wiki/Deep_Blue_versus_Garry_Kasparov" target="_blank">Deep Blue’s 1997 defeat of Garry Kasparov in chess</a>, where it couldn’t physically move the pieces, the Honor robot’s capabilities are much narrower than a human running elbow to elbow with other runners while visually navigating the course without GPS. Comparing the robot runner to a human runner is just an apples-to-oranges comparison, which only risks diminishing Honor’s engineering achievement on one hand and human athletic achievement on the other.</p>]]></description><pubDate>Wed, 17 Jun 2026 12:19:27 +0000</pubDate><guid>https://spectrum.ieee.org/china-humanoid-robot-marathon</guid><category>Robotics</category><category>Running-robots</category><category>Robot-sports</category><category>Humanoid-robots</category><dc:creator>Avik De</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-red-and-black-humanoid-runs-alone-through-a-marathon-course.jpg?id=66940897&amp;width=980"></media:content></item><item><title>Visual Language Models Train Robots to Read Human Emotions</title><link>https://spectrum.ieee.org/robot-emotions-visual-language-models</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/illustration-of-a-shoulders-up-human-silhouette-with-facial-attributes-vaguely-outlined-by-recognition-points.jpg?id=66888123&width=1200&height=800&coordinates=0%2C83%2C0%2C84"/><br/><br/><p>
<em>This article is part of our exclusive <a href="https://spectrum.ieee.org/collections/journal-watch/" target="_blank">IEEE Journal Watch series</a> in partnership with IEEE Xplore.</em>
</p><p>As robots advance in terms of <a data-linked-post="2671308147" href="https://spectrum.ieee.org/gemini-robotics" target="_blank">dexterity and other physical capabilities</a>, it becomes more likely that humans may find themselves working alongside them. If that happens, how will robots’ emotional capabilities need to advance for them to successfully work with people?</p><p>In a recent study, researchers trained <a data-linked-post="2650277552" href="https://spectrum.ieee.org/rethink-robotics-pioneer-of-collaborative-robots-shuts-down" target="_blank">collaborative robots</a> to read human emotions by not only accounting for facial expressions, but also contextual factors in the interactions as well. Through experiments with 40 volunteers, the researchers then evaluated how a robot’s ability to read human emotions and adjust its behavior in turn impacted a human’s perception of the robot and its capabilities as the two collaborated on tasks. The <a href="https://ieeexplore.ieee.org/document/11523497" rel="noopener noreferrer" target="_blank">results</a>—which show that the emotional capabilities of robots only go so far with humans—were published 18 May in<a href="https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=7083369" rel="noopener noreferrer" target="_blank"> <em><em>IEEE Robotics and Automation Letters</em></em></a>.</p><p><a href="https://ieeexplore.ieee.org/author/771486883095543" rel="noopener noreferrer" target="_blank">Seung Chan Hong</a> led the study as part of his undergraduate thesis while studying at Monash University, in Melbourne, Australia. He notes that, while there has been a lot of hype in the advancing physical abilities of robots, this is only one piece of the puzzle. “We need to also innovate when it comes to them actually interacting with humans, not just their physical capabilities,” he says.</p><p>This prompted him to dig deeper into the emotional aspects of human-robot interactions. First, Hong and his co-authors decided to train a robot to read human emotions using a vision language model (VLM), which is similar to large language models (LLMs) such as ChatGPT, but which can also take visual inputs.</p><h2>Training VLMs for Human Emotion Recognition</h2><p>To evaluate their VLM, which used Gemini 2.5, the researchers had volunteers watch videos of robots handing over objects to humans—with varying degrees of success—and describe the emotions the humans were expressing. Importantly, the volunteers labeling these videos were able to take into account more context in these interactions, rather than reporting solely on the facial expressions of the humans in the video. For example, a person pausing to think with a furrowed brow may simply be concentrating on their task at hand and not necessarily be angry. Contextual factors such as drumming their fingers, pursing their lips, or other behaviors can point to the real cause of a person’s furrowed brow.</p><p>The researchers then compared their VLM to a conventional AI system that relies on standard facial analysis and object tracking that is used in human-robot interactions. They found that the VLM outperformed the traditional approach. On a scale from 0 (no similarity in meaning to the emotion identified by the human volunteers) to 1 (a perfect match in meaning), the conventional AI system achieved a score of 0.77. In comparison, the VLM achieved a score of 0.86.</p><p>Hong says, “I think [the VLM] was able to align with what human observers were seeing a lot better, because it wasn’t just looking at the person’s face for a brief amount of time, but seeing the whole scene—where the person was and what they were doing, and how they were interacting with the robot.”</p><p>In a second experiment, the research team asked 40 volunteers to interact with a robot using their VLM—but purposefully programmed the robot to make an error. The robot then had to offer either an emotionally adaptive apology that accounted for the human’s perceived response to the mistake or a pre-scripted spoken apology.</p><p>Participants overwhelmingly preferred the emotionally adaptive response, with 31 out of 40 people favoring this approach over a boilerplate apology.</p><p>However, their survey responses underscored how this emotional adaptivity was far less important than the robot’s functionality. After collaborating with a robot that failed in its task, many participants ranked their trust in the robot as lower, regardless of how it apologized for its mistake. “A personalized apology acts as a social lubricant, but it cannot repair the trust lost by the robot failing its physical task,” Hong says.</p><p>Interestingly, the VLM classified the emotions of its human partners similarly to human volunteers who observed an interaction from a third-party perspective. But when the VLM’s assessments were measured against humans’ self-reported emotions during the second experiment—the most accurate descriptions of their true emotions—its ability to accurately predict emotions dropped significantly.</p><p>“While the VLM is a good observer of outward social cues, it isn’t a mind reader,” Hong says. “It matched third-person human observers well, but it didn’t always align with the users‘ internal, self-reported feelings.”</p><p>Together, these results show that robots are not perfect at reading human emotions. So while people might appreciate their efforts, they still ultimately will want competent co-workers.</p><p><em>This story was updated on 15 June 2026 to correct where the research was conducted and clarify that the researchers evaluated the performance of a pre-trained model. </em><br/></p>]]></description><pubDate>Sat, 13 Jun 2026 13:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/robot-emotions-visual-language-models</guid><category>Robotics</category><category>Journal-watch</category><category>Ai-models</category><category>Emotion-recognition</category><dc:creator>Michelle Hampson</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/illustration-of-a-shoulders-up-human-silhouette-with-facial-attributes-vaguely-outlined-by-recognition-points.jpg?id=66888123&amp;width=980"></media:content></item><item><title>Award-Winning Researcher Trains Robots to Make Educated Guesses</title><link>https://spectrum.ieee.org/researcher-trains-robots-to-guess</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-young-asian-professor-monitors-her-student-as-they-control-a-robotic-gripper.jpg?id=66879067&width=1200&height=800&coordinates=0%2C208%2C0%2C209"/><br/><br/><p><a href="https://yenlingkuo.com" rel="noopener noreferrer" target="_blank">Yen-Ling Kuo</a> always wanted to understand how things worked. When she was growing up in Taiwan, reading the story of <a href="https://ethw.org/Michael_Faraday" rel="noopener noreferrer" target="_blank">Michael Faraday</a> in elementary school piqued her curiosity about the natural world. During that time, she was introduced to <a href="https://en.wikipedia.org/wiki/Logo_(programming_language)" rel="noopener noreferrer" target="_blank">Logo</a>, a computer program with a turtle cursor to help children learn basic coding through hands-on experimentation.</p><p>It was Kuo’s introduction to programming logic.</p><h3>Yen-Ling Kuo</h3><br/><p><strong>Employer</strong></p><p>University of Virginia in Charlottesville</p><p><strong>Title</strong></p><p>Assistant professor of computer science </p><p><strong>Member grade</strong></p><p>Member</p><p><strong>Alma maters</strong></p><p>National Taiwan University; MIT</p><p>In high school she learned the capacity computers held. She could write programs that completed tasks independently, she realized.</p><p>“Once I discovered how powerful computers could be,” she says, “I knew I wanted to focus on using them to solve real-world problems.”</p><p>Kuo, an IEEE member, never lost her interest in the “how” behind processes and tools. Her curiosity, combined with a stint working at a Silicon Valley company, led her to focus on innovations that live at the intersection of cognitive and computer sciences. </p><p>Kuo, now an <a href="https://engineering.virginia.edu/faculty/yen-ling-kuo" rel="noopener noreferrer" target="_blank">assistant professor</a> of computer science at the <a href="https://www.virginia.edu/" rel="noopener noreferrer" target="_blank">University of Virginia</a> in Charlottesville, last year received the <a href="https://www.ieee-ras.org" rel="noopener noreferrer" target="_blank">IEEE Robotics and Automation Society</a>’s inaugural <a href="https://engineering.virginia.edu/news-events/news/more-honors-computer-scientist-wins-2025-wira-early-career-contribution-award" rel="noopener noreferrer" target="_blank">Outstanding Women in Robotics and Automation Early Career Contribution Award</a>. The award is part of the <a href="https://www.ieee-ras.org/wira-paper-awards-icra25/" rel="noopener noreferrer" target="_blank">IEEE-RAS Women in Engineering’s Outstanding Women in Robotics and Automation (WiRA) Paper Awards</a>, which promote excellence and recognize the impact that female researchers have on robotics and automation fields at different stages in their academic careers.</p><p>Kuo’s winning paper, “<a href="https://diffdagger.github.io/" rel="noopener noreferrer" target="_blank">Diff-DAgger: Uncertainty Estimation with Diffusion Policy for Robotic Manipulation</a>,” demonstrates a novel method to help robots better identify and estimate uncertainty when faced with scenarios on which they’ve not been trained. The method reduces the amount of human supervision, improves a robot’s rate of successful task completion, and opens up a path to introduce more complex models with bigger data demands into interactive robot learning.</p><p>She says her research will help people working in the robotics and automation fields more efficiently collect the data needed for effective model training.</p><h2>Silicon Valley’s impact</h2><p>Kuo earned bachelor’s and master’s degrees in computer science at the <a href="https://www.ntu.edu.tw/english/" rel="noopener noreferrer" target="_blank">National Taiwan University</a>, in Taipei, in 2009 and 2012. As she was nearing completion of her master’s degree, she did what many computer science graduates do: She pursued a summer internship at a tech company.</p><p>She spent the summer of 2011 at Google’s campus in Kirkland, Wash., working on the company’s <a href="https://adwords.googleblog.com/2011/05/comparison-ads-now-part-of-new-google.html" rel="noopener noreferrer" target="_blank">comparison ads project</a>.</p><p>When her internship ended, she joined the <a href="https://www.media.mit.edu" rel="noopener noreferrer" target="_blank">MIT Media Lab</a> as a visiting student, working on the <a href="https://en.wikipedia.org/wiki/Open_Mind_Common_Sense" rel="noopener noreferrer" target="_blank">Open Mind Common Sense project</a> with <a href="https://web.media.mit.edu/~lieber/" rel="noopener noreferrer" target="_blank">Henry Lieberman</a>.</p><p>As she was considering pursuing a Ph.D., a call from Google changed her plans. The company offered her a full-time role as a software engineer.</p><p>“I viewed the job offer as a positive development,” she says. “I believe it can never hurt your future research career to get some real-world experience under your belt.”</p><p>She was hired in 2012 and helped build techniques that incorporate computer vision and natural language processing to improve the customer shopping search experience. She led the company’s <a href="https://techcrunch.com/2016/09/06/google-is-launching-shop-the-look-to-let-you-search-and-shop-by-outfit/" rel="noopener noreferrer" target="_blank">Shop the Look initiative</a>, a predecessor to Google’s current <a href="https://blog.google/products-and-platforms/products/shopping/google-shopping-ai-mode-virtual-try-on-update/" rel="noopener noreferrer" target="_blank">AI-powered shopping experience</a>. The project connected social media content with search results, something the company had struggled to do in the past.</p><p>Kuo and her team were tasked with building a connection between the natural language people use to describe an item and an image that matches the searcher’s intent. It was at a time when the <a href="https://spectrum.ieee.org/tag/neural-network" target="_self">neural network</a>—using deep learning models to power Google products—was gaining momentum at the company. Integrating neural network tools into her work was a requirement—which raised questions for Kuo.</p><p>“I was applying the neural network tools,” she says. “But I didn’t have 100 percent certainty about how they actually worked.”</p><p>She considered how she could become more knowledgeable about deep learning models. It was a full-circle moment. She decided that after nearly four years at Google, it was time to earn a Ph.D. in computer science. She returned to MIT in 2016.</p><h2>The question that changed everything</h2><p><a href="https://people.csail.mit.edu/boris/boris.html" rel="noopener noreferrer" target="_blank">Boris Katz</a>, one of Kuo’s Ph.D. advisors, is a principal research scientist and the head of the MIT <a href="https://www.csail.mit.edu" rel="noopener noreferrer" target="_blank">Computer Science and Artificial Intelligence Laboratory</a> (CSAIL)’s <a href="https://www.csail.mit.edu/research/infolab" rel="noopener noreferrer" target="_blank">InfoLab</a>. He also led the creation of the <a href="https://start.csail.mit.edu/index.php" rel="noopener noreferrer" target="_blank">START Natural Language System</a>, the world’s first Web-based question-answering system.</p><p>When the two met, Katz asked Kuo why she wanted to pursue a doctorate degree. She explained her interest in understanding how neural networks work and in using that knowledge to connect the physical world with human language.</p><p>He suggested she attend a <a href="https://bmm.mit.edu/" rel="noopener noreferrer" target="_blank">summer course</a> at MIT’s <a href="https://cbmm.mit.edu" rel="noopener noreferrer" target="_blank">Center for Brains, Minds, and Machines</a>, a research initiative that <a href="https://sqi.mit.edu/research/cbmm" rel="noopener noreferrer" target="_blank">ran from 2013 through 2025</a>. CBMM’s objective was to bring together computer scientists, cognitive scientists, and neuroscientists to understand how human intelligence works. The goal was to use the resulting insights to establish an engineering practice to build artificial intelligence systems.</p><p>For Kuo, it was a chance to better understand human intelligence and identify ways it could be replicated in machines.</p><p>“It was an opportunity for me to interact with other scientists and gain insight into how people learn, understand, and figure things out in the world,” she says. “I saw it as a very useful and inspiring way to incorporate those ideas into my own research work.”</p><p>During her Ph.D. studies, she was a research assistant at CSAIL. The experience helped shape her doctoral research, which focused on building AI systems that apply past learning to new situations. She developed machine learning models to support the efforts, including language understanding and social interactions.</p><p>She completed her Ph.D. in computer science in 2022 with a minor in cognitive science.</p><p>After graduation, she continued her work and collaboration at CSAIL, particularly on projects that involved the “theory of mind” concept.</p><h2>Theory of mind spurs innovation</h2><p>Theory of mind isn’t new, having originated with <a href="https://www.cambridge.org/core/journals/behavioral-and-brain-sciences/article/does-the-chimpanzee-have-a-theory-of-mind/1E96B02CD9850016B7C93BC6D2FEF1D0" rel="noopener noreferrer" target="_blank">primatologists studying chimpanzees</a> in the late 1970s. The theory recognizes that others have their own thoughts, beliefs, and perspectives. It’s a skill that allows humans to infer someone’s mental state and predict their behavior without verbal communication.</p><p>“It’s like when college roommates are moving into their dorm. They may not talk too much, but they work together naturally to coordinate their activities and accomplish goals,” Kuo says. “They can infer and mentally interpret each other’s behaviors and signals to make decisions and complete tasks without words.”</p><p>She brought her theory of mind research to the University of Virginia when she joined as an assistant professor in 2023.</p><p>Kuo conducts her research in UVA Engineering’s multidisciplinary cyberphysical <a href="https://engineering.virginia.edu/labs-groups/link-lab" rel="noopener noreferrer" target="_blank">Link Lab</a>. Her broad focus is on developing computational models that help robots interpret both direct data and silent signals, from language and movements to a person’s gaze. If successful, it could give robots the same sort of physical and theory of mind reasoning capabilities that power physical and social interactions among humans.</p><p>“There are no computational frameworks yet available that will translate this kind of understanding into a robot efficiently,” she says.</p><p>She adds that the process to get there begins with improving how robots learn to perform tasks.</p><h2>The evolution of robot learning</h2><p>Historically, one way robots learned was to mimic humans. A researcher would manually guide a robot through a task, like cutting an apple, and it would repeat the movements. The robot was successful until the environment changed, such as when its hand was in a different position or the apple was at a different angle. The robot was then faced with a situation for which it hadn’t been trained. Without any data available to help it correct course, the robot would start making small errors that eventually led to a full system crash.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Diagram of a robotic gripper delicately holding a potato chip. Labels describe how the gripper\u2019s visual perception and tactile sensing prevent the chip from breaking." class="rm-shortcode" data-rm-shortcode-id="76442a7dd57b85e82dfbaee6fcbcee1b" data-rm-shortcode-name="rebelmouse-image" id="bfe1e" loading="lazy" src="https://spectrum.ieee.org/media-library/diagram-of-a-robotic-gripper-delicately-holding-a-potato-chip-labels-describe-how-the-gripper-u2019s-visual-perception-and-tact.jpg?id=66879111&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">This diagram describes how the robotic gripper’s visual perception and tactile sensing prevents a potato chip from breaking.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit..."><a href="https://force-gripper.github.io/" target="_blank">Xuhui Kang, Yen-Ling Kuo, et al.</a></small></p><p>To solve the problem, researchers developed the dataset aggregation (DAgger) method. As a robot performed a task, a researcher was on standby to provide real-time corrections during unexpected scenarios. The correction data was continuously added to the robot’s model, teaching it how to recover from mistakes.</p><p>To reduce the human monitoring effort, robot-gated DAgger was created to enable bots to query humans when the machines became uncertain.</p><p>The most popular approach to make the query decision is to train multiple models to consider when determining a course of action. If the models all agree, the robot proceeds. If they don’t agree, the robot is likely to get stuck and ask for help.</p><p>Although the multiple model approach was widely adopted, it has limitations. Practically speaking, as models become more complex, it is hard or impossible to train multiple copies. A more fundamental issue is that disagreement among models doesn’t always imply uncertainty; it could just mean there are different ways to accomplish a task.</p><h2>The Diff-DAgger solution</h2><p>That is the gap Kuo’s research team closed with the novel Diff-DAgger research. The approach builds on diffusion policy, a technique that helps robots account for different ways a task can be performed.</p><p>The new method repurposes diffusion loss, the signal a robot uses to improve its model during training, as a real-time confidence check. During task execution, the robot computes the signal and compares it against values from its training data using a statistical test. The signal spikes when the robot faces an unfamiliar situation and is uncertain how to proceed. The signal stays silent when the robot’s current action is close to what it learned before.</p><p>The spike represents the robot’s ability to self-diagnose and predict an imminent failure. Human intervention is triggered only when the signal spikes. No spike means the robot can be left to complete its decision-making process on its own.</p><p>Kuo’s team achieved <a href="https://diffdagger.github.io" target="_blank">significant results</a>: Failure prediction rates were improved by 39 percent. Task completion rates were increased by 20 percent, and tasks were completed nearly eight times faster.</p><p>Her research at UVA gained attention from the <a href="https://www.nsf.gov" rel="noopener noreferrer" target="_blank">National Science Foundation</a>, which honored her last year with a <a href="https://www.nsf.gov/funding/opportunities/career-faculty-early-career-development-program" rel="noopener noreferrer" target="_blank">Career Award</a>, the foundation’s flagship grant for early-career researchers. The five-year US $665,000 grant supports her research that builds computational models for human-robot interactions through theory of mind reasoning.</p><p>She also received the Toyota Research Institute’s <a href="https://engineering.virginia.edu/news-events/news/uva-and-toyota-research-institute-aim-give-your-car-power-reason" rel="noopener noreferrer" target="_blank">Young Faculty Researcher Award</a> to teach cars to reason about interactions on the road and with the driver.</p><p>As service robots and self-driving vehicles become more available, such works are likely to make interactions between humans and robots more intuitive and useful.</p><p>Kuo ultimately wants to build more robust robots that are able to integrate into a social space with humans by engaging with us through grounded interactions, she says.</p><h2>The impact of IEEE</h2><p>Like many IEEE members, Kuo was introduced to the organization as a student. In 2018 she submitted her first paper, “<a href="https://arxiv.org/abs/1810.00804" rel="noopener noreferrer" target="_blank">Deep Sequential Models for Sampling-Based Planning</a>,” to the <a href="https://www.ieee-ras.org/conferences-workshops/financially-co-sponsored/iros/" rel="noopener noreferrer" target="_blank">IEEE/Robotics Society of Japan International Conference on Intelligent Robots and Systems</a> while pursuing her Ph.D. at MIT. Her IEEE involvement grew alongside her professional career.</p><p>“It was a natural segue to transition from student to a full IEEE member,” she says. Today she is an active volunteer with the IEEE Robotics and Automation Society, a reviewer for submitted papers, and a presenter and panelist at conferences.</p><p>She says one of the best parts of attending conferences is having the opportunity to engage with students. She also enjoys participating as a panelist at luncheons, she says, because it gives her one-on-one time with student attendees. She can share her knowledge and offer insights as they prepare to embark on their career.</p><p>Her goal in the coming years, she says, is to broaden her involvement with IEEE initiatives and branch out to other technical committees. Sharing knowledge and learning from others is essential to anyone’s <a data-linked-post="2670807151" href="https://spectrum.ieee.org/influence-your-career" target="_blank">career growth</a>, she says, and “IEEE offers a great opportunity for both.”</p>]]></description><pubDate>Fri, 12 Jun 2026 18:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/researcher-trains-robots-to-guess</guid><category>Ieee-member-news</category><category>Robots</category><category>Artificial-intelligence</category><category>Ieee-robotics-and-automation-soc</category><category>Careers</category><category>Type-ti</category><dc:creator>Liz Wegerer</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-young-asian-professor-monitors-her-student-as-they-control-a-robotic-gripper.jpg?id=66879067&amp;width=980"></media:content></item><item><title>Video Friday: Robotic Motion Discovery Reveals Unusual Behaviors</title><link>https://spectrum.ieee.org/video-friday-humanoid-loco-manipulation</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/humanoid-robot-picks-up-a-box-and-climbs-onto-a-table-in-a-modern-lab-workspace.gif?id=66901035&width=1200&height=800&coordinates=0%2C53%2C0%2C54"/><br/><br/><p><span>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><blockquote class="rm-anchors" id="dhivz34qylw"><em>We present MotionDisco, a framework that discovers contact-rich, long-horizon humanoid <a data-linked-post="2668136221" href="https://spectrum.ieee.org/video-friday-locoman" target="_blank">loco-manipulation</a> motions from scratch, without relying on teleoperation or motion retargeting from human demonstrations.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="708f6f7d408cc515400c34d037da5210" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/DHiVz34QYlw?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Some of the discovered behaviors are a little nutso:</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="05b628f8001a511ddaa584926497ae21" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/PlkZBepd4j0?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://atarilab.github.io/motiondisco.io/">MotionDisco</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="_21bfsgtm0s">Not sure I’d say any of this is ‘effortless’ but those <a data-linked-post="2650273564" href="https://spectrum.ieee.org/video-friday-mit-hermes-drone-claw-bb8-droid" target="_blank">claws</a> are pretty cute.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="225327ab0d244af1298dcb0a9726dc3b" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/_21bFSgTm0s?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.deeprobotics.cn/en">Deep Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="std5wteoa50"><em>It turns out running a workout class is a decent way to stress-test <a data-linked-post="2676660486" href="https://spectrum.ieee.org/video-humanoid-dancing" target="_blank">whole-body range of motion</a>. Coordinating fluid movement across every joint at once—timing, velocity, balance compensation—is one of the harder control problems in humanoid robotics.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="d83bb1d6d531df876b1f8b032d3039e8" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/std5wteoa50?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.agilityrobotics.com/">Agility</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="htrfgxjojrs">Our very own Gwendolyn Rak made a robotic shoulder-friend at Computer Human Interaction in Barcelona.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="5d4f9fee3452d71a74e314907bfadb6c" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/htRFgxJojrs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Here’s a bit more about it:</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="b1a99e4a8ce6b40dddc31686d430d5d6" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/5sMC_5El318?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.media.mit.edu/projects/the-stochastic-parrot/overview/">MIT</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="v2txavmrsyo"><em>At AIRoA, we’re bringing <a data-linked-post="2676820937" href="https://spectrum.ieee.org/domestic-humanoid-robot-safety-standards" target="_blank">robots into real homes</a>. Check out our exclusive first video to see how they work in our development hub and real-life household settings! The project aims to develop home robots that can assist people with everyday tasks and become long-term companions in daily life. In this video, we demonstrate Toyota’s Human Support Robot (HSR) deployed in real homes, where it assists residents with everyday tasks such as tidying rooms and fetching objects.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c52d935227ef0e542de680c31fa32275" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/v2tXAVmrsyo?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.airoa.org/">AI Robot Association</a> ]</p><p>Thanks, Naoaki!</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ntvtrlsyhji"><em>MIDAS Hand is a fully open-source, tactile-sensor-integrated <a data-linked-post="2676840819" href="https://spectrum.ieee.org/video-friday-robotic-hand-dexterity" target="_blank">dexterous robotic hand</a> platform for manipulation, teleoperation, and robot learning research. MIDAS stands for Modular low-Impedance Direct-drive Anthropomorphic Sensing Hand.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="9e6b1849a94bd0dd90c608e1a36498c7" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/nTVTRLSyhjI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://midas-hand.com/">MIDAS Hand</a> ]</p><p>Thanks, Jun Kim!</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="vofmkd0asrq"><em>This video presents a novel flight maneuver for a flying bipedal robot. During forward flight, the robot performs aerial braking by swinging its legs to adjust the orientation of foot-mounted thrusters.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="326a79891cca6b5b4417fbdffa278b9c" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/vOfMkd0AsrQ?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.sciencedirect.com/science/article/abs/pii/S0921889026001983">Paper</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="z5nf8nz_zyi">Seems like a really good application for autonomy, to be honest.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="f99dbf830ce8ab274bf31d23debedb7a" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/z5Nf8Nz_zyI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.builtrobotics.com/">Built Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="t9ygyxgfxlm"><em>In this time-lapse, controllers on the ground are repositioning <a data-linked-post="2650255437" href="https://spectrum.ieee.org/dextre-robot-repairs-iss-while-astronauts-sleep" target="_blank">Dextre</a>, our robotic handyman currently installed at the end of the Canadarm2. They used Dextre to unload equipment from the unpressurised Dragon trunk. Such a beautiful choreography to watch with Earth in the background!</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="8a468ed8890ff8aaf8761d7c16589e35" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/t9YGYxgFXLM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.esa.int/ESA_Multimedia/Images/2008/04/The_Canadian_Special_Purpose_Dextrous_Manipulator_Dextre_installed_on_exterior_of_ISS">European Space Agency</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="nel2bmgcfjs"><em>This video demonstrates how AI Sapiens learns and performs humanoid motions from video-based motion capture using only a smartphone camera, without professional motion capture equipment. ROBOTIS plans to release an open-source motion generation and learning pipeline for AI Sapiens, enabling users to generate humanoid motions from video and bring them to the real robot.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="67f81cddaf9bc9d11ebafbf95730ed2d" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/NeL2BmgcFJs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://ai.robotis.com/">ROBOTIS</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="utwezllzulk">NAO LIVES!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="99c5e76cbcef119bad1ba0e473cf5fdb" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/UTWeZlLzulk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://maxtronics.com/en/nao6/">Maxtronics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="thfs0xlallu"><em>Tumblenauts are a swarm of minimalist, bacteria-inspired robots designed for collaborative inspection of pressurized microgravity habitats such as the International Space Station. Unlike current intra-vehicular robots that rely on complex actuator-dense mechanisms for precise motion, the Tumblenauts use a stochastic run-and-tumble locomotion and collective cooperation inspired by bacterial colonies.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="d1e903f16d39ac91ede30227c0e8bba3" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/ThFs0XLALLU?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://ssr.princeton.edu/">Self-Organizing Swarms and Robotics Lab</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="_xbeim3jfoc"><em>LUMOS Robotics Founder and CEO Yu Chao officially introduces Project EDGE—inviting global builders, universities, robotics labs, and creative technologists to explore the future of humanoid robotics together. To supercharge the global developer community, we are providing 100 complimentary LUMOS NIX robots to selected global partners.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="193dd8ee61b7fad4177c9a71c50e6346" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/_XbeIm3JFoc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.lumosbot.tech/project-edge/index.html">Lumos Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="oishy9bus7m"><em>How do you progress from early childhood computational thinking to advanced high school robotics? Sphero’s product offerings are intentionally scaffolded to scale for students by building critical skills and concepts at every grade level.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="7d2e8b6536a44b576bd80edc7e1fbff8" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/OiSHy9buS7M?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://sphero.com/">Sphero</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 12 Jun 2026 17:00:02 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-humanoid-loco-manipulation</guid><category>Humanoid-robots</category><category>Video-friday</category><category>Quadruped-robots</category><category>Robot-videos</category><category>Home-robots</category><category>Dexterity</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/gif" url="https://spectrum.ieee.org/media-library/humanoid-robot-picks-up-a-box-and-climbs-onto-a-table-in-a-modern-lab-workspace.gif?id=66901035&amp;width=980"></media:content></item><item><title>Defining Autonomy for Wellness Robots in Senior Care</title><link>https://content.knowledgehub.wiley.com/wellness-robots-and-the-path-to-full-autonomy-a-new-paradigm-in-ai-powered-senior-care/</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/dreamface-technologies-llc-logo-with-abstract-silver-face-and-circles-on-teal-background.png?id=66892687&width=980"/><br/><br/><p>An examination of how socially assistive wellness robots could support the seven dimensions of senior wellness, and how a framework can measure their autonomy.</p><p>What Attendees will Learn</p><ol><li><span>Why the senior care crisis exceeds incremental automation. Demographic pressure, workforce shortages, and a daily wellness-programming gap all strain traditional care models.</span></li><li><span>What defines a wellness robot as a category. The seven ICAA wellness dimensions and eight properties separate these robots from companion and medical devices.</span></li><li><span>How autonomy can be measured with CRAS. This six-level scale, modeled on the SAEJ3016 driving standard, evaluates four care dimensions.</span></li><li><span>What maps the road to full autonomy. The paper examines technical capabilities, clinical evidence, and a three-phase roadmap toward the early 2030s.</span></li></ol><div><span><a href="https://content.knowledgehub.wiley.com/wellness-robots-and-the-path-to-full-autonomy-a-new-paradigm-in-ai-powered-senior-care/" target="_blank">Download this free whitepaper now!</a></span></div>]]></description><pubDate>Thu, 11 Jun 2026 10:00:01 +0000</pubDate><guid>https://content.knowledgehub.wiley.com/wellness-robots-and-the-path-to-full-autonomy-a-new-paradigm-in-ai-powered-senior-care/</guid><category>Type-whitepaper</category><category>Wellness-robots</category><category>Autonomous-robots</category><category>Robotics</category><dc:creator>Dreamface Technologies</dc:creator><media:content medium="image" type="image/png" url="https://assets.rbl.ms/66892687/origin.png"></media:content></item><item><title>Beyond Dexterity: Why Contact May Define the Next Era of Robotics</title><link>https://spectrum.ieee.org/agilink-contact-intelligence-robot-manipulation</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/humanoid-robot-with-four-arms-holding-a-red-balloon-sculpture-at-a-tech-expo.jpg?id=66870200&width=1200&height=800&coordinates=334%2C0%2C334%2C0"/><br/><br/><p><em>This article is brought to you by <a href="https://www.agilink-ai.com/" target="_blank">AGILINK</a>.</em></p><p>Throughout the exhibition hall at the 2026 IEEE International Conference on Robotics (ICRA), in Vienna, one demonstration seemed to attract a disproportionate amount of attention.</p><p>Two robotic hands were making a balloon dog. Slowly and deliberately, the robot twisted a long balloon into loops, bends, and joints without popping it. Visitors stopped, watched, and often returned with colleagues to watch again.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Crowd at a robotics expo watches a humanoid robot demonstrate its arm movements." class="rm-shortcode" data-rm-shortcode-id="29a8797093705fd5d7f3a0b18b28e8a0" data-rm-shortcode-name="rebelmouse-image" id="821bd" loading="lazy" src="https://spectrum.ieee.org/media-library/crowd-at-a-robotics-expo-watches-a-humanoid-robot-demonstrate-its-arm-movements.jpg?id=66870218&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">AGILINK’s balloon dog demonstration draws a crowd at ICRA 2026.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">AGILINK</small></p><p>At first glance, the demonstration appeared almost playful. Among roboticists, however, balloon twisting is widely recognized as an unusually difficult manipulation task.</p><p>A balloon is lightweight, highly deformable, slippery, and extremely sensitive to force. Every twist changes its geometry and internal pressure, turning a seemingly simple activity into a continuously changing physical interaction problem.</p><p>Humans navigate those changes almost intuitively. While making a balloon animal, people rarely think consciously about force regulation, slip prevention, or contact stability. They simply adjust.</p><p>For robots, those adjustments remain remarkably difficult. The challenge is not merely moving fingers to the right positions. The harder part is maintaining stable interaction while the object itself is changing.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="223ff577b93a1fa463c6912b0ae73220" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/eoGcFGwQNkw?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span><small class="image-media media-caption" placeholder="Add Photo Caption...">Highlights from AGILINK’s ICRA 2026 demonstrations, including visuotactile sensing, in-hand manipulation, balloon-animal shaping, and other contact-rich tasks enabled by the company’s latest OmniHand platform.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">AGILINK</small></p><p>That distinction helps explain why the balloon dog drew so much attention in Vienna. What appeared to be a dexterity demonstration was, in many ways, a demonstration about contact itself.</p><p>As robotic manipulation continues to advance, a growing number of researchers are arriving at a similar conclusion: many of the hardest problems in robotics begin only after contact occurs.</p><h2>Motion and Contact Intelligence for Robot Manipulation</h2><p>Balloon twisting combines two challenges that robotics has traditionally struggled to solve simultaneously: long-horizon task execution and contact-rich manipulation.</p><p>The first concerns motion.</p><p>A balloon dog is not created through a single grasp or twist. It emerges through a carefully ordered sequence of manipulations, each setting the conditions for what follows. A small rotational error introduced early may appear insignificant at first, yet several steps later it can prevent the final structure from forming altogether.</p><p>In that sense, balloon twisting is a long-horizon task. Success depends not only on performing individual actions correctly, but also on preserving the future feasibility of the entire manipulation process.</p><p>To address this challenge, <a href="https://www.agilink-ai.com/" target="_blank">AGILINK</a> began by collecting demonstrations from professional balloon artists. Human actions were mapped onto robotic hands to establish an initial manipulation policy. But successful demonstrations alone were insufficient.</p><p>In practice, some of the most valuable learning occurred when execution began to drift toward failure. Whenever instability emerged, human operators intervened and corrected the manipulation in real time. Those interventions were recorded and incorporated into reinforcement-learning cycles, allowing the system to learn not only how successful demonstrations unfold, but also how experienced operators recover when things start to go wrong.</p><p>Through this process, the robot gradually acquired the capabilities required for long-horizon task execution—a collection of abilities that AGILINK groups under the term <strong>motion intelligence</strong>: the ability to generate actions, coordinate bimanual behaviors, and execute extended manipulation sequences under real-world uncertainty.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Two robotic hands, one white open palm and one black forming an OK gesture, on display." class="rm-shortcode" data-rm-shortcode-id="7fb13b51d34cf6b0574f614644438b3b" data-rm-shortcode-name="rebelmouse-image" id="779ba" loading="lazy" src="https://spectrum.ieee.org/media-library/two-robotic-hands-one-white-open-palm-and-one-black-forming-an-ok-gesture-on-display.png?id=66870278&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">OmniHand 3 Ultra-M on display at ICRA 2026.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">AGILINK</small></p><p>Yet motion alone does not explain why balloon twisting remains difficult. The second challenge is contact.</p><p>The robot must continuously regulate force, adjust contact locations, and respond to subtle changes in the object’s state. These decisions are difficult to encode through explicit rules. Even skilled human operators often rely on tactile intuition developed through experience rather than consciously articulated strategies.</p><p>Analysis of those interventions revealed that many failures did not originate from incorrect action sequences, but from the breakdown of contact itself.</p><p>To better capture those interaction dynamics, AGILINK collected contact-centric intervention data and incorporated those interactions into reinforcement-learning training. Rather than learning only which motions to perform, the system also learned how humans maintain stability when contact conditions begin to deteriorate.</p><p>AGILINK describes this capability as <strong>contact intelligence</strong>: the ability to establish, maintain, and adapt physical interaction as force distribution, friction, deformation, and contact geometry continuously evolve.</p><p>The distinction between the two capabilities is subtle but important. Motion intelligence determines what the robot intends to do. Contact intelligence determines whether it can continue doing it. For balloon twisting, both are necessary. One provides the sequence of actions. The other keeps those actions physically viable.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Robot makes balloon animal for visitor at tech expo booth." class="rm-shortcode" data-rm-shortcode-id="a214019840e864e15e6b91d8d70e6e74" data-rm-shortcode-name="rebelmouse-image" id="431a1" loading="lazy" src="https://spectrum.ieee.org/media-library/robot-makes-balloon-animal-for-visitor-at-tech-expo-booth.jpg?id=66870268&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">YouTuber KhanFlicks follows OmniHand’s motions while learning to fold a balloon dog at the AGILINK booth.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">AGILINK</small></p><p>Between a balloon slipping away and a balloon bursting lies a narrow region of stability. Successful manipulation depends on finding that region—and remaining within it throughout the task.</p><h2>Introducing the OmniHand 3 Ultra-M Dexterous Hand</h2><p>The balloon dog demonstration showcased a manipulation capability. It also revealed a broader question. How much contact intelligence can be achieved through learning alone? A robot can only regulate what it can perceive. It can only respond as quickly as its hardware allows.</p><p>As manipulation tasks become increasingly complex, researchers are finding that progress depends not only on better policies, but also on richer sensing and faster physical response.</p><p>That realization formed the backdrop for AGILINK’s second major announcement at ICRA 2026. Alongside the balloon dog demonstration, the company introduced the <strong><a href="https://www.agilink-ai.com/ultra-m.html" target="_blank">OmniHand 3 Ultra-M</a></strong>.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Two robotic hands beside a human hand, all raised open on a display table." class="rm-shortcode" data-rm-shortcode-id="8c59fb0ca42c4a24bb1b54d98d25513f" data-rm-shortcode-name="rebelmouse-image" id="e7eda" loading="lazy" src="https://spectrum.ieee.org/media-library/two-robotic-hands-beside-a-human-hand-all-raised-open-on-a-display-table.jpg?id=66870269&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">OmniHand 3 Ultra-M closely matches the size of an adult human hand.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">AGILINK</small></p><p>The two exhibits represented different stages of the same technological trajectory. If the balloon dog demonstrated what contact intelligence can already accomplish today, Ultra-M was designed to explore what contact intelligence may require next.</p><h2>Building Hardware for Contact Intelligence</h2><p>Roughly the size of an adult human hand, the <a href="https://www.agilink-ai.com/uploads/upload/files/20260530/a7b12675ce5e3b4e9b913801c0c6f659.pdf" target="_blank">OmniHand 3 Ultra-M integrates 20 active degrees of freedom</a> within a human-scale form factor.</p><p>Its most distinctive feature is a fully direct-drive architecture. By adopting direct-drive actuation throughout the system, the hand is designed to enable faster and more transparent force regulation and higher force-control bandwidth, enabling faster response as contact conditions change. For contact-rich manipulation, responsiveness can be as important as sensing itself.</p><p class="pull-quote">By adopting direct-drive actuation throughout the system, the OmniHand 3 Ultra-M  is designed to enable faster and more transparent force regulation and higher force-control bandwidth, enabling faster response as contact conditions change.</p><p>The platform also incorporates tactile sensing across nearly the entire hand. Each fingertip contains a miniature vision-based tactile sensor, while more than 300 three-dimensional tactile sensing points are distributed throughout the palm. Together, they provide information not only about where contact occurs, but how contact is evolving.</p><p>The system is designed to estimate pressure distribution, shear forces, local deformation, slip tendencies, and other interaction dynamics that often remain invisible to conventional position-based control systems.</p><p>According to AGILINK’s tests, individual sensors achieve force resolution of approximately 0.005 N—roughly equivalent to detecting the weight of a sheet of paper resting on a fingertip. Spatial resolution reaches approximately 0.04 mm, while sensing density approaches 50,000 sensing points per square centimeter.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Robot arm delicately holds a feather, inset shows colorful dotted texture close-up." class="rm-shortcode" data-rm-shortcode-id="c9f9836a2a34c6020d974a51c0da7158" data-rm-shortcode-name="rebelmouse-image" id="8f1f1" loading="lazy" src="https://spectrum.ieee.org/media-library/robot-arm-delicately-holds-a-feather-inset-shows-colorful-dotted-texture-close-up.png?id=66870273&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">OmniHand 3 Ultra-M recognizes feather texture through vision-based tactile sensing.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">AGILINK</small></p><p>For dexterous robots, contact has traditionally been a largely hidden process. Ultra-M is designed to make that process more observable.</p><p>Rather than simply detecting that contact has occurred, the system attempts to resolve where interaction is happening, how forces are distributed, whether instability is beginning to emerge, and how manipulation strategies should adapt in response.</p><p>The balloon dog offered a glimpse of what contact intelligence can already accomplish. Ultra-M explores a different question: what capabilities may be required to push contact intelligence further?</p><h2>The Physical World Remains the Hardest Benchmark</h2><p>The significance of contact intelligence extends far beyond balloon animals. Many tasks that continue to resist automation involve unstable or deformable interaction: cable insertion, garment handling, flexible packaging, delicate assembly, connector mating, tool use, and household manipulation.</p><p>These tasks are difficult not because robots cannot reach the correct location, but because maintaining stable interaction after contact begins remains extraordinarily hard.</p><p>For decades, robotics achieved many of its successes by reducing uncertainty. Factories were engineered to make robotic motion predictable, repeatable, and highly structured. The physical world behaves differently.</p><p class="pull-quote">A growing share of robotics research is shifting toward interaction itself—understanding how robots can establish, maintain, and adapt physical contact within environments that remain fundamentally unpredictable.</p><p>Objects shift. Materials deform. Friction changes. Contact evolves. Real environments rarely follow scripts. Seen through that lens, the balloon dog was never really about the balloon dog. What attracted attention at ICRA was not simply a visually impressive demonstration, but what it revealed: intelligence in the physical world is ultimately measured through interaction.</p><p>As motion generation continues to mature, a growing share of robotics research is shifting toward interaction itself—understanding how robots can establish, maintain, and adapt physical contact within environments that remain fundamentally unpredictable.</p><p>For robots moving beyond structured environments and into less predictable real-world settings, managing contact may become as important as motion itself.</p>]]></description><pubDate>Tue, 09 Jun 2026 12:51:03 +0000</pubDate><guid>https://spectrum.ieee.org/agilink-contact-intelligence-robot-manipulation</guid><category>Humanoid-robots</category><category>Physical-ai</category><category>Dexterous-hands</category><category>Direct-drive-actuation</category><category>Robotic-manipulation</category><category>Reinforcement-learning</category><category>Tactile-sensing</category><category>Manipulation</category><dc:creator>Agilink</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/humanoid-robot-with-four-arms-holding-a-red-balloon-sculpture-at-a-tech-expo.jpg?id=66870200&amp;width=980"></media:content></item><item><title>How JPL Keeps the 13-Year-Old Curiosity Rover Doing Science</title><link>https://spectrum.ieee.org/curiosity-rover-jpl-mars-science</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-large-robotic-rover-on-reddish-martian-soil.jpg?id=66880331&width=1200&height=800&coordinates=156%2C0%2C156%2C0"/><br/><br/><p>Thirteen years ago last August, I was <a href="https://spectrum.ieee.org/msl-what-to-expect-on-sunday-night" target="_self">camped out</a> in NASA’s Jet Propulsion Laboratory press room in Pasadena, Calif., waiting to see whether the Curiosity rover would survive its descent and skycrane-assisted landing on the surface of Mars. It did, and <a href="https://spectrum.ieee.org/curiosity-rover-alive-and-well-on-surface-of-mars" target="_self">it was awesome</a>.</p><p>Since then, Curiosity (also known as Mars Science Laboratory) has <a href="https://science.nasa.gov/mission/msl-curiosity/location-map/" rel="noopener noreferrer" target="_blank">traveled nearly 37 kilometers</a>, drilled into and sampled <a href="https://science.nasa.gov/resource/curiositys-42-drill-holes/" rel="noopener noreferrer" target="_blank">42 different rocks</a>, and as of publication has snapped nearly <a href="https://mars.nasa.gov/msl/multimedia/raw-images/?order=sol+desc%2Cinstrument_sort+asc%2Csample_type_sort+asc%2C+date_taken+desc&per_page=50&page=0&mission=msl" rel="noopener noreferrer" target="_blank">763,000 photos</a>. The fact that this robot is still <a href="https://www.jpl.nasa.gov/news/nasas-perseverance-curiosity-panoramas-capture-two-sides-of-mars/" rel="noopener noreferrer" target="_blank">hard at work</a>, getting <a href="https://www.nasa.gov/missions/mars-science-laboratory/curiosity-rover/nasas-curiosity-finds-organic-molecules-never-seen-before-on-mars/" rel="noopener noreferrer" target="_blank">real science done</a> at the age of 13, is absolutely incredible—not only is Mars an actively hostile environment for robots, but the only kind of maintenance that JPL engineers can do is to send very, very careful software updates.</p><p>Nevertheless, the clever folks at JPL have managed to keep Curiosity safe, warm, mobile, and sciencing, despite well-worn wheels and less and less power every day. One of those folks is <a href="https://www.linkedin.com/in/alexandraholloway/" rel="noopener noreferrer" target="_blank">Alexandra Holloway</a>, the assistant team chief for engineering operations for Curiosity, who spoke to <em><em>IEEE Spectrum</em></em> about keeping Curiosity roving, what its future looks like, and how JPL has used that experience to make rovers like Perseverance even more capable.</p><p><strong>How astonished should we be that after 13 years on Mars, Curiosity is not only still doing science, but actually getting more capable?</strong></p><p class="shortcode-media shortcode-media-rebelmouse-image rm-float-left rm-resized-container rm-resized-container-25" data-rm-resized-container="25%" style="float: left;"> <img alt="A woman with large green eyes and a shaved head" class="rm-shortcode" data-rm-shortcode-id="b6ab6f3c45abddfcc7b2c9728456ad77" data-rm-shortcode-name="rebelmouse-image" id="f275c" loading="lazy" src="https://spectrum.ieee.org/media-library/a-woman-with-large-green-eyes-and-a-shaved-head.jpg?id=66880338&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">Alexandra Holloway is the assistant team chief for engineering operations on the Curiosity Mars rover at the Jet Propulsion Laboratory.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Alexandra Holloway</small></p><p><strong>Alexandra Holloway: </strong>I’m astonished! The longevity comes from a lot of ongoing work. It’s not just that Curiosity was built robustly; it’s also because we’re continuously putting in effort to ensure it can continue to have that lifespan. I think about all the different kinds of embedded systems there are, from cars to refrigerators, and none of them have the kind of longevity that we have with the rover. It’s mind-boggling, and it’s inspiring.</p><p><strong>Is the </strong><a href="https://robotsguide.com/robots/perseverance" target="_blank"><strong>Perseverance rover</strong></a><strong>, which is nine years younger than Curiosity, significantly different in terms of its hardware and software?</strong></p><p><strong>Holloway: </strong>In terms of hardware, the rovers are actually very similar. Both use a <a href="https://www.baesystems.com/en/article/bae-systems-rad750--single-board-computers-guide-insight-mars-landing" target="_blank">RAD 750 processor</a> and have the same amount of memory. However, Perseverance has an extra processor specifically for visual odometry, which allows it to drive autonomously. <a href="https://www.youtube.com/watch?v=Q_P0swqaZDk" rel="noopener noreferrer" target="_blank">This difference reflects their primary mission designs</a>: Perseverance was designed for driving long distances, while Curiosity is a mission focused on sampling as it goes. So Perseverance’s onboard scheduling capabilities are there to optimize its driving. In fact, just last year, Perseverance surpassed <a href="https://science.nasa.gov/mission/msl-curiosity/location-map/" rel="noopener noreferrer" target="_blank">Curiosity’s driving distance</a> after only about three years on Mars.</p><h2>Curiosity Rover Memory and Software Fixes</h2><p><strong>Do you have some examples of significant tweaks the team has made to keep Curiosity roving?</strong></p><p><strong>Holloway: </strong>One of my favorite examples comes from a <a href="https://science.nasa.gov/blog/sol-2204-curiosity-science-is-baaaack/" rel="noopener noreferrer" target="_blank">processor anomaly</a> that happened on Sol 2172 [Ed. note: “Sol” is the term for a Martian day—about 24 hours and 40 minutes]. Curiosity has two computers, A and B. We landed on A, swapped to B due to <a href="https://llis.nasa.gov/lesson/11201" rel="noopener noreferrer" target="_blank">a NAND memory anomaly early on (Sol 200)</a>. For years, we were chugging along on B, until one day there was a problem—B booted up, but it couldn’t mount its drive partition. We’d never seen this before. To preserve B’s data, we swapped back to A, which we hadn’t trusted in two thousand Sols. A also had a degraded memory, with only two gigabytes of usable storage space instead of four. We painstakingly transferred data from B over to A and then down to Earth, and eventually we ran out of stuff we wanted to transfer, which was really good, because A then started acting funny in the same way it did on Sol 200. It was acting like its memory was coming unsoldered. That’s bad. </p><p>We quickly swapped back to B, formatted it, and got it working again. The problem then became that we couldn’t trust A’s memory at all, but we needed a second computer as a “lifeboat” for diagnostics and transfers if B failed again. We realized we had one other place of memory: where we keep our flight software. We have four copies of the flight software (two current versions and two older versions) in different banks of very small amounts of memory, just 32 megabytes each. What if we just jettisoned the old flight software copies and used that 64-megabyte NOR memory as our file system for computer A? </p><p>So <a href="https://ieeexplore.ieee.org/document/9697661" rel="noopener noreferrer" target="_blank">that’s what we did</a>. It was so elegant! Computer A is operating with less than 1 percent of its original memory, but we can run a mission on it. A small mission, but we haven’t had to jettison any core capabilities. We can still drive, we can manage data, we can even theoretically do science. Everything works fine, just much slower and much smaller. That flight software release was even called “<a href="https://www.computer.org/csdl/proceedings-article/smc-it/2021/856000a007/1ANLcTE5g3e" rel="noopener noreferrer" target="_blank">R-Hope</a>“ because we hoped it would work.</p><p><strong>What are the constraints on Curiosity’s lifespan?</strong></p><p><strong>Holloway: </strong>Our biggest hardware challenge is <a href="https://spectrum.ieee.org/if-necessary-mars-rover-curiosity-could-rip-its-own-wheels-off-to-stay-mobile" target="_self">wheel wear</a>. It looks like we’re driving on this sandy terrain with some rocks in it, and our intuition said that we could just drive over these rocks and they’d get pushed down into the sand and it would be no big deal. But what we ended up seeing was that those little rocks are actually the tips of giant boulders buried in the sand, and they’re razor sharp. Our wheels were getting ripped apart driving over them, especially our front wheels, so <a href="https://www.jpl.nasa.gov/news/curiosity-adds-reverse-driving-for-wheel-protection/" rel="noopener noreferrer" target="_blank">we started driving backwards</a>.</p><p>We also monitor consumables. We consider the number of times we move our actuators. That’s a consumable. Curiosity hasn’t <a href="https://www.nasa.gov/image-article/curiositys-dusty-selfie/" rel="noopener noreferrer" target="_blank">taken a selfie</a> in a while, and one of the reasons is that it’s really hard on the joint actuators. Our onboard memory is a consumable, but surprisingly we’re not anywhere near our life cycle for memory. Our biggest consumable is power; we have an <a href="https://mars.nasa.gov/internal_resources/788/" rel="noopener noreferrer" target="_blank">RTG</a>, a nuclear power source, which decreases its output as it ages.</p><p>Newer missions are flying <a href="https://www.qualcomm.com/snapdragon/overview" rel="noopener noreferrer" target="_blank">Snapdragon</a> [processors], but Curiosity’s RAD 750 is a power hog. One of the things that we’ve rolled out that’s going really well is a way of reducing the amount of time we spend with the computer powered on, by harvesting time when we finish activities early and going to sleep, which lets us turn off the computers and some of the heating. Another thing we’re looking at is doing stuff in parallel when we’re on, like being able to drive or use the arm while communicating with an orbiter. </p><p>So power is decreasing, and that’s causing us to do all this parallelism work and become more efficient and nuanced in the way we operate. But we are not having any degraded science output at this time. Our wheels are still going, our arm is still okay for now, knock on wood. I would say maybe the bottleneck is budget.</p><h2>Curiosity Rover’s Impact on Future Mars Exploration</h2><p><strong>What have you learned from Curiosity that will improve future missions?</strong></p><p><strong>Holloway: </strong>As an embedded flight software person, I think about how we can change, add, or modify software capabilities during the mission. There’s definitely a sweet spot for loading and patching flight software—some of these concepts were pioneered on Spirit and Opportunity and then inherited by Curiosity and Perseverance, making it easier to understand and change the software.</p><p>Some of the things that I wish we had now on [the Mars Science Laboratory] include a better understanding of where our power is going. I want to see how much power each component is drawing every minute, so that we could architect a software system that could balance loads better. We have some of this information that was built in by the engineers who designed the rover, but as an operator, I want something slightly different. So if I were building a mission, I would have those discussions earlier and get operators into the room to say, “what do you want your data products to look like?”</p><p>The key takeaway for designing future missions is to talk to all your users early in the design process. It needs to happen upfront.</p><p><strong>What does Curiosity’s long-term future look like?</strong></p><p><strong>Holloway: </strong>That’s a conversation that happens, and it’s a really delicate one. We have a lot of science instruments, and a lot of them have to do with contact science and sampling and rely on the arm. If we lose the arm, what science can we still do? Well, we have a lot of remote sensors too, like cameras, environmental sensors, and radiation sensors. All of these things are important for the future of space exploration and humans on Mars. </p><p>From a power perspective, our RTG is projected to start degrading science output in the sixth extended mission, but we’re going to be fine through 2035 and potentially even beyond that. So we have a long and exciting future ahead of us. We need to figure out the best way of operating within our constraints, but we’re still kicking.</p>]]></description><pubDate>Tue, 09 Jun 2026 12:00:02 +0000</pubDate><guid>https://spectrum.ieee.org/curiosity-rover-jpl-mars-science</guid><category>Curiosity-rover</category><category>Mars</category><category>Jpl</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-large-robotic-rover-on-reddish-martian-soil.jpg?id=66880331&amp;width=980"></media:content></item><item><title>Video Friday: Watch This Running Robot Not Fall Down Stairs</title><link>https://spectrum.ieee.org/video-friday-humanoid-robot-running</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/humanoid-robot-running-down-stone-steps-in-a-green-park.gif?id=66866536&width=1200&height=800&coordinates=100%2C0%2C100%2C0"/><br/><br/><p>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at <em>IEEE Spectrum</em> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please <a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a> for inclusion.</p><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><p class="rm-anchors" id="sqlsazqkgak">It’s been a while since a humanoid robot video actually impressed me, but the beginning of this does. </p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="37e0c49d39374fdc37b41ca9f9b55850" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/sQLSAzqKGAk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Hard to know how much of that recovery was luck, though.</p><p>[ <a href="https://www.deeprobotics.cn/en">Deep Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="24itn9kfhfs"><em>When you’re very confident in your MPC-based balance controller...</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="62c85dfc14ee3c86693506ff7c6e82e2" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/24ItN9kfHFs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>I feel you, buddy. And thanks for posting this. We’ve all been there, in one way or another.</p><p>[ <a href="https://groups.cs.umass.edu/daros/sample-home-page/">DARoS Lab</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="acfgwbab5ei"><em>GENE01 designed from scratch and sent to batch production. Two scalable lower bodies. Physical AI deployed for motor control and world-action modeling. All in three months. Generative Bionics is running.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="9023832c5618af7583073d466ca5d834" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/aCFgwBAB5eI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://gbionics.ai/">Generative Bionics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="1o8te5fjsd0"><em>Alex, the newest humanoid robot built entirely by ‪IHMCRobotics‬, takes its first steps outdoors! This was a significant milestone for our team, especially because Alex is the first humanoid robot developed entirely by IHMC Robotics to venture outside the lab. These outdoor trials were conducted in preparation for a demonstration in Maryland, where Alex later successfully walked completely untethered.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c41c08f8890fae11df9cfa1207efcb22" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/1o8TE5FjsD0?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.ihmc.us/news20251119/">IHMC</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="oxtcmmw63t4"><em>Built on the Enlight platform, Flexiv Mico is a compact dual-arm system engineered for safe, seamless collaboration in any workspace.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="0ccc458c268ab716984cdc46805f3f05" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/OxTCmmw63T4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://flexiv.com/product/robot-system">Flexiv Robotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="gvbyvkp6k5s">Is it weird that I’m jealous that robots can have feet that are swappable?</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="2e48a4e232ff0eb42b81b714517a6880" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/GvByvkp6k5s?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://bostondynamics.com/products/atlas/">Boston Dynamics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="w4daoeu3aas"><em>Midweek at ICRA 2026. Cable-climbing robots that work as a squad: CCRobot-S is a team of robots with reconfigurable cable-driven manipulation that collaboratively inspect and maintain long-span bridge stay cables. Parallel operation for speed, morphological reconfiguration for reach.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="830b4f14aa301bf591543dc27e35275e" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/W4DAoEU3Aas?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://ieeexplore.ieee.org/document/11196028/">IEEE Transactions on Robotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="2xajzq8v9p8">I would love to know the story behind this odd choice of hat.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ad725ca4a4f158353decaceba83166d7" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/2xAJzQ8V9p8?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://github.com/ROBOTIS-GIT" target="_blank">Robotis </a>]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="qyy-bwbpxbi"><em>How did Atlas learn football—and why? Go behind the scenes of <a data-linked-post="2650256169" href="https://spectrum.ieee.org/the-evolution-of-robot-soccer" target="_blank">School of Football</a> and discover a glimpse of the Next of robotics.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="03901a067a15d351956935a04b1f8b15" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/qYy-BwBpxBI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>What I really want to know is, what kinds of things is it possible to do in football (<a data-linked-post="2676931576" href="https://spectrum.ieee.org/video-friday-rabona-soccer" target="_blank">soccer</a>) when your robot’s joints are not constrained by biology?</p><p>[ <a href="https://bostondynamics.com/blog/can-football-teach-a-robot-to-move/">Boston Dynamics</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 05 Jun 2026 15:30:01 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-humanoid-robot-running</guid><category>Humanoid-robots</category><category>Video-friday</category><category>Robot-arms</category><category>Robot-videos</category><category>Bipedal-robots</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/gif" url="https://spectrum.ieee.org/media-library/humanoid-robot-running-down-stone-steps-in-a-green-park.gif?id=66866536&amp;width=980"></media:content></item><item><title>This DIY Bipedal Robot Used Pneumatic “Air-Muscles” Instead of Motors</title><link>https://spectrum.ieee.org/shadow-walker-biped-humanoid-robot</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/two-photos-of-a-prototype-humanoid-robot-with-a-wooden-frame-and-wires-and-other-components-strung-on-its-body.jpg?id=66825613&width=1200&height=800&coordinates=0%2C83%2C0%2C84"/><br/><br/><p>In 1987, <a href="https://shadowrobot.com/the-story-of-our-founder-richard-greenhill/" rel="noopener noreferrer" target="_blank">Richard Greenhill</a>, a British photographer who was fascinated by (but had no actual training in) robotics, decided he wanted to build a life-size humanoid that could do useful things, like carrying luggage. He was working at a startup called Intergalactic Robots, but he couldn’t convince anyone there to build such a machine, so he set about building one himself, in his attic.</p><div class="rm-embed embed-media"><iframe height="110px" id="noa-web-audio-player" src="https://embed-player.newsoveraudio.com/v4?key=q5m19e&id=https://spectrum.ieee.org/shadow-walker-biped-humanoid-robot&bgColor=F5F5F5&color=1b1b1c&playColor=1b1b1c&progressBgColor=F5F5F5&progressBorderColor=bdbbbb&titleColor=1b1b1c&timeColor=1b1b1c&speedColor=1b1b1c&noaLinkColor=556B7D&noaLinkHighlightColor=FF4B00&feedbackButton=true" style="border: none" width="100%"></iframe></div><p>To help with his project, he organized a weekly get-together of a dozen or so like-minded folks. Every Wednesday night, his wife, Sally, would make a big pot of spaghetti, and the group would tinker with components scavenged from old printers and picked up from junkyards. They called themselves the Shadow Group. They eventually constructed several different robots, but their main project was the two-legged Shadow Walker.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Two color photos of a casually dressed white man in a workroom posing with a partially assembled wooden robot." class="rm-shortcode" data-rm-shortcode-id="abd4fd0237110b3339a5f336e96006e6" data-rm-shortcode-name="rebelmouse-image" id="b189a" loading="lazy" src="https://spectrum.ieee.org/media-library/two-color-photos-of-a-casually-dressed-white-man-in-a-workroom-posing-with-a-partially-assembled-wooden-robot.jpg?id=66825888&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">In 1987, photographer Richard Greenhill organized a weekly gathering of DIY enthusiasts to work on projects in his attic, including the Shadow Walker. </small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Richard Greenhill and David Buckley</small></p><p>Greenhill’s friend <a href="https://davidbuckley.net/DB/aboutme.htm" target="_blank">David Buckley</a>, a robotics and animatronics expert he’d met at Intergalactic, sketched out a rough design based on medical textbooks of human bone structure and muscle movement. The robot’s skeleton, made of maple, was greatly simplified—only one bone in the lower leg and a single wide toe on each foot. The ankle’s double-axis design allowed for two degrees of movement. The knee had no complicating kneecap.</p><p>Greenhill didn’t want the robot to use motors, so its movement was controlled using compressed air to extend and contract 28 “air-muscles”—his version of a McKibben muscle, invented in the 1950s to mimic musculature with pneumatics. The muscles were connected to the bones across eight joints (hips, knees, ankles, toes), which provided 12 degrees of freedom.</p><p class="ieee-inbody-related">RELATED: <a href="https://spectrum.ieee.org/the-short-strange-life-of-the-first-friendly-robot" target="_self">The Short, Strange Life of the First Friendly Robot</a></p><p>The robot’s headless torso held the control valves, electronics, and computer interfaces. It stood 168 centimeters tall and 46 cm wide and weighed about 38 kilograms. The group managed to get the robot to stand up reliably and balance itself; it could even regain its center if pushed a little. But walking turned out to be more of a challenge.</p><p><a href="https://www.linkedin.com/in/walkerrich/" target="_blank">Rich Walker</a> joined the group as a teenager and began writing software to get the robot to stand. He was particularly interested in using neural networks to solve balancing problems, although he ran into a number of hardware obstacles, including the unreliability of the sensors and the valves, and the robot’s overall fragility. Over time, Walker and the team developed a standard library of routines to control the robot. Walker wrote a <a href="https://davidbuckley.net/DB/ShadowBiped/ShadBipedArchive/Shadow%20Robot%20Company%20Shadow%20Biped.htm" target="_blank">detailed description</a> of the Shadow Walker in 1999, which is available on David Buckley’s website.</p><h2>The 1st International Robot Olympics</h2><p>By the time the Shadow Group began developing Shadow Walker, engineers in academia and industry had been working on robotics for several decades. The world’s first industrial robot, the <a href="https://spectrum.ieee.org/unimation-robot" target="_self">Unimate</a>, debuted in 1961, and in 1967 Donald Michie and others began building a series of <a href="https://spectrum.ieee.org/freddy-robot-british-ai-winter" target="_self">Freddy </a>robots to investigate machine intelligence. The IEEE created its first dedicated robotics organization in 1984 when it established the IEEE Robotics and Automation Council, which became the <a href="https://www.ieee-ras.org/" target="_blank">IEEE Robotics and Automation Society</a> in 1987. Also in 1987, the nonprofit International Federation of Robotics was established to promote research, development, use, and cooperation in the field of robotics.</p><p>As Shadow Walker pushed the limits for a DIY humanoid robot, industrial humanoids were also gaining ground. In 1986, Honda began working on its experimental (E-series) and later the prototype (P-series) humanoid robots, finally unveiling the P2 in 1996. The P2 stood 183 cm tall and weighed 210 kg. It was the first humanoid capable of stable, autonomous walking. This work eventually led to the development of the groundbreaking <a href="https://spectrum.ieee.org/honda-p2-robot-ieee-milestone" target="_self">ASIMO</a>.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Two color photos of a casually dressed bearded white man posing with a wooden robot leg and with a computer and other equipment." class="rm-shortcode" data-rm-shortcode-id="e7e2d6657e6037ef204eb6ab36e813d3" data-rm-shortcode-name="rebelmouse-image" id="45b6e" loading="lazy" src="https://spectrum.ieee.org/media-library/two-color-photos-of-a-casually-dressed-bearded-white-man-posing-with-a-wooden-robot-leg-and-with-a-computer-and-other-equipment.jpg?id=66826216&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">Greenhill’s friend, roboticist David Buckley, consulted medical textbooks to create Shadow Walker’s humanoid design.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Richard Greenhill and David Buckley</small></p><p>In the late 1980s, the public was both fascinated and horrified by the potential of robots. Businesses saw robots as a way to increase productivity, while workers worried they would take their jobs. Children viewed them as wondrous toys, while people with disabilities embraced them as tools of liberation. Military experts hoped robots would fight wars without endangering human soldiers, while politicians pondered if robots might eventually get to vote. Philosophers thought robots could challenge our notions of intelligence (and stupidity), while the religious struggled with concerns about the human race in a robot-dominated future.</p><p class="shortcode-media shortcode-media-rebelmouse-image rm-float-left rm-resized-container rm-resized-container-25" data-rm-resized-container="25%" style="float: left;"> <img alt="Photo of two articulated feet made of pieces of wood strung with wires and other components." class="rm-shortcode" data-rm-shortcode-id="e8188dfa6302c3d8a0eaa3319645c146" data-rm-shortcode-name="rebelmouse-image" id="528f6" loading="lazy" src="https://spectrum.ieee.org/media-library/photo-of-two-articulated-feet-made-of-pieces-of-wood-strung-with-wires-and-other-components.jpg?id=66835726&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">Shadow Walker’s simplified anatomy included only one bone in the lower leg and a single wide toe on each foot.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Science Museum Group</small></p>Peter Mowforth, cofounder of the <a href="https://en.wikipedia.org/wiki/Turing_Institute" target="_blank">Turing Institute</a> in Glasgow, noted these disparate visions for robots when he announced the 1st International Robot Olympics, to be held in 27 and 28 September 1990 and hosted by the Turing Institute and the University of Strathclyde. The Olympics would round up the world’s best robots and showcase them head-to-head.<p>Mowforth himself thought all of the competing visions of robots were overblown. Steeped in machine learning research and robotics development, he knew firsthand the limitations of the state of the art: Robots rarely worked as intended, easily broke down, and glitched over seemingly trivial problems. He envisioned the Robot Olympics as a testbed to assess what the latest generation of robots could and could not do.</p><p class="shortcode-media shortcode-media-rebelmouse-image rm-float-left rm-resized-container rm-resized-container-25" data-rm-resized-container="25%" style="float: left;"> <img alt="Photo of a headless and armless humanoid robot wearing red pants." class="rm-shortcode" data-rm-shortcode-id="6e64cccdcd490f06a27f02e2a64277b4" data-rm-shortcode-name="rebelmouse-image" id="3135a" loading="lazy" src="https://spectrum.ieee.org/media-library/photo-of-a-headless-and-armless-humanoid-robot-wearing-red-pants.jpg?id=66826230&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">At the 1990 Robot Olympics, held in Glasgow, Shadow Walker wore pants to conceal its pneumatic “air-muscles” from competitors.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Adam Hart-Davis/Science Source</small></p><p>The call for participation was wide open. Instead of having predetermined categories of competition, the organizers opted to see who applied to compete and then group them based on their claimed capabilities. In addition to picking the winners of individual events, the judges would select an overall Olympic champion based on the quality of the hardware, the sophistication of behavior, and novelty. Other prizes were given for young competitors, technologies that showed commercial potential, and design. In the end, more than 50 robots were entered, from a mix of universities, industry, and hobbyist groups from Canada, France, India, Japan, Mexico, the Soviet Union, the United States, the United Kingdom, and Yugoslavia.</p><p>There were plenty of disappointments. Trolleyman, a golf-cart-like wheeled robot, suffered a power failure while carrying the opening Olympic torch through the streets of Glasgow. The pile rug in the arena tripped up many robots that had been trained only on flat, smooth floors. David Buckley later concluded that the events were too difficult, and that the Olympics didn’t push development forward.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="504a9d8541e61b0cdc7eb6614c2d25d3" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/I37bUBVM854?rel=0&start=151" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Of course, there were winners. In a surprise triumph for vintage technology, the fully mechanical 19th-century Japanese Archer from the Museum of Automata in York, England, won gold in javelin, beating out competitors more than 100 years its junior. The overall Olympic Champion was Yamabico, Shoji Suzuki’s entry from the University of Tsukuba, in Japan, which won bronze in obstacle avoidance and gold in wall following, but was disqualified in the talking category for not speaking English.</p><p>The Shadow Group had high hopes for Shadow Walker. Unfortunately, though, it failed to take a step, and the biped race was won by the Cardiff University Biped. Shadow Walker now resides in the <a href="https://collection.sciencemuseumgroup.org.uk/objects/co8366055/biped-robot" target="_blank">collections of the Science Museum</a> in London.</p><h2>The Legacy of Shadow Walker</h2><p>In 1997, a paying customer in search of a robotic leg compelled the Shadow Group to get serious and become a registered company. <a href="https://shadowrobot.com/" target="_blank">Shadow Robot</a> is now Britain’s oldest robotics company. Rich Walker, who had left the Shadow Group to earn a B.A. in mathematics and a diploma in computer science at the University of Cambridge, joined Shadow Robot in 1999 as technical director. Today he’s the director of the company.</p><p>Shadow Robot specializes in durable <a href="https://robotsguide.com/robots/shadow" target="_blank">robot hands</a> rather than walking robots. But the focus on hands is also a legacy of the Shadow Group. Walker remembers that the Shadow Group’s first humanoid hand in the late 1990s was impressive simply for being able to pick up a pint of beer (a smooth-sided, thin-walled glass). Today, Shadow Robot’s hands are <a href="https://shadowrobot.com/dexterous-hand-series/" target="_blank">testbeds for dexterity</a>. Gone are the pneumatic muscles, replaced by actuators that move each finger with precision. The classic model contains 20 motors, allowing for <a href="https://www.drugs.com/medical-answers/abduction-adduction-mean-3562250/" target="_blank">abductive and adductive </a>movement with 24 degrees of freedom.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Black and white photo of a two-legged humanoid robot with its left leg raised, next to a man with his right leg raised while another man looks on." class="rm-shortcode" data-rm-shortcode-id="dd88249ff45a90cd091024b40970aeec" data-rm-shortcode-name="rebelmouse-image" id="8e4ba" loading="lazy" src="https://spectrum.ieee.org/media-library/black-and-white-photo-of-a-two-legged-humanoid-robot-with-its-left-leg-raised-next-to-a-man-with-his-right-leg-raised-while-ano.jpg?id=66826242&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">Shadow Walker’s operator wore a data suit that captured his movements and allowed the robot to copy them.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Richard Greenhill</small></p><p>In a <a href="https://shadowrobot.com/why-your-industry-needs-dexterity-not-humanoids/" target="_blank">recent blog post</a>, Sejal Parsotomo, senior marketing executive at Shadow Robot, wrote that while humanoid robots are great for public relations, specialized dexterity is key for success: A robot that can walk into your factory may be impressive, but a robot that can <a href="https://spectrum.ieee.org/robot-hand-shadow-robot-company" target="_blank">reliably manipulate objects</a> is transformative.</p><p>In its struggles to take more than a few steps, the Shadow Walker showed the inherent difficulty that robots had in mastering even low-level skills. In August 2025, Beijing hosted the <a href="https://www.whrgoc.com/about" target="_blank">World Humanoid Robot Games</a>. Competing in sports such as gymnastics, soccer, and track events, as well as more “useful” tasks like hotel cleaning and sorting medicine, these robots could literally have run circles around the competitors in the first Robot Olympics 35 years earlier. And yet, there is still so much work needed in order for robots to navigate the human-built environment. Despite the astonishing progress, we’re still not all that close to actually useful humanoid robots.</p><p><em><em>Part of a </em></em><a href="https://spectrum.ieee.org/collections/past-forward/" target="_self"><em><em>continuing series</em></em></a><em> </em><em><em>looking at historical artifacts that embrace the boundless potential of technology.</em></em></p><p><em>An abridged version of this article appears in the June 2026 print issue as “Learning to Walk.”</em></p><h3>References</h3><br/><p>Richard Greenhill gives an <a href="https://shadowrobot.com/the-story-of-our-founder-richard-greenhill/" target="_blank">overview of his life</a> and the founding of the Shadow Group in a post on Shadow Robot’s corporate website.</p><p>David Buckley has a compilation of resources on the <a href="https://davidbuckley.net/DB/ShadowBiped/ShadBiped.htm" target="_blank">Shadow Biped Walker</a>, including <a href="https://davidbuckley.net/DB/ShadowBiped/ShadBipedArchive/Shadow%20Robot%20Company%20Shadow%20Biped.htm" rel="noopener noreferrer" target="_blank">specifications</a> from the 1999 iteration and a <a href="https://davidbuckley.net/RS/History/Olympics90_files/Brochure.htm" rel="noopener noreferrer" target="_blank">brochure</a> from the 1st International Robot Olympics.</p>There is coverage of the Robot Olympics worthy of a gossip sheet in <a href="https://ricerca.repubblica.it/repubblica/archivio/repubblica/1990/09/30/olimpiade-dei-robot.html" rel="noopener noreferrer" target="_blank"><em><em>La Repubblica</em></em></a><em> </em>and lovely footage of the competition in <a href="https://www.youtube.com/watch?v=I37bUBVM854" rel="noopener noreferrer" target="_blank">this TV-am interview</a> of Peter Mowforth by Lorraine Kelly.]]></description><pubDate>Sun, 31 May 2026 13:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/shadow-walker-biped-humanoid-robot</guid><category>Past-forward</category><category>Type-departments</category><category>Humanoid-robots</category><category>Shadow-robot</category><category>Walking-robots</category><category>Pneumatic-robots</category><dc:creator>Allison Marsh</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/two-photos-of-a-prototype-humanoid-robot-with-a-wooden-frame-and-wires-and-other-components-strung-on-its-body.jpg?id=66825613&amp;width=980"></media:content></item><item><title>Video Friday: Extreme Omnidirectional Robot</title><link>https://spectrum.ieee.org/video-friday-rabona-soccer</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/spherical-multi-legged-robot-walking-along-a-forest-trail.gif?id=66834857&width=1200&height=800&coordinates=100%2C0%2C100%2C0"/><br/><br/><p>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at <em>IEEE Spectrum</em> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please <a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a> for inclusion.</p><h5><a href="https://2026.ieee-icra.org/">ICRA 2026</a>: 1–5 June 2026, VIENNA</h5><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><p class="rm-anchors" id="nd-i4ynqeuy">What is the right number of legs for a robot? Two? Four? No, the answer is obviously all of them. All of the legs.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="722fadaab21796bb3f949ad0e6373186" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Nd-I4YNQEuY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://generalroboticslab.com/Argus">Argus</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="mccv90sunby">Sigh, yet another skill that I as a soccer-playing human should have but a robot has instead: the rabona.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="7dee139e74b5fe20e33e9cc05cc9cfeb" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/mCcv90sUNbY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://bostondynamics.com/products/atlas/">Boston Dynamics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="p5lywik6oba"><em>Robots are rapidly becoming part of our everyday lives, from drones and industrial machines to home assistants and humanoid robots. As their presence continues to grow, an important question arises: How can we choose the right robot—not only in terms of performance and cost but also in terms of sustainability? </em><em>This video introduces the Eco‑Score for Robots, a new approach to evaluating the environmental impact of robotic systems. Just as eco-labels help consumers make informed choices in other industries, the Robotics Eco‑Label provides a clear and transparent way to assess how sustainable a robot truly is.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ec84cfbfcff72dd8ad1348d37e601567" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/P5LYwIk6OBA?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://roboticsecolabel.com/">Robotics EcoLabel</a> ]</p><p>Thanks, Bram!</p><div class="horizontal-rule"></div><p class="rm-anchors" id="w5iw60q526k">Uh oh, <a data-linked-post="2650277454" href="https://spectrum.ieee.org/yale-variable-friction-robot-fingers" target="_blank">five-fingered hands</a>.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="a6b072c51e3811ab7a1577d09c739ae4" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/w5iW60Q526k?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.agilityrobotics.com/">Agility</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="tapvn-tqpx0"><em>Robotic manipulation has come a long way since the 1990s. We’ve gone from the two-ball paddle <a data-linked-post="2650254958" href="https://spectrum.ieee.org/juggling-robots-get-fancier" target="_blank">juggling robot </a>to AthenaZero, who can juggle barehanded using onboard vision feedback. By moving away from task-specific passive end-effectors such as cups or paddles and using multifingered hands, it can transition between a wide range of patterns including cascade, half-shower, tennis, shower, and box.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="3cfd33b200b3df3385329bac477edbdb" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/tAPvN-tQpX0?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>There needs to be a robot circus show already.</p><p>[ <a href="https://rai-inst.com/resources/blog/bimanual-robot-for-dynamic-manipulation/">Robotics and AI Institute</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="qvdgu1-ykxy">Zero legs. One hat. $13K.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="206620b18197d3840abd1050f4b5f50d" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/qVdGU1-YkxY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.astribot.com/en">Astribot</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="-lgo5xqgvko"><em>From its elegant design to the advanced technology powering every step, Luna is more than a machine—it’s a leap into the future.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="614b2e6fe63cc759977bc208f3c30686" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/-lgo5xqgVko?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://limxdynamics.com/en/products/luna">LimX Dynamics</a> ]</p><p>Thanks, Jinyan!</p><div class="horizontal-rule"></div><p class="rm-anchors" id="g3pvccv00um">You got a quadrotor in my quadruped! No, you got a quadruped in my quadrotor!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="8d7d3b2d1198f0152b2e2aa2d6177efa" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/G3PvcCV00uM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://engineering.ontariotechu.ca/mars/index.php">MARS Laboratory</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="tmi_h-ct5pk"><em>A human hand, a robot’s arm—together tracing circles of trust and precision. No missteps. No hesitation. Just pure, algorithmic grace.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="2a79aeac7a6a9c2b3876a13a812d9e3d" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Tmi_H-CT5Pk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.ubtrobot.com/en/humanoid/products/walker-c">UBTECH</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="qlsj3p87a4a">Low-gravity planetary exploration with a quadruped just looks like fun.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="029ea5f51adc616956d6290ae8797440" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/qlSJ3P87A4A?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.autonomousrobotslab.com/">Autonomous Robots Lab</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="xwjssgdd5no">Here it is, that robot Kool-Aid that everyone seems to be drinking. Including me!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="5dcd8901e1b18d575e490b7a538724ca" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/XwjSsGdd5no?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://generalistai.com/">Generalist</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="6-prnhfdyfw">Don’t shoot Mini Pupper!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="4fbfc29109f0b819bf01cca3cab9a4a2" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/6-PRNhFdYfw?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://mangdang.store/products/mp2">MangDang</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ofnlnztcwm4"><em>We show here the ARISTO (Anthropomorphic, Robotic, Integrated-Sensing, Tendon-Operated) Hand. Developed in collaboration with Sony Group Corporation, this research platform is engineered to address the complex requirements of manipulating small, thin, and fragile objects.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="5f62c145f8df4ca262a086438a230e1a" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/oFnLNZtCWM4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://sites.utexas.edu/hcrl/">University of Texas Human Centered Robotics Lab</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="3vbk_jzmagu">Okay, but did you really have to call it the T800?</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="bfa43cd52fe80b23a7935412710a8d00" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/3VBK_jZmagU?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://en.engineai.com.cn/product-t800">EngineAI</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="p15of1ktjt4"><em>Moby shows what useful mobile manipulation looks like in the real world: picking up, carrying, and placing adaptable payloads. The video shows payload handling across increasing crate loads, including a 50.3-pound load, while maintaining balance, control, and mobility. This is the kind of capability that matters outside the lab—moving real objects, in real spaces, with practical reliability.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="a675f7000f984a573d315f7b548745a8" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/P15OF1kTJt4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.noblemachines.ai/">Noble Machines</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="dqyojl69xdk"><em>What does it take to make a robot look human? Harvard SEAS students Hailey Block, Henry Tavistock, and Evan Crowley created “Hollow Minds,” a pair of animatronic heads capable of speaking, blinking, tracking movement, and displaying lifelike facial expressions.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="d53624d8601f1ebe24e3a9f6828d3544" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/dQyOjl69Xdk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://seas.harvard.edu/electrical-engineering/courses">Harvard University</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="jeejj42tkqu">The longevity here is impressive, but the obvious question here is why the heck you’d ever do this task with a bipedal humanoid robot. It also doesn’t seem to have any error recovery, which is obviously fixable, but highlights the fact that real humans are versatile and humanoid robots are not.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="051c8ca0adafcb4cfe03414aa1da38f3" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/JeeJJ42TKQU?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.figure.ai/">Figure</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ydf1vzbzrgy"><em>Kacper Nowicki, CEO and cofounder of Nomagic, recently sat down for a deep dive into the “humanoid vs. purpose-built” debate during a panel discussion at the Web Summit in Vancouver 2026.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="2d23892ebcdb144d82b37ebd6d99096c" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/yDf1VzbZrGY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://nomagic.ai/">Nomagic</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 29 May 2026 17:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-rabona-soccer</guid><category>Video-friday</category><category>Robot-videos</category><category>Humanoid-robots</category><category>Omnidirectional</category><category>Quadruped-robots</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/gif" url="https://spectrum.ieee.org/media-library/spherical-multi-legged-robot-walking-along-a-forest-trail.gif?id=66834857&amp;width=980"></media:content></item><item><title>Video Friday: Atlas Versus a Fridge</title><link>https://spectrum.ieee.org/video-friday-humanoid-robot-learning</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/bipedal-humanoid-robot-does-one-legged-spinning-kick-in-a-brightly-lit-industrial-workshop.gif?id=66779183&width=1200&height=800&coordinates=62%2C0%2C63%2C0"/><br/><br/><p><span>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://2026.ieee-icra.org/">ICRA 2026</a>: 1–5 June 2026, VIENNA</h5><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><blockquote class="rm-anchors" id="xkk5ze3fukq"><em>Just months after its debut, Atlas is proving why it is the world’s most capable and dynamic humanoid robot, ready for real work. Lifting a mini-fridge is a feat of strength, but the true breakthrough is in the underlying reinforcement learning and controls systems. The robot is learning to navigate real world adaptability: handling heavy objects by bracing and accounting for the mass and inertia; using whole-body control, not just hands to maneuver; and demonstrating superhuman range of motion and balance. This marks a critical shift in robotics where humanoids move beyond the lab and into dynamic industrial settings.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="a2c5ab79eaa4f2ce8d3f7857d5ed05dc" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/xKK5ze3FukQ?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Watching Atlas move a fridge may be less impressive than whatever the heck it does at 4:10.</p><p>[ <a href="https://bostondynamics.com/blog/training-a-humanoid-robot-for-hard-work/">Boston Dynamics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="p0okuedzdg0"><em>SpikerBot is a robot you teach by wiring neurons, not writing code. Drag spiking neurons in the app, connect them to sensors and motors, then press play. It moves, reacts, and changes behavior based on the brain you built.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="2dff508bdffc3aa58bb8460782b69aa5" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/P0okUedZDG0?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>Already funded on Kickstarter with a robot kit starting at US $219.</p><p>[ <a href="https://www.kickstarter.com/projects/backyardbrains/spikerbot-build-a-brain-create-a-creature">Kickstarter</a> ] via [ <a href="https://backyardbrains.com/">Backyard Brains</a> ]</p><p>Thanks, Greg!</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="32qhuslr0gm"><em>Wheeled-legged robots, which have wheels at their feet and achieve high mobility by coordinating wheel drive and leg drive, have been developed. In this paper, we address the problem of how to draw out the potential task-execution capability of the legs by freeing them from the roles of locomotion through external body support.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="4a74806bc63db513940129cc6624cb6f" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/32qhUslR0gM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://shin0805.github.io/wixus/">WiXus</a> ] from [ <a href="http://www.jsk.t.u-tokyo.ac.jp/" target="_blank">JSK Robotics Laboratory</a> ] via [ <a href="https://2026.ieee-icra.org/" target="_blank">ICRA 2026</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="olpxfcg2ibs">A very clever idea for electronics-free, multi-dimensional touch sensing.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="90e237522d45a17984fc10b4a58631f3" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/olpxfcg2iBs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.nature.com/articles/s41467-026-72497-3">Nature Communications</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="b-a8tb8ttii"><em>Using external voice commands, G1 is directly controlled to generate a wide range of actions in real time. This video was recorded in a single take, with on‑site audio recording.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="6c7670baa9720becd32de0e4c695debf" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/B-a8TB8ttII?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://shop.unitree.com/products/unitree-g1">Unitree</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="5kdmlpvqvhk"><em>Hummingbirds are impressive flyers, and advancements in high-speed photography, instrumentation, and measurement techniques have revealed much about their aerodynamics, flight behaviors, and wing and body kinematics. However, comparatively less is known about their natural flight dynamics, which is the relationship among a bird’s flight velocities, the control actions of its wings, and the acceleration of the bird in flight. To investigate this, at the <a data-linked-post="2650250138" href="https://spectrum.ieee.org/fly-like-a-fly" target="_blank">Advanced Vertical Flight Laboratory</a> we have designed, built, and flight tested a biomimetic robotic hummingbird on which is implemented the same techniques for flight control as observed in hummingbirds.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="315b8e44ab6cb61ad579dd06b198edfa" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/5KdmLpVQVHk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://avfl.engr.tamu.edu/">Advanced Vertical Flight Laboratory</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="k115trhcuby">I guess if you’re going to make a <a data-linked-post="2661043607" href="https://spectrum.ieee.org/quadruped-robot-benchmark-barkour" target="_blank">robot dog</a>, it’s only fair to give it the ability to frolic in the water.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="5ef696a9b7f81b37b6806fa49f0de5fb" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/K115tRHcUBY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.magiclab.top/en/">MagicLab</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="e7ojml_wo_u"><em>The original automated layout robot—the one that showed up when the construction industry was pretty sure robots were lame and then proved otherwise. It has printed millions of square feet of layout across thousands of projects. It built an entire category of construction technology. The category of: Stuff That Actually Does Helpful Work on Real Jobsites. But FieldPrinter 2 is here. It’s faster, tougher, smaller, and smarter. So for FieldPrinter 1, it’s time. Time for a quiet retirement. A mug. Maybe a plaque... But nay, good knight! Thou shalt expire in a blaze of thunderous glory!!</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="7f41cc4429e6ca89e5677d250b971095" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/e7OJmL_WO_U?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.dustyrobotics.com/">Dusty Robotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="cyx8fbk9jeg">Here’s an interesting idea for an inflatable <a data-linked-post="2655529941" href="https://spectrum.ieee.org/foldable-monocopter-drone" target="_blank">monocopter drone</a>.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="6b9407399fe66508268b261cd8d52606" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/cyX8fBk9JEg?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://airlab.sutd.edu.sg/">AIRLAB</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="6hrgihba3ro"><em>Meet the Lynx S10—a compact all-terrain robot built to deliver industry-grade performance in a lightweight form factor under 20kg.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="44fc06cba869eda9e6769d57e0ae5e5c" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/6HrGiHBa3ro?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.deeprobotics.cn/en">DE Robotics</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="amovyq3hfpm"><em>Noble Machines builds general-purpose robots for heavy industry, supporting people with the most hazardous and physically demanding tasks. Attendees at <a data-linked-post="2676218078" href="https://spectrum.ieee.org/nvidia-groq-3" target="_blank">NVIDIA GTC 2026 </a>witnessed the power of autonomous industrial work with Noble Machines Moby.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="09950f4cd9ccb598a3afdf25dd8f228c" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/AmoVYQ3hFPM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.noblemachines.ai/">Noble Machines</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="_ulzzrpmlok">I’m sorry, but Lego bricks should be for humans only.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="a9d6a5506d96fb7a1599b61f99c91ab5" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/_ulZzRpMLok?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.limxdynamics.com/en/products/tron2">LimX Dynamics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="l_yqaxoi_bs">Need a robot that can go places? Huskies were around way before legged humanoids, and I bet they’ll be around way after, too.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ff5ebed369119ba58fbfb40ae692f12d" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/l_YQAxoi_bs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://clearpathrobotics.com/husky-a300-unmanned-ground-vehicle-robot/">Clearpath Robotics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="8mflnicbyve">I know this little dude is just a research platform at Disney, but I still want one to be my friend.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c8d05e28aa1a38bf4a3b5f280bbe1d11" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/8mfLNICByvE?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://arxiv.org/abs/2605.15122">Paper</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="l8owjwnnxug"><em>In March 1982, General Motors announced a rapid and aggressive conversion to robotics. By 1990, GM wanted 14,000 robots in their factories doing everything from painting to welding to assembly. Nowadays, we dream of robots in the factories, doing everything end to end. In the dark. Lights out. Guess what? GM dreamed the same 40 years ago, and they spent an estimated US $60 billion to try to make it reality. In today’s video, we look at General Motors and their dreams of the automated, all-robot factory.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c8d569d5734d2b06a7190aeacf899563" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/l8OWJwnnXUg?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://asianometry.passport.online/">Asianometry </a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 22 May 2026 16:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-humanoid-robot-learning</guid><category>Humanoid-robots</category><category>Video-friday</category><category>Robot-videos</category><category>Educational-robots</category><category>Biomimetics</category><category>Quadruped-robots</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/gif" url="https://spectrum.ieee.org/media-library/bipedal-humanoid-robot-does-one-legged-spinning-kick-in-a-brightly-lit-industrial-workshop.gif?id=66779183&amp;width=980"></media:content></item><item><title>Open-Source Software Is Starting to Help Robots Think</title><link>https://spectrum.ieee.org/open-source-robot-ai-platforms</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-smiling-emoji-with-red-eyes-and-a-grey-face-resembling-a-robot.jpg?id=66750560&width=1200&height=800&coordinates=0%2C83%2C0%2C84"/><br/><br/><p>When a group of academics <a href="https://spectrum.ieee.org/open-source-robotics-hardware-research-and-innovation" target="_self">started making open-source robotics hardware</a>, a generation of roboticists got years of their lives back. Now, the bigger challenge is getting robots to think—and that’s starting to be open sourced too.</p><p>The shift is still early, but companies including Hugging Face, Nvidia, and Alibaba have all made significant bets on open-source robotics in the last two years, releasing tools and models aimed at the higher-level work of getting robots to reason, decide, and act. </p><p><span>The open source movement that accelerated other AI applications is now being applied to the problem of making robots smarter. </span> If these attempts to bring AI to robotics with open-source platforms succeed, the barrier to building a capable robot could fall as fast as the barrier to building an AI application did.</p><h2>The world ROS built</h2><p>Open-source robotics software has been around since the mid-1990s, with early projects like Carnegie Mellon University’s <a href="https://www.ri.cmu.edu/project/inter-process-communication-package/" target="_blank">Inter-Process Communication package</a> and the <a href="https://playerstage.sourceforge.net/" target="_blank">Player Project</a> in the early 2000s laying the groundwork. But these were often tied to specific research groups, and the field remained fragmented. </p><p>The Robot Operating System, ROS, <a href="https://spectrum.ieee.org/the-origin-story-of-ros-the-linux-of-robotics" target="_self">changed that when it made its debut</a> in 2007. By bundling tools and attracting more users, it became the de facto standard. The story of open-source robotics, in many ways, starts there. </p><p>Despite its name, ROS is not actually an operating system. Rather, it is a software framework that sits on top of Linux and handles robotic fundamentals like moving data between components, talking to hardware, building maps, planning paths, and supporting developer tools, such as data logging and visualization. Before ROS, every robotics team wrote that infrastructure themselves. It often took a year or two before a lab could get to the research it actually cared about. </p><p><a href="https://brian.gerkey.org/" rel="noopener noreferrer" target="_blank">Brian Gerkey</a>, who helped build ROS in the mid-2000s, says he was drawn to the project because of how much open source had already changed the world, pointing out that nearly the entire internet <a href="https://www.hbs.edu/ris/Publication%20Files/24-038_51f8444f-502c-4139-8bf2-56eb4b65c58a.pdf" rel="noopener noreferrer" target="_blank">is built on it</a>. </p><p>“I’m a tool builder, and I like to share everything as openly as I possibly can, because I think that’s where we get the most impact out of what we build,” says Gerkey, board chair of Open Robotics and now CTO at <a href="https://www.intrinsic.ai/" rel="noopener noreferrer" target="_blank">Intrinsic</a>, a robotics and AI unit of Google.</p><p>As it was developing, the AI community largely took the same approach, sharing research, models, and data openly, and the field accelerated faster than almost anyone predicted. Now some of those same advancements are arriving in robotics.</p><h2>Open-source AI for robotics</h2><p>Computer vision, once a hard problem, has advanced dramatically in just a few years, says <a href="https://www.linkedin.com/in/spencermhuang/" rel="noopener noreferrer" target="_blank">Spencer Huang</a>, Nvidia’s director of product for robotics. What once required significant expertise can now be done in a few lines of code. Simulation tools have become accurate enough to be useful for training, and access to the tooling that once required a specialized lab is now widely available, much of it open source.</p><p>“To get into robotics, you no longer need a Ph.D.,” he says. The result is a much larger pool of people who can contribute, and the field is starting to look less like a specialized discipline and more like a platform that anyone can build on.</p><p>Nvidia has built out an open-source robotics stack that covers the full development pipeline. Its <a href="https://www.nvidia.com/en-us/ai/cosmos/" rel="noopener noreferrer" target="_blank">Cosmos world models</a> generate synthetic training data and simulate physical environments. Its <a href="https://huggingface.co/blog/nvidia/gr00t-n1-7" rel="noopener noreferrer" target="_blank">GR00T models</a> give robots the ability to reason through and execute complex tasks. And its <a href="https://developer.nvidia.com/isaac" rel="noopener noreferrer" target="_blank">Isaac frameworks</a> handle the orchestration that ties training, simulation, and deployment together. Not everyone needs to train the robots from scratch, Huang says, and most people probably shouldn’t.</p><p>“If you gate pre-training, the field just never grows,” he says. “We should be able to provide a high-quality, state-of-the-art pre-trained model that anyone can go and take and fine tune for their own purposes.”</p><p>All of Nvidia’s open-source models live on Hugging Face, the open-source AI platform that has become the default place to share models and datasets. <a href="https://huggingface.co/lerobot" rel="noopener noreferrer" target="_blank">Hugging Face launched LeRobot</a>, a community platform for robotics AI, in May 2024. Since its launch, the number of robotics datasets on the platform grew from 1,145 at the end of 2024 to more than 58,000 today, making it the single largest dataset category on the hub.</p><p>Hugging Face has also moved into hardware, acquiring robotics company <a href="https://www.pollen-robotics.com/" rel="noopener noreferrer" target="_blank">Pollen Robotics</a>. The acquisition came from a realization that software alone was not enough, according to <a href="https://www.linkedin.com/in/clementdelangue/" rel="noopener noreferrer" target="_blank">Clement Delangue</a>, Hugging Face’s CEO. The goal, as with the software, was to bring more people in.</p><p>The contributors to LeRobot include the biggest names in the industry, academic labs, and hobbyists building robots in their spare time. For instance, earlier this year, Alibaba <a href="https://arxiv.org/abs/2602.14979v1" rel="noopener noreferrer" target="_blank">released RynnBrain</a>, an open-source foundation model for physical AI that the company claims outperforms comparable offerings from Google and Nvidia on benchmarks. That diversity of projects, Delangue says, is important. </p><p>“It is not just one model or one dataset or one hardware,” he says. “It is a lot of small contributions that everyone can be part of.”</p><h2>Commercial incentives muddle the field</h2><p>The stakes, Delangue says, go beyond convenience. A world where only a few proprietary systems control the robots in people’s homes is a concerning one. “Having robots at home that you don’t really understand, that you don’t really control, that a few people in Silicon Valley control is a scary thought,” he says. “Open source gives an alternative path.”</p><p>But getting there is not straightforward. The open sourcing happening now looks different from what produced ROS, which emerged largely from academics pooling their work with no commercial stake in the outcome. The biggest contributors today are companies with clear business reasons to want more people building on their platforms. That’s not necessarily a bad thing, says <a href="https://engineering.oregonstate.edu/people/bill-smart" rel="noopener noreferrer" target="_blank">Bill Smart</a>, a professor at Oregon State University, in Corvallis, who was part of the early open-source robotics community. But the incentives are worth being aware of.</p><p>He also worries that the lowered barrier to entry has a downside. Researchers coming from AI without a robotics background are sometimes solving problems the field already solved. A newcomer might spend a week training a neural network to move a robot’s hand from one point to another, unaware that the same task can be accomplished with a few lines of code using decades-old techniques. The incentives are not always pointing in the same direction as the progress.</p><p>Smart is not without hope though. Whatever the motives behind the open sourcing, he says, the effect is real. More people are in the field than ever before, the tools are genuinely easier to use, and the community is bigger and more diverse than anything that existed when ROS was getting started. </p><p>“Anyone can make a robot move now,” he says. “As an old tech guy, that makes me happy and sad, because I’m no longer special.”</p>]]></description><pubDate>Thu, 21 May 2026 14:00:02 +0000</pubDate><guid>https://spectrum.ieee.org/open-source-robot-ai-platforms</guid><category>Open-robotics</category><category>Robot-ai</category><category>Huggingface</category><category>Ros</category><category>Nvidia</category><dc:creator>Jackie Snow</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-smiling-emoji-with-red-eyes-and-a-grey-face-resembling-a-robot.jpg?id=66750560&amp;width=980"></media:content></item><item><title>The Future of Physical AI Isn’t Smarter Robots, It’s Smarter Interfaces</title><link>https://spectrum.ieee.org/wetour-robotics-physical-ai-human-interfaces</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/hands-controlling-speaker-light-bulb-and-drone-against-minimalist-white-walls.jpg?id=66718902&width=1200&height=800&coordinates=291%2C0%2C291%2C0"/><br/><br/><p><em>This sponsored article is brought to you by <a href="https://wetourrobotics.com/" target="_blank">Wetour Robotics</a>.</em></p><p>A field technician on a wind turbine, harness clipped, both hands on a wrench, needs to send a command to the diagnostic device hanging at her belt. A logistics worker on a loading dock, gloves on, eyes on the pallet, needs to redirect a connected lift. A person using an assistive mobility device on a crowded street wants to nudge it forward without taking out a phone or speaking aloud. None of these moments call for a smarter robot. They call for a smarter way to be heard by the machines that already exist.</p><h2>The industry has been building from one side</h2><p>The past three years of Physical AI have been a story of remarkable progress on the robot side of the loop. Companies like Boston Dynamics, Figure, and Unitree have advanced actuators, locomotion, and dexterity to a level that would have seemed implausible a decade ago. Google DeepMind’s Gemini Robotics has redefined what vision-language-action models can do in unstructured settings. The trajectory of the hardware and the foundation models is real, and it is accelerating.</p><p>But there is another side to this loop, and it has been treated as a solved problem for too long. The interface between humans and machines has defaulted, for 40 years, to three input modalities: screens, buttons, and voice. Each of those assumes the user can stop, look down, and translate intent into structured commands. That assumption breaks the moment the work moves into a real environment. On a turbine. On a dock. On a sidewalk. In any setting where hands are occupied, eyes are committed, or speaking is impractical, the conventional interface stack quietly fails.</p><p class="pull-quote">Spatial Intent Fusion is the simultaneous processing of three streams of human-centered information, namely spatial position, visual context, and gestural intent: Your body is the interface.<br/></p><p>The bottleneck on the human side of the loop is becoming as important as the one on the machine side. And solving it requires a different question. Not how do we make the robot more capable, but how do we let the human participate in the computing system as naturally as the robot already does.</p><h2>Wetour Robotics’ bet: put the human back into the computing loop</h2><p><a href="https://wetourrobotics.com/" target="_blank">Wetour Robotics</a> is betting that the next architectural leap in Physical AI is not about making the robot more capable. It is about making the human a first-class node in the computing network, with the same kind of low-latency, high-fidelity participation that connected devices already enjoy.</p><p>Wetour Robotics’ engineers frame the problem this way: a wristband that recognizes a gesture is not enough. A camera that recognizes a scene is not enough. The information a human carries about what they are about to do is distributed across multiple channels, including where their body is in space, what their eyes are attending to, and what their muscles are preparing to do, and any single channel observed in isolation is ambiguous. Reconstructing intent reliably means fusing those channels at the operating system level, with latency low enough that the loop feels closed rather than mediated.</p><p>This approach has a name. Wetour Robotics calls it Spatial Intent Fusion: the simultaneous processing of three streams of human-centered information, namely spatial position, visual context, and gestural intent, fused into a single real-time command for any connected physical device. It is the technical implementation behind a simpler positioning statement the company uses externally: your body is the interface.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Sleek silver rectangular electronic device labeled \u201cORCHESTRA\u201d on a light gray background." class="rm-shortcode" data-rm-shortcode-id="bb58b16b7b8b65030fe32d2ff82e4ee2" data-rm-shortcode-name="rebelmouse-image" id="1af08" loading="lazy" src="https://spectrum.ieee.org/media-library/sleek-silver-rectangular-electronic-device-labeled-u201corchestra-u201d-on-a-light-gray-background.png?id=66718892&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">Orchestra is a portable intelligent hub running the operating system that handles sensor fusion, intent inference, command translation, and safety arbitration. The reference compute platform is NVIDIA Jetson Orin Nano Super, which provides enough on-device inference capacity to keep the entire control loop at the edge, with no cloud dependency on the critical path. </small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Wetour Robotics</small></p><h2>The architecture: three layers, four engines, one loop</h2><p>Orchestra is not a single device but a layered platform, designed from the start to be sensor-flexible and actuator-agnostic. The architecture decomposes into three perception layers and four coordination engines.</p><p><strong>Orchestra</strong> itself is the local compute and orchestration core: a portable intelligent hub running the operating system that handles sensor fusion, intent inference, command translation, and safety arbitration. The reference compute platform is NVIDIA Jetson Orin Nano Super, which provides enough on-device inference capacity to keep the entire control loop at the edge, with no cloud dependency on the critical path. Edge inference is non-negotiable for this application. Full-chain latency from biosignal acquisition to actuator command is held under 100 milliseconds, the envelope inside which closed-loop control feels natural rather than laggy.</p><p><strong>VisionLink</strong> handles visual and spatial perception. Cameras feed into vision models that identify objects, estimate distances, and track environmental context. VisionLink is designed not as a passive recognition layer but as a real-time command generator: its outputs feed directly into Orchestra OS to be fused with biosignal data.</p><p><strong>Conductor</strong> is the biosignal pipeline. It ingests raw surface electromyographic (sEMG) data from a wrist-worn device, classifies temporal patterns into discrete gestures or continuous control signals, and outputs actuator commands. The technically interesting property of sEMG for this use case is that the signal precedes visible motion. Motor unit action potentials appear at the skin surface roughly 50 to 80 milliseconds before a finger completes the corresponding gesture. Wetour Robotics calls this property pre-motion intent sensing, and it is what allows Orchestra to anticipate user intent rather than react to it.</p><p>On top of the three perception layers, Orchestra OS runs four coordination engines. The <strong>Perception Engine</strong> ingests and normalizes raw sensor streams. The <strong>Intent Engine </strong>performs Spatial Intent Fusion across modalities, resolving what the user is trying to do given where they are, what they are looking at, and what their hand is signaling. The <strong>Orchestration Engine</strong> translates intent into device-specific command sequences for any connected actuator. The <strong>Safety Engine</strong> arbitrates conflicting commands, enforces operational envelopes, and gates execution against runtime safety conditions.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="cadc408927185275af6d15b314d998a0" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/WOUjWM4hIko?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><h2>The trade-offs we’re honest about</h2><p>No system that bridges the human body and the digital world is finished. Three engineering challenges remain open, and the company addresses each with a deliberate trade-off rather than a claim of having fully solved it.</p><p><strong>Baseline stability of sEMG under motion.</strong> In a stationary user, continuous gesture recognition from sEMG is reliable. Once the user is walking, climbing, or otherwise moving, motion artifacts and electrode drift degrade the signal in ways that are difficult to fully compensate for. Rather than overpromise on continuous control in dynamic settings, Orchestra defaults to a smaller set of robust discrete gestures in complex operating environments, and reserves continuous control modes for contexts where the signal-to-noise ratio supports them.</p><p><strong>Miniaturization of edge AI compute.</strong> Running the Orchestra control loop entirely at the edge requires real on-device inference, which has historically meant trading off between compute capacity, battery life, and form factor. Wetour Robotics’ approach has been a compact carrier board paired with a thermal design and a battery module sized for all-day wearability. The result is a hub that travels with the user rather than tethering them to a desk, and that performs the full perception-to-actuation loop without offloading to the cloud.</p><p><strong>Heterogeneity of third-party device protocols.</strong> The actuator side of the loop is a fragmented landscape. Different manufacturers expose different command interfaces, different communication stacks, and different safety conventions, and a Physical AI operating system has to integrate with all of them. Wetour Robotics uses an AI-agent layer to negotiate connection and protocol translation adaptively, so that Orchestra OS can ingest data from a wide range of devices, run them through neural network models that infer human intent, and emit the right command on the right protocol for the device on the other end.</p><h2>Why this matters, and why it helps the rest of the field</h2><p>The history of computing is a history of interface revolutions. Command lines gave way to graphical user interfaces, which gave way to touch, which gave way to voice. Each transition expanded who could participate in the system and what they could do with it. The next transition is not about a new screen or a new microphone. It is about treating the human body itself as a participant in the computing network, capable of contributing intent at the same speed and fidelity that any other connected node can.</p><p class="pull-quote">The history of computing is a history of interface revolutions. The next transition is not about a new screen or a new microphone — it is about treating the human body itself as a participant in the computing network.</p><p>This path is not a competitor to the work being done on humanoid robots, foundation models for embodied AI, and dexterous manipulation. It is the missing complement to that work. The hardest open problem for humanoid systems is the data: every natural interaction between a human and the physical world is a potential training signal, and most of those interactions are currently invisible to any computing system. As more humans become first-class nodes in the loop, those interactions become observable, structured, and ultimately useful for training the next generation of embodied AI, including the humanoid robots being developed today.</p><p>In other words: putting the human back into the computing loop is not just about better interfaces for individual users. It is about generating the kind of grounded, in-the-wild human-machine interaction data that the broader Physical AI ecosystem will need to keep advancing. The robot side and the human side of the loop are not two competing futures. They are two halves of the same one.</p><p>That is what Wetour Robotics means when it says: <em>Your body is the interface.</em></p><p>Learn more at <a href="https://wetourrobotics.com/" target="_blank">wetourrobotics.com</a>.</p>]]></description><pubDate>Thu, 21 May 2026 10:00:02 +0000</pubDate><guid>https://spectrum.ieee.org/wetour-robotics-physical-ai-human-interfaces</guid><category>Interfaces</category><category>Physical-ai</category><category>Robot-hardware</category><category>Smarter-robots</category><dc:creator>Wetour Robotics</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/hands-controlling-speaker-light-bulb-and-drone-against-minimalist-white-walls.jpg?id=66718902&amp;width=980"></media:content></item><item><title>Will Robotics Have a ChatGPT Moment?</title><link>https://spectrum.ieee.org/robotics-ai-breakthrough</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-collection-of-5-robots-against-colored-backgrounds.jpg?id=66734221&width=1200&height=800&coordinates=24%2C0%2C24%2C0"/><br/><br/><p>Over the next few decades, billions of autonomous, AI-powered robots will work alongside people in factories, perform tedious tasks in warehouses, care for the elderly, <a href="https://spectrum.ieee.org/collections/darpa-subterranean-challenge/" target="_blank">assist in unsafe disaster areas</a>, deliver packages and food to our doorsteps, and eventually help out in our homes. Some will look like us, and many won’t. What is certain is that regardless of form factor, robots will all rely heavily on AI in order to deliver real-world value.</p><div class="rm-embed embed-media"><iframe height="110px" id="noa-web-audio-player" src="https://embed-player.newsoveraudio.com/v4?key=q5m19e&id=https://spectrum.ieee.org/robotics-ai-breakthrough?draft=1&bgColor=F5F5F5&color=1b1b1c&playColor=1b1b1c&progressBgColor=F5F5F5&progressBorderColor=bdbbbb&titleColor=1b1b1c&timeColor=1b1b1c&speedColor=1b1b1c&noaLinkColor=556B7D&noaLinkHighlightColor=FF4B00&feedbackButton=true" style="border: none" width="100%"></iframe></div><p><span>In 2025, total investments in robotics companies reached </span><a href="https://www.cbinsights.com/research/report/venture-trends-2025/" target="_blank">a record US $40.7 billion, accounting for 9 percent of all venture funding</a><span>. The multibillion dollar question therefore is this: What will it take for AI-powered robots to begin to have a serious economic impact? Many of today’s robotics and AI companies are making bold claims, such as that humanoid robots will </span><a href="https://www.1x.tech/" target="_blank">soon be coming into our homes</a><span>, but there’s still a big gap between promise and reality.</span></p><p><span></span><span>The promise of robots that live and work alongside us has been the stuff of science fiction for a very long time. And while many programmers have tried to make that promise a reality, the physical world is just too complicated for traditional computer programs to handle the endless complexity it presents. Thanks to AI, robots are no longer being programmed—instead, they learn to operate in the real world. With enough practice, they can learn to perceive and understand the world around them, reason about that world, and use that reason and understanding to perform tasks that are useful, reliable, and safe.</span></p><p>The two of us have worked at the forefront of AI and robotics for the last decade, as a <a href="https://engineering.oregonstate.edu/people/jonathan-hurst" target="_blank">Professor in Robotics at Oregon State University</a> and <a href="https://www.agilityrobotics.com/about/leadership" target="_blank">Co-Founder of Agility Robotics</a>, and as <a href="https://www.linkedin.com/in/hanspeter/" rel="noopener noreferrer" target="_blank">former CEO</a> of the <a href="https://everydayrobots.ai/" rel="noopener noreferrer" target="_blank">Everyday Robots moonshot at Google X</a>. Our experience deploying AI-powered robots in real-world settings has given us a perspective on where AI can be used to great benefit in complex robotic systems in the near term and where we are still on the frontier of science fiction. We believe AI will enable an inflection point in robotics advances, but that it will be through the well-engineered application of coordinated systems of different AI tools rather than a single ChatGPT-style breakthrough.</p><p>As the excitement around AI is matched only by the uncertainty of what will be possible, here are five hard truths that will define AI in robotics.</p><h2>1. The YouTube-to-Reality Gap Is Real</h2><p>For years, we have been seeing videos on YouTube with humanoid robots performing amazing moves on everything from a dance floor to an obstacle course. The inside knowledge in robotics is to “never trust a YouTube robot video.” The gap between real robots that can perform real work in unstructured human environments and carefully scripted and edited robot performances remains significant. The latest performance to get a lot of attention was a <a href="https://www.youtube.com/watch?v=mUmlv814aJo" rel="noopener noreferrer" target="_blank">martial arts show</a> featuring Unitree humanoid robots performing with children at the Chinese 2026 Spring Festival Gala. While impressive, this falls into a long lineage of tightly scripted robotic performances, where everything has been carefully choreographed and planned in advance. The low-level controls, synchronization, and choreography were stunning, yet the Spring Gala robot performance showed a level of autonomy and intelligence much closer to industrial robots building cars in a factory than something that will show up in your living room any time soon. </p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="d5c524bfa673932ad736d1599aad9c93" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/mUmlv814aJo?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span> </p><p><span>Seeing these kinds of demos nevertheless raises questions about where robotics really is. If robots can perform kung fu moves and do backflips and dance, why aren’t they also showing up on factory floors yet? And why can’t they do the dishes in my home after dinner? The simple answer is this: Making AI-powered robots capable of performing general tasks in varied human environments is still </span><em><em>really</em></em><span> hard. While impressive technological feats like those at the Spring Festival may make it look like we could be very close, the use of AI in these demos is only for low-level motor control (to keep the robots from falling over) and therefore is only a small part of the solution for robots to be general purpose in the real, unstructured spaces where we humans live and work.</span></p><h2>2. Data Is An Unsolved Challenge</h2><p>Large Language Models (LLMs) like OpenAI’s ChatGPT and Anthropic’s Claude were initially trained on an internet-scale database of text. The world woke up one day in late 2022 to ChatGPT demonstrating that AI computers could suddenly “speak” to us in prose or verse and about seemingly any topic. LLMs have turned out to generalize well and are now able to take multimodal input (text, images, video) and produce multimodal output. Importantly, the corpus of training data was both enormous and human-generated, which are characteristics that form the gold standard for AI training.</p><p class="shortcode-media shortcode-media-rebelmouse-image rm-float-left rm-resized-container rm-resized-container-25" data-rm-resized-container="25%" style="float: left;"> <img alt="A series of four images, including robots working in a contained factory space, in an open indoor factory, outdoors in the real world delivering a package, and working with a human to move a couch in an apartment." class="rm-shortcode" data-rm-shortcode-id="f8dd8681a93fee0b55cfebeab420789a" data-rm-shortcode-name="rebelmouse-image" id="a0903" loading="lazy" src="https://spectrum.ieee.org/media-library/a-series-of-four-images-including-robots-working-in-a-contained-factory-space-in-an-open-indoor-factory-outdoors-in-the-real.jpg?id=66734272&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">The fastest path to robots as part of everyday life may emerge through a range of robot forms performing increasingly sophisticated applications and employing a range of AI tools.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Agility Robotics</small></p><p>Giving AI a body (in the form of a robot), so that it can engage with people in the physical world, continues to be a very difficult and broadly unsolved problem. AI models for general-purpose robotics must simultaneously satisfy multiple, often conflicting, physical, geometric, and temporal limitations while operating in unstructured, dynamic environments. In order to generalize, robot models need to be trained on data gathered in a high-dimensional configuration space, where “dimensions” represent text, lighting conditions, degrees of freedom, joint limits, velocities, force, and safety boundaries, just to mention a few. Importantly, this must be <em><em>good</em></em> data—it must contain many examples from what amounts to an infinite number of possible configurations in the physical world.</p><p>Since there are very few existing sources of data like this, approaches like teleoperation, video analysis, motion capture of humans, and self-exploration in simulation and in the real world are all seen as important ways to collect data. It’s a herculean task. For example, at Everyday Robots at Google X, we ran 240 million robot instances in our simulator over the course of 2022 to collect training data, mostly to train a trash-sorting model. Similar amounts of data will be needed for every skill to get to a similar level of capability, which is not yet human level.</p><h2>3. There Will Be No Single Robot AI</h2><p>We are far away from a moment where a single AI model might allow general-purpose robots to live and work alongside us. </p><p>General-purpose robots can have wheels or legs. They can have one, two, three, or more arms. Some have propellers and can fly, while others may be designed to operate under water. Some will drive on busy roads. The physical world is infinitely varied and complex. And then there are all the people and other animals that will be surrounding the robots. How do you train a model to operate a robot safely and reliably in all of these settings? The simple answer is: You don’t. At least not for quite some time.</p><p>We believe the winning AI architecture leading to the next big breakthroughs in general-purpose robotics will be “agentic AI” for robots, which are high-level coordinating models that can reason, plan, use tools, and learn from outcomes to execute complex tasks with limited supervision. Agentic, high-level models running on robots will invoke a system of specialized ones for different types of tasks. We will likely soon see multiple robots collaborating and coordinating with each other through their onboard agentic AI models.</p><p>AI tools are unlocking new and powerful capabilities in robotics, which in turn will enable new solutions and new markets. It’s encouraging to see these new models being made broadly available, some even as open-source solutions. This availability is akin to what happened with the internet: Real progress occurred when it became ubiquitous. We anticipate an inevitable democratization of complex behaviors in robotics with wide access to these AI tools and technologies.</p><h2>4. Hardware Is Still Very Hard</h2><p>Robots are complex systems with many parts that all need to work together with great precision. For a robot to be useful and safe, every part of it must be coordinated, from its perception systems to the computer controlling it, all the way down to its individual actuators.</p><p>Actuators—that is, the motors and gears—are a good example of an important part of the robot where what got us here won’t get us there. The actuators used at scale by most industrial robots will not work for robots that will operate in human environments. If these robots accidentally collide with an obstacle, the resulting impacts are harsh, forces are high, and things break. Humans don’t move in this way. We are far more compliant in how we interact with the world, and we’re constantly making contact with our environment and using that contact to help us accomplish things. </p><p>Consider the challenge of inserting a key in a lock: Humans typically don’t do this by aligning the key perfectly with the keyhole. Instead, we just feel for the edge of the keyhole and jiggle the key in. Robots need to be able to operate in novel ways to achieve comparable capabilities by using a new class of actuators that are sensitive to force and able to have a compliant interaction with the environment. While these kinds of actuators do exist, they are not yet generally available at scale for robot systems designed to operate around people.</p><h2>5. Real Value Comes From “Easy” Tasks</h2><p>There’s a big difference between tasks that look impressive and real-world tasks that provide value. Robotics is a perfect example of <a href="https://en.wikipedia.org/wiki/Moravec%27s_paradox" target="_blank">Moravec’s paradox</a>, which states that tasks that are hard for humans are easy for computers (like multiplying two big numbers), and tasks easy for humans (like a toddler’s movements) are extremely difficult for computers and robots.</p><p>Serving customers is an unforgiving reality check, because customers only care about solving the real problems they have. If we are to deploy AI-based robot solutions, they must outperform the way things are currently done while demonstrating reliable performance metrics and safety. Agility Robotics’ early work to deploy our humanoid robot Digit in customer locations led to the realization that our first obstacle was safety: Robots that balance and manipulate objects in human spaces bring new types of risk to the workplace. In the first <a href="https://www.youtube.com/watch?v=AJpTpUqjgrY" target="_blank">humanoid deployments</a>, physical barriers were necessary, and Agility kicked off a multi-year engineering effort to solve the safety challenge, touching nearly every aspect of robot design and relying heavily on new AI-based approaches to human detection and behavior control.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="2e10035a69200933f1594941bc6121ce" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/E2g1APtSuUM?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span> </p><p><a href="https://everydayrobots.ai/vision" target="_blank">Everyday Robots</a> at Google deployed robots in 2019 that worked autonomously in office buildings doing chores like cleaning cafe tables and sorting trash. We quickly learned how “messy” and difficult the real world is for a robot. This experience informed the architecture and deployment of our AI systems while also gathering real-world data that could be combined with simulation data for training and improving models.</p><p>This focus on creating a product to meet specific customer needs and deploying robots in real-world settings is the only way to inform the structure of the AI tools and infrastructure for near-term utility on a path towards long-term broader capability and generality. There will be no “aha” moment, no silver bullet algorithm, and no volume of data sufficient to produce a general-purpose robot without extensive real-world experience. </p><h2>AI Robots Are Coming, One Step at a Time</h2>As we look to the future, there is no doubt that the world is bringing AI into the physical world through robots. We are at the beginning of a “<a href="https://spectrum.ieee.org/is-a-cambrian-explosion-coming-for-robotics" target="_self">Cambrian explosion</a>“ of useful, intelligent machines. We believe AI is not one tool, but a huge frontier of technical approaches that is unlocking new capabilities so powerful, they will define our economy moving forward. This will happen not in one single definitive moment, but as an ongoing set of small and large breakthroughs, where AI-driven robots begin to provide real value in a few tasks, and then a few more, with impacts unfolding across numerous $100 billion-plus markets that will dramatically improve the quality of our lives.]]></description><pubDate>Wed, 20 May 2026 11:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/robotics-ai-breakthrough</guid><category>Robotics</category><category>Everyday-robots</category><category>Agility-robotics</category><category>Artificial-intelligence</category><dc:creator>Hans Peter Brondmo</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-collection-of-5-robots-against-colored-backgrounds.jpg?id=66734221&amp;width=980"></media:content></item><item><title>Robots Could Turn E-Waste Into a Source of Legacy Chips</title><link>https://spectrum.ieee.org/e-waste-recycling-robots-ram</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-robotic-arm-holding-a-circuit-board.jpg?id=66763729&width=1200&height=800&coordinates=0%2C83%2C0%2C84"/><br/><br/><p>Electronic waste is moving up on regulatory agendas in 2026. New European <a href="https://environment.ec.europa.eu/topics/waste-and-recycling/waste-shipments_en" rel="noopener noreferrer" target="_blank">waste-shipment</a> rules, expanded recycling fees on <a href="https://cdtfa.ca.gov/taxes-and-fees/covered-electronic-waste-recycling-fee/covered-battery-embedded.htm" rel="noopener noreferrer" target="_blank">products with non-removable batteries</a> in California, and an <a href="https://www.trade.gov/market-intelligence/malaysia-waste-import-policy-and-restrictions" rel="noopener noreferrer" target="_blank">e-waste import ban</a> in Malaysia, for example, are all increasing pressure to recover more value before electronics are shredded or exported.</p><p>The world is projected to generate 82 million tonnes of <a data-linked-post="2669544726" href="https://spectrum.ieee.org/e-waste" target="_blank">e-waste</a> annually by 2030, according to the United Nations’ most recent <a href="https://ewastemonitor.info/the-global-e-waste-monitor-2024/" rel="noopener noreferrer" target="_blank">Global E-Waste Monitor</a> report in 2024. The report estimated that current e-waste management captures less than a third of the recoverable metal value contained in discarded electronics. </p><p>For recyclers, much of that lost value is a consequence of what happens before a circuit board ever reaches a smelter or shredder. Boards contain a mixture of components such as memory chips, processors, magnets, and capacitors, as well as valuable raw materials such as copper, aluminum, tantalum, and precious metals. Conventional recycling often mixes everything into bulk streams and destroys components that might otherwise be reused.</p><p><a href="https://www.tuurny.com/" target="_blank">Tuurny</a>, a startup based in San Francisco, is developing an automated system to remove and separate reusable chips from circuit boards before the remaining material is shredded. In April, the company <a href="https://finance.yahoo.com/sectors/technology/articles/tuurny-deploys-physical-ai-address-235700358.html" rel="noopener noreferrer" target="_blank">announced</a> it had designed a robotic system, called Nantul, to identify and extract RAM integrated circuits, claiming each machine can recover 300 intact RAM ICs per hour. </p><p><a href="https://www.linkedin.com/in/sinaghashghaei" rel="noopener noreferrer" target="_blank">Sina Ghashghaei</a>, Tuurny’s founder, says the company is preparing its first field deployment with dozens of machines through a six-figure deal with Areera, a television recycler in the United Kingdom, which processes 1,500 tonnes of televisions per month. The deployment is planned for early 2027. </p><p>Tuurny’s first target is recovering RAM ICs and other chips used in legacy systems where replacement components can be difficult to source. Ghashghaei says the company is talking with a few legacy chip suppliers and pursuing potential agreements to supply aluminum and copper recovered from circuit boards to smelters and refiners. He declined to identify the companies involved. </p><h2>Robots for Automated RAM Recovery</h2><p>Traditional electronics recycling often begins by shredding boards and sorting the mixed output afterward. Tuurny aims to do the opposite: Identify and remove components first, sort them by model or material, then reroute the recovered items to testing labs for potential reuse as new chips or to refiners and smelters for further processing. </p><p>Nantul comprises three robotic systems in one. The first is an arm to continuously feed the component-removal robots, paired with two tabletop machines similar to 3D printers or computer numerical control (CNC) machines. A neural network identifies and catalogs components, then searches the internet for manufacturers’ thermal-profile specifications. Nantul uses those specifications to employ a combination of suction, controlled heat, computer vision, and robotic controls to remove chips while minimizing damage. Recovered items are then sorted by model number in material-specific groups. </p><p>“We’re creating a new supply chain from old feedstock that didn’t exist before,” Ghashghaei says, adding that manual recovery is expensive and difficult to scale. </p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A circuit board layout displayed on a computer screen as a software program isolates its RAM components." class="rm-shortcode" data-rm-shortcode-id="391d8586f811fc1502342968ca3dcc7f" data-rm-shortcode-name="rebelmouse-image" id="d6831" loading="lazy" src="https://spectrum.ieee.org/media-library/a-circuit-board-layout-displayed-on-a-computer-screen-as-a-software-program-isolates-its-ram-components.jpg?id=66763748&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">Tuurny’s recovery system includes a computer vision system that identifies specific RAM components to assess them for recovery.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Tuurny</small></p><p><a href="https://engineering.tamu.edu/mechanical/profiles/zheng-minghui.html" target="_blank">Minghui Zheng</a>, an associate professor of mechanical engineering at Texas A&M University, in College Station, who studies robotic disassembly and electronics recycling systems, says Tuurny’s approach appears technically feasible, especially when focused on the narrow, valuable target of recovering RAM from more controlled e-waste streams. </p><p>“RAM is a good starting point because it has relatively high reuse value and is more standardized than many other electronic parts,” Zheng says. The harder challenge, however, is removing chips “without heat, mechanical, or electrical damage, and making sure it still works reliably afterward.”</p><p>Used circuit boards can vary by layout, markings, age, contamination, solder condition, or prior damage. A robot has to identify the correct component, choose a removal strategy, apply heat locally, lift the part cleanly, and preserve enough information about the part for downstream testing and resale.</p><h2>E-Waste Recycling Strategies</h2><p>Ghashghaei says Tuurny is building small modular machines using off-the-shelf parts, custom controls, and <a href="https://developer.nvidia.com/embedded/jetson-nano" target="_blank">Nvidia Jetson Nano</a> hardware. The company is trying to keep costs down by reducing hardware complexity to arrive at a price point far below centralized industrial equipment used at large facilities. He says the biggest challenge from an engineering perspective has been developing the autonomous computer vision and robotic control. </p><p>Last year, the four-person startup received a <a href="https://finance.yahoo.com/news/tuurny-announces-breakthrough-ai-powered-140800548.html" target="_blank">NASA-funded grant</a> to support an AI-powered repair assistant for printed circuit boards that used computer vision and a custom large language model (LLM) to guide technicians. </p><p>Ghashghaei says Tuurny pivoted from board repair to e-waste processing after concluding that discarded electronics represented a larger market amid growing interest in the U.S. around <a href="https://spectrum.ieee.org/rare-earth-elements-2666461932" target="_self">on-shoring capacity for critical minerals and rare earths</a>. The pivot also positions Tuurny to potentially address supply chain concerns around legacy chips for systems in telecom, aerospace, defense, and other industries where equipment remains in service long after chips leave mainstream production.</p><p>In practice, Zheng says the main challenge in making robotic disassembly of electronics commercially viable is ensuring it’s adaptable enough to handle the large variability in e-waste while keeping costs reasonable. </p><p>“Every electronic product is different, and used boards may be damaged, dirty, or arranged differently. The robot must be able to find the right parts, remove them carefully, and avoid damaging them in real time, which creates major challenges for robotic perception, decision-making, planning, and manipulation,” Zheng says. “Economically, the recovered parts should be valuable enough to justify the costs of the robot, sensing, testing, maintenance, labor, and scaling up the process.” </p><p>For smelters and refiners, the question may be whether Tuurny can supply predictable material streams at commercial volumes. Ghashghaei acknowledged that Tuurny’s scaling efforts could run into its own supply chain constraints in trying to acquire enough components to build more robots. </p><p>Zheng called Tuurny’s approach promising but still early. “For now, it is more realistic as a targeted recovery strategy for valuable components like RAM,” Zheng says. “The key question is whether the robotic disassembly technology can work reliably, affordably, and at scale.” </p>]]></description><pubDate>Tue, 19 May 2026 17:41:14 +0000</pubDate><guid>https://spectrum.ieee.org/e-waste-recycling-robots-ram</guid><category>E-waste</category><category>Robotics</category><category>Electronics-recycling</category><category>Computer-vision</category><dc:creator>Shannon Cuthrell</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-robotic-arm-holding-a-circuit-board.jpg?id=66763729&amp;width=980"></media:content></item><item><title>Home Robot Safety Is All About Relationships</title><link>https://spectrum.ieee.org/domestic-humanoid-robot-safety-standards</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/close-up-of-an-elderly-persons-fingers-touching-the-silicon-hand-of-a-humanoid-robot.jpg?id=66748937&width=1200&height=800&coordinates=0%2C208%2C0%2C209"/><br/><br/><p>The International Organization for Standardization (ISO) is updating its <a href="https://www.iso.org/standard/53820.html" rel="noopener noreferrer" target="_blank">12-year-old safety requirements</a> for <a href="https://spectrum.ieee.org/stretch-4-home-robot" target="_blank">personal care robots</a>. A lot has happened since the last revision, both on the technology side and with researchers’ understanding of safety for humans collaborating with domestic robots. The proposed ISO update addresses hazard identification, risk assessment, and different use scenarios. It does not, however, set limits, propose testing methods, or have enforcement mechanisms that might address <a href="https://spectrum.ieee.org/humanoid-robot-scaling" target="_blank">the complexities of human-robot collaboration</a>. And that is a problem, argues technology policy researcher <a href="https://scholar.google.com/citations?user=KNzdhYYAAAAJ&hl=ko" rel="noopener noreferrer" target="_blank">Jae-Seong Lee</a> of the Electronics and Telecommunications Research Institute in Daejeon, South Korea.</p><p><strong>Why is the next revision of ISO 13482 a big deal?</strong><br/><strong>Jae-Seong Lee:</strong> The standard is moving into final approval at a moment when domestic humanoid robot makers are shifting from lab prototypes to products aimed at real homes, real caregivers, and real families. That matters because the standard does more than specify geometry and impact limits. It helps define what counts as acceptable robot behavior in the messy world of everyday life.</p><p><strong>What is the core engineering problem?</strong><br/><strong>Lee:</strong> It is not simply whether a robot can avoid collisions or detect people in its path. The harder problem is that human-robot interaction is bidirectional. The robot changes what the human does, and the human changes what the robot perceives and does next. In other words, safety is not a fixed property of the machine alone; it emerges from the relationship.</p><p><strong>Isn’t that already covered by current safety standards?</strong><br/><strong>Lee: </strong>Only partially. ISO 13482 addresses personal care robots through hazard identification, risk assessment, and intended use scenarios, and related guidance acknowledges noncontact hazards such as unpredictability and incorrect autonomous decisions. But it stops short of binding compliance criteria, test methods, or enforcement mechanisms for the hazards produced by the human-robot relationship.</p><p class="pull-quote">The technical community understands bidirectional coupling, and the standards framework acknowledges relevant hazards, but no current standard fully converts that knowledge into enforceable rules for domestic autonomy.—Jae-Seong Lee</p><p><strong>Why can’t engineers just better define a robot’s operating envelope?</strong><br/><strong>Lee:</strong> Because the value proposition of a domestic humanoid depends on operating in uncontrolled environments. A robot that is safe only in standardized rooms, with healthy adults, under well-defined conditions is not really a domestic humanoid at all. </p><p>In industrial robotics, designers can usually bound the task, the workspace, and the population. In a home, the robot must adapt to elderly residents, children, visitors, pets, clutter, tight spaces, and fluctuating human behavior. Those aren’t edge cases. Those are the baseline. Tightening the domain to be more like that of factory robots would make the home robots less useful. </p><p><strong>The proposal mentions training data. Why does that matter?</strong><br/><strong>Lee:</strong> Because the data already reflect the diversity of domestic life. Companies building humanoid training datasets are reportedly sending paying contract workers around the world to record their chores in ordinary settings. That means the robots will be trained on real-world variability, not sanitized demonstrations. The safety problem is therefore in the composition of the entire human-robot system, not in any one component.</p><p><strong>What is the standards gap?</strong><br/><strong>Lee: </strong>The gap is governance. The technical community understands bidirectional coupling, and the standards framework acknowledges relevant hazards, but no current standard fully converts that knowledge into enforceable rules for domestic autonomy. What is missing is a way to specify safe behavior across the full range of human conditions the robot will actually encounter.</p><p>What’s also missing is a decision about who gets to decide whose behavior counts as normal. Whose gait sets the baseline? Whose is an acceptable risk threshold? Whose definition of safe judgment gets written into the requirement language? Those are value judgments, not purely engineering ones. A standards committee cannot avoid choosing a normative reference point; it can only decide whether that choice is explicit and inclusive.</p><p><strong>Who could help answer those questions?</strong><br/><strong>Lee: </strong>The proposal argues that the people most affected by domestic humanoids are not systematically represented in the working groups shaping the standard. It points especially to older adults, who are often the primary intended users of domestic care robots, yet whose movement patterns and cognitive states are not directly embedded in the standards process.</p><p>In other words, this revision acknowledges the hardest problems but pushes unresolved issues into advisory language, nonbinding guidance, or future revision scopes. That can be useful, but it also delays the real question: What counts as safe relational behavior in the home?</p><p><strong>What are the stakes?</strong><br/><strong>Lee: </strong>The risk is not only injury, though that is the obvious concern. The deeper risk is that safety assumptions get baked into products and standards before the market, regulators, and users have a chance to question them. Once deployment patterns harden, it becomes much harder to revise the baseline.</p><p><strong>What should the engineers on the standards bodies do about it?</strong><br/><strong>Lee: </strong>The engineers on the standards body should ask not just, “What are the robot’s outputs, and do they stay within safe thresholds?” but “What states does this robot engage with, and does that engagement remain safe across the full range of those states?” That shift sounds subtle, but it changes the design brief. It moves safety from machine-centric measurement toward system-level relational assurance.</p><p>Domestic humanoid safety cannot be solved by machine engineering alone. It requires a framework that treats the human not as background noise, but as part of the system, part of the definition of the safety envelope. </p>]]></description><pubDate>Tue, 19 May 2026 11:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/domestic-humanoid-robot-safety-standards</guid><category>Home-robots</category><category>Domestic-robots</category><category>Standards</category><category>Iso</category><category>Robot-safety</category><dc:creator>Lucas Laursen</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/close-up-of-an-elderly-persons-fingers-touching-the-silicon-hand-of-a-humanoid-robot.jpg?id=66748937&amp;width=980"></media:content></item><item><title>What Makes a Job Dull, Dirty, or Dangerous?</title><link>https://spectrum.ieee.org/dull-dirty-dangerous-robots</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/a-curbside-trash-can-being-lifted-by-a-mechanical-arm-attached-to-the-side-of-a-garbage-truck.jpg?id=66736070&width=1200&height=800&coordinates=0%2C74%2C0%2C74"/><br/><br/><p>For years, the field of robotics has used the terms “dull, dirty, and dangerous” (DDD) to describe the types of tasks or jobs where robots might be useful—by doing work that’s undesirable for people. A <a href="https://dl.acm.org/doi/10.1145/1349822.1349827" rel="noopener noreferrer" target="_blank">classic example of a DDD job</a> is one of “repetitive physical labor on a steaming hot factory floor involving heavy machinery that threatens life and limb.”</p><p><span></span><span>But determining which human activities fit into these categories is not as straightforward as it seems. What exactly is a “dull” task, and who makes that assumption? Is “dirty” work just about needing to wash your hands afterwards, or is there also an aspect of social stigma? What data can we rely on to classify jobs as “dangerous?” </span><a href="https://rai-inst.com/resources/papers/dull-dirty-dangerous-understanding-the-past-present-and-future-of-a-key-motivation-for-robotics/" target="_blank">Our recent work</a> (which was not dull at all) tackles these questions and proposes a framework to help roboticists understand the job context for our technology.</p><p>First, we did an empirical analysis of robotics publications between 1980 and 2024 that mention DDD and found that only 2.7 percent define DDD and only 8.7 percent provide examples of tasks or jobs. The definitions vary, and many of the examples aren’t particularly specific (for example, “industrial manufacturing,” “home care”). <span>Next, we reviewed the social science literature in anthropology, economics, political science, psychology, and sociology to develop better definitions for “dull,” “dirty,” and “dangerous” work. Again, while it might </span><em>seem</em><span> intuitive which tasks to put into these buckets, it turns out that there are some underlying social, economic, and cultural factors that matter.</span></p><h2>Dangerous Work: Occupations or tasks that result in injury or risk of harm</h2><p><span></span><span>It’s possible to measure the danger of a task or job by using reported information. There are administrative records and surveys that provide numbers on occupational injury rates and hazardous risk factors. While that seems straightforward, it’s important to understand how this data was collected, reported, and verified.</span></p><p>First, occupational injuries tend to be underreported, with some studies estimating <a href="https://pubmed.ncbi.nlm.nih.gov/24507952/" target="_blank">up to 70 percent of cases missing in administrative databases</a>. Second, injuries and risk factors are <a href="https://www.ilo.org/publications/quick-guide-sources-and-uses-statistics-occupational-safety-and-health" target="_blank">rarely disaggregated by characteristics like gender, migration status, formal/informal employment, and work activities</a>. For example, because most personal protective equipment—such as masks, vests, and gloves—are sized for men, <a href="https://books.google.com/books?hl=en&lr=&id=GdmEDwAAQBAJ&oi=fnd&pg=PT8&dq=Caroline+Criado+Perez.+Invisible+Women:+Data+Bias+in+a+World+Designed+for+Men.+Vintage+Books,+New+York,+NY,+2019.+ISBN+1-68335-314-5.+&ots=zr92hEL4HB&sig=bepPAzAfk_khTOb8BO6xWjspDJM#v=onepage&q&f=false" target="_blank">women in dangerous work environments face increased safety risks</a>.</p><p>These caveats are an opportunity for robotics to be helpful. If we went out and looked for it, we could probably find some less obviously dangerous work where robotics might be an important intervention, not to mention some groups that are disproportionately affected and would benefit from more workplace safety.</p><h2>Dirty Work: Occupations or tasks that are physically, socially, or morally tainted</h2><p><span></span><span>Colloquially, most people might think of dirty work as involving </span><em>physical</em><span> dirtiness, such as trash removal, cleaning, or dealing with hazardous substances. But social science literature makes clear that dirty work is </span><a href="https://www.jstor.org/stable/799402" target="_blank">also about <em>stigma</em></a><span>. Socially tainted jobs are often servile or involve interacting with stigmatized groups (for example, correctional officers), and morally tainted jobs include tasks that people commonly perceive as sinful, deceptive, or otherwise defying norms of civility (like a stripper or a collection agent).</span></p><p>“Dirty work” is a social construct that can vary across time (like <a href="https://psycnet.apa.org/record/2012-00729-001" target="_blank">tattoo industry stigma</a> in the United States) and culture (such as nursing in the <a href="https://link.springer.com/chapter/10.1057/9780230393530_8" target="_blank">U.S</a>. versus in <a href="https://www.sciencedirect.com/science/article/abs/pii/S0277953606003418" target="_blank">Bangladesh</a>). One way to measure whether work is “dirty” is by using the closely related concept of occupational prestige, captured through quantitative surveys where people rank jobs. Another way to measure it is through qualitative data, like ethnographies and interviews. Similar to “dangerous,” we see some hidden opportunities for robotics in “dirty” work. But one of our more interesting takeaways from the data is that a lower-ranked job can be something that <a href="https://www.jstor.org/stable/259134" target="_blank">the workers themselves enjoy or find immense pride and meaning in</a>. If we care about what tasks are truly undesirable, understanding this worker perspective is important.</p><h2>Dull Work: Occupations or tasks that are repetitive and lacking in autonomy</h2><p>When it comes to defining dull work, what matters most is workers’ own experiences. Outsiders can make a lot of false assumptions about what tasks have value and meaning. Sometimes things that seem boring or routine create the right conditions for <a href="https://www.penguinrandomhouse.com/books/291654/the-mind-at-work-by-mike-rose/" target="_blank">developing skills and competence</a>, such as the concentration needed for woodworking, or for <a href="https://www.anthropology-news.org/articles/what-counts-as-drudgery-and-who-decides/" target="_blank">socializing and support</a>, when tasks are done alongside others. Instead of assuming that repetitive work is negative, it’s important to examine qualitative data on how people experience the work and what purpose it serves for <em>them</em>.</p><h2>DDD: An actionable framework<br/></h2><p>In our paper, we propose a framework to help the robotics community explore how automation impacts individual jobs. For each term—dull, dirty, and dangerous—the framework gathers key pieces of information to reflect on what physical or social aspects of the task are, in fact, DDD. Worker perspective is an important part of all three considerations. The framework also emphasizes awareness of context—meaning the physical and social environment of an occupation and industry that can influence the DDD nature of a task. Our corresponding <a href="https://arxiv.org/pdf/2602.04746" target="_blank">worksheet</a> suggests existing data sources to draw on and encourages us to seek out multiple perspectives and consider potential sources of bias in the information.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A diagram illustrating that tasks that are dangerous, dirty, or dull depend on how the workers feel about the social and physical environment." class="rm-shortcode" data-rm-shortcode-id="0e5225e853b1fd8d456f6ae58d665e04" data-rm-shortcode-name="rebelmouse-image" id="ff883" loading="lazy" src="https://spectrum.ieee.org/media-library/a-diagram-illustrating-that-tasks-that-are-dangerous-dirty-or-dull-depend-on-how-the-workers-feel-about-the-social-and-physica.png?id=66736573&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">What makes tasks dull, dirty, or dangerous depends on the perspective of the humans doing those tasks.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">RAI</small></p><p><span>Let’s take, for example, the waste and <a href="https://spectrum.ieee.org/single-stream-recycling" target="_blank">recycling industry</a>. The world generates over 2 billion tonnes of waste annually, and this figure is </span><a href="https://openknowledge.worldbank.org/entities/publication/ba7feea4-0abe-59fb-bc60-ce6b60eb1ceb" target="_blank">expected to rise to nearly 4 billion tonnes by 2050</a><span>. Intuitively, trash collection seems like a job that hits all the Ds. </span><span>Going through our worksheet, we confirm that globally, workers in this industry </span><a href="https://www.cdc.gov/niosh/docs/wp-solutions/2024-123/default.html" target="_blank">face</a><span> </span><a href="https://ilostat.ilo.org/beyond-the-bin-decent-work-deficits-in-the-waste-management-and-recycling-industry/" target="_blank">significant</a><span> </span><a href="https://data.bls.gov/cgi-bin/dbdown/ch" target="_blank">health hazards</a><span> (dangerous), and waste collection is </span><a href="https://occupational-prestige.github.io/opratings/opcrosswalk.html" target="_blank">ranked</a><span> as a </span><a href="https://link.springer.com/article/10.1007/s43615-021-00056-7" target="_blank">low-status job</a><span> (dirty), although interestingly, many workers </span><a href="https://www.annualreviews.org/content/journals/10.1146/annurev-orgpsych-031921-024847" target="_blank">take pride</a><span> in </span><a href="https://www.annualreviews.org/content/journals/10.1146/annurev-orgpsych-012420-091423" target="_blank">providing this essential service</a><span>.</span></p><p>The job is also repetitive, but there are aspects that make it <em>not dull</em>. Specifically, workers cite the <a href="https://academic.macmillan.com/academictrade/9780374534271/pickinguponthestreetsandbehindthetruckswiththesanitationworkersofnewyorkcity/" target="_blank">day-to-day interaction with their coworkers</a> (which includes extensive insider vocabulary, work hacks, and mutual aid groups) and <a href="https://www.routledge.com/Collecting-Garbage-Dirty-Work-Clean-Jobs-Proud-People/Perry/p/book/9780765804105" target="_blank">task variety</a> as two of the most enjoyable aspects of the job. Task variety includes inspecting their vehicle and equipment, driving their truck, coordinating with crew members, lifting bins and bags, detecting incorrect sorting of waste, and unloading at the end destination.</p><p>This finding matters because some types of robotic solutions will eliminate the parts of the job that workers most appreciate. For instance, the National Institute for Occupational Safety and Health (NIOSH) <a href="https://www.cdc.gov/niosh/docs/wp-solutions/2024-123/default.html" target="_blank">recommends the adoption of automated side loader trucks and collision avoidance systems</a>. This innovation increases safety, which is great, but it also results in a sole worker operating a joystick in a cab, surrounded by sensor and camera surveillance.</p><p>Instead, we should challenge ourselves to think of solutions that make jobs safer without making them terrible in a different way. To do this, we need to understand all aspects of what makes a job dull, dirty, or dangerous (or not). Our framework aims to facilitate this understanding.</p><p>Finally, it’s important to note that <a href="https://dl.acm.org/doi/10.1145/1349822.1349827" target="_blank">DDD is only one of many possible approaches</a> to classify what work might be better served by robots. There are lots of ways we could think about which types of tasks or jobs to automate (for example, economic impact or environmental sustainability). Given the popularity of DDD in robotics, we chose this common phrase as a starting point. We would love to see more work in this space, whether it’s data collection on DDD itself or the creation of other frameworks.</p><p>At <a href="https://spectrum.ieee.org/marco-hutter-ai-institute" target="_blank">RAI</a>, we believe that the fusion of robotics and social sciences opens a whole new world of information, perspectives, opportunities, and value. It fosters a culture of curiosity and mutual learning, and allows us to create actionable tools for anyone in robotics who cares about societal impact.</p><div class="horizontal-rule"></div><a href="https://rai-inst.com/wp-content/uploads/2026/02/Dull-Dirty-Dangerous.pdf" target="_blank"><em>Dull, Dirty, Dangerous: Understanding the Past, Present, and Future of a Key Motivation for Robotics</em></a>, by <span>Nozomi Nakajima, Pedro Reynolds-Cuéllar, Caitrin Lynch, and Kate Darling from the RAI Institute, was presented at </span>the 21st ACM/IEEE International Conference on Human-Robot Interaction (HRI) in Edinburgh, Scotland.]]></description><pubDate>Mon, 18 May 2026 13:00:00 +0000</pubDate><guid>https://spectrum.ieee.org/dull-dirty-dangerous-robots</guid><category>Hri</category><category>Human-robot-communication</category><category>Robotics</category><category>Robot-jobs</category><dc:creator>Kate Darling</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/a-curbside-trash-can-being-lifted-by-a-mechanical-arm-attached-to-the-side-of-a-garbage-truck.jpg?id=66736070&amp;width=980"></media:content></item><item><title>Agentic AI for Robot Teams</title><link>https://events.bizzabo.com/867156</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/johns-hopkins-whiting-school-of-engineering-logo-with-shield-emblem.png?id=66700256&width=980"/><br/><br/><p>This presentation highlights recent efforts at the Johns Hopkins Applied Physics Laboratory to advance agentic AI for collaborative robotic teams. It begins by framing the core challenges of enabling autonomy, coordination, and adaptability across heterogeneous systems, then introduces a scalable architecture designed to support agentic behaviors in multi-robot environments. The talk concludes with key challenges encountered and practical lessons learned from ongoing research and development.</p><p><span>Key learnings</span></p><ul><li>Provides an introduction to LLM-based AI Agents</li><li><span>Describes an approach to applying LLM-based AI Agents to robotic teams</span></li><li><span>Provides demonstrations of the approach running in hardware with a heterogeneous team of robots</span></li><li>Presents lessons learned and future work in this area</li></ul><div><a href="https://events.bizzabo.com/867156" target="_blank">Download this free whitepaper now!</a></div>]]></description><pubDate>Mon, 18 May 2026 10:00:01 +0000</pubDate><guid>https://events.bizzabo.com/867156</guid><category>Type-webinar</category><category>Agentic-ai</category><category>Robotics</category><category>Llms</category><dc:creator>Johns Hopkins Applied Physics Laboratory</dc:creator><media:content medium="image" type="image/png" url="https://assets.rbl.ms/66700256/origin.png"></media:content></item><item><title>Video Friday: Heavy Robotic Machinery Operates Itself</title><link>https://spectrum.ieee.org/video-friday-material-handling-robots</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/autonomous-excavator-loads-gravel-into-a-dump-truck-at-a-construction-site.png?id=66736548&width=1200&height=800&coordinates=0%2C5%2C0%2C5"/><br/><br/><p><span>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://2026.ieee-icra.org/">ICRA 2026</a>: 1–5 June 2026, VIENNA</h5><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><blockquote class="rm-anchors" id="0tybygtaia4"><em>Bulk material handling is a critical, labor-intensive operation across various industries, traditionally performed by human operators using heavy hydraulic manipulators equipped with free-swinging, underactuated grippers. This work presents the first complete autonomous material-handling solution deployed on a real-world 40-ton material handler.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="cceb8410c22c8d4ae50b374ae0059026" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/0TyByGTAia4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://arxiv.org/abs/2508.09003">ETH Zurich</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="8xeufqz4e4a">I don’t want to minimize this bedroom tidying by Figure (although I suppose I’m going to), but in the context of doing a task like this in place of a human, it really illustrates what these robots are comfortable with, and what they’re not.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="d0f7ad9503ee68a6e973767bc162c5ee" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/8xEuFQz4E4A?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.figure.ai/">Figure</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="lbcnpwg6--s">Give me this over videos of robots doing backflips any day.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="e2b517bb13714f71da91af2e54757c17" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/LbCNPwg6--s?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://hello-robot.com/">Hello Robot</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="3jchmfhboei">Okay, but can it get them out of the can?</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="1ee1cd73a0bc341e9222a8b4f555fce2" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/3jchMFhBoEI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://generalistai.com/">Generalist</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="owoyumjwptc"><em>The world’s first production-ready manned mecha. It can transform. It’s a civilian vehicle. It weighs ~500 kilograms with you inside.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="854898d924a784b2c108b8f0c98f03dc" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/oWOyUMJWptc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.unitree.com/">Unitree</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="8yf07s0h4w0"><em>Curious about what happens when street dance meets embodied AI? From smooth choreography to dynamic flips, NIX is exploring movement, rhythm, and real-world interaction through embodied AI. We’ll make NIX available—FOR FREE!—to selected partners from global universities, robotics labs, and creative technologists.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="9e5fadb798eff18f473f0c1f0e48a757" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/8YF07S0H4w0?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.lumosbot.tech/index.html">Lumos</a> ]</p><p>Thanks, Ni Tao!</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="l8su8oxsm-e"><em>We introduce and open-source the Unified Autonomy Stack, a novel solution for resilient autonomy across aerial and ground robot morphologies. The architecture combines multimodal perception, multibehavior planning, and multilayered safe navigation to deliver mission-level autonomy across diverse robot morphologies. It fuses lidar, radar, vision, and inertial sensing to enable robust localization and mapping, vision-language-based scene reasoning, multibehavior planning, and layered safety through map-based avoidance, deep learned policies, and control barrier functions. The system supports Global Navigation Satellite System–denied navigation in perceptually degraded environments, exploration, object discovery, and inspection, and has been validated on multirotor and legged robots in challenging settings, demonstrating resilient performance.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="7c11173686f4db29ef4174211c0af0d8" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/l8Su8OXsM-E?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://github.com/ntnu-arl/unified_autonomy_stack">NTNU</a> ]</p><p>Thanks, Kostas!</p><div class="horizontal-rule"></div><p class="rm-anchors" id="6x28vlbfa-k">Cassie WAS the best robot!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="10e77fce10b4c8d95fd19f42cf60b184" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/6x28vlbfA-k?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>The next video better be a Digit Centaur.</p><p>[ <a href="https://www.agilityrobotics.com/">Agility</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="luu57hmhkak">Any robot doing anything consistently over a long period of time is impressive. Having said that, you want to be very careful about claiming that any robot operates at “human performance levels,” especially in a somewhat complex manipulation task, because humans are very, very good at stuff like this.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c54c47b46e5239980f91d940edbe4f4d" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/luU57hMhkak?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.figure.ai/">Figure</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ik63vhrtz9k"><em>Robust.AI cofounder and CTO <a data-linked-post="2668844679" href="https://spectrum.ieee.org/rodney-brooks-three-laws-robotics" target="_blank">Rodney Brooks</a>, ranked #44 on the Forbes 250 America’s Greatest Innovators list, sits down for a Q&A ahead of his panel discussion at the Forbes America Innovates event in San Francisco. We asked him two questions: What makes innovation in robotics such a challenge? What does the current surge in AI mean for robotics today?</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="ee069c34f8c856952e9980d3df05b378" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/ik63VhRTz9k?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.robust.ai/">Robust AI</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="og6wvkqwlow">This is one of the best robotic research videos I’ve ever seen—and don’t worry, according to the credits it’s not AI. And make sure to watch after the credits!</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="99aa7bbdcd781531a03f3a3acf6de1c8" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Og6wvKqWLow?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.nature.com/articles/s41586-026-10461-3">Nature</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="sfk00hm14no"><em>EFGCL is a guided-reinforcement learning method that efficiently enables highly dynamic motions through the use of assistive forces. In this work, we successfully achieved several dynamic motions, including jumping, backflips, and lateral flips.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="aff6bf226fb4b55547f8036d38aeee4a" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/sFK00hm14No?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://keitayoneda.github.io/kleiyn-efgcl/">EFGCL</a> ]</p><p>Thanks, Keita!</p><div class="horizontal-rule"></div><p class="rm-anchors" id="_wgafrnka3u">Legged robots: helping <a data-linked-post="2650277495" href="https://spectrum.ieee.org/scottish-farmers-test-machine-vision-to-manage-pig-pugnacity" target="_blank">farmers</a> one vegetable at a time.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="3f5ea9ba1a9c2cf932b6f041fac85bd7" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/_WGAfRnkA3U?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://sites.usc.edu/quann/">University of Southern California</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="qt9j6zmlnpy"><em>Humanoid robots promise general-purpose assistance, yet real-world humanoid loco-manipulation remains challenging because it requires whole-body stability, dexterous hands, and contact-aware perception under frequent contact changes. In this work, we study dexterous, contact-rich <a data-linked-post="2668136221" href="https://spectrum.ieee.org/video-friday-locoman" target="_blank">humanoid loco-manipulation</a>.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="567192d2a46e5f880312d9c2611c9c34" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/QT9J6zMlNpY?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://humanoid-touch-dream.github.io/">Touch Dreaming</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="d8gtl14mxck"><em>More than just technology, KATA Friends is a lifelike AI companion designed to see your world, feel your touch, and understand your heart. With expressive movements, evolving emotions, and natural conversations, Noa and Niko both grow alongside you to become a presence uniquely yours. From curious head tilts and playful reactions to ever-changing eye expressions and a soft, innocent voice, every interaction feels warm, personal, and alive.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="cb309323a85a59ece82f934ced767cc5" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/D8gtl14mxCk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://us.switch-bot.com/pages/katafriends?utm_source=twitter&utm_medium=social&utm_campaign=katafriends_0512">SwitchBot</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="9shif-a8w6e">I really hate to say this, but despite how cute it is, <a data-linked-post="2670284977" href="https://spectrum.ieee.org/aibo" target="_blank">Aibo</a> may be showing its age.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="c599d28c034ededebbb636f898de2297" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/9SHif-A8W6E?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://aibo.sony.jp/fan/creators_challenge/">Aibo</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="8ip5ehvsulk"><em>One of the biggest challenges in robotics right now isn’t the hardware. It’s data. While many data-collection methods are effective, handheld data collection can create a diverse dataset of environments, conditions, and strategies for completing manipulation tasks. The Koala platform codesigned the handheld grippers and robot grippers around the same linkage mechanism, the same degrees of freedom, and the same force transmission. The human feels through the linkages what the robot will feel through its actuators.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="3b419abc236c9683b77082eb6d4e9e37" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/8Ip5ehvsUlk?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://rai-inst.com/resources/blog/handheld-robotic-data-collection/">Robotics and AI Institute</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Fri, 15 May 2026 17:00:01 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-material-handling-robots</guid><category>Home-robots</category><category>Humanoid-robots</category><category>Video-friday</category><category>Material-handling-technology</category><category>Robot-videos</category><category>Robot-grippers</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/png" url="https://spectrum.ieee.org/media-library/autonomous-excavator-loads-gravel-into-a-dump-truck-at-a-construction-site.png?id=66736548&amp;width=980"></media:content></item><item><title>Hello Robot Sets the Standard for Practical, Safe Home Robots</title><link>https://spectrum.ieee.org/stretch-4-home-robot</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/tall-wheeled-home-robot-with-an-extended-arm-in-a-modern-living-room-near-a-potted-cactus.jpg?id=66719760&width=1200&height=800&coordinates=0%2C83%2C0%2C83"/><br/><br/><p>Many roboticists (and at least one robotics journalist) have been seduced by the dream of a robot butler. And the rampant popularity of videos showing <a href="https://www.youtube.com/watch?v=CAdTjePDBfc" rel="noopener noreferrer" target="_blank">humanoid robots doing household tasks</a> in improbably clean kitchens and unrealistically tidy bedrooms suggests that we’re not the only ones interested in a robot that can do our chores. But <a href="https://spectrum.ieee.org/humanoid-robot-scaling" target="_self">for all kinds of reasons</a>, legged humanoids are not yet ready for industrial or commercial applications at scale, and home applications (<a href="https://spectrum.ieee.org/home-humanoid-robots-survey" target="_self">if people even <em><em>want</em></em> them</a>), I would argue, are even farther away. Even so, ludicrously well-funded humanoid robotics companies are now <a href="https://www.1x.tech/manufacturing" rel="noopener noreferrer" target="_blank">ramping production</a> while explicitly promising that their robots will be doing ‘<a href="https://www.figure.ai/news/ramping-figure-03-production" rel="noopener noreferrer" target="_blank">housework</a>.’</p><p>So what about that robot butler dream, then? It still exists! All you have to do is forget about legs, arms, hands, faces, and focus on what really matters: mobility and manipulation. This is what <a href="https://spectrum.ieee.org/hello-robots-stretch-mobile-manipulator" target="_self">Hello Robot’s</a> <a href="https://spectrum.ieee.org/stretch-assistive-robot" target="_self">Stretch robot</a> is unapologetically all about, and the <a href="https://spectrum.ieee.org/hello-robot-stretch-3" target="_self">newest version</a> being announced today, Stretch 4, is closer than ever to a robot that could safely do practical work in the home at an accessible cost.</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="c78e812c3287c07fcc7c2ab2bf8279de" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/uyHa-Gk4THw?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span> <small class="image-media media-caption" placeholder="Add Photo Caption...">Hello Robot says Stretch 4 is “built for the real world.”</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Hello Robot</small></p><p>“With Stretch 4, we wanted to make the transition from a research platform to something that is truly deployable,” explains <a href="https://www.linkedin.com/in/aaron-edsinger/" rel="noopener noreferrer" target="_blank">Aaron Edsinger</a>, Hello Robot co-founder and CEO. This version, while ready for research and enterprise customers now, is designed for pilot deployments to help Hello Robot understand how to scale in the home. “This has been our most difficult design process,” adds co-founder and CTO <a href="https://www.linkedin.com/in/charlie-kemp/" rel="noopener noreferrer" target="_blank">Charlie Kemp</a>. “We had a lot of fear of ‘second-system syndrome,’ where you add all the features you didn’t get to initially and end up with a monstrosity. But since we founded the company on making simple, minimalist robots, every time we added complexity it was an emotional challenge. Navigating that fear resulted in a nice compromise that sits in a great spot, rather than being a maximalist humanoid.”</p><h2>Stretch 4 Upgrades</h2><p>The biggest change from the previous version of Stretch is the addition of an omnidirectional base, meaning that the robot can translate in any direction without having to turn first. This makes it much easier to control (especially for novice users), but omnidirectional bases are significantly more complicated to design and build. What ultimately made it possible for Stretch were new types of omnidirectional wheels developed for powered wheelchairs, along with a solid six months of focused development by Hello Robot.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="Close-up of a white robotic head with cameras, sensors, and glowing blue lights." class="rm-shortcode" data-rm-shortcode-id="a337347c7b7553dc4c62836ae58ff620" data-rm-shortcode-name="rebelmouse-image" id="67a32" loading="lazy" src="https://spectrum.ieee.org/media-library/close-up-of-a-white-robotic-head-with-cameras-sensors-and-glowing-blue-lights.jpg?id=66719735&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">A redesigned sensorized head gives Stretch more options for teleoperation and autonomy.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Hello Robot</small></p><p>Stretch 4 also ditches the <a href="https://hello-robot.com/stretch-3-whats-new" target="_blank">cute little pan-tilt head</a> for a more complex sensor suite with a much wider field of view. “We started out wanting to use lots of cheap cameras to keep costs low, like Tesla does,” Edsinger tells us. “But we ended up with an approach closer to Waymo’s: the richer and more reliable your data, the safer and more intelligent the robot can be.” There are a pair of hemispherical lidars, <a href="https://www.luxonis.com/" target="_blank">Luxonis</a> cameras for vision and navigation, and a wrist-mounted depth camera for manipulation. The robot’s primary system runs on an Intel NUC 15, plus an Nvidia Jetson Orin NX for researchers to play with for visual processing or AI.</p><h2>Philosophy on Autonomy</h2><p>Hello Robot’s general philosophy on autonomy is to have a human in the loop, but that can take many different forms ranging from direct control to purely supervisory control. The robot will ship with a baseline of autonomous capabilities that include mapping, navigation, and self-charging, along with demo-ready features like autonomous grasping. But unlike most other robotics companies, Hello Robot isn’t looking to use their hardware to collect a stupendous amount of data in the concerningly vague hope that commercially viable autonomy will follow. </p><p>“Stretch has huge advantages in safety, cost, and capability,” Kemp says. “I’d much rather be the platform that foundation model developers target.” Edsinger agrees: “We do want to partner with foundation model companies to explore things like dexterous in-home manipulation, but we aren’t the ones to build those foundation models.”</p><h2>In-Home Pilots</h2><p>While earlier versions of Stretch were primarily for research, Kemp tells us that Stretch 4 has been explicitly designed to be piloted in the homes of people with severe mobility impairments. Hello Robot will be happy to sell you one (or lots, I’m guessing) for commercial or industrial applications, but the broader goal with Stretch 4 is to use remote testing and in-home evaluations to work towards a robot that’s useful and reliable enough that it can provide consistent daily value for disabled users.</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A series of 5 images of the robot show it's arm at different heights and extended lengths." class="rm-shortcode" data-rm-shortcode-id="5670ef548d8bbce284a871baf088ddc7" data-rm-shortcode-name="rebelmouse-image" id="45d3d" loading="lazy" src="https://spectrum.ieee.org/media-library/a-series-of-5-images-of-the-robot-show-it-s-arm-at-different-heights-and-extended-lengths.jpg?id=66719740&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">A holonomic base and an extendable arm make for a capable robot without the complexity.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Hello Robot</small></p><p>Part of why I’m optimistic about Stretch finding near-term success in this role is precisely <em><em>because</em></em> it’s not a humanoid. One of the primary arguments for humanoids is that they’re worth pursuing because they can better operate in environments designed for humans, where legs and five-fingered hands are tangible advantages. But those very same environments often exclude an entire subset of humanity—a subset of humanity that we will all likely join at some point, because the best that any of us can ever say is that we are not disabled <em><em>yet</em></em>. </p><h2>Why Not Humanoids?</h2><p>A key partner for Hello Robot throughout the Stretch development process has been <a href="https://spectrum.ieee.org/stretch-assistive-robot" target="_self">Henry Evans</a>. Evans is paralyzed and cannot speak, although he can use a computer (for controlling robots, among other things) and type at about 15 words per minute. I spoke with Evans about his thoughts on the idea of a humanoid assistive robot, compared to a robot like Stretch. “The question is: What benefit does a bipedal robot offer to a person who can’t walk?” Evans asks. “Their entire environment has been modified to accommodate wheeled conveyances. Automobiles don’t have legs, and neither should home robots. Wheels are cheap, stable, precise, require very few controls, and don’t have to be invented.”</p><p class="shortcode-media shortcode-media-rebelmouse-image"> <img alt="A man lies in bed looking up at a robotic hand." class="rm-shortcode" data-rm-shortcode-id="ccf3a458f19daf1eec03f02da9576826" data-rm-shortcode-name="rebelmouse-image" id="9e077" loading="lazy" src="https://spectrum.ieee.org/media-library/a-man-lies-in-bed-looking-up-at-a-robotic-hand.jpg?id=66719738&width=980"/> <small class="image-media media-caption" placeholder="Add Photo Caption...">Henry Evans has been testing a Stretch 4 as a home assistive robot.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Hello Robot</small></p><p>Evans also points out that humanoids can require the simultaneous control of dozens of degrees of freedom. “A paralyzed person who can’t talk (like yours truly) can control maybe one or two joints at a time with today’s control mechanisms, if they are lucky.” Evans believes that AI, along with Brain Computer Interfaces (BCIs), show promise for dramatically increasing what he can do when it comes to motion. “Remember, though, a paralyzed person has no movements to mimic, so until a perfectly tuned BCI gets here and facilitates a true humanoid body surrogate, I don’t think it will work. And even then, I don’t see the advantage of legs for assistive care robots. I am willing to be proven wrong, though, and will test-drive almost anything once, so bring it on!”</p><p>Kemp and Edsinger, who have many decades of humanoid experience between them, feel similarly. “There are applications where the human form is fundamental,” Kemp says. “But for many applications, the value of the human form is unclear or even problematic. Jumping to the conclusion that robots must be humanoid means missing opportunities to take advantage of the structured indoor environments that we’ve already created.”</p><p class="shortcode-media shortcode-media-youtube"> <span class="rm-shortcode" data-rm-shortcode-id="2466daf5440094ed584445540285be84" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/zk2C3KJeuto?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span> <small class="image-media media-caption" placeholder="Add Photo Caption...">Georgena Moran and her sisters tested Stretch 4 at the California Academy of Sciences Museum, allowing her to interact with the exhibits from home.</small><small class="image-media media-photo-credit" placeholder="Add Photo Credit...">Hello Robot</small></p><p>And of course there’s the question of safety, which Evans brings up. “My caregivers and I have been testing robots in my home to assist us for about 15 years, and the very first concerns are: Where is the emergency stop, and how do you activate it? It gets used surprisingly often. The thing is, when a wheeled robot gets emergency stopped, it freezes in place. When a bipedal robot gets run-stopped, it collapses on anything under it, including the patient.” Kemp agrees. “The safety aspect of humanoids in a home freaks me out. I don’t know how someone can confidently think about safety with a humanoid in a home.”</p><h2>Robots for Sale</h2><p>However you feel about humanoids, here’s one more reason why Stretch feels like a much more realistic solution for in-home assistive robots right now: You can actually buy one, and at US $29,950, it’s very affordable, <a href="https://robotsguide.com/robots/tiago" target="_blank">as mobile manipulators go</a>. Edsinger and Kemp are planning to leverage in-home Stretch 4 pilot deployments to make the <em><em>next</em></em> version of Stretch the one that can be commercially sold for home assistance. At the rate that Hello Robot has been releasing new hardware, that could easily be within the next year or so—and my guess is that Stretch 5 is very likely to be the first practical, affordable assistive robot for home use. It may not look like Rosie, but it promises to be safe, and it works.</p>]]></description><pubDate>Tue, 12 May 2026 15:00:02 +0000</pubDate><guid>https://spectrum.ieee.org/stretch-4-home-robot</guid><category>Hello-robot</category><category>Home-robots</category><category>Humanoid-robots</category><category>Mobile-manipulator</category><category>Mobility-impaired</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/jpeg" url="https://spectrum.ieee.org/media-library/tall-wheeled-home-robot-with-an-extended-arm-in-a-modern-living-room-near-a-potted-cactus.jpg?id=66719760&amp;width=980"></media:content></item><item><title>Video Friday: AI Gives Robot Hands Humanlike Dexterity</title><link>https://spectrum.ieee.org/video-friday-robotic-hand-dexterity</link><description><![CDATA[
<img src="https://spectrum.ieee.org/media-library/robot-hand-grips-a-blender-pitcher-to-pour-a-pink-smoothie-into-a-cup-held-in-another-robot-hand.png?id=66709264&width=1200&height=800&coordinates=62%2C0%2C63%2C0"/><br/><br/><p><span>Video Friday is your weekly selection of awesome robotics videos, collected by your friends at </span><em>IEEE Spectrum</em><span> robotics. We also post a weekly calendar of upcoming robotics events for the next few months. Please </span><a href="mailto:automaton@ieee.org?subject=Robotics%20event%20suggestion%20for%20Video%20Friday">send us your events</a><span> for inclusion.</span></p><h5><a href="https://2026.ieee-icra.org/">ICRA 2026</a>: 1–5 June 2026, VIENNA</h5><h5><a href="https://roboticsconference.org/">RSS 2026</a>: 13–17 July 2026, SYDNEY</h5><h5><a href="https://mrs.fel.cvut.cz/summer-school-2026/">Summer School on Multi-Robot Systems</a>: 29 July–4 August 2026, PRAGUE</h5><h5><a href="https://actuate.foxglove.dev/">Actuate 2026</a>: 18–19 August 2026, SAN FRANCISCO</h5><p>Enjoy today’s videos!</p><div class="horizontal-rule"></div><div style="page-break-after: always"><span style="display:none"> </span></div><blockquote class="rm-anchors" id="6k_bgh54lti"><em>Introducing GENE-26.5—the first AI brain to give robots human-level physical manipulation capabilities. Cooking a full meal. Cracking an egg one-handed. Conducting lab experiments. Wire harnessing. Even playing the piano. Tasks that were impossible for robots. Until now.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="a8e4ae208b291c232e100dfd59cecf1e" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/6K_bGH54ltI?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.genesis.ai/">Genesis AI</a> ] via [ <a href="https://techcrunch.com/2026/05/06/khosla-backed-robotics-startup-genesis-ai-has-gone-full-stack-demo-shows/">TechCrunch</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="ve6zyrgxqzw"><em>This is Labububot—one of the rarest monsters on Earth. Twelve Labubu heads are reconstituted into a single spherical form: a Frankenstein’s Monster of pop culture iconography. Labububot is a playful critique of <a data-linked-post="2655919083" href="https://spectrum.ieee.org/social-robots-children" target="_blank">social robots</a>, and a question made physical—what do the monsters we make reveal about the monsters we are?</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="35d39988b0c0e318a7d00c00f87a0274" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/Ve6ZYrgxqZw?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.media.mit.edu/projects/labububot/overview/">MIT Media Lab</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="0yzjvaefq5w"><em>Watch Spot crouch, jump, climb boxes, and leap across gaps, controlled by a neural network trained with reinforcement learning (RL) and multi-expert distillation.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="49a459734245d6d4b35ca0a4453b58c4" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/0YZjvAEFQ5w?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://rai-inst.com/">Robotics and AI Institute</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="xjkgyr8l7ea">Good, now there is a robot that can take over exercise for me.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="acc80fe4b452b6a677874565a473916e" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/XJKgYR8L7eA?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://gotokepler.com">Kepler</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="gfd_k30syms"><em>Additive manufacturing has become an enabling technology, but existing techniques are not capable of directly <a data-linked-post="2675666255" href="https://spectrum.ieee.org/3d-printed-linear-motor" target="_blank">3D printing</a> high-current electromagnetic actuators due to material and design limitations. In this work, a novel 3D-printable, multilayer, wave-winding topology is created for high-efficiency electric motors.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="bd82967ac82276c8212f45f6982de73c" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/gFD_k30SYms?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://sites.gatech.edu/chen-mazumdar/">Sensing Technologies Laboratory</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="abjntvayt9g"><em>NASA is pushing the limits of <a data-linked-post="2650251618" href="https://spectrum.ieee.org/my-10-favorite-mars-novels" target="_blank">flight on Mars</a>—by spinning helicopter rotor blades so fast, they’re breaking the sound barrier. During recent tests at NASA’s Jet Propulsion Laboratory, engineers accelerated the tips of next-generation rotor blades beyond Mach 1 inside a special chamber that simulates the atmospheric conditions of the Red Planet.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="444a49b45e34e772b665a1f6b1b6c4bb" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/aBJNtvAyt9g?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.jpl.nasa.gov/news/nasa-pushes-next-gen-mars-helicopter-rotor-blades-past-mach-1/">NASA Jet Propulsion Laboratory</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="uohfghlhrkg"><em>Balancing commercial goals and robotics research can be tricky, but with Atlas, we’re making it work.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="180b190ec971c22d723823a3d05de3f9" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/UoHfGhLHRkg?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://bostondynamics.com/">Boston Dynamics</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="2tsjxsuixb4">Open Duck Mini is an open-source version of Disney’s BDX droids, and you can play with it in your browser.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="43791706fc31151bfffa1aafaf3d2a64" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/2tsJxsuiXB4?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://mertcookimg.github.io/Open_Duck_Mini_Viewer/">Open Duck Mini Viewer</a> ]</p><p>Thanks, Masato!</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="0_ad8sdj1gc"><em>Automated inspection of steel structures using magnetic climbing robots can reduce costs and improve safety, but many such structures feature interior corners that are challenging for wheeled or tracked robots to traverse. We present the first magnetic-wheeled robot to use X-ray fluorescence for steel structure inspection, Sally, capable of overcoming all interior corner transition types, traversing small obstacles, and maneuvering in tight spaces.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="e06f5d0f9676f6a30ded533c3dd41350" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/0_AD8SDj1gc?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.cmu.edu/me/robomechanicslab/">Robomechanics Lab</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="4djthku2kjo">I don’t know what this is, but it’s coming soon from SwitchBot.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="0bd24132d67958351833a63c385e92be" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/4dJthkU2kjo?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://us.switch-bot.com/pages/katafriends">SwitchBot</a> ]</p><div class="horizontal-rule"></div><p class="rm-anchors" id="jzwuctc2sou">You probably know the answers to these questions already, but this ELI5 from Aaron Ames is still fun.</p><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="54476bc0d07f1438817842d782b75ff7" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/jZwuCtc2SoU?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.youtube.com/@WIRED">Wired</a> ]</p><div class="horizontal-rule"></div><blockquote class="rm-anchors" id="3y8aq_ofevs"><em>Jim Fan, who leads the embodied autonomous research group at Nvidia, returns to AI Ascent to argue that robotics is entering its endgame—and that the playbook is already written.</em></blockquote><p class="shortcode-media shortcode-media-youtube"><span class="rm-shortcode" data-rm-shortcode-id="cad5aef0dfe85d2403c36d2d64162a9b" style="display:block;position:relative;padding-top:56.25%;"><iframe frameborder="0" height="auto" lazy-loadable="true" scrolling="no" src="https://www.youtube.com/embed/3Y8aq_ofEVs?rel=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" width="100%"></iframe></span></p><p>[ <a href="https://www.youtube.com/@sequoiacapital">Sequoia</a> ]</p><div class="horizontal-rule"></div>]]></description><pubDate>Sat, 09 May 2026 16:00:02 +0000</pubDate><guid>https://spectrum.ieee.org/video-friday-robotic-hand-dexterity</guid><category>Humanoid-robots</category><category>Video-friday</category><category>Manipulation</category><category>Robot-videos</category><category>Autonomous-robots</category><category>Quadruped-robots</category><dc:creator>Evan Ackerman</dc:creator><media:content medium="image" type="image/png" url="https://spectrum.ieee.org/media-library/robot-hand-grips-a-blender-pitcher-to-pour-a-pink-smoothie-into-a-cup-held-in-another-robot-hand.png?id=66709264&amp;width=980"></media:content></item></channel></rss>