4AIVN
Back to News

Humans beat Figure AI's robot in a goods sorting race

Published on 19 May, 2026
Humans beat Figure AI's robot in a goods sorting race

Quick Summary

A 10-hour live sorting challenge at Figure AI pitted a human intern against the F.03 humanoid robot — and the human won, by 192 packages and 0.04 seconds per item. But the real story isn't in the scoreboard: the human nearly broke his arm, while the robot kept running. CEO Brett Adcock called it "the last time humans will ever win.

The human won. But his left arm was nearly broken, his fingers blistered, and he admitted he was about 30 minutes away from giving up during a live goods-sorting competition at Figure AI. The robot, of course, was still running — no fatigue, no pain, no need for a break. That's the story behind the human "victory" medal in this head-to-head sorting showdown.

A 10-hour showdown between human and machine

Figure AI — the humanoid robotics company valued at $39 billion — staged a live test called "Man vs. Machine": robot F.03 (Figure 03) versus an intern named Aime in a 10-hour goods-sorting shift. The task was repetitive to the point of monotony: scan a barcode, pick up a package, place it barcode-down onto the conveyor belt — over and over, without stopping.

End-of-shift results:

  • Aime (human): 12,924 packages — averaging 2.79 seconds per item
  • F.03 (robot): 12,732 packages — averaging 2.83 seconds per item

The margin: 192 packages and 0.04 seconds per cycle. By the literal scoreboard, the human won.

But what does "winning" actually mean here?

CEO Brett Adcock wrote on X after the match: "Congrats Aime! He said his left arm is basically broken 😂 This is the last time a human will ever win."

Livestream of the human vs. robot sorting match

And that's precisely the point the 12,924 vs. 12,732 scoreline fails to capture.

The robot doesn't high-five or crack open a beer

After 10 hours, Aime sat down, rubbed his arm, and exhaled. He admitted another 30 minutes would have forced him to quit due to lower back pain and forearm strain. F.03 kept running — no celebration, no rest, no one needed to pat it on the back. And almost certainly, while Aime slept that night, the robot was still sorting the next shift.

Under California labor law, Aime is entitled to a paid lunch break and rest periods during his shift. The robot falls outside the scope of any labor code. This isn't an injustice — it's the nature of the problem: humans and machines are playing by two entirely different sets of rules.

One shift versus a full work week

Performance comparisons typically focus on an 8–10 hour window. But extend the measurement to a full work week and the picture changes entirely. Figure AI had previously demonstrated that F.03 can run continuously for 24 hours, processing over 30,000 packages without a single downtime error. Humans work five days a week; the robot can run seven days, across three shifts.

What kind of robot is Figure 03?

F.03 was unveiled by Figure AI in October 2025. The robot stands 5'8" (about 173 cm), weighs 61 kg, can carry up to 20 kg, and charges wirelessly through a pad integrated into the sole of its foot. A standout feature is its tactile fingertips, which can sense forces as light as 3 grams — sensitive enough to handle fragile objects without breaking them.

At BMW's Spartanburg plant, the previous generation (F.02) assembled over 30,000 vehicles with 99% accuracy. Figure is now building a factory called BotQ with an initial capacity of 12,000 robots per year, targeting 100,000 robots per year within a few years.

Why does this result matter — even though the human won?

Not because robots are about to take every warehouse job tomorrow, but because the performance gap between humans and machines in repetitive physical labor is narrowing at a concerning pace. A year ago, F.03 likely would have lost by a much wider margin — today the gap is just 0.04 seconds per package. Adcock has already announced improvements to both hardware and AI software for next year, and according to him, next time humans won't have a chance.

Microsoft AI CEO Mustafa Suleyman has forecast that AI will automate most office work within 12–18 months. For physical labor, this competition suggests the boundary is thinning fast — and "the last time a human will ever win," in the most literal sense, may not be far off.

What remains after the race

The trial's results have sparked lively debate about the future of the logistics labor market. Now that humanoid robots have reached near-human performance levels, scaling their deployment is largely a question of time and manufacturing cost. Businesses will increasingly shift repetitive, physically demanding tasks to machines.

