UNFUCG
DashboardSearchChatBookmarksNotificationsActivityPremiumProfile
?
Home
Search
Chat
Saved
Profile
Episode
The Humanoid Takeover: $50T Market, Figure's Full Body Autonomy, and Robots in Dorms #229
~161 min
Episode Brief·YouTube

The Humanoid Takeover: $50T Market, Figure's Full Body Autonomy, and Robots in Dorms #229

Peter Diamandis
Watch on YouTube Add to chat My bookmarks← All sources

TL;DR

The four things you'd lose by not watching

4 items

TL;DR

The four things you'd lose by not watching

4 items
1

Figure released Helix 2, a fully neural-net-based control system that removed all 109,000 lines of C++ code, achieving full-body autonomy on its humanoid robots.

2

Figure designed the new Figure 3 robot specifically around Helix, cutting 90% of the manufacturing cost and 30 pounds while adding a passive toe for better range of motion.

3

Brett Adcock claimed that general humanoid robotics will be a $50 trillion market (half of human labor GDP) and that every major tech company will enter the space, though the difficulty of closed-loop neural net control is a massive moat.

4

Peter Diamandis recommended frequent full-body health diagnostics (like Fountain Life) and highlighted Blitzy for autonomous software development, and announced his 2026 humanoids meta trends report.

Protocols

Concrete recipes — what, when, how much, and why

6 items

Adopt a full neural-net stack for humanoid robots (no hard-coded logic)

WhatReplace all hand-written C++ control code with end-to-end learned neural networks that handle perception, planning, and whole-body motor control at 200 Hz.
WhenWhen building a general-purpose humanoid robot that must generalize to unseen tasks and environments.
DoseContinuous operation; the neural net runs on embedded hardware and is retrained from scratch as new data arrives.
For whomRobotics companies aiming for general-purpose autonomy, not just pre-programmed demos.
WhyHeuristic code cannot scale to the billions of possible motions a humanoid must perform; neural nets can learn from data and transfer across tasks (positive transfer). The data becomes a permanent, compounding asset.
CaveatsRequires massive, high-quality pre-training data, dedicated inference hardware (not cloud-dependent), and careful sensor integration. It is astronomically harder to do closed-loop neural net control than open-loop replay; most videos today are teleoperated or cut, not true autonomy.

Brett Adcock argued that the entire humanoid industry faces a stark choice: either attempt to scale brittle C++ codebases (which cost ~$100 per line and become unmaintainable) or commit to neural nets. After Figure 1's Keurig demo proved neural nets could handle real-world manipulation, the company removed over 109,000 lines of C++ over two years. The hardest part was integrating a full-body reinforcement learned controller (S0) so the robot could move dynamically while manipulating. They saw positive transfer—training on logistics tasks improved kitchen performance—which convinced them that a single omnibus model is the only scalable path. He stressed that viewers should be skeptical of flashy robot videos unless they show uncut, closed-loop manipulation with neural nets; most are open-loop replays or teleoperation.

Mechanism

Figure's approach uses a vision-language-action model (Helix) that fuses camera, tactile, and palm sensor inputs, then outputs torques at 200 Hz via a reinforcement-learned controller (S0). This eliminates the need to manually code for each task, allowing the robot to learn physics and contact dynamics implicitly through data. The model reasons about object affordances and plans bimanual actions while dynamically adjusting posture.

We removed the remaining 109,000 lines of C++. All neural nets today. That’s a full body and that took it from like being able to do really good tabletop manipulation … to getting the whole body to move dynamically through a scene while manipulating and planning.

Design the robot hardware entirely around the neural net

WhatChoose sensors, compute, actuators, and form factor specifically to maximize the performance of the neural net, not based on traditional engineering convenience.
WhenFrom the first CAD sketches of a new robot generation.
DoseApplied once per hardware generation; the robot becomes a physical host optimized for inference.
For whomAdvanced humanoid manufacturers that aim to achieve general-purpose capability, not just developmental testbeds.
WhyOff-the-shelf humanoid parts don’t provide the right sensor modalities or computational density needed for full neural net autonomy. Vertical integration ensures every component—palm cameras, tactile fingertips, onboard inference chips—is tuned for data collection and fast, safe actuation.
CaveatsThis vertical integration is extremely capital-intensive and requires deep expertise in actuator design, embedded systems, and manufacturing. It also locks you out of established supply chains, but for true autonomy there is no alternative.

