Pular para o conteúdo
← Back to Skalablog

Published article

OpenClaw Security: 5 Steps to a Working Voice Agent

Software Engineering

OpenClaw security has improved since January 2026, though roughly half of its reported advisories remain unresolved by the creator's own account. The project is a self-hosted personal AI assistant you can run on a small virtual private server, connect to Telegram, and extend with skills. This guide explains its current state and builds a working voice-memo agent.

What Is OpenClaw?

OpenClaw is a self-hosted personal AI assistant that you run on your own hardware and drive through messaging apps such as Telegram. It was created by developer Peter Steinberger and released in January 2026, when its sudden popularity triggered what the video describes as a nationwide Mac mini shortage among hobbyists running it at home. The project's canonical repository lives at openclaw/openclaw on GitHub.

The core idea is an agent with a persistent personality and a set of skills. A writable soul.md file defines who the agent is and how it speaks, while a tools.md file gives it context about specific workflows. Skills shown in the video include an email summary digest and a diet tracker, and the framing in the community is blunt: people now compete over how many tokens it takes to automate any mildly inconvenient part of daily life. The video's creator, who makes YouTube videos mocking JavaScript and calls the channel The Code Report, frames the new status symbol as flexing on how few tokens your automation burns.

OpenClaw is not a hosted product. You choose where it runs, which model endpoint it calls, and which messaging channel it uses. That autonomy is the appeal, and it is also exactly why the security conversation around the project matters: a personal assistant with access to your accounts and messages is a high-value target if the code around it is careless.

Where OpenClaw Security Stands in April 2026

OpenClaw security is improving but still incomplete. According to creator Peter Steinberger, as cited in the April 23, 2026 video, the project has received more than 1,100 security advisories since launch and has resolved or closed about 650 of them. Steinberger also claims that most of the remaining reports are low-quality submissions rather than genuine vulnerabilities. These numbers come from the speaker's own account in the video, not from an independent audit.

The January 2026 launch was rocky enough that security problems became the project's defining criticism. The video describes the project at its worst as the "ringleader of the slop circus" with "more backdoors than Bill Gates in a Russian hotel room." Despite that, adoption kept climbing, and by April 2026 Steinberger was telling OpenClaw's origin story on the TED stage and discussing vulnerability remediation with engineers at AI Engineer Europe. A creator publicly walking through triage decisions is a real signal, though it is a vendor-side signal and should be read as such.

How Steinberger Filters Low-Quality Reports

The video shares one concrete triage heuristic attributed to Steinberger: if a vulnerability report is unusually polite or contains an apology, it is very likely AI-generated, because human security researchers rarely apologize in reports. He treats such submissions as slop issues and deprioritizes them.

For readers evaluating OpenClaw security, the useful takeaway is methodological, not the specific filter. Open-source projects at this velocity receive a mix of genuine reports, duplicates, and AI-generated noise, and the maintainer's stated count of unresolved advisories therefore mixes real risk with noise. Anyone running the project should follow its current advisories directly from the OpenClaw repository rather than relying on aggregate numbers.

Why Personal AI Assistants Attract Security Problems

Personal AI assistants concentrate exactly the permissions that attackers want: message access, contact lists, API keys, and often shell access on the host. OpenClaw's January 2026 growth made this visible at scale, because thousands of non-experts stood up always-on agents on home machines within weeks of release.

Three structural factors explain the advisory volume. The project moved fast, so code shipped before hardening. The audience included many people with no operations background, so risky default configurations were common. And the threat model is personal, meaning a single compromised agent leaks one individual's private data rather than an anonymous database row.

The video's own deployment shows the mitigation pattern the project now encourages: run the agent in an isolated environment where it cannot reach sensitive data freely. On Hostinger, the sponsor of the video, the one-click OpenClaw plans execute everything inside a private vault, which limits what a misbehaving or compromised agent can leak. Isolation does not make the software secure; it reduces the blast radius when something goes wrong.

How to Build a Voice-Reply Agent on a VPS

You can build a working OpenClaw voice-reply agent in five steps: deploy on a VPS, connect Telegram, define a personality, wire up text-to-speech, and add workflow context. The video demonstrates the whole flow on Hostinger infrastructure, and each step maps to a specific tool.

  1. Deploy OpenClaw on a VPS. Choose a one-click OpenClaw plan on Hostinger and pick the manual quick-start option so you can SSH into the server later. Cost is a few dollars per month, which is the main argument over buying a Mac mini to leave running at home.
  2. Connect a Telegram bot. Create a bot by messaging BotFather, Telegram's official bot-creation assistant documented at core.telegram.org, then paste the token into the Hostinger deployment so the assistant is reachable from your phone.
  3. Give the agent a purpose and personality. Edit the writable soul.md file on the server to define who the agent is, what it handles, and how it talks.
  4. Add a voice profile. Create your own voice on ElevenLabs, then store the API key and voice ID in an environment file on the server so the agent can synthesize speech in your voice.
  5. Convert and deliver audio. Install FFmpeg, the open-source media conversion toolkit, to turn ElevenLabs MP3 output into an .ogg voice memo, and add a tools.md file describing the full pipeline.