That said, this doesn't mean humans will be entirely replaced in smart warehouses. Rather, human workers and intelligent AI systems will migrate toward roles in system supervision, handling complex edge cases, and managing supply chains at a higher level. The right combination of robotic endurance and human judgment will define the next generation of high-efficiency warehouse operations.

Discussion (0)

Log in to join the discussion.

No comments yet. Be the first!

Related Articles

Hermes Agent and MCP: Automate Real Workflows

An AI agent may plan extremely well, yet it still cannot update Notion, read GitHub issues, or retrieve reports from Google Drive without the right connection. By combining Hermes Agent with MCP, users can turn a conversation into a practical workflow while clearly controlling which tools and permissions the agent may use. If you are not yet familiar with Hermes memory and its ability to create skills, our guide to what Hermes Agent is provides the necessary foundation. This article focuses on how MCP extends Hermes beyond the terminal so it can work with everyday data and services. What does MCP add to Hermes Agent? MCP is a connection standard between an AI application and a server that provides tools or data. It can be understood as an adapter layer: Hermes remains the agent responsible for understanding the goal and choosing the next step, while each MCP server contributes specific actions such as searching Notion, reading a pull request, creating an issue, or querying files. According to the Hermes Agent MCP documentation, Hermes supports local servers over stdio and remote servers over HTTP. At startup or after a configuration reload, Hermes discovers the tools exposed by each server and registers them in its normal tool system. Users therefore do not need to write a native Hermes tool for every service that already has a suitable MCP server. MCP does not automatically make a workflow safe. A server may expose tools that read, write, create, and delete data. Hermes supports filtering per server, allowing users to enable only the operations they need instead of exposing every capability to the model. How to connect MCP without granting excessive access The standard Hermes installation already includes MCP support. Users can open the picker with hermes mcp, view the catalog with hermes mcp catalog, and test a connection with hermes mcp test. Nous Research reviews entries before they enter the Hermes catalog, but its documentation still recommends reading the manifest, source repository, and installation commands before use. For a server outside the catalog, users can add an HTTP connection or a stdio command to config.yaml. After completing OAuth or configuring the required environment variables, reload MCP and ask Hermes to list the available tools. This simple check reveals servers that failed to connect or tools that were accidentally filtered out. Begin with read access The safest setup is to connect one server, enable read only tools, and test with nonsensitive data. Add create or update permissions only after results are stable. Deletion, sharing changes, and outbound publishing should require human approval. Notion initially needs only search and page reading access. GitHub can be limited to reading repositories, issues, and pull requests. Google Drive access should be limited by folder, account, and required OAuth scope. Three practical workflows with Notion, GitHub, and Google Drive Turn Notion into a knowledge center The official Notion MCP allows an agent to search, read, and update workspace content under the authenticated user's permissions. A useful workflow lets Hermes collect meeting notes, find relevant decisions, and prepare a summary on the project page. Hermes can create a draft first so a user can review it before updating status or assigning work. Notion MCP uses user based OAuth, so it does not fit every unattended process. For scheduled automation, verify how the server maintains authentication and avoid designing a workflow around operations that OAuth cannot support in a headless environment. Coordinate development work through GitHub The GitHub MCP Server is provided and maintained by GitHub, allowing AI tools to work with software development data according to account permissions. Hermes can read new issues, compare them with repository changes, and draft a progress report. It can then prepare issue text or release notes while waiting for an owner to approve the write operation. This workflow works best with clear criteria. For example, Hermes can summarize only pull requests merged during the previous seven days, group them by label, and connect each change to its related issue. A second MCP server can then send the result to Notion as a weekly report. Summarize files and reports from Google Drive With a compatible Google Workspace MCP server, Hermes can find Drive files, read permitted content, and feed data into a reporting process. For example, the agent can locate a sales report in a fixed folder, extract selected metrics, and create a summary for Notion or a GitHub issue. Google collects its official MCP projects in the Google MCP repository, including a path for Google Workspace integration. However, several community Drive servers have different maintenance histories. Check the source, update history, and OAuth scopes of the specific server instead of installing one based only on its name. Combine multiple MCP servers into a controlled workflow A complete workflow can begin in GitHub, use Drive as a data source, and finish in Notion. Hermes reads an issue labeled for reporting, finds the corresponding spreadsheet in Drive, produces a summary, and updates the project page. Each stage uses a different MCP tool group, while Hermes plans the sequence and passes results between stages. Do not enable parallel execution merely because a server supports it. Hermes documentation allows servers to declare parallel tool support but warns that operations reading and writing shared state can conflict. Independent read operations may run together, while Notion updates, issue creation, and file changes should remain sequential. Important: An MCP server is software that can run commands and receive credentials. Install only trusted servers, keep tokens out of prompts, filter dangerous tools, and require approval for deleting, sharing, or publishing data. How should you start the first workflow? Do not connect Notion, GitHub, and Google Drive on the same day and immediately assign a critical process. Choose one input, one output, and one completion criterion that is easy to verify. A first workflow could read closed GitHub issues and create a draft report in Notion without deletion or publishing permissions. After several stable runs, you can turn the procedure into a reusable Hermes skill and add a schedule. The real value of MCP is not the number of connected servers. It is the ability to complete a recurring workflow with a small permission surface, verifiable results, and a clear data path.