Brett explained that early attempts to buy motors, hands, and sensors off the shelf failed because reliability and precision were too low. The team had to design custom actuators with higher torque margins (3-5x headroom) and integrate all low-level firmware to make the robot a cohesive neural net host. The payoff: they can now iterate faster, cut costs 90%, and ensure that every robot rolling off the line can run the same learned policy without retrofits. This contrasts sharply with competitors who buy Chinese robots and add backpacks of extra compute and batteries, a kludge that can’t handle long-horizon tasks safely.

Mechanism

By placing cameras in the palms and tactile sensors in fingertips, the robot gets high-resolution data about occlusion and grasp quality that a head-only camera system misses. Onboard inference chips (non-H100, low-power) run the model without depending on Wi-Fi, avoiding comms dropouts. The hardware’s thermal design routes heat through the head and torso, matching where compute is located, and the exoskeleton structure carries loads like an aircraft, allowing lighter weight and soft, safe exteriors.

The guiding principle of figure 3 more than anything else was just designing for helix. How do we design this to run like helix on?

Also said
“If you go out and buy like a robot, a human robot off the shelf today, we can’t get it to do this.”— Underscores the necessity of custom design.

Use closed-loop neural net control rather than open-loop replay or teleoperation

WhatInsist that any demo of humanoid capability shows continuous, closed-loop, neural-net-driven autonomy over minutes or hours, not pre-recorded motions or remote human control.
WhenWhen evaluating robot companies' progress or looking beyond marketing videos.
DoseLook for uncut video of at least one minute of continuous, dynamic manipulation with clear indication of autonomy.
For whomInvestors, procurement officers, and the public evaluating humanoid robot companies.
WhyOpen-loop replay (like karate kicks) uses tiny models and requires no environment understanding; teleoperation hides the lack of autonomy. Only closed-loop neural net control demonstrates real-world adaptability and safety.
CaveatsTrue closed-loop control is exponentially harder, so the absence of such videos isn't necessarily a permanent failure, but it indicates the company hasn't solved the core technical hurdle yet. Many published videos are cut or teleoperated, which can mislead.

Brett spent several minutes emphasizing this distinction. He noted that he constantly sees companies posting videos of robots doing backflips or martial arts, which are trivial open-loop behaviors that any college student could implement with a single GPU. Figure itself has done such playback, but they never marketed it as autonomous. The litmus test is a long, uncut video of a robot performing a household task (like unloading a dishwasher) with full-body neural net control, where the robot replans on its own. He claimed Figure is the only company that has shown this, and it took them two years of seven-day weeks to go from a 2-minute Keurig demo to room-scale autonomy. He warned that without this capability, scaling manufacturing is pointless—what you want is a general-purpose robot that can be dropped into an unseen Airbnb and work for days, not a fleet of teleoperated shells.

Mechanism

Closed-loop control means the robot uses sensor inputs (cameras, tactile) to dynamically replan at ~200 Hz, coping with changes like objects shifting or unexpected obstacles. This requires a large neural net doing inference onboard, not a pre-recorded joint trajectory. Open-loop only replays pre-recorded poses and will fail if anything moves. Teleoperation puts the human in the loop but transmits a false impression of autonomy.

Personal experience

Peter noted that while walking around Figure, they saw a 4-minute fully autonomous Helix 2 operation uncut, which contrasted with most other robot videos that are teleoperated.

I don’t think there’s anything over a minute long in the world that’s doing neural nets continuously today in human … everything’s cut all the films are cut or teleoperated.

Also said
“What’s hard is to do full end to end neural network in unseen places or generalize to this.”— Defines the true technical bar.

Get a comprehensive full-body health scan (Fountain Life)

