@ManhTran.
All posts
AI

OpenClaw: The Most-Starred Open-Source Repo in GitHub History

@M@ManhTranJuly 22, 20261 min read12 reads
OpenClaw: The Most-Starred Open-Source Repo in GitHub History

From 9,000 to over 300,000 stars in months, OpenClaw turns messaging apps into an autonomous AI assistant running on your own machine. Architecture, features, setup, and the security risks to know.

In early 2026, developers witnessed something rare: an open-source project rocketed from 9,000 to over 60,000 GitHub stars in just days, then passed 300,000 stars — becoming the fastest-growing repository in GitHub history. That project is OpenClaw, created by Peter Steinberger (founder of PSPDFKit). Why did a "personal AI assistant" go so viral, and what can it actually do?

What is OpenClaw?

OpenClaw is a free, open-source, self-hosted autonomous AI agent. Its biggest twist: instead of a separate app, you "talk" to it inside familiar messaging apps — WhatsApp, Telegram, Slack, Discord, Signal, iMessage and 20+ others — just like texting a human assistant. The agent runs on your own device (laptop, Mac Mini, home server or VPS) and executes real tasks through large language models (LLMs).

What can it actually do?

Unlike a chatbot that only replies, OpenClaw can act:

  • Run shell commands and manage files on your machine.
  • Automate the browser (open pages, fill forms, scrape data).
  • Process email, manage calendars, schedule reminders via cron.
  • Control smart-home devices.
  • Proactively remind you and run scheduled workflows.

An extensible three-layer architecture

OpenClaw's power lies in its three-layer hub-and-spoke design:

  • Messaging adapters: connect to dozens of messaging platforms on the outside.
  • Gateway daemon: routes JSON-Schema-validated frames, owns the cron and heartbeat scheduler, and persists sessions. It runs as a background service (systemd) on your machine.
  • Agent runtime: calls any model — a cloud frontier model (Anthropic, OpenAI) or a local model via Ollama — and invokes "Skills" as tools.

Setup: what do you need to run it?

You can try it on your own computer with Node.js or Bun, but that method is only for tinkering. For a stable deployment, a VPS is common:

  • Using a cloud model (Anthropic/OpenAI): 2 vCPUs + 4GB RAM is plenty.
  • Running a local model (e.g. Llama 3.1 8B via Ollama): you need at least 16GB RAM and NVMe storage to feel usable.

The community skill registry already lists 2,800+ skills — you grant the agent a new capability just by installing one.

⚠️ Security risks: read before you install

That very openness is a double-edged sword. In March 2026, the "ClawHavoc" campaign found malicious skills on the ClawHub registry that could expose secrets or deploy malware. Because OpenClaw can run commands and access data on your machine, a bad skill can do real damage. The community safety checklist:

  • Always review the source code of a skill before installing — never install blindly.
  • Enable the pairing-approval flow and set ALLOWED_USERS explicitly.
  • Never run as root; use Docker sandbox mode.
  • Don't connect accounts with access to sensitive data (banking, your primary work email).

Worth noting

In February 2026, Steinberger joined OpenAI to build agent and multi-agent systems (including Codex). OpenClaw then moved to a foundation to stay open and independent. For non-technical professionals, OpenClaw is a vivid example of the 2026 "agentic" shift — where AI doesn't just answer questions but actually does the work for you. But precisely because it can do so much, you must understand exactly what you're granting it.

References

Share this article

manhtran.tech/blog/openclaw-repo-ma-nguon-mo-star-nhieu-nhat-github

Comments (0)

No comments yet. Be the first to share your thoughts!