Nam
16 Jul, 2026
Comparing Hermes Agent, OpenClaw, and Claude Cowork

Hermes Agent, OpenClaw, and Claude Cowork are all called AI agents because they do more than answer questions. They can break an objective into multiple steps, call tools, read data, and produce a complete result. However, comparing these three products using only a feature table can easily lead to the wrong choice. Hermes Agent is designed as an agent that can learn how you work. OpenClaw is designed as a personal assistant that is always available through messaging channels, while Claude Cowork is intended for users who want to delegate office work in natural language within an environment managed by Anthropic. Therefore, the important question is not which tool is the most powerful, but how much you want to manage yourself and where you want the agent to appear in your daily workflow. Three products with different designs The differences among these three AI agent tools do not lie only in the model that performs the work. They also come from the framework surrounding the model, which manages tools, memory, access permissions, and the execution loop. This concept is explained in detail in our article What is an agent harness?, which helps explain why three products that are all called AI agents can behave so differently. Hermes Agent prioritizes a learning loop and execution environments The notable point about Hermes is that skills are not merely a list of skills that have already been installed. After completing a task, the agent can extract a useful process, save it, and improve it the next time. Our article What is Hermes Agent? explains this self learning mechanism separately. The accumulated value of this mechanism grows over time when users have recurring tasks such as analyzing projects, monitoring information sources, standardizing reports, or operating a chain of internal tools. Hermes also supports several types of sandboxes, including local execution, Docker, SSH, Singularity, and Modal. A sandbox is an isolated environment in which the agent executes commands and works with files. This flexibility lets users choose among speed, control, and isolation, but it also requires an understanding of infrastructure, access permissions, and secret management. OpenClaw uses the Gateway as its coordination center In OpenClaw, the Gateway is the control layer between the agent, devices, and communication channels. A message can become a request for the agent to read a calendar, process a file, call a service, or respond in the correct conversation. This approach feels natural for people who want to message an assistant from their phone without needing to remember where the server is running. OpenClaw is most suitable when the agent needs to react as soon as work appears, without requiring the user to open a computer or enter a separate application. Instead of waiting for you to start a work session, it remains available in the messaging channels you already use and begins processing as soon as a message arrives or a configured event is triggered. Claude Cowork provides a managed workspace Cowork reduces the amount of infrastructure that users must manage themselves. In the desktop application, users can grant access to a local folder and ask Claude to read, organize, or create files. With remote sessions, work takes place in an isolated environment on Anthropic servers, which suits long tasks that do not require a personal computer to remain active continuously. In return, the level of customization and control over the execution layer is not as broad as in a self hosted project. Cowork is better suited to people who want quick results within the Claude ecosystem and do not want to maintain a server or design a Gateway themselves. How the memory of the three tools works differently Memory in an agent should not be understood simply as storing every conversation. A useful system must know which information is worth retaining, which information matters only in the current session, and when old data should be retrieved. If it stores too little, the agent must ask the same questions repeatedly. If it stores too much, costs will certainly increase and sensitive data can easily be used in the wrong context. Hermes stands out by combining persistent memory with skills that can improve. Memory records preferences and context, while a skill records how to complete a type of task. These two layers make the agent feel as if it increasingly understands the user, but quality still depends on whether the user reviews what has been stored and removes processes that are no longer appropriate. OpenClaw runs across several channels at once, and that is also its most complicated aspect. Remembering conversation content is only one part of the problem. The harder issue is distinguishing who is speaking, which channel they are using, and which scope the work belongs to. A command sent in a company Slack group should not automatically pull in private context previously discussed on Telegram. If session configuration and identity policies should be established clearly from the beginning, even a strong model cannot rescue a system when everything remains ambiguous. Cowork limits context to each work session, reads only the files for which you grant access, and uses only the connections you allow. For people who are not accustomed to building systems, this approach is easier to control because the boundaries of each task are relatively clear. However, clear boundaries do not mean automatic understanding. You still need to explain what you want, what completion should look like, and where the data should come from. Cowork cannot infer your company context unless you actively provide it. Which type of work each tool automates best Hermes includes web tools, terminal access, MCP, scheduled runs, and subagents. MCP is a connection standard that helps an agent communicate with external data sources or applications through a consistent interface. By combining MCP with skills, users can turn an experiment into a repeatable process, such as collecting data each morning, analyzing changes, and sending a summary. OpenClaw is strong at workflows that begin with a message or an event. For example, a user can send an invoice to a private channel, after which the agent extracts the information and updates a storage system. Another example is receiving a service alert, gathering additional diagnostic data, and returning a summary directly to the operations group. Its value comes from reducing the gap between the moment a need appears and the moment the agent begins acting. Cowork suits structured office outputs. It can research a topic, synthesize data, create a document, and continue revising it according to feedback. Long running or scheduled tasks help Cowork move beyond short question and answer interactions. Even so, organizations need to inspect each connector and its access permissions before allowing the agent to work with real data stores. When deep integration with private infrastructure is required, Hermes and OpenClaw generally provide more room. When the priority is reducing the time from a request to a finished document, Cowork usually has an advantage. This is the difference between a platform intended for assembly and a product that has already been packaged. How secure are these three AI agents? There is no simple answer to the question of which one is safer because the security risks of each tool come from completely different areas. Hermes Agent: Self hosting does not automatically mean safety. The greatest risk comes from automatically generated skills because, in essence, they are pieces of code that the agent writes and then runs by itself. If they are not reviewed before scheduled execution, a skill with terminal access or permission to send data externally can do things without your knowledge. In addition, API keys and sensitive folders should not appear in prompts or be mounted directly into a sandbox when the skill does not actually need them. OpenClaw: The more channels you connect, the wider the attack surface becomes. The point most easily overlooked is sender authentication. If the Gateway trusts only a display name or a channel that has not been properly secured, a compromised messaging account may be enough for someone to issue commands to your agent. The list of people allowed to send commands and the permissions of each bot need to be reviewed whenever you add a new channel. Claude Cowork: The most concerning risk is prompt injection, which occurs when the agent reads a document or webpage containing hidden instructions intended to redirect it away from your original request. Anthropic provides safeguards and asks for confirmation before sensitive actions, but those measures do not replace your own review of the results or the need to avoid granting broader permissions than the task actually requires. Note: With any agent, do not grant permission to delete files, send external messages, or perform sensitive transactions. Start with read only mode, enable complete logging, and retain human approval for actions that require human judgment. Should you choose Hermes Agent, OpenClaw, or Claude Cowork? Every tool has its own strengths and weaknesses, so selecting the most suitable one depends on the user and the work that needs to be done. Choose Hermes Agent when you want the agent to understand how you work increasingly well Hermes suits developers, researchers, and technical teams that want an agent to learn their own processes and run on flexible infrastructure. It is particularly worth considering when tasks recur often enough for skills to create accumulated value. You need to be prepared to read logs, review skills, and manage execution environments. Best suited when: You want the agent to remember and improve work processes through repeated use. You can manage sandboxes, select models, and control access permissions yourself. Choose OpenClaw when work requires continuous communication through messages OpenClaw is suitable when the assistant needs to be present on Telegram, WhatsApp, Slack, Zalo, or similar channels. It is useful for alerts, rapid collection of requests, and automation that begins with a conversation. In return, you must manage identity, channel permissions, and Gateway stability. Best suited when: Requests usually arrive as messages or automated alerts. You need one coordination point for several different communication channels. Choose Claude Cowork when you need quick results without building a system Cowork suits content creators, analysts, and managers who need complete documents, spreadsheets, and slides without wanting to think about servers or Gateways. In return, you should understand the limits of your plan, where data travels, and which connections are enabled before introducing real work. Best suited when: You want to describe the required outcome in natural language and receive a complete output. You prioritize the convenience of a managed service over full control of the infrastructure.