WhatUndergo a full-stack physical including full-body MRI, CT scans, and extensive blood work, followed by a physician-guided report and plan.
WhenAnnually or as needed; Brett Adcock did it recently and recommends it as a gift for parents.
DoseAbout a 5-hour visit to a clinic, producing 200 GB of data.
For whomAnyone seeking advanced preventative health diagnostics, especially those over 40 or with family history.
WhyIt provides a complete baseline of your health, catching issues early and creating a personalized plan to optimize longevity.
CaveatsCost is not stated; it may not be covered by insurance. Requires a dedicated clinic appointment.

Brett Adcock, who was referred by Peter, described his experience: he spent 5 hours at the Orlando clinic, got a 200 GB data download with a full explanation of his body’s state, and then built a plan from it. He was so impressed that he purchased packages for his parents. Peter, who is likely an investor or founder in Fountain Life (affiliation not explicitly stated in this episode), mentioned that this kind of deep health monitoring will become even more powerful when integrated with in-home robots that can tailor meals and care based on real-time biomarker levels. The recommendation aligns with Peter's long-standing thesis of proactive health management via abundant data.

Mechanism

The protocol combines imaging (MRI, CT) and biomarkers to create a digital twin of the body. The data is reviewed by a clinician who translates findings into an actionable plan.

Personal experience

Peter Diamandis referred Brett to Fountain Life and said 'Thanks for referring me', implying he uses it and considers it a great gift.

I could get basically comprehensive understanding of my body, what's happening, but also somebody there reporting it out and I talked to me through how we understand it, what to do next and a plan.

Also said
“I actually purchased it for my parents and things like this. I think it’s just a great gift.”— Shows the recommendation's practicality and trust.

Build a safety track record before deploying humanoids in homes

WhatContinuously run robots in controlled real-world settings (like the Grid) until they demonstrate safety equivalent to or surpassing human caregivers around children and pets, then incrementally deploy at scale.
WhenThroughout product development; home deployment should only occur after the CEO is comfortable having the robot autonomously around his own newborn.
DoseIterative rollout: 1 home, 10, 100, 1000, scaling each time after proving reliability.
For whomHumanoid robot companies aiming for the consumer market.
WhySafety failures could permanently poison public trust; autonomous cars’ safety record shows the necessity of cautious, data-driven deployment.
CaveatsSafety involves both semantic understanding (don’t knock over a candle) and intrinsic mechanical safety (no pinch points, soft exteriors). Privacy and cybersecurity must also be solved before deployment.

Brett Adcock acknowledged that getting robots safely into homes is one of the hardest challenges. He equated his personal bar to that of Archer Aviation: he won’t put the public on a vehicle until he’s flown his own family. Similarly, he won’t release a home robot until he trusts it alone with his newborn child. The system must handle unpredictable humans, be gentle, understand social cues, and operate without constant human oversight. He stressed that privacy and cyber security are being designed from the ground up, with a dedicated in-house team. The path is not to rush, but to solve general robotics first in controlled industrial settings, then gradually prove safety at increasing scale.

Mechanism

Figure’s approach: full-body soft wrapping to eliminate pinch points, 360-degree camera coverage for always-on perception, onboard computation for real-time replanning, and plans for airtight cybersecurity and privacy policies. The safety architecture is designed to be fail-tolerant and redundant, using system-level monitoring.

Personal experience

Peter reiterated that the Apple-like brand reputation of being safe and private will be a massive moat.

When I feel safe enough to have a robot in my home. … I think that's a great bar for us to hit. … When I can put a robot in my home fully autonomously end to end around all my kids, I think that's a point where I would trust it.

Also said
“We have like super human perception. We can see basically all around us at all times. We’re always on. We’re always computing like what to go do.”— Justifies why robots could be even safer than humans.

Use a dedicated, low-power onboard inference computer (not cloud-dependent)

WhatPerform all neural net inference locally on the robot using custom, fast, non-H100/GB300 hardware that draws less power and avoids communication dropouts.
WhenWhen designing a humanoid that must operate reliably in environments where Wi-Fi may be lost.
DoseAlways; inference runs at 200 Hz on embedded chips.
For whomRobotics companies deploying autonomous systems in dynamic environments.
WhyLatency and reliability are safety-critical; a lost connection mid-task could be dangerous. Onboard compute also reduces power consumption and cost by orders of magnitude compared to cloud inference.
CaveatsRequires custom ASIC or FPGA development, which is expensive and complex. The model must be optimized to run within the thermal and memory constraints of a humanoid form factor.

