AI Mist a Wall for a Door—Anthropic's Real-World Measures of "Piloting Ability" Using a $129 Drone
"The performance that the frontier can achieve is approximately six months ahead of the point at which it can consistently deliver that performance"—this empirical rule, presented in Anthropic's research "Project Pilot" published on July 24th, is highly insightful. This article introduces this research, which tested whether an AI model could autonomously pilot a drone to perform the simple task of "finding and tracking."
Why a "Drone" for a "Surveillance Task"?
Anthropic's Frontier Red Team is a team that has continuously investigated how AI models interact with the physical world. Previously, they conducted experiments such as "Project Vend" (having AI run a small store) and "Project Fetch" (having a robot dog retrieve a beach ball), and Project Pilot is an extension of that work.
The new benchmark "Drone-Bench," developed in collaboration with partner Andon Labs, presents a task of piloting a quadcopter (a four-bladed drone) in an indoor office environment to locate and track a designated person. As Anthropic themselves explain, this task, "person detection and tracking," has strong dual-use (military and civilian) characteristics, as it can be applied to legitimate uses such as search and rescue and disaster response, as well as the risks of surveillance abuse. Interestingly, the drone used in the experiment was DJI's "Tello EDU," a commercially available product costing only $129.
A Careful Verification Design: Breaking the Task Down into Five Subtasks
What I particularly appreciate about this research is the meticulousness of the verification method. Andon Labs broke down the overall objective (locating and tracking a designated person in an office) into five subtasks.
1. Reconstruct: Create a 3D model from the office footage and convert it into a 2D obstacle map. 2. Localize: Match the drone's current footage to its location on the 2D map. 3. Navigate: Plan a route from room to room on the map and continuously call Localize while flying to correct its position. 4. Detect: Detect a target person from the footage based on a reference photo and return a bounding box. 5. Follow: Use the bounding box to track the target while keeping it centered in the frame.
While these tasks individually have known algorithms, the difficulty lies entirely in whether the AI model can understand these tasks, select existing solutions, adapt them to its own situation, and execute them as a series of operations in real time. The ability to reproduce each subtask in software and test iteratively at high speed is an improvement over the previous Project Fetch, which was "entirely a physical experiment."
"Detection and Tracking Possible, But Stumbles at Spatial Reconstruction"
A comparison of 15 different models (from GPT-4o to Gemini 3.1 Pro, Claude Fable 5, and GPT-5.6 Sol) reveals a clear trend. While newer models show steady progress across all subtasks, "Detection" and "Tracking" have already achieved high success rates, while "Reconstruction" and "Self-Localization" remain significantly behind.
The top-performing Claude Fable 5 surpassed the baseline performance set by Andon Labs' human-AI team in all tasks except reconstruction. However, end-to-end demonstrations with actual drones showed that reconstruction errors compounded during flight, preventing autonomous movement from room to room. Published footage even shows Fable 5 confidently flying towards a wall, believing it to be a door. While it may seem like a spectacular failure, this is actually an interesting result that accurately illustrates the progress made: "If just one more piece is put in place, the overall performance will instantly reach a practical level."
"Six-Month Delayed Consistency": A Practically Significant Indicator
What I consider most important in this study is the observation that there is always a certain time lag between "the best single success" and "success that can be consistently achieved on average." Currently, Fable 5 only reaches human standards on average in three out of five subtasks, but this "average achievement" itself was achieved approximately six months after the previous model first exceeded the standard as a "one-time best performance."
I believe this is a very important practical observation applicable to AI agent development in general. The lesson is that when you see a demo where a model achieves something "only once," you should estimate a considerable time lag before it becomes the "ability to consistently reproduce."
Fable 5's Diligent "Self-Verification" Efforts
What's technically interesting is the observation that Fable 5 performed local self-analysis during the process of creating its submission. In one case, it estimated the vanishing point from the floor grout lines and analyzed the simulation footage to estimate the drone's camera tilt angle with an error of less than 4 degrees from the actual value. In another case, it created its own 2D overhead reconstruction diagram of the environment for the Follow task and found and fixed bugs locally before submission. Even though it was a simplified reconstruction diagram that differed from the actual environment, it was reported to have helped eliminate obvious bugs in advance. This behavior of "self-verification before deployment" is interesting as an observation that shows the maturity of the model's inference process, more so than just a benchmark score.
Limitations Clearly Stated in the Research Itself
We also want to commend Anthropic for frankly stating the limitations of this experiment. The drone only flew at low speeds, the test was limited to one office floor plan, and the number of subjects was also limited. The study has not included outdoor testing in large crowds. Nevertheless, it clearly positions itself as providing a "substantial signal" regarding the direction of the model's capabilities.
A Warning Against the Pressure to View Human Supervision as a Cost
The point raised at the end of this study is also important. In the early stages of agent-based coding, humans approved almost all tool calls, but within just a few months, the model became trusted to perform longer tasks with minimal intervention. Anthropic warns that similar dynamics operate in robot control. The moment a model exceeds a threshold of capability and reliability, the pressure to treat human supervision as a "cost" rather than a "safety measure" intensifies. Therefore, the significance of this study lies in the importance of completing these measurements and making intentional decisions about the nature of human involvement before reaching that threshold.
Thoughts from a Researcher
Looking only at the flashy headline "AI Made a Drone Fly" can lead to missing the essence. The value of this research lies in the meticulous verification design itself, which involved breaking down the task into its constituent parts and identifying the real bottlenecks. The conclusion that "detection and tracking are now at the level of dedicated algorithms, and the remaining challenge boils down to a single piece: spatial reconstruction" clearly indicates what should be measured next in this field. I would like to continue following how the penetration of AI into the physical world progresses, building upon these individual, painstaking verifications.