Nam
14 Jul, 2026
Google Antigravity AI tool changing the workflow

You type a command, AI plans it out, opens the terminal, writes code, opens the web browser to test, and reports the results back. Antigravity does all this while you are drinking coffee. That is not a future scenario; it's how Google Antigravity works, and it has completely changed how I approach building products and automated workflows. What is Google Antigravity? Antigravity is a next-generation IDE launched by Google in late November 2025, alongside Gemini 3. It is built on VS Code but with a completely different architecture: instead of AI sitting in the sidebar suggesting lines of code, the AI in Antigravity works as a true agent once granted permissions. We can assign tasks, and Antigravity completes them on its own, yielding results very similar to Manus and Flowith, but here Antigravity is more geared toward a coding workspace. The biggest difference from Cursor or GitHub Copilot is that Antigravity does not ask you step-by-step but operates asynchronously. When you assign a task, the agent runs in the background while you do other things and then return to see the results. Antigravity completed a typical Next.js + Supabase feature in 42 seconds compared to Cursor's 68 seconds, and its refactoring accuracy reached 94% compared to Cursor's 78%. Antigravity already has software supporting macOS, Windows, and Linux, so users do not need to worry about software compatibility but only about API calling costs. Besides using the default Gemini 3 and Gemini 3 Pro, Antigravity also supports Claude Sonnet, Claude Opus, and GPT-OSS quite well, which is great to not be locked into Google's ecosystem when Claude Sonnet and Claude Opus are leading the market. Key features of Antigravity IDE Direct editing with AI assistanceWith a familiar interface like VS Code, developers can edit code manually or have AI assist with specific sections. Suitable when you want to control every step or handle code sections that require high attention. Orchestrating parallel agentsThis is what truly sets Antigravity apart with its "mission control". You don't need to write code here but coordinate multiple agents running in parallel. For example, one agent is refactoring module A, another is writing tests for module B, and a third is debugging a UI error on the web browser. You monitor progress, leave comments just like on Google Docs, and the agent adjusts itself without needing to stop and wait. Accessing and controlling web browsersThis is the feature I found most impressive when I first used it. Antigravity can open web browsers like Chrome, Firefox, etc., when granted permissions. From there, it can navigate websites, fill out forms, and check interfaces completely automatically. However, note that Antigravity operates exactly like Puppeteer, so it can only interact with tasks on the browser, and when necessary, it can process images and take screenshots, and of course, it doesn't work with websites that have bot blocking enabled. Antigravity's logic is very clearThis is my favorite feature when working with Antigravity. Instead of dumping raw code onto the screen, the agent generates readable deliverables like task lists, implementation plans, and screenshots of the running app so you can check the agent's logic both before and after completing the task. This helps you always know what the agent is doing to evaluate it. What is Antigravity being used for in practice? Many people hear about Antigravity and immediately think it's a tool exclusively for professional programmers. In reality, that's not true because its application scope is much broader than its technical appearance. Building and deploying websitesThis is the most popular use case. You describe the website you want to build — tech stack, features, design style — the agent writes the code, tests it on the browser, and fixes errors itself. Combined with Google Stitch via MCP, you can go from UI design to an actually running product without switching back and forth between multiple tools. Example prompt used in Antigravity: "Build me a landing page using Next.js and Tailwind CSS for a team task management SaaS product. Include a hero section, a 3-tier pricing table, and an email registration form. Deploy it to localhost and take a screenshot of the result." Automating repetitive workflowsOne of the most practical strengths. You can ask Antigravity to automatically crawl data from multiple sources, compile and send reports on a schedule, or automatically fill out forms and perform repetitive actions on the browser — things that previously required writing custom scripts or using complex automation tools. Example prompt: "Every morning at 8 AM, go to my website's analytics page at [URL], get the pageview count and the top 5 articles, and check the info of the 5 articles on my Facebook fan page at [URL], compile it into a markdown file, and save it in the /reports/daily folder." Note: Facebook really doesn't like bots accessing their site, so make sure the bot behaves as much like a human as possible on the browser to avoid Facebook checkpoint errors, which could lead to an account lock. Building AI agent systemsThis is a use case where Antigravity truly outshines other tools. Instead of just writing a single piece of code, you can describe an entire pipeline — for example, "create a system to analyze product reviews from multiple sources, classify sentiment, and automatically tag them into the database" — and then let Antigravity design the agent architecture, divide tasks, and deploy it step by step. Example prompt: "Create a system with 3 agents: agent 1 crawls product reviews from Shopee and Lazada every day, agent 2 analyzes sentiment and classifies them by topic, agent 3 compiles them into a weekly report and saves it to Google Sheets." Refactoring and improving existing codebasesIf you have an old project that needs upgrading, Antigravity is especially useful when doing large-scale refactoring that can change the entire file structure, update dependencies, and write test coverage for untested code. The agent reads the entire codebase, understands the context, and makes consistent changes across multiple files at once instead of fixing them one by one. Example prompt: "Read the entire codebase in the /src folder, act as a security expert to check for SQL injection flaws, OWASP vulnerabilities, and propose fixes so that the logic remains unchanged and ensure there are no errors after refactoring." Researching and compiling information from the webSince Antigravity can control the browser, you can use it to automatically access multiple websites, extract information according to your predefined structure, and compile it into a report or database — suitable for research tasks that require gathering data from multiple sources, which would be very time-consuming if done manually. Example prompt: "Go to these 10 AI news websites [list of URLs] and fan pages [list of URLs], find posts in the past 7 days, extract the title, a 2-sentence summary, and the original link, and save them in a CSV file ordered from newest to oldest." Frequently asked questions when using Antigravity Is Antigravity free?There are both free and paid plans. The free plan has a weekly quota reset with limited rate limits, enough for testing and small projects. The Pro/Ultra plan has a quota reset every 5 hours and receives the highest priority, which is very suitable if you use Antigravity daily for actual work. Can Antigravity work with Word, Excel, PDF files?Antigravity installs Puppeteer, so it mainly operates through web browsers and cannot directly impact file types like Word, Excel, or PDF yet. If you need to process these files, you must add them to the workflow and mention them in the configuration so the agent knows the correct approach. What to do if AI is unresponsive or freezes?This is a fairly common error, especially during peak hours when many users are online simultaneously. In most cases, just restarting Antigravity is fine, no need to worry about losing data or having to set everything up from scratch. Additionally, use git and commit frequently before assigning large tasks to avoid losing code if the agent stops midway. Antigravity is truly a very powerful tool, so why don't we try it right now. Users can download it at antigravity.google/download and start with a small project — not just to test features but to understand this new working mindset before applying it to real projects.