Brett highlighted that running models offboard could lead to dangerous situations if the robot loses internet; they treat connectivity as a nice-to-have, not a requirement. The robot’s head houses the main compute, doubling as a thermal chimney. This design echoes lessons from autonomous vehicles, where all safety-critical decisions are made onboard. He also mentioned that they just brought online a 3,000-GPU B200 cluster for pre-training, but that is offline; inference is strictly on the robot.

Mechanism

Figure uses hardware that is “at least a factor of 10 or 100 cheaper and faster” than data center GPUs, fully embedded in the robot. The robot also carries a SIM card and 5G modem for over-the-air updates but is designed to function independently without connectivity. This ensures that even if the robot loses internet, it can continue working.

It’s also running fully on board. So we can basically do very fast inference and policy deployment. … It’s also not sucking down the entire power of the robot.

Also said
“If we lose communications … you know what I mean like if you lose internet it's like hard to do work … but you also want the robot to be able to perform work without a connection.”— Explains the redundancy justification.

What's new

Personal practice updates, fresh positions, predictions

4 items

Helix 2: Full-body neural net control with no C++ code

[06:00-10:00] (estimated from context)

Figure launched Helix 2, a unified neural network that controls the entire humanoid robot, eliminating all handwritten C++ code.

Why this matters: It’s the first robot system to achieve full-body, closed-loop autonomous manipulation and movement using only learned neural nets, removing 109,000 lines of C++.

Background

Prior to Helix 2, Figure’s robots used a hybrid approach: upper-body actions (like picking up a Keurig cup) were driven by neural nets, while lower-body locomotion and control relied on C++ code. The shift to pure neural nets was enabled by a year of architectural work and a new reinforcement-learned controller called S0.

Brett Adcock explained that the company spent the past year refactoring the Helix architecture to enable full-body, neural-net-only operation. This involved designing a fully learned controller (S0) integrated into Helix, giving the robot end-to-end control from sensor input to motor torques at 200 Hz without any coded heuristics. The result is a system that can perform long-horizon bimanual tasks—like unloading a dishwasher, moving through a kitchen, adjusting its pelvis and foot to close drawers—while replanning on the fly. The move from C++ to neural nets is a paradigm shift; the old code was expensive to write ($100/line) and hard to scale, whereas neural nets can be retrained from scratch and accumulate data as a permanent, compounding asset. The bet is that this stack, built from the ground up for neural nets, will lead to general-purpose humanoids much faster than incremental code improvements ever could.

We removed the remaining 109,000 lines of C++. All neural nets today. That’s a full body and that took it from like being able to do really good tabletop manipulation to getting the whole body to move dynamically through a scene while manipulating and planning.

Also said
“We basically spent like a greater part of a year refactoring the helix architecture to be able to enable this to work.”— Explains the timeline and effort required for the switch.

The Grid: 300-robot test facility for 24/7 autonomy

[45:00-48:00]

Figure opened a dedicated building on its campus called ‘the Grid’ where up to 300 robots will run continuously in simulated home and commercial environments.

Why this matters: It marks a shift from single demos to fleet-scale autonomy testing, with mission control monitoring every robot’s vision and telemetry.

Background

After piloting Figure 2 at BMW in 2025, the team learned that real-world fleet operations exposed many failure modes not seen in the lab. The Grid is designed to harden robot reliability across diverse tasks and environments before scaling to customers.

The hosts toured the Grid, which includes a second-story mission control room reminiscent of a 007 situation room, where operators can see through each robot’s cameras as well as overhead views. The facility will be used for both home and commercial use cases, running 24/7. Brett noted that the data flowing back from hundreds of robots will accelerate learning and help the neural net generalize faster. This infrastructure is a key step toward solving general robotics; by running robots continuously in varied mock homes and factory lines, they can accumulate the high-diversity data needed for pre-training and then validation.