Once configured, the flow is hands-off. You forward an incoming message to your bot, the agent analyzes it, drafts a reply in your defined voice, runs it through the speech script, and returns a finished voice memo you can send on to the original requester.

What the Voice Assistant Actually Does

The demo use case is family tech support. Because the channel's audience assumes its creator can fix any printer, the build routes those requests to the agent: a forwarded message about a dead router port produces a spoken reply diagnosing the port and instructing the caller to unplug and replace the router. The memo then goes to the relative, whom the creator addresses as Uncle Frank, and the human programmer never touches the exchange.

The architecture is deliberately simple. OpenClaw handles message intake and response drafting, ElevenLabs handles synthesis, FFmpeg handles format conversion, and Telegram handles delivery. Every component has a documented primary source, so the pipeline is reproducible by anyone comfortable with SSH and environment variables.

The result, in the video's framing, is emotional detachment from family tech support at scale. The serious point underneath the joke is that OpenClaw earns its hosting cost when it absorbs a repetitive, low-stakes communication loop that a human would otherwise handle manually.

Mac Mini or VPS: Where Should You Run OpenClaw?

Hosting choice follows from how much control you need and what you already own. The video contrasts the two paths that dominated early 2026 adoption, and the tradeoffs are straightforward.

OptionTypical costSetup effortBest for
Mac mini at homeHardware purchase up frontManual install and upkeepFull local control, existing Apple hardware
VPS with one-click templateA few dollars per monthMinutes via templateAlways-on availability, easy redeployment
Local laptopExisting deviceManual, sleeps when closedExperimenting only

The Mac mini path is what the "cool indie hackers" in the video chose, triggering the nationwide shortage in January. A VPS keeps the agent reachable around the clock without a spare machine humming in your home, and the private-vault execution model reduces data-leak risk. A Mac mini makes sense if you want everything on premises and are prepared to manage the OS yourself. Neither choice fixes software-level vulnerabilities, so keep following the project's advisories either way.

Is OpenClaw Ready for Daily Use?

OpenClaw is ready for contained, low-stakes daily use in April 2026, and not yet a set-and-forget appliance. The evidence supports a middle verdict: the creator reports roughly 650 of 1,100-plus advisories resolved, the remaining reports are disputed in quality, and the project's own recommended posture is isolation through a private vault rather than unconditional trust.

The sensible adoption test mirrors the video's. Pick a task that is repetitive, low-stakes, and non-sensitive, like answering printer questions. Deploy on a VPS with isolation enabled, follow the repository's current advisories, and expand the agent's reach only as your confidence in its configuration grows. A personal assistant that drafts voice memos is a good first workload; one holding your email and calendar is a decision that deserves its own risk review.

FAQ

How many security advisories does OpenClaw have?

Per creator Peter Steinberger as cited in the April 2026 video, OpenClaw has received over 1,100 advisories and resolved or closed about 650 of them. He characterizes most of the remainder as low-quality AI-generated reports, a claim from the speaker rather than an independent count.

Who created OpenClaw?

Developer Peter Steinberger created OpenClaw, which launched in January 2026. By April 2026 he had presented the project's origin story at TED and discussed its vulnerability remediation at AI Engineer Europe, according to the video.

Do you need a Mac mini to run OpenClaw?

No. A small virtual private server with a one-click OpenClaw template, such as the Hostinger plans shown in the video, runs the agent for a few dollars per month with a private-vault execution model and SSH access for configuration.

How does the voice-memo feature work?

The agent drafts a text reply, sends it to ElevenLabs using your stored voice profile, then uses FFmpeg to convert the resulting MP3 into an .ogg voice memo that is delivered through your Telegram bot.

Is OpenClaw safe for sensitive personal data?

Contained deployments that isolate the agent in a private vault reduce leak risk, but safety depends on your configuration, the model endpoints you allow, and the current state of the project's advisories. Start with low-stakes workloads before granting access to sensitive accounts.

Context From the 2026 AI Hype Cycle

The video places OpenClaw inside the broader 2026 wave of AI consumer products, most of which it mocks: a $400 AI-enabled smart toilet with a microphone and a 2-megapixel camera, pitched around tracking gut health down to Taco Bell Diablo chicken nuggets, plus AI clippers and an AI pocket pet. The hype is not limited to small creators. Former GitHub CEO Nat Friedman's line that pessimists sound smart but optimists make money frames the creator's willingness to retry the project, and Nvidia CEO Jensen Huang is quoted calling OpenClaw's release the most important software release, probably ever. Interest charts aside, the security story remains the reason to deploy cautiously.

From Watched Video to Written Reference

The whole argument of this piece is that a five-minute video contains a deployable workflow: advisory context, a hosting decision, and a five-step build you can follow from your desk. That knowledge is only useful if it survives outside the video timeline, where you can search a step, quote a number, or link a source. This written version also exists for readers of Dev Doido do canal do youtube, with a version available at crazystack.com.br.

Turn Your Own Videos Into Articles

If you have the same kind of knowledge sitting in your own YouTube videos, including tutorials, interviews, and lessons that deserve a searchable written form, Skala Blog turns a video URL into a structured article. Paste the link, get a transcription, and edit the resulting draft into something you would publish.

The pipeline is the same one behind this article: YouTube video, transcription, article, then your editorial pass on top.

Source video