An
30 Mar, 2026
Anthropic Continuously Rolls Out New Features for Claude Code

Anthropic seems to give the tech world, especially developers, no rest, not even for a day. Amidst Claude Code's rapid growth (revenue hitting $2.5 billion just two months after launch and reaching 29 million installations), Anthropic isn't stopping; instead, it's continuously rolling out new features for Claude Code such as Scan Security, Schedule Task, and Remote Control. This has led to widespread speculation that Claude is indeed coding its own features, making it impossible for humans to keep up.Once you delve into and experience the Claude Code ecosystem, I guarantee you'll become "addicted" to coding with this tool, making it extremely difficult to return to traditional working methods. This is simply because the new features Claude Code offers far exceed all conventional expectations.Scan Security (Claude Code Security)This is a security vulnerability scanning capability directly integrated into Claude Code. Immediately after Claude Code announced this Scan Security feature, it wiped billions of dollars from the market capitalization of many security giants like CrowdStrike (down 7.8%), Okta (down 9.2%), and many other big names such as Cloudflare, Zscaler, Tenable, SentinelOne, Fortinet, and Palo Alto Networks also saw declines of over 10%.What is Claude Code Scan Security?: Unlike traditional tools that only perform pattern matching, Claude Code Security can think like a security expert. It analyzes how components interact, traces data flows, and detects complex logical errors or access control flaws that conventional tools often miss.User Experience: You simply run the command /security-review in the terminal. Claude will analyze the source code, provide detailed explanations for each issue, and suggest patches for your review and approval.When to Use: You should use this feature before committing significant changes or when preparing to deploy source code to a production environment to ensure maximum safety and avoid costly, trivial errors.Schedule Task (Task Scheduling)This feature allows you to create recurring tasks or workflows for Claude Cowork to run automatically. Claude will save your instructions (prompts) and execute them according to your chosen frequency (hourly, daily, weekly). It can access connected tools like Slack, Google Drive to collect and process data.User Experience: You can set this up via the /schedule command or through the "Scheduled" tab on the Claude Desktop interface. Claude will automatically execute and send results (reports, summaries) upon completion. However, your computer needs to be connected to the internet and the Claude Desktop application must be open for the task to run on schedule.When to Use: It's very useful for creating daily summary newsletters from email/Slack, generating weekly reports from spreadsheets, or regularly monitoring competitor news without manual intervention each time, especially when you've granted certain permissions for Cowork to interact with your machine. This feature is extremely suitable for Vietnamese developers working across time zones. You can schedule Claude to run tests or compile reports at 3 AM (Vietnam time) so that the next morning you wake up to immediate report results for clients in the US or Europe, without needing to keep your computer on and stay up late monitoring. How convenient is that?Remote Control (Remote Control)This is considered a "lifestyle" feature that helps you maintain your workflow even when away from your desk. However, a small reminder to everyone: use it only when truly necessary, otherwise, take appropriate rest time, as continuous work can lead to burnout.Who is this remote control feature for?: Remote Control creates a secure synchronization layer between your local machine's terminal and the Claude application on your phone (or another web browser). Your code remains securely on your local machine; your phone merely acts as a "window" to control that work session. Anyone who previously had to remote into a company machine via VPN or Tailscale using 4G/5G networks on the streets of Hanoi or Saigon will surely find this /rc feature to be a true game-changer because it's much smoother and more native.User Experience: Simply run the command claude rc or /rc in the terminal, and a QR code will appear. You scan the code with your phone, and from there, you can monitor what Claude is doing in real-time, approve or reject file changes, and provide further instructions.When to Use: This is a lifesaver when you're performing a long-running task (like refactoring an entire library or debugging a complex build) but need to get up to meet someone or have an urgent matter. For instance, you're at the office starting a large project, but it's time to meet a partner. Instead of waiting for the task to finish before leaving, you just enable /rc, grab your phone, get into a Grab car, and on the way, you can still monitor progress, approve files Claude has finished writing, and issue direct editing commands right from the car. By the time you arrive at the client meeting, the programming work will have been completed smoothly.Note: Currently, the Remote Control feature is in preview for paid plans (Pro or Max), is not yet fully widespread, and requires your computer to always be on and connected to the internet.

Nam
27 Feb, 2026