Personal experience

Peter Diamandis described the experience of walking through the Grid and seeing the mission control setup as reminiscent of a sci-fi film.

The grid's like my favorite place here. ... We’re going to expand like hundreds of robots into to that will run 24/7. And it has like a little mission command post like second story like kind of like a 007 situation room.

Brett Adcock’s new AI lab HARK for digital agents

[50:00-55:00]

Brett founded a separate AI lab called HARK that builds multimodal models capable of autonomous tool use (like CAD design) and eventually persistent memory and personality.

Why this matters: HARK attempts to bridge the gap between LLMs and physical action, aiming for a Jarvis-like assistant that can control digital tools and eventually physical robots.

Background

Brett sees current LLMs as ‘dumb’ — they lack true memory, reasoning, and tool-use beyond chat. HARK is an effort to build an AI that can go from a single prompt to autonomously finding, installing, and using CAD software to design a monster truck in under an hour, for example.

Brett explained that after the OpenAI collaboration ended, Figure kept advancing its own neural nets, and he funneled that expertise into a new venture focused on digital AI. The first model has already shown ability to perform end-to-end tool use: given a prompt, it finds a CAD package, installs it, learns parameters, and designs a 3D model. The vision is to give these AI models all the tools a human engineer uses (CAD, FEA, etc.) so they can contribute to robot design, then eventually merge digital and physical agents into a single omni-model that can speak, remember, reason, and manipulate the world. This aligns with his belief that AGI requires embodiment and the ability to touch both the digital and physical world.

My inspiration for Hark is I feel like we're chasing ... this very abstract version of reasoning. ... I want Jarvis. ... Nobody's building true multimodal systems that really can reason and understand and have persistent memory. And like that can go out and touch the world and do things.

Also said
“I asked it to build basically a monster truck for my son in CAD and it’s going out. It’s like finding a CAD package. It’s installing it. It’s opening up. It’s like learning how to basically build CAD in the parameters … and it goes off and does it.”— Demonstrates the agent’s autonomous tool-use capability.

Peter Diamandis’s 2026 Humanoids Metatrends report

[06:30-07:00]

Peter announced the release of a 150-page metatrends report covering 100 humanoid robots in development and a deep dive into 10, including Figure.

Why this matters: It’s a comprehensive resource for understanding the exponential growth of the humanoid industry.

Background

The report is available to paid subscribers on Substack and reflects Peter’s ongoing research into meta-trends shaping the future.

Personal experience

Peter mentioned that he is releasing the 2026 version of his humanoids metatrends report, a deep dive into 100 robots in development and 10 in detail, including Figure.

About to release the 2026 version of my humanoids metatrends report. It’s a deep dive looking at a 100 different robots in development right now. A deep dive into 10 of them including figure … 150 pages.

Recommendations

Products, supplements, and tools mentioned in the episode

1 item

Fountain Life health diagnostics

Service

Brett Adcock described his positive experience undergoing a full-stack health assessment at Fountain Life’s Orlando clinic, including MRI, CT, and blood work, and subsequently bought plans for his parents.

The service aims to provide a complete picture of one’s health by measuring everything measurable, generating ~200 GB of data, and then delivering a clinician-guided report with a personalized plan. Peter, who is likely affiliated, emphasized that such comprehensive diagnostics will synergize with future home robots that can tailor diet and lifestyle interventions in real time. He has previously championed the ‘quantified self’ and longevity movement.

vs alternatives

Unlike typical annual physicals, Fountain Life claims to capture far deeper data (full-body MRI, CT, advanced blood panels) akin to an executive-style program, with a built-in interpretation and planning session.

Personal experience

Peter said 'Thanks for referring me' to Brett, implying he had recommended it and likely uses it himself.

I could get basically comprehensive understanding of my body, what's happening, but also somebody there reporting it out and I talked to me through how we understand it, what to do next and a plan.

Also said
“I actually purchased it for my parents and things like this. I think it’s just a great gift.”— Indicates the high net promoter score of the service.
Find Fountain
Disclosed sponsorships2speaker disclosed

Blitzy (autonomous software development platform)

Product Sponsored · disclosed

During a sponsored segment, the host promoted Blitzy as a tool that uses thousands of AI agents to autonomously deliver 80%+ of development work, achieving 5x engineering velocity.

DisclosureThis episode is brought to you by Blitzy, a sponsor.

Blitzy is positioned as a pre-IDE tool that provides planning, code generation, and pre-compilation for enterprise-scale codebases, allowing engineers to start each sprint with generated code and then finish the remaining 20%. Enterprises reportedly see a 5x increase in engineering velocity. The host encouraged listeners to visit blitzy.com for a demo.

vs alternatives

Compared to standard coding co-pilots, Blitzy integrates earlier in the development lifecycle and handles context across millions of lines of code, providing a scaffolded approach rather than auto-complete suggestions.

Blitzy delivers 80% or more of the development work autonomously while providing a guide for the final 20% of human development work required to complete the sprint.

Also said
“Enterprises are achieving a 5x engineering velocity increase when incorporating Blitzy as their preIDE development tool.”— Quantifies the claimed impact.
Find Blitzy

Peter Diamandis’s Metatrends newsletter

Service Sponsored · disclosed

Peter offers a free weekly Meta Trends newsletter summarizing a week of research into technological trends affecting families, companies, and nations.

DisclosureThis is Peter’s own newsletter; he is promoting it at the end of the episode.

At the episode’s close, Peter invited listeners to subscribe at diamandis.com/metatrends. The newsletter is a two-minute read backed by a research team, and it complements his paid Metatrends reports (like the 2026 humanoids deep dive). It’s positioned as a way to stay informed on exponential technologies.

vs alternatives

Compared to other tech news summaries, this newsletter focuses on meta trends — broad, long-term shifts — with a practitioner’s lens from someone investing in and building exponential-tech companies.

Personal experience

Peter says he and his team spend the entire week analyzing trends and distill it into the newsletter.

I put this into a two-minute read every week. If you’d like to get access to the Metatrends newsletter every week, go to diamandis.com/metatrends.

Find Peter

Notable quotes

Lines worth pulling out — contrarian, specific, or perfectly phrased

5 items
Once one robot learns how to do a task, every robot in the fleet knows it and humans don't operate like this. I wish we did.
Captures the compounding data moat of robotic AI systems versus biological learning.
I think we could ship an enormous amount of robots into the current customer base we have now. … We’re kind of good now for the next like two or three years in terms of we have so much demand.
Shows the overwhelming industrial demand and the immediate scalability of the business.
Listen, this is like going to be the largest economy in the world. It’s like half a GDP of human labor. $50 trillion.
Puts the total addressable market into perspective and frames the magnitude of the opportunity.
The things that you can do with neural nets now just completely blow my mind. Versus code we could have never done a quarter of the stuff you saw today. … There’s only so far you can really push code heuristics into a humanoid robot — it’s just a dead end.
Articulates why the switch from code to neural nets is existential for robotics.
I just want a robot in my home I can talk to, remember things. Talk to my kids … when they come home sad from school. I want the robot to understand that, have the EQ, self-awareness to see that, talk to them.
Humanizes the vision of home robots beyond utility, aiming for emotional companionship.

Sign in to share feedback

Tell us if this brief hit the mark or missed it — feedback feeds back into the next iteration of the prompt.

Topics covered

humanoid-roboticsneural-networksfigure-aihelix-2closed-loop-autonomyteleoperationdata-moatvertical-integrationmanufacturing-scalehome-robotsai-safetyhealthcare-diagnosticsagi-embodimentabundancefountain-lifeblitzyhark-ai-labhumanoid-market-sizechina-competition
Free account

Make this library yours

Reading is free for everyone. A free account adds the personal layer: save protocols, follow experts, and see how the other experts weigh in on this same topic.

Create a free accountSign in

Where the experts disagree — weekly

One email a week: the sharpest new disagreements and protocols from the library. No spam, unsubscribe anytime.

Educational summary of the cited expert source — not medical advice. Open the source recording linked above and consult a qualified physician before acting on any protocol.