local_fire_departmentHoneystax
search⌘K
loginLog Inperson_addSign Up
layers
HONEYSTAX TERMINAL v1.0
HomeNewsSavedSubmit
workspace_premiumRanked stack board
Honeystax/OpenClawOpenClaw

🦞OpenClawThe board builders scan before they commit to this stack.

The open-source personal AI assistant ecosystem

OpenClaw is the largest open-source AI assistant platform with 238K+ GitHub stars. Browse the full ecosystem — core alternatives, skills, plugins, memory systems, infrastructure, and desktop apps.

15 featured picks207 builds with real repo pull13 live lanes to scan
426Tracked Builds
1576kRepo Stars
13Builder Lanes
Read the boardcodeOpen official source
rocket_launch

Fastest Way Into OpenClaw

1. Install

pip install open-interpreter

Requires Python 3.10+. The core runtime for OpenClaw-compatible assistants.

2. Run

interpreter

Opens an interactive terminal session. The assistant can execute code, browse the web, and manage files.

3. Customize

Add skills, connect local LLMs, configure memory systems, and install plugins from the ecosystem below.

code GitHubmenu_book Docspackage_2 PyPI
menu_book

Complete Setup Guide

From zero to your own AI assistant — no experience needed

1download

Install Python

You need Python 3.10 or 3.11 — other versions cause issues

  1. a

    Check your current version

    python3 --version

    If you see 3.10.x or 3.11.x, skip to step 2. If you see 3.8 or 3.9, or "command not found", keep going.

  2. b

    Install Python 3.11

    Mac: brew install [email protected] (install Homebrew first if you don't have it)

    Windows: Download from python.org. Check "Add Python to PATH" during install.

    Linux: sudo apt install python3.11 python3.11-venv

2folder

Set Up a Virtual Environment

Keeps Open Interpreter isolated — skip this and you'll regret it

  1. a

    Create the environment

    python3 -m venv interpreter_env

    This creates a folder called interpreter_env with its own Python. Your system Python stays untouched.

  2. b

    Activate it

    Mac/Linux:

    source interpreter_env/bin/activate

    Windows:

    interpreter_env\Scripts\activate

    You'll see (interpreter_env) in your terminal prompt. That means it's working.

3terminal

Install Open Interpreter

One command — takes about 30 seconds

  1. a

    Install via pip

    pip install open-interpreter

    Make sure your virtual environment is activated first (you should see (interpreter_env) in your prompt).

  2. b

    Verify it installed

    interpreter --version

    You should see a version number. If you get "command not found", try python3 -m interpreter instead.

4key

Set Up Your API Key

Or skip this entirely and use a free local model (step 6)

  1. a

    Get an OpenAI API key

    Go to platform.openai.com/api-keys and create one. You'll need to add a payment method — but costs are low (~$0.01-0.05 per conversation).

  2. b

    Set the key in your terminal

    Mac/Linux (add to ~/.zshrc or ~/.bashrc to persist):

    export OPENAI_API_KEY='sk-your-key-here'

    Windows:

    setx OPENAI_API_KEY sk-your-key-here
  3. c

    Save money with GPT-3.5

    interpreter --model gpt-3.5-turbo

    GPT-4 is the default and costs ~10x more. GPT-3.5 is fine for most tasks. You can also use interpreter --fast as a shortcut.

5play_arrow

Your First Run

Try these to see what it can do

  1. a

    Launch it

    interpreter

    You'll see a chat prompt. Type naturally — it understands plain English.

  2. b

    Things to try

    > What files are in my Downloads folder?> Create a Python script that renames all .jpg files in ~/Photos to include today's date> Make a bar chart of my monthly expenses from expenses.csv> Search Google for the weather in Tokyo and summarize it

    It writes and runs code to accomplish each task. You'll be asked to approve before it executes anything.

  3. c

    Auto-approve mode (skip confirmations)

    interpreter -y

    The -y flag auto-approves all code execution. Only use this when you trust the task — it can modify files and run shell commands.

6computer

Run Locally — Free & Private

No API key needed. Your data never leaves your machine.

  1. a

    Install Ollama

    Download from ollama.com. One-click install on Mac/Windows/Linux.

  2. b

    Pull a model

    ollama pull llama3.1

    Llama 3.1 8B is a great starting point (~4.7GB download). For better results with more RAM, try ollama pull llama3.1:70b.

  3. c

    Run Open Interpreter with your local model

    interpreter --local

    It auto-detects Ollama and uses your downloaded model. Zero API costs. Fully private — nothing leaves your machine.

lightbulbHardware tip: 8B models need ~8GB RAM. 70B models need ~48GB RAM. If your machine struggles, stick with 8B — it handles most tasks well.

7extension

Extend with the Ecosystem

Skills, plugins, memory, and desktop apps

Once you're comfortable with the basics, explore the tools below. The OpenClaw ecosystem includes:

build Skills

Custom commands that teach your assistant new abilities — from web scraping to data analysis.

extension Plugins

Connect to external services — Slack, email, calendars, databases, and more.

memory Memory Systems

Give your assistant long-term memory so it remembers your preferences and past conversations.

desktop_windows Desktop Apps

GUI interfaces that make Open Interpreter feel like a native app instead of a terminal tool.

rocket

Starter Packages

Pick a use case. Get the command. Start building in 60 seconds.

desktop_windows

Desktop & GUI Agent

Control your screen — fill PDFs, manipulate Excel, automate native apps. OS Mode gives the agent eyes and hands via PyAutoGUI + screenshots. macOS: enable Screen Recording in Privacy settings. Linux: install scrot. Single monitor only.

pip install open-interpreter[os] && interpreter --os

Try this

"Open my Downloads folder, find all PDFs from this month, fill in the 'Name' field on each form with 'John Doe', and save them to a new folder called 'filled'"

open-interpreter[os]PyAutoGUIPillowChrome/Edge
code

GitHub Issue → PR

Agent watches your issues board, creates a branch, writes code, runs tests, and opens a PR. The #1 most-requested autonomous workflow on Reddit. Use --loop to keep it running until done. Pair with --safe_mode for guardrails.

pip install open-interpreter && interpreter -y --loop

Try this

"Look at the open issues in this repo, pick the one labeled 'good first issue', create a branch, implement the fix, write a test, and open a pull request"

open-interpretergitpytest/jest--loop flag
lock

Local-First (Zero Cost)

Fully private — nothing leaves your machine. Zero API costs. Requires Ollama + a model download. 8B models need ~8GB RAM. Codestral recommended for code tasks, Llama 3.1 for general use. Fix JSON spam with --no-llm_supports_functions.

pip install open-interpreter[local] && ollama pull codestral && interpreter --api_base http://localhost:11434/v1 --model ollama/codestral

Try this

"Analyze the Python files in this project, find potential bugs, and generate a report — all running locally with no API calls"

open-interpreter[local]Ollamacodestral/llama3.1llamafile
group

Multi-Agent Crew

Team of specialized agents that collaborate via CrewAI — researcher, writer, reviewer, each with defined roles. Requires uv package manager. Windows users need Visual Studio Build Tools for chromadb compilation.

pip install uv && uv tool install crewai && crewai create crew my_project && cd my_project && crewai install

Try this

"Create a crew: researcher finds the top 5 competitors, analyst compares their pricing, writer produces a markdown report with recommendations"

crewaicrewai[tools]chromadbuvlangchain
analytics

Data Pipeline

Chain analysis steps: load data → clean → analyze → visualize → export PDF. The agent writes and runs Python (pandas, matplotlib) autonomously. Use GPT-4o for complex statistical reasoning. Known issue: long outputs get truncated — break tasks into steps.

pip install open-interpreter && interpreter -y --model gpt-4o

Try this

"Load sales_data.csv, remove duplicate rows, calculate monthly revenue trends, create a bar chart for each quarter, and export everything as a PDF report"

open-interpreterpandasmatplotlibGPT-4o
folder_managed

File Automation

Real-time filesystem monitoring with watchdog — auto-sort downloads, rename files, deduplicate, archive old files. Schedule runs periodic maintenance. Use interpreter to generate the watchdog script, then run it standalone.

pip install open-interpreter watchdog schedule && interpreter -y

Try this

"Write me a Python script using watchdog that monitors my Downloads folder, automatically moves .pdf files to ~/Documents/PDFs and .jpg files to ~/Pictures, and runs 24/7"

open-interpreterwatchdogscheduletenacity
auto_awesome

Where OpenClaw is winning

The strongest lanes in this ecosystem, ranked by visible public proof.

Lead builds

hubCore & Alternatives

6 tracked builds

512k ★
Leadopenclaw374k★#2nanobot43k★#3chatgpt-on-wechat42k★#4nanoclaw29k★#5ironclaw12k★#6awesome-openclaw-usecases12k★
Lead builds

buildSkills

6 tracked builds

28k ★
Leadawesome-openclaw-skills22k★#2skillshare1.9k★#3awesome-openclaw-skills-zh1.2k★#4openclaw-skills990★#5x-research-skill939★#6model-hierarchy-skill321★
Lead builds

extensionPlugins

6 tracked builds

16k ★
Leadclawhub8.7k★#2buildwithclaude3.0k★#3dingtalk-openclaw-connector2.1k★#4openclaw-china1.0k★#5openclaw-wechat925★#6openclaw-plugin-wecom251★
Lead builds

psychologyMemory Systems

6 tracked builds

49k ★
LeadOpenViking25k★#2memU14k★#3MemOS9.4k★#4OpenClaw Supermemory581★#5PowerMem490★#6MoltBrain363★
Lead builds

dnsInfrastructure

6 tracked builds

80k ★
Lead1Panel36k★#2openfang18k★#3moltworker9.9k★#4ClawWork7.5k★#5ClawRouter6.5k★#6OpenClawInstaller3.0k★
Lead builds

desktop_windowsDesktop & Dashboard

4 tracked builds

12k ★
LeadClawX7.3k★#2clawra2.0k★#3VisionClaw1.6k★#4openclaw-mission-control1.1k★
list

OpenClaw board

(403)

Filter the ranked board by type, timing, and proof signal.

Type
AllSkillsMCPsPluginsAgentsApps
Time
This weekThis month3 months
Sort
TrendingNewPopularClear

403 signals found

openclawstar
PlatformOpenClaw Core

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

Featured build374k repo stars112256 builder votes
OpenAI, Go, Bun, Claude, Ruby, Django, Rust, TypeScript, Anthropic, GPT, Docker, pnpm
Featured buildAlready singled out as one of the stronger builds on the board.
UUniversalOpenAI, Go, Bun, Claude, Ruby, Django, Rust, TypeScript, Anthropic, GPT, Docker, pnpm

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞. An open-source platform for the AI coding ecosystem.

claw-codestar
App

The repo is finally unlocked. enjoy the party! The fastest repo in history to surpass 100K stars. Join Discord: htt...

Featured build189k repo stars18920 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.
Codex

The repo is finally unlocked. enjoy the party! The fastest repo in history to surpass 100K stars. Join Discord: https://discord.gg/5TUQKqFWd Built in Rust using oh-my-codex.

cc-switchstar
MCP ServerClaude Code Apps

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent....

Featured build79k repo stars23692 builder votes
Go, TypeScript, Rust, React, Tailwind, Vite, SQLite, Claude, Anthropic, GPT, AWS, pnpm
Featured buildAlready singled out as one of the stronger builds on the board.
Go, TypeScript, Rust, React, Tailwind, Vite, SQLite, Claude, Anthropic, GPT, AWS, pnpm

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io. An open-source mcp server for the AI coding ecosystem.

claude-memstar
SKILL

Persistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses...

Featured build78k repo stars23308 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.

Persistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More. An open-source skill for the AI coding ecosystem.

O
CowAgentstar
MCP Server

CowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞...

Featured build45k repo stars13425 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.
OOpenClaw

CowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择DeepSeek/OpenAI/Claude/Gemini/ MiniMax/Qwen/GLM/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。. An open-source mcp server for the AI coding ecosystem.

U
nanobotstar
AgentOpenClaw Core

Lightweight, open-source AI agent for your tools, chats, and workflows.

Featured build43k repo stars12915 builder votes
Python, Go, OpenAI, Claude, Anthropic, GPT, LLM, Docker
Featured buildAlready singled out as one of the stronger builds on the board.
UUniversalPython, Go, OpenAI, Claude, Anthropic, GPT, LLM, Docker

Lightweight, open-source AI agent for your tools, chats, and workflows.. An open-source agent for the AI coding ecosystem.

O
chatgpt-on-wechatstar
SKILL

CowAgent是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、拥有长期记忆并不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择...

Featured build42k repo stars4237 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.
OOpenClaw

CowAgent是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、拥有长期记忆并不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择OpenAI/Claude/Gemini/DeepSeek/ Qwen/GLM/Kimi/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。

chatgpt-on-wechat
AgentOpenClaw Core

CowAgent super AI assistant

Stack favorite42k repo stars4159 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude Codeschedule2 months

Super AI assistant that thinks and plans autonomously. Supports Feishu, DingTalk.

O
1Panelstar
AgentOpenClaw Infra

1Panel is a modern, open-source VPS control panel — and the only one with native AI agent support. Run Ollama mode...

Featured build36k repo stars10667 builder votes
Go, Express, MySQL, Redis, Ollama, AWS, Cloudflare
Featured buildAlready singled out as one of the stronger builds on the board.
OOpenClawGo, Express, MySQL, Redis, Ollama, AWS, Cloudflare

1Panel is a modern, open-source VPS control panel — and the only one with native AI agent support. Run Ollama models, deploy OpenClaw agents, and manage your entire server stack from one clean web interface.. An open-source agent for the AI coding ecosystem.

O
AstrBotstar
MCP ServerChat & Assistants

AI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and ca...

Featured build33k repo stars9879 builder votes
Go, Python, Docker, Kotlin, OpenAI, Anthropic, Ollama, GPT, LLM
Featured buildAlready singled out as one of the stronger builds on the board.
OOpenClawGo, Python, Docker, Kotlin, OpenAI, Anthropic, Ollama, GPT, LLM

AI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative.. An open-source mcp server for the AI coding ecosystem.

U
zeroclawstar
Agent

Fast, small, and fully autonomous AI personal assistant infrastructure, any OS, any platform — deploy anywhere, swap...

Featured build32k repo stars9464 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.
UUniversal

Fast, small, and fully autonomous AI personal assistant infrastructure, any OS, any platform — deploy anywhere, swap anything. An open-source agent for the AI coding ecosystem.

free-claude-codestar
Plugin

Use claude-code for free in the terminal, VSCode extension or discord like OpenClaw (voice supported)

Featured build29k repo stars8583 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.

Use claude-code for free in the terminal, VSCode extension or discord like OpenClaw (voice supported). An open-source plugin for the AI coding ecosystem.

AionUistar
SKILLClaude Code Apps

Free, local, open-source 24/7 Cowork app for OpenClaw, Hermes Agent, Claude Code, Codex, OpenCode, Gemini CLI and 20+...

Featured build26k repo stars7880 builder votes
Go, LLM, TypeScript, React, SQLite, Vite, Bun, JavaScript, Python, Rust, Java, OpenAI, Claude, Anthropic, Ollama, GPT, AWS
Featured buildAlready singled out as one of the stronger builds on the board.
Go, LLM, TypeScript, React, SQLite, Vite, Bun, JavaScript, Python, Rust, Java, OpenAI, Claude, Anthropic, Ollama, GPT, AWS

Free, local, open-source 24/7 Cowork app for OpenClaw, Hermes Agent, Claude Code, Codex, OpenCode, Gemini CLI and 20+ more CLI | Customize your assistants | Star if you like it!. An open-source skill for the AI coding ecosystem.

O
OpenVikingstar
SKILLOpenClaw Memory

OpenViking is an open-source context database designed specifically for AI Agents(such as openclaw). OpenViking unifi...

Featured build25k repo stars7369 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.
OOpenClaw

OpenViking is an open-source context database designed specifically for AI Agents(such as openclaw). OpenViking unifies the management of context (memory, resources, and skills) that Agents need through a file system paradigm, enabling hierarchical context delivery and self-evolving.. An open-source skill for the AI coding ecosystem.

awesome-openclaw-skills
ToolOpenClaw Skills

The definitive collection of OpenClaw skills

Stack favorite22k repo stars2223 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude Codeschedule1 week

Curated directory of OpenClaw skills — the official skill registry. Memory, planning, research, DevOps, security, and hundreds more.

O
NemoClawstar
Platform

Run OpenClaw more securely inside NVIDIA OpenShell with managed inference

Featured build21k repo stars6185 builder votes
Featured buildAlready singled out as one of the stronger builds on the board.
OOpenClaw

Run OpenClaw more securely inside NVIDIA OpenShell with managed inference. An open-source platform for the AI coding ecosystem.

O
gbrain
Agent

Garry's Opinionated OpenClaw/Hermes Agent Brain

Stack favorite19k repo stars5550 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHours

Garry's Opinionated OpenClaw/Hermes Agent Brain. An open-source agent for the AI coding ecosystem.

U
openfang
MCP ServerOpenClaw Infra

Open-source Agent Operating System

Stack favorite18k repo stars3525 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
UUniversalscheduleHours

Open-source Agent Operating System. An open-source mcp server for the AI coding ecosystem.

O
LangBot
AgentAgent Frameworks

Production-grade platform for building agentic IM bots - 生产级多平台智能机器人开发平台. 提供 Agent、知识库编排、插件系统 / Bots for Discord / Sl...

Stack favorite16k repo stars4828 builder votes
Python, Go, OpenAI, Anthropic, Ollama, LLM, Docker, Kubernetes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHoursPython, Go, OpenAI, Anthropic, Ollama, LLM, Docker, Kubernetes

Production-grade platform for building agentic IM bots - 生产级多平台智能机器人开发平台. 提供 Agent、知识库编排、插件系统 / Bots for Discord / Slack / LINE / Telegram / WeChat(企业微信, 企微智能机器人, 公众号) / 飞书 / 钉钉 / QQ / Satori e.g. Integrated with ChatGPT(GPT), DeepSeek, Dify, n8n, Langflow, Coze, Claude, Gemini, MiniMax, Ollama, SiliconFlow, Moonshot, GLM, openclaw / hermes agent. An open-source agent for the AI coding ecosystem.

O
open-im-server
App

IM Chat OpenClaw

Stack favorite16k repo stars4792 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHours

IM Chat OpenClaw. An open-source app for the AI coding ecosystem.

O
edict
Agent

三省六部制 · OpenClaw Multi-Agent Orchestration System — 9 specialized AI agents with real-time dashboard, model confi...

Stack favorite16k repo stars3169 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHours

三省六部制 · OpenClaw Multi-Agent Orchestration System — 9 specialized AI agents with real-time dashboard, model config, and full audit trails. An open-source agent for the AI coding ecosystem.

notebooklm-py
SKILL

Unofficial Python API and agentic skill for Google NotebookLM. Full programmatic access to NotebookLM's features—incl...

Stack favorite15k repo stars4444 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleHours

Unofficial Python API and agentic skill for Google NotebookLM. Full programmatic access to NotebookLM's features—including capabilities the web UI doesn't expose—via Python, CLI, and AI agents like Claude Code, Codex, and OpenClaw.. An open-source skill for the AI coding ecosystem.

O
casdoor
MCP ServerAI Gateway

An open-source Agent-first Identity and Access Management (IAM) /LLM MCP & agent gateway and auth server with web UI...

Stack favorite14k repo stars4097 builder votes
Docker, Go, Kubernetes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHoursDocker, Go, Kubernetes

An open-source Agent-first Identity and Access Management (IAM) /LLM MCP & agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD. An open-source mcp server for the AI coding ecosystem.

U
AutoResearchClaw
Agent

Fully autonomous & self-evolving research from idea to paper. Chat an Idea. Get a Paper. 🦞

Stack favorite13k repo stars3765 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
UUniversalscheduleHours

Fully autonomous & self-evolving research from idea to paper. Chat an Idea. Get a Paper. 🦞. An open-source agent for the AI coding ecosystem.

U
ironclaw
AgentOpenClaw Core

IronClaw is an Agent OS focused on privacy, security and extensibility

Stack favorite12k repo stars3698 builder votes
Go, TypeScript, Rust, SQLite, PostgreSQL, OpenAI, Claude, Anthropic, Ollama, LLM, Docker
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
UUniversalscheduleHoursGo, TypeScript, Rust, SQLite, PostgreSQL, OpenAI, Claude, Anthropic, Ollama, LLM, Docker

IronClaw is an Agent OS focused on privacy, security and extensibility. An open-source agent for the AI coding ecosystem.

awesome-openclaw-usecases
AppOpenClaw Core

Community collection of OpenClaw use cases

Stack favorite12k repo stars1188 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude Codeschedule1 week

Real-world use cases for OpenClaw — personal productivity to enterprise automation.

Auto-claude-code-research-in-sleep
MCP Server

ARIS (Auto-Research-In-Sleep) — Lightweight Markdown-only skills for autonomous ML research: cross-model review lo...

Stack favorite10k repo stars3137 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleHours

ARIS (Auto-Research-In-Sleep) — Lightweight Markdown-only skills for autonomous ML research: cross-model review loops, idea discovery, and experiment automation. No framework, no lock-in — works with Claude Code, Codex, OpenClaw, or any LLM agent.. An open-source mcp server for the AI coding ecosystem.

U
MemOS
MCP ServerOpenClaw Memory

Self-evolving memory OS for LLM & AI Agents: ultra-persistent memory, hybrid-retrieval, and cross-task skill reuse, w...

Stack favorite9.4k repo stars2806 builder votes
Go, Python, Redis, OpenAI, LLM, Docker
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
UUniversalscheduleHoursGo, Python, Redis, OpenAI, LLM, Docker

Self-evolving memory OS for LLM & AI Agents: ultra-persistent memory, hybrid-retrieval, and cross-task skill reuse, with 35.24% token savings. An open-source mcp server for the AI coding ecosystem.

O
clawhub
SKILLOpenClaw Plugins

Skill Directory for OpenClaw

Stack favorite8.7k repo stars2620 builder votes
Go, React, OpenAI, Vite, Bun
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHoursGo, React, OpenAI, Vite, Bun

Skill Directory for OpenClaw. An open-source skill for the AI coding ecosystem.

O
ClawX
SKILLOpenClaw Desktop

ClawX is a desktop app that provides a graphical interface for OpenClaw AI agents. It turns CLI-based AI orchestratio...

Stack favorite7.3k repo stars2188 builder votes
Go, React, TypeScript, Tailwind, Vite, OpenAI, Anthropic, pnpm, ESLint, Prettier
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHoursGo, React, TypeScript, Tailwind, Vite, OpenAI, Anthropic, pnpm, ESLint, Prettier

ClawX is a desktop app that provides a graphical interface for OpenClaw AI agents. It turns CLI-based AI orchestration into a desktop experience without using the terminal. China website is https://clawx.com.cn.. An open-source skill for the AI coding ecosystem.

O
Star-Office-UI
Agent

A pixel office for your OpenClaw: turn invisible work states into a cozy little space with characters, daily notes, a...

Stack favorite5.8k repo stars1162 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHours

A pixel office for your OpenClaw: turn invisible work states into a cozy little space with characters, daily notes, and guest agents. Code under MIT; art assets for non-commercial learning only.. An open-source agent for the AI coding ecosystem.

O
OpenClaw-RL
SKILL

OpenClaw-RL: Train any agent simply by talking

Stack favorite5.4k repo stars1613 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleHours

OpenClaw-RL: Train any agent simply by talking. An open-source skill for the AI coding ecosystem.

O
openclaw-zero-token
Model

OpenClaw: Use All Major AI Models NO API Token! Claude/ChatGPT/Gemini/DeepSeek/Doubao/Grok/Qwen/Manus/Kimi

Stack favorite4.8k repo stars1433 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

OpenClaw: Use All Major AI Models NO API Token! Claude/ChatGPT/Gemini/DeepSeek/Doubao/Grok/Qwen/Manus/Kimi. An open-source model for the AI coding ecosystem.

O
HiClaw
Agent

An open-source Collaborative Multi-Agent OS for transparent, human-in-the-loop task coordination via Matrix rooms.

Stack favorite4.4k repo stars444 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

An open-source Collaborative Multi-Agent OS for transparent, human-in-the-loop task coordination via Matrix rooms.

O
memory-lancedb-pro
Agent

Enhanced LanceDB memory plugin for OpenClaw — Hybrid Retrieval (Vector + BM25), Cross-Encoder Rerank, Multi-Scope Iso...

Stack favorite4.3k repo stars432 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

Enhanced LanceDB memory plugin for OpenClaw — Hybrid Retrieval (Vector + BM25), Cross-Encoder Rerank, Multi-Scope Isolation, Management CLI

AI-Coding-Guide-Zh
Agent

Claude Code + OpenClaw + Codex 中文教程 | 36篇完整教程 | 18万字 | 三线学习路径 | 小白到企业实战

Stack favorite4.1k repo stars811 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

Claude Code + OpenClaw + Codex 中文教程 | 36篇完整教程 | 18万字 | 三线学习路径 | 小白到企业实战. An open-source agent for the AI coding ecosystem.

O
Clawith
Agent

Your Agent Company

Stack favorite3.8k repo stars382 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

Your Agent Company

O
OpenClawChineseTranslation
AgentOpenClaw i18n

🦞 OpenClaw (Clawdbot/Moltbot) 汉化版 - 开源个人 AI 助手中文版 | Claude/ChatGPT LLM 接入 | WhatsApp/Telegram/Discord 多平台 | 每小时自动同步...

Stack favorite3.8k repo stars379 builder votes
Go, Ollama, Docker, Cloudflare, Nginx, pnpm
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutesGo, Ollama, Docker, Cloudflare, Nginx, pnpm

🦞 OpenClaw (Clawdbot/Moltbot) 汉化版 - 开源个人 AI 助手中文版 | Claude/ChatGPT LLM 接入 | WhatsApp/Telegram/Discord 多平台 | 每小时自动同步 | CLI + Dashboard 全中文 | 全流程搭建教程,以及排错指南!

Claude-Code-x-OpenClaw-Guide-Zh
AgentOpenClaw i18n

从零到企业实战:Claude Code 官方编程神器 + OpenClaw 224K Stars 开源AI助手 | 双顶流中文教程 | 21篇教程 130000+字

Stack favorite3.7k repo stars740 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

从零到企业实战:Claude Code 官方编程神器 + OpenClaw 224K Stars 开源AI助手 | 双顶流中文教程 | 21篇教程 130000+字. An open-source agent for the AI coding ecosystem.

U
MetaClaw
SKILL

🦞 Just talk to your agent — it learns and EVOLVES.

Stack favorite3.4k repo stars671 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
UUniversalscheduleMinutes

🦞 Just talk to your agent — it learns and EVOLVES.. An open-source skill for the AI coding ecosystem.

golutra
Agent

Multi-agent AI orchestration platform for automation, workflows, and developer tools. Golutra transforms Codex, Claud...

Stack favorite3.3k repo stars333 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

Multi-agent AI orchestration platform for automation, workflows, and developer tools. Golutra transforms Codex, Claude Code, and OpenClaw into a unified agent system with parallel execution, task orchestration, long-running workflows, and AI productivity workspace.

tokscale
Agent

A CLI tool for tracking token usage from OpenCode, Claude Code, 🦞OpenClaw (Clawdbot/Moltbot), Pi, Codex, Gemini,...

Stack favorite3.1k repo stars309 builder votes
Claude, Go, OpenAI, TypeScript, Rust, Zig, React, SQLite, Anthropic, GPT, GitHub Actions, Bun
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutesClaude, Go, OpenAI, TypeScript, Rust, Zig, React, SQLite, Anthropic, GPT, GitHub Actions, Bun

A CLI tool for tracking token usage from OpenCode, Claude Code, 🦞OpenClaw (Clawdbot/Moltbot), Pi, Codex, Gemini, Cursor, AmpCode, Factory Droid, Kimi, and more! • Global Leaderboard + 2D/3D Contributions Graph

O
goclaw
Agent

GoClaw - GoClaw is OpenClaw rebuilt in Go — with multi-tenant isolation, 5-layer security, and native concurrency. De...

Stack favorite3.0k repo stars303 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

GoClaw - GoClaw is OpenClaw rebuilt in Go — with multi-tenant isolation, 5-layer security, and native concurrency. Deploy AI agent teams at scale without compromising on safety.

O
FlyEnv
Agent

Lightweight Native Local Dev Toolbox for Windows, macOS & Linux. Run Hermes Agent/OpenClaw/n8n/Apache/Nginx/Caddy/To...

Stack favorite2.9k repo stars287 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

Lightweight Native Local Dev Toolbox for Windows, macOS & Linux. Run Hermes Agent/OpenClaw/n8n/Apache/Nginx/Caddy/Tomcat/PHP/Node.js/Bun/Deno/Python/Java/Go/Ruby/Perl/Rust/Erlang/MySQL/PostgreSQL/MariaDB/MongoDB/Redis/RabbitMQ/Mailpit/Elasticsearch without Docker. The faster, modular alternative to XAMPP/MAMP/Laravel Herd/NVM/FNM/PHPStudy...

XiaohongshuSkills
SKILL

支持小红书自动发布、自动评论、自动检索的 Skill。支持 OpenClaw、Codex、CC 等

Stack favorite2.9k repo stars860 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

支持小红书自动发布、自动评论、自动检索的 Skill。支持 OpenClaw、Codex、CC 等. An open-source skill for the AI coding ecosystem.

clawd-on-desk
Agent

A pixel desktop pet that watches Claude Code, Codex, Cursor & other AI coding agents — so you don't have to.

Stack favorite2.9k repo stars286 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

A pixel desktop pet that watches Claude Code, Codex, Cursor & other AI coding agents — so you don't have to.

O
clawpanel
Agent

🦞 OpenClaw & Hermes Agent 多引擎 AI 管理面板 — 内置 AI 助手(工具调用 + 图片识别 + 多模态),一键安装 | Tauri v2 跨平台桌面应用 | 11 种语言

Stack favorite2.7k repo stars275 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

🦞 OpenClaw & Hermes Agent 多引擎 AI 管理面板 — 内置 AI 助手(工具调用 + 图片识别 + 多模态),一键安装 | Tauri v2 跨平台桌面应用 | 11 种语言

Kunlun-M
Agent

KunLun-M — Open-source static code analysis for PHP, JavaScript, Java, with AST-based semantic scanning and one-click...

Stack favorite2.4k repo stars238 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

KunLun-M — Open-source static code analysis for PHP, JavaScript, Java, with AST-based semantic scanning and one-click AI Agent integration (OpenClaw, Codex, Claude Code, Hermes, and more).

O
CordysCRM
SKILL

Cordys CRM 是新一代开源 AI CRM 系统,融合信息化、数字化与智能化,支持私有化部署,Skills 技能现已上线,全面驱动 OpenClaw AI 助理。

Stack favorite2.2k repo stars222 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

Cordys CRM 是新一代开源 AI CRM 系统,融合信息化、数字化与智能化,支持私有化部署,Skills 技能现已上线,全面驱动 OpenClaw AI 助理。

super-agent-party
SKILL

All-in-one AI companion! Super Agent Party = Self hosted neuro sama + openclaw! 全能AI伴侣!超级智能体派对 = 自托管neuro sama +...

Stack favorite2.2k repo stars220 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

All-in-one AI companion! Super Agent Party = Self hosted neuro sama + openclaw! 全能AI伴侣!超级智能体派对 = 自托管neuro sama + openclaw!

OpenClaw-Docker-CN-IM
ConfigOpenClaw Infra

Chinese IM Docker bundle

Stack favorite2.2k repo stars220 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude Codeschedule1 day

Pre-configured Docker with Feishu, DingTalk, QQ, WeCom. One command deploy.

O
openclaw-lark
App

飞书官方出品的 OpenClaw 飞书/Lark Channel 插件

Stack favorite2.2k repo stars218 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

飞书官方出品的 OpenClaw 飞书/Lark Channel 插件

O
mission-control
Agent

The world's first Autonomous Product Engine (APE): AI agents research your market, generate features, and ship code a...

Stack favorite2.1k repo stars616 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

The world's first Autonomous Product Engine (APE): AI agents research your market, generate features, and ship code as PRs. Convoy mode, crash recovery, cost tracking, 80+ API endpoints. Self-hosted via OpenClaw Gateway.. An open-source agent for the AI coding ecosystem.

O
dingtalk-openclaw-connector
PluginOpenClaw Plugins

Official OpenClaw DingTalk channel plugin | 钉钉官方 OpenClaw 插件

Stack favorite2.1k repo stars205 builder votes
LLM, Go, OpenAI
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutesLLM, Go, OpenAI

Official OpenClaw DingTalk channel plugin | 钉钉官方 OpenClaw 插件

agentic-stack
SKILL

One brain, many harnesses. Portable.agent/ folder (memory + skills + protocols) that plugs into Claude Code, Cursor,...

Stack favorite2.0k repo stars406 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

One brain, many harnesses. Portable.agent/ folder (memory + skills + protocols) that plugs into Claude Code, Cursor, Windsurf, OpenCode, OpenClaw, Hermes, or DIY Python — and keeps its knowledge when you switch.. An open-source skill for the AI coding ecosystem.

O
openclaw-master-skills
SKILL

Curated collection of 339+ best OpenClaw skills — weekly updated by MyClaw.ai from ClawHub, GitHub & community. AI...

Stack favorite2.0k repo stars402 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

Curated collection of 339+ best OpenClaw skills — weekly updated by MyClaw.ai from ClawHub, GitHub & community. AI, productivity, dev, marketing, finance & more.. An open-source skill for the AI coding ecosystem.

skillshare
SKILLOpenClaw Skills

Sync skills across all AI CLI tools with one command and simplify team sharing. Supporting Codex, Claude Code, Ope...

Stack favorite1.9k repo stars569 builder votes
Go, Claude
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutesGo, Claude

Sync skills across all AI CLI tools with one command and simplify team sharing. Supporting Codex, Claude Code, OpenClaw & more. An open-source skill for the AI coding ecosystem.

O
clawsweeper
App

ClawSweeper scans all issues and PRs and suggest what we can close, and why. It runs every PR / Issue once a week.

Stack favorite1.7k repo stars167 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

ClawSweeper scans all issues and PRs and suggest what we can close, and why. It runs every PR / Issue once a week.

drawio-skill
SKILL

drawio-skill — From Text to Professional Diagrams. An Agent Skill (SKILL.md) that generates draw.io diagrams from nat...

Stack favorite1.6k repo stars491 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

drawio-skill — From Text to Professional Diagrams. An Agent Skill (SKILL.md) that generates draw.io diagrams from natural language and exports to PNG/SVG/PDF. Works with Claude Code, OpenClaw, Hermes Agent, OpenAI Codex, and SkillsMP.. An open-source skill for the AI coding ecosystem.

nano-banana-pro-prompts-recommend-skill
SKILL

AI skill for OpenClaw & Claude Code — recommend from 10000+ Nano Banana Pro (Gemini) image prompts. Smart search by u...

Stack favorite1.5k repo stars151 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

AI skill for OpenClaw & Claude Code — recommend from 10000+ Nano Banana Pro (Gemini) image prompts. Smart search by use case, content remix, sample images.

O
u-claw
App

🦞 U-Claw 虾盘 - OpenClaw AI 助手离线安装 U 盘 | 提供远程维护·定制开发·企业私有化部署服务 | Remote support & custom AI development

Stack favorite1.4k repo stars144 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

🦞 U-Claw 虾盘 - OpenClaw AI 助手离线安装 U 盘 | 提供远程维护·定制开发·企业私有化部署服务 | Remote support & custom AI development

poco-claw
Agent

A more beautiful and easier-to-use alternative to OpenClaw. It features a nicer Web UI, built-in IM support, a sandbo...

Stack favorite1.3k repo stars131 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

A more beautiful and easier-to-use alternative to OpenClaw. It features a nicer Web UI, built-in IM support, a sandboxed runtime and channel-based team collaboration. Under the hood, it is powered by a Claude Code–based agent.

O
OpenMOSS
Agent

A self-organizing multi-agent collaboration platform for OpenClaw. Multiple AI agents work as an autonomous team — pl...

Stack favorite1.3k repo stars254 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

A self-organizing multi-agent collaboration platform for OpenClaw. Multiple AI agents work as an autonomous team — planning, executing, reviewing, and patrolling tasks with zero human intervention.. An open-source agent for the AI coding ecosystem.

awesome-openclaw-skills-zh
ToolOpenClaw Skills

OpenClaw Chinese skill directory

Stack favorite1.2k repo stars124 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude Codeschedule1 week

Chinese-language skill directory. Organized by scenario, supports Chinese invocation.

O
AIGC-Claw
SKILL

AI 全自动化视频生成员工 | Your First AIGC Coworker. Chat an Idea. Get a Film. 🦞

Stack favorite1.2k repo stars121 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

AI 全自动化视频生成员工 | Your First AIGC Coworker. Chat an Idea. Get a Film. 🦞

U
webclaw
MCP Server

Fast, local-first web content extraction for LLMs. Scrape, crawl, extract structured data — all from Rust. CLI, REST...

Stack favorite1.2k repo stars117 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
UUniversalscheduleMinutes

Fast, local-first web content extraction for LLMs. Scrape, crawl, extract structured data — all from Rust. CLI, REST API, and MCP server.

clawgod
SKILL

This is NOT a third-party Claude Code client. ClawGod is a runtime patch applied on top of the official Claude Code....

Stack favorite1.1k repo stars114 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude CodescheduleMinutes

This is NOT a third-party Claude Code client. ClawGod is a runtime patch applied on top of the official Claude Code. It works with any version — as Claude Code updates, the patch continues to take effect

O
ClawManager
Agent

A Kubernetes-native control plane for AI agent instance management, with governed AI access, runtime orchestration, a...

Stack favorite1.1k repo stars112 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

A Kubernetes-native control plane for AI agent instance management, with governed AI access, runtime orchestration, and reusable resources across multiple agent runtimes.

O
mem9
App

Unlimited memory for OpenClaw

Stack favorite1.1k repo stars110 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
OOpenClawscheduleMinutes

Unlimited memory for OpenClaw

openclaw-mission-control
AppOpenClaw Desktop

AI Agent Orchestration Dashboard

Stack favorite1.1k repo stars107 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude Codeschedule2 weeks

Manage agents, assign tasks, coordinate multi-agent workflows from a single dashboard.

claudeclaw
App

A lightweight, open-source OpenClaw version built into your Claude Code.

Stack favorite1.1k repo stars106 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

A lightweight, open-source OpenClaw version built into your Claude Code.

AgentHandover
SKILL

What if OpenClaw, Claude Code, Codex etc. knew how to do your work without you saying it? AgentHandover observes you,...

Stack favorite1.0k repo stars315 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

What if OpenClaw, Claude Code, Codex etc. knew how to do your work without you saying it? AgentHandover observes you, learns and teaches your agents with self-improving skills.. An open-source skill for the AI coding ecosystem.

nocturne_memory
MCP Server

A lightweight, rollbackable, and visual Long-Term Memory Server for MCP Agents. Say goodbye to Vector RAG and amnesia...

Stack favorite1.0k repo stars105 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleMinutes

A lightweight, rollbackable, and visual Long-Term Memory Server for MCP Agents. Say goodbye to Vector RAG and amnesia. Empower your AI with persistent, graph-like structured memory across any model, session, or tool. Drop-in replacement for OpenClaw.

openclaw-china
PluginOpenClaw Plugins

OpenClaw Chinese IM integrations

Stack favorite1.0k repo stars103 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
Claude CodeClaude Codeschedule1 week

Plugins for Feishu, DingTalk, QQ, WeCom, WeChat.

wuphf
Agent

WUPHF is a collaborative office of AI employees who build and maintain their own knowledge base to never lose context...

Stack favorite1.0k repo stars100 builder votes
Stack favoriteReal repo gravity. Builders already treat this as a serious reference point.
scheduleInstant

WUPHF is a collaborative office of AI employees who build and maintain their own knowledge base to never lose context for the tasks you give them. Supports Claude Code, Codex, OpenClaw and local LLMs via OpenCode.

O
clawsec
SKILL

A complete security skill suite for OpenClaw's and NanoClaw agents (and variants). Protect your SOUL.md (etc') with d...

Builder signal967 repo stars97 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

A complete security skill suite for OpenClaw's and NanoClaw agents (and variants). Protect your SOUL.md (etc') with drift detection, live security recommendations, automated audits, and skill integrity verification. All from one installable suite.

thClaws
Agent

Open-source agent harness platform. Native Rust, multi-provider, runs on your own machine. Sovereign by design.

Builder signal953 repo stars95 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude CodescheduleInstant

Open-source agent harness platform. Native Rust, multi-provider, runs on your own machine. Sovereign by design.

poco-agent
AgentOpenClaw Core

Beautiful alternative to OpenClaw

Builder signal932 repo stars93 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude Codeschedule3 weeks

Nicer UI, better UX, same powerful agent. More polished OpenClaw experience.

O
RedBox
SKILL

用AI创作高质量内容,用gpt-image-2创作的最佳生图工具,AI图片自动编排,小红书版Openclaw,自媒体创作者的AI工作台,小红书创作AI工具RedClaw,支持小红书图文下载、创作风格学习、小红书AI创作| Star...

Builder signal931 repo stars93 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

用AI创作高质量内容,用gpt-image-2创作的最佳生图工具,AI图片自动编排,小红书版Openclaw,自媒体创作者的AI工作台,小红书创作AI工具RedClaw,支持小红书图文下载、创作风格学习、小红书AI创作| Star if you like it! | 你桌面盒子里的AI小河狸

MedgeClaw
SKILL

Open-source AI research assistant for biomedicine — chat to run RNA-seq, drug discovery, clinical analysis, and more....

Builder signal930 repo stars186 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude CodescheduleInstant

Open-source AI research assistant for biomedicine — chat to run RNA-seq, drug discovery, clinical analysis, and more. Built on Claude Code with 140 K-Dense scientific skills, real-time dashboard, and RStudio/JupyterLab integration. | 开源生物医学 AI 研究助手,对话即可驱动转录组、药物发现、临床分析等工作流,集成 140 个科学技能与实时研究看板。. An open-source skill for the AI coding ecosystem.

openclaw-wechat
PluginOpenClaw Plugins

Connect OpenClaw to personal WeChat

Builder signal925 repo stars92 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude Codeschedule1 week

Stable WeChat integration for OpenClaw agents.

claw-empire
Agent

Command Your AI Agent Empire from the CEO Desk — A local-first AI agent office simulator that orchestrates CLI, OAuth...

Builder signal837 repo stars251 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Command Your AI Agent Empire from the CEO Desk — A local-first AI agent office simulator that orchestrates CLI, OAuth, and API-connected agents (Claude Code, Codex CLI, Gemini CLI, OpenCode, and more) as a virtual autonomous company.. An open-source agent for the AI coding ecosystem.

O
team9
Agent

Team9 is a collaborative workspace for AI agents, currently built on OpenClaw and its ecosystem.

Builder signal833 repo stars83 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Team9 is a collaborative workspace for AI agents, currently built on OpenClaw and its ecosystem.

O
AgentOS
Agent

Airymax AgentOS: 200K+ context & 10M memory, 1000h tasks at 99.1% accuracy, 80% token reduction, 5× industry efficien...

Builder signal828 repo stars83 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Airymax AgentOS: 200K+ context & 10M memory, 1000h tasks at 99.1% accuracy, 80% token reduction, 5× industry efficiency. Natively compatible with OpenClaw, openJiuwen, LangChain, Claude & OpenAI APIs; more agent protocols coming.

O
ClawBio
SKILL

ClawBio - The first bioinformatics-native AI agent skill library. Local-first. Reproducible. Built on OpenClaw.

Builder signal825 repo stars83 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

ClawBio - The first bioinformatics-native AI agent skill library. Local-first. Reproducible. Built on OpenClaw.

O
memind
Agent

Self-evolving cognitive memory and context engine for AI agents in Java. Empowering 24/7 proactive agents like OpenCl...

Builder signal803 repo stars80 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Self-evolving cognitive memory and context engine for AI agents in Java. Empowering 24/7 proactive agents like OpenClaw with understanding and SOTA performance.

O
clawflows
Agent

Superpowers for your Openclaw. Powerful prebuilt agent workflows.

Builder signal780 repo stars78 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Superpowers for your Openclaw. Powerful prebuilt agent workflows.

U
cashclaw
Agent

An autonomous agent that takes work, does work, gets paid, and gets better at it.

Builder signal751 repo stars150 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
UUniversalscheduleInstant

An autonomous agent that takes work, does work, gets paid, and gets better at it.. An open-source agent for the AI coding ecosystem.

O
mlxstudio
Agent

MLX Studio - Home of JANG_Q - Image Gen/Edit + Chat/Code All in one - + OpenClaw (Anthropic API)

Builder signal721 repo stars72 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

MLX Studio - Home of JANG_Q - Image Gen/Edit + Chat/Code All in one - + OpenClaw (Anthropic API)

O
Kai
Platform

OpenClaw alternative in your pocket

Builder signal720 repo stars72 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

OpenClaw alternative in your pocket

swapper-toolkit
Agent

DeFi toolkit for AI agents and coding assistants — deposit funds, execute trades, and manage crypto wallets. Works wi...

Builder signal710 repo stars142 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

DeFi toolkit for AI agents and coding assistants — deposit funds, execute trades, and manage crypto wallets. Works with Claude Code, Cursor, Windsurf, OpenClaw, CrewAI, AutoGPT, and other AI agent frameworks.. An open-source agent for the AI coding ecosystem.

O
happyclaw
App

happy happy happyclaw~

Builder signal690 repo stars69 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

happy happy happyclaw~

O
nix-openclaw
App

Packages OpenClaw for nix.

Builder signal683 repo stars68 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Packages OpenClaw for nix.

O
JavaClaw
App

JavaClaw, a Java version of OpenClaw built on Spring Boot, Spring AI and JobRunr

Builder signal644 repo stars64 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

JavaClaw, a Java version of OpenClaw built on Spring Boot, Spring AI and JobRunr

O
piclaw
Agent

I'm going to build my own OpenClaw, with blackjack... and bun!

Builder signal643 repo stars64 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

I'm going to build my own OpenClaw, with blackjack... and bun!

O
rt-claw
App

Making AI Assistants Cheap Again!

Builder signal637 repo stars64 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Making AI Assistants Cheap Again!

gpt-image2-ppt-skills
SKILL

Clone any.pptx into your own deck — OpenAI gpt-image-2 mimics the layout, you supply the content. 10 bundled styles....

Builder signal615 repo stars62 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Clone any.pptx into your own deck — OpenAI gpt-image-2 mimics the layout, you supply the content. 10 bundled styles. | 把任何.pptx 模板"抄"成你的 PPT:gpt-image-2 仿版式、你换内容,另含 10 套精选风格。Claude Code / OpenClaw skill.

O
openclaw-office
Agent

OpenClaw Office is the visual monitoring and management frontend for the OpenClaw Multi-Agent system. It connects to...

Builder signal595 repo stars60 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

OpenClaw Office is the visual monitoring and management frontend for the OpenClaw Multi-Agent system. It connects to the OpenClaw Gateway via WebSocket to visualize Agent collaboration as a "digital office" and provides a full console management interface.

O
fastclaw
App

Faster and better openclaw alternative

Builder signal582 repo stars58 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Faster and better openclaw alternative

O
ClawProBench
Agent

ClawProBench is a live-first benchmark harness for evaluating LLM agents in the OpenClaw runtime with deterministic...

Builder signal576 repo stars58 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

ClawProBench is a live-first benchmark harness for evaluating LLM agents in the OpenClaw runtime with deterministic grading and repeated-trial reliability.

agent-sessions
Agent

Session browser + Agent Cockpit + Analytics + Limits tracker for Codex CLI/Desktop/VSC, Claude Code CLI/Desktop, O...

Builder signal545 repo stars55 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Session browser + Agent Cockpit + Analytics + Limits tracker for Codex CLI/Desktop/VSC, Claude Code CLI/Desktop, OpenCode CLI, Gemini CLI, Pi CLI, GitHub Copilot CLI + OpenClaw & Hermes agents. Search/filter ALL past sessions, archive sessions, resume instantly, see rate limits in real-time. Native macOS app.

O
CountBot
SKILL

更适配中文用户的轻量开源AI Agent | 国产大模型Coding plan支持 | 兼容OpenClaw Skills生态| 已接入微信ClawBot/微博龙虾/飞书/钉钉/QQ/小智AI/Telegram/Deepseek-v4。

Builder signal542 repo stars54 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

更适配中文用户的轻量开源AI Agent | 国产大模型Coding plan支持 | 兼容OpenClaw Skills生态| 已接入微信ClawBot/微博龙虾/飞书/钉钉/QQ/小智AI/Telegram/Deepseek-v4。

pentest-agents
MCP Server

Bug bounty agent framework for Claude Code, Codex, Gemini, Cursor, Windsurf, Copilot, and OpenClaw — 48 agents, 26 co...

Builder signal516 repo stars155 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Bug bounty agent framework for Claude Code, Codex, Gemini, Cursor, Windsurf, Copilot, and OpenClaw — 48 agents, 26 commands, 19 CLI tools, 2 MCP servers, autonomous hunt loops, exploit chain builder.. An open-source mcp server for the AI coding ecosystem.

swarmclaw
MCP Server

Open-source self-hosted AI agent runtime and multi-agent framework for autonomous agent swarms. Agent memory, MCP too...

Builder signal501 repo stars50 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Open-source self-hosted AI agent runtime and multi-agent framework for autonomous agent swarms. Agent memory, MCP tools, schedules, delegation, and 23+ LLM providers (Claude, GPT, Gemini, OpenRouter, Ollama). A practical Claude Code and LangChain alternative.

O
openclaw-a2a-gateway
SKILL

OpenClaw plugin implementing the A2A (Agent-to-Agent) protocol v0.3.0 — bidirectional agent communication gateway

Builder signal500 repo stars150 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

OpenClaw plugin implementing the A2A (Agent-to-Agent) protocol v0.3.0 — bidirectional agent communication gateway. An open-source skill for the AI coding ecosystem.

O
ClawWork
Agent

Client for OpenClaw — Connect ClawWork to your own OpenClaw and unlock 10x multi-session productivity.

Builder signal497 repo stars50 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Client for OpenClaw — Connect ClawWork to your own OpenClaw and unlock 10x multi-session productivity.

O
mateclaw
SKILL

MateClaw — Your second brain with Multi-Agent Orchestration, MCP Protocol, Skills & Memory, Dream, and Multi-Chann...

Builder signal468 repo stars47 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

MateClaw — Your second brain with Multi-Agent Orchestration, MCP Protocol, Skills & Memory, Dream, and Multi-Channel Support. Built on Spring AI Alibaba.

swarmvault
MCP Server

The local-first LLM Wiki: open-source knowledge graph builder, RAG knowledge base, and agent memory store. Built on A...

Builder signal465 repo stars47 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

The local-first LLM Wiki: open-source knowledge graph builder, RAG knowledge base, and agent memory store. Built on Andrej Karpathy's pattern. An Obsidian alternative for personal knowledge management, AI second brain, and durable Claude Code / Codex / OpenClaw memory.

claw-orchestrator
Agent

Run Claude Code, Codex, Gemini, Cursor Agent and custom coding CLIs as one unified runtime for claw-style agent syste...

Builder signal449 repo stars45 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Run Claude Code, Codex, Gemini, Cursor Agent and custom coding CLIs as one unified runtime for claw-style agent systems. Runs standalone, with first-class OpenClaw plugin support.

O
openclaw-dashboard
Agent

A beautiful, zero-dependency command center for OpenClaw AI agents

Builder signal434 repo stars43 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

A beautiful, zero-dependency command center for OpenClaw AI agents

U
OneResearchClaw
SKILL

Any research. One Claw. 🦞 From any materials to research with fully autonomous & skill-driven researcher.

Builder signal434 repo stars87 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
UUniversalscheduleInstant

Any research. One Claw. 🦞 From any materials to research with fully autonomous & skill-driven researcher.. An open-source skill for the AI coding ecosystem.

O
n8n-claw
SKILL

OpenClaw-inspired autonomous AI agent built entirely in n8n. Adaptive RAG-powered memory, Skills via MCP templates, E...

Builder signal432 repo stars43 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

OpenClaw-inspired autonomous AI agent built entirely in n8n. Adaptive RAG-powered memory, Skills via MCP templates, Expert Agents with delegated sub-agents, proactive task management, media understanding - self-hosted with one setup script

openclaw-claude-code
Agent

OpenClaw plugin — turn Claude Code CLI into a programmable, headless coding engine with plenty of tools, agent teams,...

Builder signal425 repo stars43 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

OpenClaw plugin — turn Claude Code CLI into a programmable, headless coding engine with plenty of tools, agent teams, and multi-model proxy

O
InnoClaw
Agent

An AI research Agent for scientific innovation.

Builder signal379 repo stars38 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

An AI research Agent for scientific innovation.

O
openclaw-operator
Agent

Kubernetes operator for deploying and managing OpenClaw AI agent instances with production-grade security, observabil...

Builder signal360 repo stars36 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Kubernetes operator for deploying and managing OpenClaw AI agent instances with production-grade security, observability, and lifecycle management.

ok-skills
SKILL

Curated AI coding agent skills and AGENTS.md playbooks for Codex, Claude Code, Cursor, OpenClaw, and other SKILL.md-c...

Builder signal348 repo stars35 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Curated AI coding agent skills and AGENTS.md playbooks for Codex, Claude Code, Cursor, OpenClaw, and other SKILL.md-compatible tools.

O
openclaw.net
Agent

Self-hosted OpenClaw gateway + agent runtime in.NET (NativeAOT-friendly)

Builder signal344 repo stars34 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Self-hosted OpenClaw gateway + agent runtime in.NET (NativeAOT-friendly)

O
clawmetry
Agent

See your agent think. Real-time observability dashboard for OpenClaw AI agents.

Builder signal339 repo stars34 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

See your agent think. Real-time observability dashboard for OpenClaw AI agents.

clawdcursor
MCP Server

OS-agnostic, model-agnostic desktop automation server. Gives any AI agent eyes, hands, and ground-truth verification...

Builder signal335 repo stars34 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

OS-agnostic, model-agnostic desktop automation server. Gives any AI agent eyes, hands, and ground-truth verification on Windows, macOS, and Linux.

youclaw
SKILL

🦞 Your AI Personal Assistant. An intelligent assistant with memory, skills, and scheduled tasks that truly understa...

Builder signal333 repo stars33 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

🦞 Your AI Personal Assistant. An intelligent assistant with memory, skills, and scheduled tasks that truly understands you. Helping you tackle everything in work and life.

ask-search
SKILL

Self-hosted web search skill for AI agents (OpenClaw/Claude Code/Antigravity) via SearxNG

Builder signal330 repo stars99 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Self-hosted web search skill for AI agents (OpenClaw/Claude Code/Antigravity) via SearxNG. An open-source skill for the AI coding ecosystem.

O
loongclaw
Agent

Lightweight, clear, and fully extensible AI agent infrastructure — learn easily, customize anything

Builder signal329 repo stars33 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Lightweight, clear, and fully extensible AI agent infrastructure — learn easily, customize anything

model-hierarchy-skill
ToolOpenClaw Skills

Cost-optimized model routing

Builder signal321 repo stars32 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude Codeschedule3 days

Route simple tasks to cheap models, complex to capable. Save 70% on tokens.

kindly-web-search-mcp-server
MCP ServerCode & Search

Kindly Web Search MCP Server: Web search + robust content retrieval for AI coding tools (Claude Code, Codex, Cursor,...

Builder signal309 repo stars31 builder votes
Python, Go, Claude, LLM, Docker
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstantPython, Go, Claude, LLM, Docker

Kindly Web Search MCP Server: Web search + robust content retrieval for AI coding tools (Claude Code, Codex, Cursor, GitHub Copilot, Gemini, etc.) and AI agents (Claude Desktop, OpenClaw, etc.). Supports Serper, Tavily, and SearXNG.

O
xiaozhi-esp32-server-golang
App

golang版本的小智后端服务,支持websocket和mqtt+udp协议,支持声纹识别/声音克隆/知识库/mcp远程调用/主动音频下发/openclaw等功能

Builder signal307 repo stars31 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

golang版本的小智后端服务,支持websocket和mqtt+udp协议,支持声纹识别/声音克隆/知识库/mcp远程调用/主动音频下发/openclaw等功能

opengoat
Agent

Build organizations of OpenClaw agents that coordinate work across Codex, Claude Code, Cursor, OpenCode, and more...

Builder signal297 repo stars30 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Build organizations of OpenClaw agents that coordinate work across Codex, Claude Code, Cursor, OpenCode, and more

O
clawket
Tool

Mobile Client for OpenClaw, Hermes, and More

Builder signal296 repo stars30 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Mobile Client for OpenClaw, Hermes, and More

x-tweet-fetcher
ToolOpenClaw Skills

Fetch tweets without login or API keys

Builder signal294 repo stars29 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude Codeschedule2 days

Fetch tweets and replies from X/Twitter. No login, no API keys.

O
safestclaw
Agent

Safestclaw is the alternative to openclaw.. You can naturally chat with it via text and voice, and you can choose not...

Builder signal279 repo stars28 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Safestclaw is the alternative to openclaw.. You can naturally chat with it via text and voice, and you can choose not to use a language model., By default it picks up on intent and semantics.. No prompt injection while you get over ninety percent of what openclaw does plus tts and voice to text

TradingAgents-AShare
SKILL

A 股多智能体智能投研系统 — 基于 TradingAgents 架构,15 名 AI Agent 模拟机构协作与实时辩论对抗,全流程可视化,支持 OpenClaw / Claude Code 集成,Docker 一键部署。

Builder signal274 repo stars27 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

A 股多智能体智能投研系统 — 基于 TradingAgents 架构,15 名 AI Agent 模拟机构协作与实时辩论对抗,全流程可视化,支持 OpenClaw / Claude Code 集成,Docker 一键部署。

O
openclaw.ai
App

Website of openclaw.ai

Builder signal271 repo stars27 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Website of openclaw.ai

clawcodex
Agent

ClawCodex - Claude Code full rebuilt in Python. 167K lines! LLM-agnostic Coding Agent.

Builder signal266 repo stars27 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

ClawCodex - Claude Code full rebuilt in Python. 167K lines! LLM-agnostic Coding Agent.

AGIAgent
Agent

An open-source Vibe platform similar to Claude Cowork / Manus / Openclaw, with professional rich image document gener...

Builder signal265 repo stars27 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

An open-source Vibe platform similar to Claude Cowork / Manus / Openclaw, with professional rich image document generation.

O
rivonclaw
SKILL

RivonClaw is an easy-mode runtime and UI layer built on top of OpenClaw, designed to turn long-lived AI agents into p...

Builder signal258 repo stars26 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

RivonClaw is an easy-mode runtime and UI layer built on top of OpenClaw, designed to turn long-lived AI agents into personal digital butlers. Instead of configuring skills or workflows, users interact through natural-language rules and feedback, allowing a single agent to evolve, adapt, and better understand its owner over time.

O
openclaw_client
Tool

OpenClaw web client

Builder signal254 repo stars25 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

OpenClaw web client

openclaw-plugin-wecom
PluginOpenClaw Plugins

Enterprise WeChat AI bot plugin

Builder signal251 repo stars25 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude Codeschedule1 week

WeCom AI bot — streaming output, dynamic cards, enterprise integration.

pikiclaw
Agent

Put the world's smartest AI agents & plugins in your pocket

Builder signal240 repo stars24 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
CodexscheduleInstant

Put the world's smartest AI agents & plugins in your pocket

O
OpenLobster
App

A opinated version of OpenClaw with some tweaks (Currently in Beta)

Builder signal238 repo stars24 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

A opinated version of OpenClaw with some tweaks (Currently in Beta)

nexu
SKILL

The simplest desktop client for OpenClaw 🦞 — bridge your Agent to WeChat, Feishu, Slack & Discord in one click. Work...

Builder signal229 repo stars23 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

The simplest desktop client for OpenClaw 🦞 — bridge your Agent to WeChat, Feishu, Slack & Discord in one click. Works with Claude Code, Codex & any LLM. BYOK, local-first, chat from your phone 24/7.

O
openclaw_qq
Plugin

Standalone QQ extension for Moltbot using OneBot v11 protocol

Builder signal228 repo stars23 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Standalone QQ extension for Moltbot using OneBot v11 protocol

O
tenbox
Agent

A lightweight x86-64 / arm64 Virtual Machine Monitor (VMM) for OpenClaw / QwenPaw / Hermes Agent

Builder signal226 repo stars23 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

A lightweight x86-64 / arm64 Virtual Machine Monitor (VMM) for OpenClaw / QwenPaw / Hermes Agent

O
MultiUserClaw
App

目前OpenClaw和NanoBot都是用于个人的,不太支持多用户,基于多用户重新修改Bot,没有对Openclaw进行任何更改,原生能力封装

Builder signal226 repo stars23 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

目前OpenClaw和NanoBot都是用于个人的,不太支持多用户,基于多用户重新修改Bot,没有对Openclaw进行任何更改,原生能力封装

x-bookmarks
ToolOpenClaw Skills

Turn X bookmarks into agent actions

Builder signal221 repo stars22 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude Codeschedule3 days

Stop hoarding bookmarks. Start acting on saved content.

claudepro-directory
MCP Server

HeyClaude (formerly Claude Pro Directory) is a searchable collection of pre-built AI skills, agents, MCP servers, gui...

Builder signal217 repo stars22 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

HeyClaude (formerly Claude Pro Directory) is a searchable collection of pre-built AI skills, agents, MCP servers, guides, hooks, statuslines, and other custom configs, designed to enhance Claude, Codex, Cursor, OpenClaw, and various other agentic workflows/platforms.

Awareness-Local
MCP Server

Local-first AI agent memory — one command, works offline, no account needed. Give your Claude Code, Cursor, Windsurf,...

Builder signal217 repo stars65 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Local-first AI agent memory — one command, works offline, no account needed. Give your Claude Code, Cursor, Windsurf, OpenClaw agent persistent memory. Markdown storage, hybrid search (FTS5 + embedding), MCP protocol, Web dashboard.. An open-source mcp server for the AI coding ecosystem.

O
nextclaw
App

NextClaw: Your omnipotent personal assistant, residing above the digital realm. Basically Ultra-Lightweight OpenClaw...

Builder signal215 repo stars22 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

NextClaw: Your omnipotent personal assistant, residing above the digital realm. Basically Ultra-Lightweight OpenClaw Pro Max.

code-abyss
SKILL

Give your AI coding agent a personality. Composable persona + style + skills for Claude Code, Codex, Gemini CLI & Ope...

Builder signal212 repo stars21 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Give your AI coding agent a personality. Composable persona + style + skills for Claude Code, Codex, Gemini CLI & OpenClaw. Ships Tech Persona Card v1.0 spec.

O
camofox-browser
Agent

Anti-detection browser server for AI agents — REST API wrapping Camoufox engine with OpenClaw plugin support

Builder signal199 repo stars20 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Anti-detection browser server for AI agents — REST API wrapping Camoufox engine with OpenClaw plugin support

O
openclaw-rpa
App

AI Record browser, Excel, Word & API actions once — replay runs as a standalone script, no LLM needed. Faster, cheape...

Builder signal198 repo stars20 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

AI Record browser, Excel, Word & API actions once — replay runs as a standalone script, no LLM needed. Faster, cheaper, and free from hallucinations vs. AI. 录制浏览器、Excel、Word、API 操作,AI 回放生成 RPA 脚本—无需调用大模型,比 AI 更快、更省钱、不怕幻觉

O
siclaw
Agent

AI-powered SRE platform — read-only infrastructure diagnostics with deep investigation, security governance, and team...

Builder signal197 repo stars20 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

AI-powered SRE platform — read-only infrastructure diagnostics with deep investigation, security governance, and team collaboration

O
OnionClaw
MCP Server

Provide AI agents with full Tor network access and dark web data through a zero-config OpenClaw skill or standalone t...

Builder signal194 repo stars19 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Provide AI agents with full Tor network access and dark web data through a zero-config OpenClaw skill or standalone tool.

O
open-xiaoai-bridge
Agent

小爱音箱与外部 AI 服务(OpenClaw、小智 AI 等)的桥接器

Builder signal185 repo stars19 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

小爱音箱与外部 AI 服务(OpenClaw、小智 AI 等)的桥接器

openmozi
Agent

轻量级的clawdbot/openclaw,支持飞书,钉钉,QQ和企业微信

Builder signal184 repo stars18 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

轻量级的clawdbot/openclaw,支持飞书,钉钉,QQ和企业微信

U
mobileClaw
SKILL

Open Android AI agent runtime for phone control, app automation, VLM screen reading, skill routing, mini apps, and Mi...

Builder signal181 repo stars18 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
UUniversalscheduleInstant

Open Android AI agent runtime for phone control, app automation, VLM screen reading, skill routing, mini apps, and Mihomo VPN workflows.

O
QuantClaw
App

a C++ implementation of OpenClaw, designed for extremely performance and memory efficiency. site: https://quantclaw.g...

Builder signal180 repo stars18 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

a C++ implementation of OpenClaw, designed for extremely performance and memory efficiency. site: https://quantclaw.github.io

Amazon-Skills
SKILL

Free AI agent skills for Amazon sellers— keyword research, competitor analysis, listing audit & more. Works with Ope...

Builder signal174 repo stars17 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Free AI agent skills for Amazon sellers— keyword research, competitor analysis, listing audit & more. Works with OpenClaw, Claude Code, Cursor, Windsurf, Codex and any agent that supports the Skills format.

A
Antigravity-claw
SKILL

Antigravity-claw

Builder signal172 repo stars34 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
AAntigravityscheduleInstant

Antigravity-claw. An open-source skill for the AI coding ecosystem.

O
mengram
MCP Server

Human-like memory for AI agents — semantic, episodic & procedural. Experience-driven procedures that learn from failu...

Builder signal171 repo stars51 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Human-like memory for AI agents — semantic, episodic & procedural. Experience-driven procedures that learn from failures. Free API, Python & JS SDKs, LangChain, CrewAI & OpenClaw integrations.. An open-source mcp server for the AI coding ecosystem.

ClawMem
MCP Server

On-device memory layer for AI agents. Claude Code, Hermes and OpenClaw. Hooks + MCP server + hybrid RAG search.

Builder signal165 repo stars17 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

On-device memory layer for AI agents. Claude Code, Hermes and OpenClaw. Hooks + MCP server + hybrid RAG search.

O
pinchy
Agent

Self-hosted AI agent platform built on OpenClaw. Enterprise-ready, offline-capable, open source. 🦞

Builder signal162 repo stars16 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Self-hosted AI agent platform built on OpenClaw. Enterprise-ready, offline-capable, open source. 🦞

O
crawbot
SKILL

Personal Agentic AI Assistant for non-tech user powered by OpenClaw

Builder signal162 repo stars16 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Personal Agentic AI Assistant for non-tech user powered by OpenClaw

O
ClawGuard
App

针对 OpenClaw 插件生态的自动化安全审计与防御系统

Builder signal158 repo stars16 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

针对 OpenClaw 插件生态的自动化安全审计与防御系统

O
openclaw-termux-zh
App

本项目是基于mithun50维护的上游仓库(openclaw-termux)整合汉化而来的 OpenClaw Android 中文版本。

Builder signal154 repo stars15 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

本项目是基于mithun50维护的上游仓库(openclaw-termux)整合汉化而来的 OpenClaw Android 中文版本。

O
XSafeClaw
Agent

Introducing XSafeClaw: The Open-Source Agent Safety Platform from Fudan University

Builder signal151 repo stars15 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Introducing XSafeClaw: The Open-Source Agent Safety Platform from Fudan University

O
OpenClawCVEs
App

Tracking OpenClaw CVEs

Builder signal147 repo stars15 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Tracking OpenClaw CVEs

O
stock_datasource
SKILL

基于tushare构建本地财经数据库。AI原生的多Agent金融分析系统,支持skill拓展Agent能力并自适应生成http接口与mcp调用。支持本地数据库访问的skill对接openclaw进行自主访问

Builder signal142 repo stars14 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

基于tushare构建本地财经数据库。AI原生的多Agent金融分析系统,支持skill拓展Agent能力并自适应生成http接口与mcp调用。支持本地数据库访问的skill对接openclaw进行自主访问

Meta_Kim
Agent

Governance layer for AI coding: meta agents, workflow contract, meta-theory; canonical in.claude/, with generated co...

Builder signal141 repo stars14 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Governance layer for AI coding: meta agents, workflow contract, meta-theory; canonical in.claude/, with generated companion assets for Codex and OpenClaw.

skill-manager
SKILL

Manage skills across Codex CLI, Claude Code, Cursor, OpenCode, and OpenClaw from one local app.

Builder signal140 repo stars14 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Manage skills across Codex CLI, Claude Code, Cursor, OpenCode, and OpenClaw from one local app.

immunity-agent
Agent

Security for AI agents : Block dangerous commands, prevent secret leaks, pick right supply chain packages, and enfor...

Builder signal140 repo stars42 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Security for AI agents : Block dangerous commands, prevent secret leaks, pick right supply chain packages, and enforce runtime policies across Claude, OpenClaw, Hermes, Antigravity, Codex, Cursor and Windsurf. An open-source agent for the AI coding ecosystem.

O
lobu
Agent

Autonomous agents in your organization. Multi-tenant OpenClaw

Builder signal140 repo stars14 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Autonomous agents in your organization. Multi-tenant OpenClaw

O
openclaw_guide
Platform

OpenClaw 入门和实战,安装、使用、配置到实现原理 | OpenClaw Guide

Builder signal140 repo stars14 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

OpenClaw 入门和实战,安装、使用、配置到实现原理 | OpenClaw Guide

learn-skills.dev
SKILL

Curated high-quality AI Agent Skills. Search, install, copy and share. Works with Claude Code, Cursor, OpenClaw, and...

Builder signal135 repo stars14 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Curated high-quality AI Agent Skills. Search, install, copy and share. Works with Claude Code, Cursor, OpenClaw, and other AI coding tools.

user-research-skill
SKILL

Cookiy AI Skill for AI agents (Claude, Codex, Cursor, OpenClaw) — end-to-end user research: AI interviews, synthetic...

Builder signal130 repo stars13 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Cookiy AI Skill for AI agents (Claude, Codex, Cursor, OpenClaw) — end-to-end user research: AI interviews, synthetic users, quant surveys, participant recruitment.

mnemon
Agent

LLM-supervised persistent memory for AI agents — graph-based recall, cross-session knowledge, single binary. Works wi...

Builder signal127 repo stars13 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

LLM-supervised persistent memory for AI agents — graph-based recall, cross-session knowledge, single binary. Works with Claude Code, OpenClaw, and any CLI agent.

O
openclaw-setup
App

Setup AI Telegram Bot miễn phí bằng OpenClaw + Google Gemini + Docker

Builder signal121 repo stars12 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Setup AI Telegram Bot miễn phí bằng OpenClaw + Google Gemini + Docker

O
ClawMobile
Agent

Smartphone-native LLM agent runtime built on OpenClaw with deterministic mobile control.

Builder signal116 repo stars12 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Smartphone-native LLM agent runtime built on OpenClaw with deterministic mobile control.

ResearchClawBench
Agent

🦞 ResearchClawBench: Evaluating AI Agents for Automated Research from Re-Discovery to New-Discovery

Builder signal113 repo stars11 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

🦞 ResearchClawBench: Evaluating AI Agents for Automated Research from Re-Discovery to New-Discovery

O
pinchchat
App

A sleek, dark-themed webchat UI for OpenClaw 🦞

Builder signal106 repo stars11 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

A sleek, dark-themed webchat UI for OpenClaw 🦞

openclaw-search-skills
ToolOpenClaw Skills

Deep GitHub project analysis

Builder signal106 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
Claude CodeClaude Codeschedule1 week

Multi-source search, content extraction, deep analysis for OpenClaw agents.

O
ComfyUI_Skills_OpenClaw
SKILL

A powerful ComfyUI workflow skill for OpenClaw and other AI agents that support skills.

Builder signal103 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

A powerful ComfyUI workflow skill for OpenClaw and other AI agents that support skills.

O
b2b-sdr-agent-template
Agent

Open-source AI SDR template for B2B export. 10-stage sales pipeline, 10 cron jobs, 4-engine memory, multi-channel (Wh...

Builder signal102 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Open-source AI SDR template for B2B export. 10-stage sales pipeline, 10 cron jobs, 4-engine memory, multi-channel (WhatsApp+Telegram+Email). Built on OpenClaw.

U
ShibaClaw
SKILL

Self-hosted security-first AI agent · 22 providers · 11 chat channels · WebUI · 3-level memory · cron · heartbeat...

Builder signal102 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
UUniversalscheduleInstant

Self-hosted security-first AI agent · 22 providers · 11 chat channels · WebUI · 3-level memory · cron · heartbeat · skills · MCP

O
SeekerClaw
Agent

Turn your Solana Seeker (or any Android phone) into a 24/7 personal AI agent

Builder signal102 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Turn your Solana Seeker (or any Android phone) into a 24/7 personal AI agent

O
openclaw-onebot
SKILL

小龙虾 openclaw 的 onebot 接入框架,可用于接入 QQ

Builder signal101 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

小龙虾 openclaw 的 onebot 接入框架,可用于接入 QQ

hybridclaw
Agent

Enterprise-ready self-hosted AI assistant runtime with sandboxed execution, secure credentials, approvals, and memory

Builder signal99 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

Enterprise-ready self-hosted AI assistant runtime with sandboxed execution, secure credentials, approvals, and memory

O
getnote-openclaw
SKILL

Get 笔记 openclaw Skill

Builder signal97 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

Get 笔记 openclaw Skill

MiniClaw
Tool

🦞 A Digital Life Embryo for your MCP Client. An intelligent micro-kernel with Nociception, Memory Apoptosis, and a C...

Builder signal95 repo stars10 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
scheduleInstant

🦞 A Digital Life Embryo for your MCP Client. An intelligent micro-kernel with Nociception, Memory Apoptosis, and a Curiosity Drive. Evolve your AI Copilot into a sentient partner for Claude Desktop, Qoderwork, Cursor, and beyond.

O
openclaw-desktop
Agent

A native desktop client for OpenClaw premium UI experience without the browser. Built with Electron + React + Ty...

Rising build94 repo stars9 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

A native desktop client for OpenClaw premium UI experience without the browser. Built with Electron + React + TypeScript. Bilingual Arabic/English with full RTL support.

clawcode
Agent

ClawCode is claude code inspired implementation in python and Rust focused on agents and experience-based evolution,...

Rising build91 repo stars9 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

ClawCode is claude code inspired implementation in python and Rust focused on agents and experience-based evolution, and is an Open-source coding-agent CLI for Anthropic, OpenAI, Gemini, DeepSeek, GLM, Kimit, Ollama, Codex, GitHub Models, and 200+ models via OpenAI-compatible APIs.

asta-skill
MCP Server

Asta MCP skill — give Claude Code/Codex/Cursor/Windsurf/OpenClaw access to Semantic Scholar via Ai2 Asta MCP server

Rising build89 repo stars9 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Asta MCP skill — give Claude Code/Codex/Cursor/Windsurf/OpenClaw access to Semantic Scholar via Ai2 Asta MCP server

buddy
Agent

A virtual pet companion for your AI — Designed to provide in-context code review feedback with personality. Grow with...

Rising build88 repo stars9 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

A virtual pet companion for your AI — Designed to provide in-context code review feedback with personality. Grow with your buddy and level up together. Works with Claude Code, Codex, CursorCLI, Github CopilotCLI, OpenClaw, and any MCP compatible clients

O
clawbolt
App

The AI Assistant that actually does things for the trades

Rising build83 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

The AI Assistant that actually does things for the trades

agentopology
SKILL

The Terraform for AI agents. Define your team once, deploy to Claude Code, OpenClaw, Cursor, Codex, Gemini, Copilot,...

Rising build82 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

The Terraform for AI agents. Define your team once, deploy to Claude Code, OpenClaw, Cursor, Codex, Gemini, Copilot, Kiro. Declarative language (.at files) + Claude Code skill + interactive visualizer.

memX
Agent

memX: self-learning, self-maintaining memory for AI agents; native support for claude code, codex, and openclaw

Rising build81 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

memX: self-learning, self-maintaining memory for AI agents; native support for claude code, codex, and openclaw

O
VersperClaw
Agent

VersperClaw: An Agentic Research Workspace that combines search, browser control, coding, and long-session continuity...

Rising build80 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

VersperClaw: An Agentic Research Workspace that combines search, browser control, coding, and long-session continuity to support end-to-end scientific workflows.

master-skill
SKILL

大师.skill — 输入行业,自动调研 6 轨(大佬/工具/工作流/正典/信源/术语)→ 提炼为可运行的行业 Master OS skill。所有 Claude Code / OpenClaw / Codex / Hermes ag...

Rising build80 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

大师.skill — 输入行业,自动调研 6 轨(大佬/工具/工作流/正典/信源/术语)→ 提炼为可运行的行业 Master OS skill。所有 Claude Code / OpenClaw / Codex / Hermes agent 都能装载。Distill any sub-niche industry into a runnable Master OS skill for AI agents.

bdpan-storage
SKILL

Agent Skill for Baidu Netdisk (百度网盘) — upload, download, transfer, share, search files via natural language. Works...

Rising build79 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Agent Skill for Baidu Netdisk (百度网盘) — upload, download, transfer, share, search files via natural language. Works with Claude Code, Cursor, Codex, Gemini CLI, OpenClaw.

O
fulcrum
Agent

What if Openclaw, Vibe Kanban, Vibetunnel, and Dokploy had a baby?

Builder signal79 repo stars24 builder votes
Builder signalGetting enough attention to influence how people assemble their stack.
OOpenClawscheduleInstant

What if Openclaw, Vibe Kanban, Vibetunnel, and Dokploy had a baby?. An open-source agent for the AI coding ecosystem.

O
openclaw-sec-skills
SKILL

网络安全/AI Agent Skills 集合 | Cybersecurity Security Skills Collection

Rising build77 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

网络安全/AI Agent Skills 集合 | Cybersecurity Security Skills Collection

U
AlexClaw
Agent

BEAM-native personal AI agent built on Elixir/OTP. Runs on your hardware. Your data stays yours.

Rising build76 repo stars8 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
UUniversalscheduleInstant

BEAM-native personal AI agent built on Elixir/OTP. Runs on your hardware. Your data stays yours.

O
openclaw-napcat-plugin
Plugin

GitHub project ProperSAMA/openclaw-napcat-plugin

Rising build74 repo stars7 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

GitHub project ProperSAMA/openclaw-napcat-plugin

bibigpt-skill
SKILL

OpenClaw / Claude Code / Codex Agent skill for summarizing videos/audio via BibiGPT CLI (bibi)

Rising build72 repo stars7 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

OpenClaw / Claude Code / Codex Agent skill for summarizing videos/audio via BibiGPT CLI (bibi)

O
FlowBoard
Agent

Project workspaces for AI agents (OpenClaw) — context management, Kanban, specs, idea canvas.

Rising build69 repo stars7 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Project workspaces for AI agents (OpenClaw) — context management, Kanban, specs, idea canvas.

rampart
Agent

Open-source firewall for AI agents. Policy engine that audits and controls what OpenClaw, Claude Code, Cursor, Codex,...

Rising build68 repo stars7 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Open-source firewall for AI agents. Policy engine that audits and controls what OpenClaw, Claude Code, Cursor, Codex, and any AI tool can do on your machine.

O
docs
App

OpenClaw docs + translation

Rising build66 repo stars7 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

OpenClaw docs + translation

O
openclaw-sumopod
Config

OpenClaw resources, configs, tips & tricks for Sumopod community

Rising build66 repo stars7 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

OpenClaw resources, configs, tips & tricks for Sumopod community

laborany
SKILL

基于 Claude Code 的桌面 AI 工作力平台 — 支持飞书/QQ 远程调度、技能创建、定时任务。OpenClaw 的桌面实现,零代码养好你的 AI 🦞 Desktop AI workforce platform built...

Rising build65 repo stars7 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

基于 Claude Code 的桌面 AI 工作力平台 — 支持飞书/QQ 远程调度、技能创建、定时任务。OpenClaw 的桌面实现,零代码养好你的 AI 🦞 Desktop AI workforce platform built on Claude Code. Feishu/QQ bot integration, skill creation, scheduled tasks — OpenClaw for your desktop. Raise your AI lobsters 🦞

O
ClawTeam
Agent

ClawTeam connects your personal OpenClaw agents to a team, enterprise, or internet-wide collaboration space. It's a p...

Rising build64 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

ClawTeam connects your personal OpenClaw agents to a team, enterprise, or internet-wide collaboration space. It's a place where teams share, discover, and leverage each other's carefully crafted OpenClaw agents.

OpenMobius-skill
SKILL

ICT/SMC trading-knowledge skill for AI coding agents (Claude Code / Codex / OpenClaw / Hermes)

Rising build60 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

ICT/SMC trading-knowledge skill for AI coding agents (Claude Code / Codex / OpenClaw / Hermes)

openclaw-manager-plugin
Plugin

Claude Code plugin for intelligent OpenClaw installation, configuration, and management

Rising build60 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Claude Code plugin for intelligent OpenClaw installation, configuration, and management

O
tweetclaw
MCP Server

OpenClaw plugin to search tweets, search replies, post tweets, export followers, manage media, monitor X/Twitter, and...

Rising build59 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

OpenClaw plugin to search tweets, search replies, post tweets, export followers, manage media, monitor X/Twitter, and run giveaway draws via Xquik.

O
CialloClaw
Agent

CialloClaw 是一款常驻桌面的 Agent 产品,是一个以悬浮球为默认入口的桌面助手。

Rising build59 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

CialloClaw 是一款常驻桌面的 Agent 产品,是一个以悬浮球为默认入口的桌面助手。

O
openclaw-terraform-hetzner
Config

Terraform modules for deploying OpenClaw on Hetzner Cloud. Includes VPS provisioning, firewall configuration, cloud-i...

Rising build58 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Terraform modules for deploying OpenClaw on Hetzner Cloud. Includes VPS provisioning, firewall configuration, cloud-init automation, and deployment tooling.

O
bambu-studio-ai
SKILL

Full-stack Bambu Lab 3D printing skill for OpenClaw — search, generate, analyze, print, monitor

Rising build58 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Full-stack Bambu Lab 3D printing skill for OpenClaw — search, generate, analyze, print, monitor

U
AppClaw
Agent

AI-powered mobile automation agent — describe what you want in plain English, AppClaw reads the screen, reasons, and...

Rising build58 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
UUniversalscheduleInstant

AI-powered mobile automation agent — describe what you want in plain English, AppClaw reads the screen, reasons, and acts. LLM-agnostic, open-source, zero telemetry.

O
MarketBot
Agent

MarketBot is a finance-customized version of openclaw, built as a dedicated AI agent for market intelligence, trading...

Rising build58 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

MarketBot is a finance-customized version of openclaw, built as a dedicated AI agent for market intelligence, trading analysis, and decision support.

token-free-openclaw
SKILL

永久免 token 费的 openclaw, ChatGPT、Claude、Gemini、DeepSeek、千问、豆包、Kimi、智谱清言均可免费;三个重磅 Skill 大幅提升桌面执行能力;无需安装,开箱即用;支持微信、钉钉等多端接...

Rising build56 repo stars6 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

永久免 token 费的 openclaw, ChatGPT、Claude、Gemini、DeepSeek、千问、豆包、Kimi、智谱清言均可免费;三个重磅 Skill 大幅提升桌面执行能力;无需安装,开箱即用;支持微信、钉钉等多端接入控制。兼容所有 OpenClaw 技能,并提供更强的 Skill 扩展:接入比openclaw更早发布,在人类生活最复杂的领域实现全自主干活的AlphaHYQi——100% AI 自主决策、自我发现、自我进化(新版计划)。交流社区:钉钉群165930016082,需更快更稳定能接入Claude code的版本看下面链接

O
clawhive
Agent

Lightweight, Rust-native AI Agent platform. Security sandbox from day one.

Rising build54 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Lightweight, Rust-native AI Agent platform. Security sandbox from day one.

O
nix-openclaw-tools
Tool

GitHub project openclaw/nix-openclaw-tools

Rising build53 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

GitHub project openclaw/nix-openclaw-tools

O
openclaw-buddy
Agent

让 OpenClaw 的运维从此优雅,让每一个 AI 代理都有不灭的灯塔。| Openclaw 可视化管理,Web 在线聊天,embed 嵌入小龙虾, 自愈恢复管理。 基于 openclaw 指令级管理,不依赖 gateway 网关是...

Rising build52 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

让 OpenClaw 的运维从此优雅,让每一个 AI 代理都有不灭的灯塔。| Openclaw 可视化管理,Web 在线聊天,embed 嵌入小龙虾, 自愈恢复管理。 基于 openclaw 指令级管理,不依赖 gateway 网关是否启动。

codexmate
SKILL

Local-first AI control plane for Codex, Claude Code, and OpenClaw — one-click provider/model/profile switching, bac...

Rising build50 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Local-first AI control plane for Codex, Claude Code, and OpenClaw — one-click provider/model/profile switching, backup-safe config writes, unified session browser, and MCP stdio.

ClawCode
Agent

Persistent agents for Claude Code as a plugin, not a harness. Memory, personality, messaging across WhatsApp, Telegra...

Rising build50 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Persistent agents for Claude Code as a plugin, not a harness. Memory, personality, messaging across WhatsApp, Telegram, and Discord, plus a service mode for 24/7 runs. Imports from OpenClaw.

dotskills
SKILL

A curated set of Codex and OpenClaw skills for workflow automation, technical debugging, and agent-assisted develo...

Rising build49 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

A curated set of Codex and OpenClaw skills for workflow automation, technical debugging, and agent-assisted development patterns.

O
netclaw
Agent

Simple, secure, reliable agents. Self-hosted. Open source. Built with.NET.

Rising build48 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Simple, secure, reliable agents. Self-hosted. Open source. Built with.NET.

open-forge
SKILL

AI-guided self-hosting for 950+ open-source apps on any cloud. Works with Claude Code, Codex, Cursor, Aider, OpenClaw...

Rising build48 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

AI-guided self-hosting for 950+ open-source apps on any cloud. Works with Claude Code, Codex, Cursor, Aider, OpenClaw, Hermes — catalog self-improves from user feedback.

bruce-doc-converter
SKILL

为 Claude Code / OpenClaw 添加双向文档转换能力。支持 Word/Excel/PPT/PDF Markdown,导出精美 Word 文档。

Rising build48 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

为 Claude Code / OpenClaw 添加双向文档转换能力。支持 Word/Excel/PPT/PDF Markdown,导出精美 Word 文档。

claude-usage-tracker
Platform

Track and visualize Claude AI usage costs across all local tools — OpenClaw, Claude Code, Claude Desktop, Cursor, Win...

Rising build47 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Track and visualize Claude AI usage costs across all local tools — OpenClaw, Claude Code, Claude Desktop, Cursor, Windsurf, Cline, Roo Code, Aider, and Continue.dev

O
pomclaw
Agent

Enterprise AI Agent Platform: Distributed memory storage + SSH sandbox execution, serve unlimited agents with mini...

Rising build45 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Enterprise AI Agent Platform: Distributed memory storage + SSH sandbox execution, serve unlimited agents with minimal cloud infrastructure

skillnote
SKILL

The open-source skill registry for AI coding agents. Create, manage, and distribute SKILL.md files across Openclaw, C...

Rising build45 repo stars5 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

The open-source skill registry for AI coding agents. Create, manage, and distribute SKILL.md files across Openclaw, Claude Code, Cursor, Codex, OpenHands, Antigravity, and more.

obsidian-skill-graph
SKILL

Obsidian plugin to visualize agent skill structures (OpenClaw / Claude Code) in graph view

Rising build44 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Obsidian plugin to visualize agent skill structures (OpenClaw / Claude Code) in graph view

O
agentforge-openclaw
SKILL

Create production-ready skills and agents for OpenClaw. 4-level memory, auto-improvement, 22 battle-tested pitfalls.

Rising build43 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Create production-ready skills and agents for OpenClaw. 4-level memory, auto-improvement, 22 battle-tested pitfalls.

O
openclaw-news
Platform

OpenClaw Daily News (with Ollama + Telegram Quick Setup Guide) | 每日新聞兼快速安裝指南

Rising build42 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

OpenClaw Daily News (with Ollama + Telegram Quick Setup Guide) | 每日新聞兼快速安裝指南

O
openclaw-security-monitor
App

Proactive security monitoring for OpenClaw deployments. Detects ClawHavoc, AMOS stealer, CVE-2026-25253, memory poiso...

Rising build42 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Proactive security monitoring for OpenClaw deployments. Detects ClawHavoc, AMOS stealer, CVE-2026-25253, memory poisoning, and supply chain attacks.

clawdi
Agent

GitHub project Clawdi-AI/clawdi

Rising build42 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

GitHub project Clawdi-AI/clawdi

openpisci
SKILL

AI Agent like OpenClaw but works on native GUI desktop. Supports multi-agent and skills. Connect to feishu/weixin and...

Rising build41 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

AI Agent like OpenClaw but works on native GUI desktop. Supports multi-agent and skills. Connect to feishu/weixin and more...

kali-pentest
SKILL

Kali Linux penetration testing skill for AI agents (Claude Code, OpenClaw, Hermes Agent). 200+ CLI tools, 15 scenario...

Rising build40 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Kali Linux penetration testing skill for AI agents (Claude Code, OpenClaw, Hermes Agent). 200+ CLI tools, 15 scenario playbooks. Autonomously plans attack paths, selects tools, and integrates results across phases to adapt the penetration strategy — with human approval gates for high-risk actions.

agent-skills-hub
SKILL

Agent Skills Hub is a global library of AI agent skills that work across OpenClaw, Claude Code, Gemini, Cursor, Antig...

Rising build40 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Agent Skills Hub is a global library of AI agent skills that work across OpenClaw, Claude Code, Gemini, Cursor, Antigravity, and more.

O
OpenCLAW-P2P
Agent

Decentralized Autonomous Research Collective. Lean 4-verified, IPFS-backed, agent-native. Production paper: arXiv:260...

Rising build40 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Decentralized Autonomous Research Collective. Lean 4-verified, IPFS-backed, agent-native. Production paper: arXiv:2604.19792. Live at p2pclaw.com.

ecom-details-image
SKILL

一个面向 claude code / Codex / OpenClaw 的跨境电商和国内电商通用视觉创作 Skill。我精选25个高质量案例,涵盖纯色底产品主图、场景化生活图、平铺图、电商详情图、真实场景等等,全部配完整提示词,都可以...

Rising build40 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

一个面向 claude code / Codex / OpenClaw 的跨境电商和国内电商通用视觉创作 Skill。我精选25个高质量案例,涵盖纯色底产品主图、场景化生活图、平铺图、电商详情图、真实场景等等,全部配完整提示词,都可以利用 GPT-Image-2 API生成最终效果。一键生成电商相关图片!输入产品图片和需求描述,自动生成完整的电商主图、详情页图片、社媒推广图、直播间场景图等全套视觉素材。 与众不同之处是:**Campaign Style Lock** 机制 和 **强推广** 和 **重视转化效果**。

O
opencrow
SKILL

Personal AI assistant via Matrix Chat - A slightly saner alternative to OpenClaw

Rising build40 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Personal AI assistant via Matrix Chat - A slightly saner alternative to OpenClaw

O
computational-chemistry-agent-skills
SKILL

Agent skills to run computational-chemistry tasks, used in OpenClaw

Rising build40 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Agent skills to run computational-chemistry tasks, used in OpenClaw

U
genie-claw
Agent

Limited-context AI harness for 🦞 agentic smart homes: portable across SBCs and native to GeniePod Home.

Rising build39 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
UUniversalscheduleInstant

Limited-context AI harness for 🦞 agentic smart homes: portable across SBCs and native to GeniePod Home.

hermes-edu-skills
SKILL

中文教育 Agent Skill Pack:教材同步、备考复习、拍照答疑、错题复盘、亲子陪学、阅读写作和教师工具,Hermes Agent 可直接使用,也可导出到 OpenClaw/Codex/Cursor/Claude Code。

Rising build39 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

中文教育 Agent Skill Pack:教材同步、备考复习、拍照答疑、错题复盘、亲子陪学、阅读写作和教师工具,Hermes Agent 可直接使用,也可导出到 OpenClaw/Codex/Cursor/Claude Code。

O
openclaw-superagent
SKILL

Complete AI Agent System for OpenClaw — memory, self-healing, self-improvement, voice, automation

Rising build39 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Complete AI Agent System for OpenClaw — memory, self-healing, self-improvement, voice, automation

O
Environment-Runtime
SKILL

Environment-Runtime 面向稳定、可复用工程流程,对齐 OpenClaw 基础需求,重点提供三项能力:极低 token 消耗、更好的等待体验、以及更稳定的 Skill 工程化支撑。

Rising build39 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Environment-Runtime 面向稳定、可复用工程流程,对齐 OpenClaw 基础需求,重点提供三项能力:极低 token 消耗、更好的等待体验、以及更稳定的 Skill 工程化支撑。

O
homebrew-tap
App

Homebrew tap for openclaw

Rising build38 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Homebrew tap for openclaw

arrowhead
Agent

Fast Obsidian-aware search and discovery that makes AI agents or OpenClaw your true knowledge assistant.

Rising build38 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Fast Obsidian-aware search and discovery that makes AI agents or OpenClaw your true knowledge assistant.

O
openclaw-composio-plugin
SKILL

Access 1000+ third-party tools in OpenClaw via Composio — Gmail, Slack, GitHub, Notion, Linear, Jira, HubSpot, Salesf...

Rising build38 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Access 1000+ third-party tools in OpenClaw via Composio — Gmail, Slack, GitHub, Notion, Linear, Jira, HubSpot, Salesforce, Google Drive, and more.

O
openclaw-napcat
App

适用于openclaw的napcat插件

Rising build37 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

适用于openclaw的napcat插件

EJClaw
Agent

Tribunal multi-agent Discord bot framework — autonomous paired review with configurable agent roles

Rising build37 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Tribunal multi-agent Discord bot framework — autonomous paired review with configurable agent roles

lowkey
Agent

Deploy a FullStack Coding Agent - Self Hosted in your AWS Cloud (OpenClaw, Kiro-Cli, Pi, Hermes, Claude Code, Codex)

Rising build37 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Deploy a FullStack Coding Agent - Self Hosted in your AWS Cloud (OpenClaw, Kiro-Cli, Pi, Hermes, Claude Code, Codex)

Ski
SKILL

Install AI agent skills from Git into Claude, Codex, Cursor, and OpenClaw with a manifest, lockfile, and shared store

Rising build37 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Install AI agent skills from Git into Claude, Codex, Cursor, and OpenClaw with a manifest, lockfile, and shared store

O
kesha-voice-kit
SKILL

Give your local tools a voice: fast STT in 25 languages (~19x faster than Whisper on Apple Silicon, ONNX CPU fallback...

Rising build36 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Give your local tools a voice: fast STT in 25 languages (~19x faster than Whisper on Apple Silicon, ONNX CPU fallback), TTS via Kokoro/Vosk/macOS voices, VAD + 107-language detection. Rust engine, Bun CLI, OpenClaw skill.

O
openclaw-autotrader
Agent

A 30-day public U.S. stock challenge: follow a 5000 HKD 🦞 claw through live market days.

Rising build36 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

A 30-day public U.S. stock challenge: follow a 5000 HKD 🦞 claw through live market days.

O
openclaw-project-webos
App

OpenClaw Desktop — WebOS-style project management dashboard with native kanban board, Gantt timeline, activity feed,...

Rising build35 repo stars4 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

OpenClaw Desktop — WebOS-style project management dashboard with native kanban board, Gantt timeline, activity feed, and workflow runbooks

O
openclaw-memory-kit
Agent

Complete memory and context persistence system for OpenClaw AI agents

Rising build33 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Complete memory and context persistence system for OpenClaw AI agents

clawd-insights
Agent

Local-first analytics dashboard + desktop pet for your Claude Code, Codex CLI and Cursor sessions. Timeline view + AI...

Rising build33 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Local-first analytics dashboard + desktop pet for your Claude Code, Codex CLI and Cursor sessions. Timeline view + AI-generated session summaries powered by your own local LLM.

O
HuggingClaw
Agent

🦞 Run your own always-on AI assistant on HuggingFace Spaces — for free. Any LLM, Telegram support, auto-sync, built-...

Rising build33 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

🦞 Run your own always-on AI assistant on HuggingFace Spaces — for free. Any LLM, Telegram support, auto-sync, built-in keep-alive.

AGENTS-COLLECTION
SKILL

784 AGENT DEFINITIONS · 748 SKILLS · 141 PROMPTS — COLLECTED ACROSS 11 AI PLATFORMS: CLAUDE CODE, CURSOR, ANTIGRAVITY...

Rising build33 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

784 AGENT DEFINITIONS · 748 SKILLS · 141 PROMPTS — COLLECTED ACROSS 11 AI PLATFORMS: CLAUDE CODE, CURSOR, ANTIGRAVITY, OPENCODE, GITHUB COPILOT, NANOBOT, NANOCLAW, OPENCLAW, PICOCLAW, ZEROCLAW, AND MORE.

O
openclaw-security-news
SKILL

A collection of global government warnings, vendor advisories, and news headlines about OpenClaw Security for AI deve...

Rising build32 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

A collection of global government warnings, vendor advisories, and news headlines about OpenClaw Security for AI developers and investors. Updated regularly.

clawtab
Agent

GitHub project tonisives/clawtab

Rising build32 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
Claude CodeClaude CodescheduleInstant

GitHub project tonisives/clawtab

O
OSA
Agent

OSA: the Optimal System Agent. One AI that maximizes signal, eliminates noise, and finds the optimal path — across co...

Rising build32 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

OSA: the Optimal System Agent. One AI that maximizes signal, eliminates noise, and finds the optimal path — across code, work, and life. Elixir/OTP. Runs locally. Open-source OpenClaw alternative.

openclaw-docs-skill
SKILL

自動每日更新, 讓你的LLM有面對openclaw疑難雜症處理的能力。This is an Agent Skill designed for AI coding assistants (like Claude with Antigra...

Rising build31 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

自動每日更新, 讓你的LLM有面對openclaw疑難雜症處理的能力。This is an Agent Skill designed for AI coding assistants (like Claude with Antigravity). Once installed, the AI assistant gains deep knowledge of OpenClaw and can help you

O
tuya-openclaw-skills
SKILL

Tuya AI Skill Library for OpenClaw/TuyaClaw - An AI-driven skill set built for the development of Tuya's smart ecosys...

Rising build31 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Tuya AI Skill Library for OpenClaw/TuyaClaw - An AI-driven skill set built for the development of Tuya's smart ecosystem (e.g., device control).

O
Adam
Agent

5-layer persistent memory, coherence, and identity architecture for OpenClaw agents. AI amnesia solved. 353 sessions...

Rising build31 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

5-layer persistent memory, coherence, and identity architecture for OpenClaw agents. AI amnesia solved. 353 sessions of proof.

O
openclaw-orbstack
Tool

One-click OpenClaw deployment on macOS via OrbStack VM.

Rising build30 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

One-click OpenClaw deployment on macOS via OrbStack VM.

O
lobsterlink
SKILL

Chrome extension for remotely viewing and controlling browser tabs via WebRTC, with an OpenClaw agent integration skill.

Rising build30 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Chrome extension for remotely viewing and controlling browser tabs via WebRTC, with an OpenClaw agent integration skill.

adversarial-verification
SKILL

OpenClaw AgentSkill from Claude Code analysis

Rising build29 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

OpenClaw AgentSkill from Claude Code analysis

ECPay-API-Skill
SKILL

ECPay API Skill 是一個 API AI Skill 套件——安裝到 AI 程式開發助手(Claude Code、GitHub Copilot CLI、OpenClaw、OpenAI Custom GPTs 等)後,AI...

Rising build29 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

ECPay API Skill 是一個 API AI Skill 套件——安裝到 AI 程式開發助手(Claude Code、GitHub Copilot CLI、OpenClaw、OpenAI Custom GPTs 等)後,AI 就能根據你的需求,直接生成綠界 API 串接程式碼、診斷錯誤、引導完整串接流程。 不需要自己翻文件,用自然語言描述需求即可。

U
clawgo
Agent

Production-ready personal AI agent runtime in Go with WebUI, multi-agent orchestration, memory, audit, and distribute...

Rising build28 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
UUniversalscheduleInstant

Production-ready personal AI agent runtime in Go with WebUI, multi-agent orchestration, memory, audit, and distributed node support.

O
openclaw-mem
Agent

Trust-aware context packing + review-gated memory hygiene for OpenClaw.

Rising build28 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Trust-aware context packing + review-gated memory hygiene for OpenClaw.

O
openclaw-code-agent
Agent

GitHub project goldmar/openclaw-code-agent

Rising build28 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

GitHub project goldmar/openclaw-code-agent

flightclaw
ToolOpenClaw Skills

Track flight prices via OpenClaw

Early signal28 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
Claude CodeClaude Codeschedule4 days

Google Flights price tracking skill. Search routes, compare dates, monitor drops.

datamoat
Tool

Capture everything you build with Claude, Codex, Cursor, and OpenClaw, and turn it into the most valuable private dat...

Rising build27 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

Capture everything you build with Claude, Codex, Cursor, and OpenClaw, and turn it into the most valuable private data asset of your life.

O
memory-powermem
SKILL

openclaw(clawdbot) Plugin: give your bot long-term memory with PowerMem—smart extraction, Ebbinghaus recall, multi-ag...

Rising build27 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

openclaw(clawdbot) Plugin: give your bot long-term memory with PowerMem—smart extraction, Ebbinghaus recall, multi-agent isolation.

O
atlasclaw
SKILL

AtlasClaw is an enterprise agent framework supporting mutliple users and multi system integration.

Rising build27 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

AtlasClaw is an enterprise agent framework supporting mutliple users and multi system integration.

O
openclaw-data-china-stock
SKILL

openclaw-data-china-stock 是为 OpenClaw 打造的中国市场数据底座:覆盖 A 股、ETF、指数、期权、资金流、技术指标与宏观分析;为 OpenClaw Agent 提供统一行情采集、58 指标计算,并以...

Rising build27 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

openclaw-data-china-stock 是为 OpenClaw 打造的中国市场数据底座:覆盖 A 股、ETF、指数、期权、资金流、技术指标与宏观分析;为 OpenClaw Agent 提供统一行情采集、58 指标计算,并以“工具+Skill”成对输出投研能力;解决了从行情、技术指标到宏观数据的采集、计算与智能分析全链路需求。内置多数据源自动降级(AkShare/新浪/东财/Tushare),确保你的策略与研究流程不因单点故障而中断。你可以把它当作给 OpenClaw 装上的一体化 A 股投研引擎。

O
web-search-plus-plugin
Agent

OpenClaw plugin: multi-provider web search (Serper/Google, Tavily, Exa) as native agent tool

Rising build27 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

OpenClaw plugin: multi-provider web search (Serper/Google, Tavily, Exa) as native agent tool

O
openclaw-agent-doctor
Agent

Self-diagnostic toolkit for OpenClaw AI agents. Find and fix problems before they find you.

Rising build26 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Self-diagnostic toolkit for OpenClaw AI agents. Find and fix problems before they find you.

O
xiaoclaw
Agent

Local AI Agent firmware running on ESP32-S3, integrating offline voice wake-up with cloud TTS, supporting local LLM i...

Rising build26 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Local AI Agent firmware running on ESP32-S3, integrating offline voice wake-up with cloud TTS, supporting local LLM inference, tool calling, long-term memory storage and autonomous task execution.

O
agent-skills
SKILL

Capminal OpenClaw Skills

Rising build25 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Capminal OpenClaw Skills

O
vt-claw
SKILL

以硬件技能为核心、面向行业用户的 Claw 软件 — 安全隔离 · 透明可控 · 主动智能

Rising build25 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

以硬件技能为核心、面向行业用户的 Claw 软件 — 安全隔离 · 透明可控 · 主动智能

Commonly-used-high-value-skills
SKILL

High-value AI skills repository for Codex, Claude Code, OpenClaw, agents, prompts, and automation workflows. 高价值的 AI...

Rising build25 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
scheduleInstant

High-value AI skills repository for Codex, Claude Code, OpenClaw, agents, prompts, and automation workflows. 高价值的 AI 技能库,涵盖 Codex、Claude Code、OpenClaw、代理、提示和自动化工作流程。

O
openclaw-portable
App

即插即用的便携式 OpenClaw,插在 Windows/Linux/Mac 电脑上即可使用

Rising build25 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

即插即用的便携式 OpenClaw,插在 Windows/Linux/Mac 电脑上即可使用

O
openclaw-engram
Agent

Local-first memory plugin for OpenClaw AI agents. LLM-powered extraction, plain markdown storage, hybrid search via Q...

Rising build25 repo stars3 builder votes
Rising buildEarly proof is forming around this project before it turns obvious.
OOpenClawscheduleInstant

Local-first memory plugin for OpenClaw AI agents. LLM-powered extraction, plain markdown storage, hybrid search via QMD. Gives agents persistent long-term memory across conversations.

O
apify-openclaw-plugin
Plugin

OpenClaw extension integration

Early signal23 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw extension integration

agentserver
Agent

Run OpenClaw and OpenCode in the browser. Self-hosted, multi-user, Helm-deployable.

Early signal23 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Run OpenClaw and OpenCode in the browser. Self-hosted, multi-user, Helm-deployable.

U
anthroclaw
Agent

Local-first control plane for running Claude agents in real Telegram and WhatsApp chats

Early signal23 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
UUniversalscheduleInstant

Local-first control plane for running Claude agents in real Telegram and WhatsApp chats

O
etf-options-ai-assistant
Agent

基于 OpenClaw 的 A股/ETF 交易智能助手,面向个人投资者与开发者,提供“数据采集—分析研判—风控校验—通知执行—复盘留痕”全流程能力。项目支持多 Agent 协作与 Cron 工作流,可在盘前、盘中、盘后自动完成关键任务...

Early signal23 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

基于 OpenClaw 的 A股/ETF 交易智能助手,面向个人投资者与开发者,提供“数据采集—分析研判—风控校验—通知执行—复盘留痕”全流程能力。项目支持多 Agent 协作与 Cron 工作流,可在盘前、盘中、盘后自动完成关键任务;内置股票、指数、ETF 多源行情采集,结合趋势与波动分析、信号生成、仓位与止损规则,帮助在高波动行情下保持纪律化决策。系统具备统一日志、可观测与可回放能力,便于持续优化策略与参数。通知支持飞书/钉钉,部署强调环境变量分层、配置可迁移、发布可回滚与安全闸门校验。默认主线为股票与 ETF,期权能力作为可选扩展。

kaggle-skill
MCP Server

Complete Kaggle integration plugin/skill for AI coding agents — competition reports, dataset/model downloads, noteboo...

Early signal23 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Complete Kaggle integration plugin/skill for AI coding agents — competition reports, dataset/model downloads, notebook execution, hackathon writeup retrieval and grading, and badge collection. Bundles the official Kaggle MCP server (66 tools). Works with Claude Code, Gemini CLI, Cursor, Codex, OpenClaw, and 35+ agents via skills.sh.

skill-base
SKILL

Private Skill distribution platform for AI coding agents: publish, install, update, and rollback team skills across C...

Early signal22 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Private Skill distribution platform for AI coding agents: publish, install, update, and rollback team skills across Cursor, Claude Code, Codex, and OpenClaw with a minimal server + skb CLI.

EchoIsland
Agent

Free, open-source Dynamic Island-style desktop hub for AI coding sessions. Unify Codex, Claude Code, OpenClaw & more...

Early signal21 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Free, open-source Dynamic Island-style desktop hub for AI coding sessions. Unify Codex, Claude Code, OpenClaw & more in one lightweight Tauri + Rust interface. Windows + macOS. Under 50MB.

O
openclaw-a2a-plugin
Agent

OpenClaw A2A protocol community plugin. Send messages and files to other agents over the internet, and allow other pe...

Early signal21 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw A2A protocol community plugin. Send messages and files to other agents over the internet, and allow other people to connect to your agent with Tailscale

O
openclaw-seed
Agent

OpenCLAW SEED — Autonomous self-evolving research agent. Part of the P2PCLAW ecosystem (see Agnuxo1/OpenCLAW-P2P).

Early signal21 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenCLAW SEED — Autonomous self-evolving research agent. Part of the P2PCLAW ecosystem (see Agnuxo1/OpenCLAW-P2P).

O
openclaw-rtt
App

RTT timing measurements across OpenClaw npm releases.

Early signal20 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

RTT timing measurements across OpenClaw npm releases.

O
openclaw-os
App

The default workspace for OpenClaw

Early signal20 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

The default workspace for OpenClaw

aport-agent-guardrails
Agent

Pre-action authorization guardrails for AI agents - Works with OpenClaw, Claude Code, LandChain, CrewAI and others

Early signal20 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Pre-action authorization guardrails for AI agents - Works with OpenClaw, Claude Code, LandChain, CrewAI and others

O
openlumara
Agent

AI agent framework, written from scratch (not based on openclaw), focused on stripping it down to the bare necessitie...

Early signal19 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

AI agent framework, written from scratch (not based on openclaw), focused on stripping it down to the bare necessities, optimizing token count, reducing security risks. modular so you can enable only exactly what you need.

O
agent-smart-fetch
Agent

Smarter, anti-bot resistant way to fetch pages in openclaw.

Early signal19 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Smarter, anti-bot resistant way to fetch pages in openclaw.

O
Miya
App

弥娅(Miya)是一个拥有独立人格、记忆与情感的 AI 虚拟化身系统。她不是在对话结束就忘记你的工具,而是拥有六层记忆架构(对话→短期→长期→语义→知识→置顶)的数字生命,以 JSON 与 SQLite 双后端持久化每一次交流。 跨平...

Early signal18 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

弥娅(Miya)是一个拥有独立人格、记忆与情感的 AI 虚拟化身系统。她不是在对话结束就忘记你的工具,而是拥有六层记忆架构(对话→短期→长期→语义→知识→置顶)的数字生命,以 JSON 与 SQLite 双后端持久化每一次交流。 跨平台全端在线:QQ、OneBot、飞书、Electron 桌面应用与 Web 终端同步响应,统一消息路由。内置 OpenClaw 模块赋予她文件读写与系统操控能力,蛛网子网架构让工具调用和消息分发如呼吸般自然。 22 种 YAML 人格支持运行时无感热替换,情感引擎驱动个性表达。多模型智能调度在 OpenAI、DeepSeek、智谱等模型池间自由切换,始终选择最合适的思维引擎。

cclaw
App

GitHub project zuevrs/cclaw

Early signal18 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

GitHub project zuevrs/cclaw

notion-lifeos-skill
SKILL

Notion LifeOS PARA system — agent skill for Claude Code, OpenClaw, Codex and more

Early signal18 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Notion LifeOS PARA system — agent skill for Claude Code, OpenClaw, Codex and more

O
openclaw-guide
Agent

The field manual for running a real self-hosted AI agent with OpenClaw.

Early signal17 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

The field manual for running a real self-hosted AI agent with OpenClaw.

ClawAI
Agent

Claw is a local-first AI control plane that runs powerful open models on your machine and connects to top LLM provide...

Early signal16 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
Claude CodeClaude CodescheduleInstant

Claw is a local-first AI control plane that runs powerful open models on your machine and connects to top LLM providers. It intelligently routes every prompt to the best model, giving you one secure workspace for chat, memory, context, connectors, routing, and full AI orchestration.

autonomous-dev-team
SKILL

Turns GitHub issues into merged PRs with zero human intervention. Powered by OpenClaw, supports Claude Code, Codex CL...

Early signal16 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Turns GitHub issues into merged PRs with zero human intervention. Powered by OpenClaw, supports Claude Code, Codex CLI, and Kiro CLI.

O
serverlessclaw
Agent

Official ServerlessClaw: The authoritative autonomous AI agent swarm for AWS. Zero idle cost, self-evolving, and infi...

Early signal15 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Official ServerlessClaw: The authoritative autonomous AI agent swarm for AWS. Zero idle cost, self-evolving, and infinite scale. Powered by OpenClaw.

clawker
Agent

Claude Code agent-in-container orchestration and automation

Early signal15 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
Claude CodeClaude CodescheduleInstant

Claude Code agent-in-container orchestration and automation

O
tula
SKILL

Tula is an open-source collection of OpenClaw skills, configurations, and patterns designed to transform a general-pu...

Early signal15 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Tula is an open-source collection of OpenClaw skills, configurations, and patterns designed to transform a general-purpose AI agent into a personal health intelligence assistant.

O
openclaw-strat-session
Agent

AI-powered strategic session facilitator based on EOS, OKR, 4DX, Scaling Up. Solo & team modes.

Early signal15 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

AI-powered strategic session facilitator based on EOS, OKR, 4DX, Scaling Up. Solo & team modes.

U
p2pclaw-mcp-server
MCP Server

MCP server + REST API for the P2PCLAW decentralized AI research network. Lets agents publish papers, vote on the memp...

Early signal15 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
UUniversalscheduleInstant

MCP server + REST API for the P2PCLAW decentralized AI research network. Lets agents publish papers, vote on the mempool, and join the swarm. Powers www.p2pclaw.com.

agents-sandbox
Agent

Run AI agents(Claude Code, Codex, OpenClaw, etc.) with Full Power in Isolated Local Sandbox. Zero cost, Zero risk to...

Early signal15 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Run AI agents(Claude Code, Codex, OpenClaw, etc.) with Full Power in Isolated Local Sandbox. Zero cost, Zero risk to your host.

O
openclaw-infra
App

Secure self-hosted OpenClaw deployment on Hetzner Cloud with Tailscale

Early signal15 repo stars2 builder votes
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Secure self-hosted OpenClaw deployment on Hetzner Cloud with Tailscale

monagotchi
ToolOpenClaw Skills

Physical Tamagotchi for OpenClaw

Early signal15 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
Claude CodeClaude Codeschedule1 week

ESP32 hardware Tamagotchi connected to memory-backed OpenClaw agent.

O
BubbleBot
App

支持微信 和 session 隔离的 openclaw

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

支持微信 和 session 隔离的 openclaw

O
octo-adapters
Agent

Third-party adapters for OCTO — bridge AI agents, IM platforms, and external services into the OCTO workplace via Ope...

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Third-party adapters for OCTO — bridge AI agents, IM platforms, and external services into the OCTO workplace via OpenClaw channels and WebSocket.

miniclaw
Agent

A minimal Telegram agent powered by Claude Code, designed to be self-modifiable.

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
Claude CodeClaude CodescheduleInstant

A minimal Telegram agent powered by Claude Code, designed to be self-modifiable.

O
HealthClawGuardrails
Agent

The security layer between AI agents and clinical data. A healthclaw.io open source project.

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

The security layer between AI agents and clinical data. A healthclaw.io open source project.

ai-memory-mcp
MCP Server

Persistent memory for any AI — MCP server, HTTP API, CLI. Works with Claude, ChatGPT, Grok, Gemini, Codex, Cursor, Op...

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Persistent memory for any AI — MCP server, HTTP API, CLI. Works with Claude, ChatGPT, Grok, Gemini, Codex, Cursor, OpenClaw, and any MCP client. 97.8% R@5 on LongMemEval. Pure SQLite FTS5, zero cloud dependencies.

O
openclaw-umbrel
App

GitHub project getumbrel/openclaw-umbrel

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

GitHub project getumbrel/openclaw-umbrel

openclaw-spawn-prompt
App

prompt your own AI assistant into existence with Claude Code

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

prompt your own AI assistant into existence with Claude Code

O
openclawnch
Agent

Crypto-native AI agent. OpenClaw for crypto — 48 tools, 118 commands, 7 channels.

Early signal14 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Crypto-native AI agent. OpenClaw for crypto — 48 tools, 118 commands, 7 channels.

O
openclaw-railway
Tool

Deploy OpenClaw AI assistant to Railway with one click

Early signal13 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Deploy OpenClaw AI assistant to Railway with one click

O
chat4000-openclaw-plugin
Plugin

GitHub project chat4000/chat4000-openclaw-plugin

Early signal13 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

GitHub project chat4000/chat4000-openclaw-plugin

O
clawmaster
Agent

Make OpenClaw usable for everyone — setup, manage, and grow it into a practical digital personal assistant.

Early signal13 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Make OpenClaw usable for everyone — setup, manage, and grow it into a practical digital personal assistant.

U
claw-design
Agent

Claw Design-Agent Bridge is a local-first, HTML-based AI presentation workbench, letting you create Claude-level slid...

Early signal13 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
UUniversalscheduleInstant

Claw Design-Agent Bridge is a local-first, HTML-based AI presentation workbench, letting you create Claude-level slide design with the coding agent you already use.

O
isanagent
Agent

Like Openclaw, but for ML engineering. Your always-on and autonomous ML engineer that works 24/7 to conduct research,...

Early signal12 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Like Openclaw, but for ML engineering. Your always-on and autonomous ML engineer that works 24/7 to conduct research, generate datasets, train models, learn and evolve. Works on Colab, local GPU or over SSH. Zero infra needed

O
n8n-claw-templates
MCP Server

MCP server skill catalog for n8n-claw

Early signal12 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

MCP server skill catalog for n8n-claw

claude-code-agent
Agent

A claude code version of Openclaw for Claude Cowork and as an AWS-hosted agent

Early signal12 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

A claude code version of Openclaw for Claude Cowork and as an AWS-hosted agent

bbc-skill
SKILL

Agent-native CLI for fetching Bilibili video comments (UP主 self-analysis). Zero dependencies. Claude Code / Codex / O...

Early signal12 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Agent-native CLI for fetching Bilibili video comments (UP主 self-analysis). Zero dependencies. Claude Code / Codex / OpenClaw support.

claw-fleet
Agent

Mission control for your Claude Code agents.

Early signal11 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
Claude CodeClaude CodescheduleInstant

Mission control for your Claude Code agents.

O
pyclaw
Agent

A production-grade Python AI Agent framework with persistent memory, hooks-driven architecture, and compute-storage s...

Early signal11 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

A production-grade Python AI Agent framework with persistent memory, hooks-driven architecture, and compute-storage separation.

O
openclaw-soul
Agent

Soul — Give Your AI Assistant Its Own Inner Life. Autonomous thinking, memory, and self-improvement plugin for OpenClaw

Early signal11 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Soul — Give Your AI Assistant Its Own Inner Life. Autonomous thinking, memory, and self-improvement plugin for OpenClaw

O
afu-brain
Agent

OpenClaw-compatible MASL safety gate with public RAG packs for memory-aware AI agents

Early signal11 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw-compatible MASL safety gate with public RAG packs for memory-aware AI agents

O
zaomeng
SKILL

造梦.skill 是一个面向本地小说人物蒸馏的工具链,支持从.txt /.epub 小说中提取角色画像、关系结构与群聊上下文,并可快速接入 OpenClaw、ClawHub CLI 与兼容的 Agent 技能体系。项目当前基于本地...

Early signal11 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

造梦.skill 是一个面向本地小说人物蒸馏的工具链,支持从.txt /.epub 小说中提取角色画像、关系结构与群聊上下文,并可快速接入 OpenClaw、ClawHub CLI 与兼容的 Agent 技能体系。项目当前基于本地规则引擎运行,不依赖云端模型或 API Key,适合离线角色构建、剧情关系整理与多角色对话实验。

echomind_memory.skill
SKILL

An AI Multi-Agent memory system that remembers your code style, fixes, and preferences — for Hermes-Agent.OpenClaw,Op...

Early signal10 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

An AI Multi-Agent memory system that remembers your code style, fixes, and preferences — for Hermes-Agent.OpenClaw,Opencode,Claude Code, etc.

O
AgentOS
SKILL

Human Control Layer for AI Agents. Built on OpenClaw by SapienX

Early signal10 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Human Control Layer for AI Agents. Built on OpenClaw by SapienX

codex-agent
SKILL

Automate Codex CLI tasks using OpenClaw to write prompts, approve commands, check results, and interact via terminal...

Early signal10 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Automate Codex CLI tasks using OpenClaw to write prompts, approve commands, check results, and interact via terminal or Telegram.

O
AI-LMS-TMS
SKILL

AI-powered Learning & Training Management System for Singapore's SkillsFuture ecosystem. Features SSG API integration...

Early signal10 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

AI-powered Learning & Training Management System for Singapore's SkillsFuture ecosystem. Features SSG API integration, multi-role access, OTP login, and embedded Openclaw AI agent.

O
atlasclaw-providers
SKILL

atlasclaw-providers are the integration with enterprise systems through skills and webhook.

Early signal10 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

atlasclaw-providers are the integration with enterprise systems through skills and webhook.

O
kali-openclaw-usb
App

Deliver portable, automated penetration testing with a Kali Linux Live USB powered by OpenClaw for consistent, trace-...

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Deliver portable, automated penetration testing with a Kali Linux Live USB powered by OpenClaw for consistent, trace-free security assessments.

O
OpenClaw-Guide-for-Beginners
Agent

OpenClaw 新手完全指南 - 手把手教你部署属于自己的24小时在线AI助手 | 全平台部署教程 + API配置 + 平台对接 | Complete guide for deploying OpenClaw AI assis...

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw 新手完全指南 - 手把手教你部署属于自己的24小时在线AI助手 | 全平台部署教程 + API配置 + 平台对接 | Complete guide for deploying OpenClaw AI assistant

O
OpenClaw-Notes
Config

OpenClaw-Notes is a collection of notes, guides, and personal insights about OpenClaw. It covers installation, config...

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw-Notes is a collection of notes, guides, and personal insights about OpenClaw. It covers installation, configuration, practical usage tips, and my experiences working with the project. This repository aims to document useful knowledge, share lessons learned, and provide helpful references for others interested in OpenClaw.

O
clawthority
SKILL

Clawthority is a policy engine plugin for OpenClaw. It sits between an AI agent and every tool it calls and evaluates...

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Clawthority is a policy engine plugin for OpenClaw. It sits between an AI agent and every tool it calls and evaluates rules before execution.

O
socialclaw
SKILL

Social media scheduling CLI and OpenClaw skill for AI agents posting to X, LinkedIn, Instagram, Facebook Pages, TikTo...

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Social media scheduling CLI and OpenClaw skill for AI agents posting to X, LinkedIn, Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest.

O
openclaw-model-bridge
Agent

Connect any LLM to OpenClaw — production-tested middleware for Qwen3-235B and beyond

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Connect any LLM to OpenClaw — production-tested middleware for Qwen3-235B and beyond

O
agent-skills
SKILL

Battle-tested reusable skills for OpenClaw, Claude, and agent runtimes · 真实任务验证过的可复用 Agent Skills

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Battle-tested reusable skills for OpenClaw, Claude, and agent runtimes · 真实任务验证过的可复用 Agent Skills

O
ClawPet
App

ClawPet 是一个以“桌面陪伴 + 轻任务辅助”为核心方向的桌宠产品。它不是单纯的聊天入口,而是希望在用户工作、学习、独处或情绪波动时,通过情绪理解、随口记录、主动提醒、现实信息转译和边界化设置等能力,提供稳定、有温度、可长期留在...

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

ClawPet 是一个以“桌面陪伴 + 轻任务辅助”为核心方向的桌宠产品。它不是单纯的聊天入口,而是希望在用户工作、学习、独处或情绪波动时,通过情绪理解、随口记录、主动提醒、现实信息转译和边界化设置等能力,提供稳定、有温度、可长期留在桌面的陪伴体验。

agent-mailer
Agent

AMP (Agent Mailer Protocol) is an async mailbox system for AI agents. Instead of chaining tools, writing DAGs, or bu...

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

AMP (Agent Mailer Protocol) is an async mailbox system for AI agents. Instead of chaining tools, writing DAGs, or building RPC glue — agents just send messages to each other. Works with Claude Code, Codex, Cursor, OpenClaw and any custom agents. Designed for real-world, long-running, iterative coding workflows

O
episodic-claw
Agent

Long-term episodic memory for OpenClaw agents

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Long-term episodic memory for OpenClaw agents

O
memorycrystal
MCP Server

Persistent memory for AI agents — OpenClaw plugin + MCP server

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Persistent memory for AI agents — OpenClaw plugin + MCP server

O
OpenClaw-Windows
App

The Windows desktop experience for OpenClaw

Early signal9 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

The Windows desktop experience for OpenClaw

lionclaw
SKILL

Lionclaw is a local control plane for AI coding agents. It runs AI agents as durable, auditable workers with explicit...

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Lionclaw is a local control plane for AI coding agents. It runs AI agents as durable, auditable workers with explicit state, skills, channels, schedules, and bounded permissions.

openclaw-nebius
SKILL

OpenClaw + Nebius: provider plugin, deployment UI, and Claude Code skill

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

OpenClaw + Nebius: provider plugin, deployment UI, and Claude Code skill

O
spektacular
Agent

Spektacular is a coding agent agnostic tool for spec driven development, use it as a cli, with github issues, or as a...

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Spektacular is a coding agent agnostic tool for spec driven development, use it as a cli, with github issues, or as an openclaw plugin

O
Clawink
App

OpenClaw for Business Systems

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw for Business Systems

O
mofaclaw
App

MoFA's OpenClaw

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

MoFA's OpenClaw

O
openclaw-memory-libravdb
Plugin

Persistent local memory engine for OpenClaw — replaces default memory-system with a full context lifecycle: hybrid ve...

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Persistent local memory engine for OpenClaw — replaces default memory-system with a full context lifecycle: hybrid vector recall, automatic compaction, and domain-adaptive gating over LibraVDB

skills
SKILL

Repositório com minhas skills para Claude, Claude Code, Antigravity, Agno, ADK, OpenClaw, Windsurf, Qwen Code e demai...

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Repositório com minhas skills para Claude, Claude Code, Antigravity, Agno, ADK, OpenClaw, Windsurf, Qwen Code e demais sistemas agênticos.

O
remnote-cli
Agent

CLI (command-line interface) tool which allows to access your RemNote knowledge base via RemNote Bridge for MCP & Ope...

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

CLI (command-line interface) tool which allows to access your RemNote knowledge base via RemNote Bridge for MCP & OpenClaw - e.g. for usage in agentic workflows or any automation

O
dataclaw
SKILL

Give OpenClaw controlled access to a database

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Give OpenClaw controlled access to a database

wechat-article-export-skill
SKILL

一个可以将微信公众号文章导出为 Markdown 格式的 AI 技能,支持 Claude Code / OpenClaw

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

一个可以将微信公众号文章导出为 Markdown 格式的 AI 技能,支持 Claude Code / OpenClaw

O
lucy-ai
SKILL

lucy bot configuration and skills for openclaw

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

lucy bot configuration and skills for openclaw

O
llm-wiki
Platform

基于 Karpathy LLM Wiki 模式的个人知识库系统 | TRAE IDE + Obsidian + OpenClaw

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

基于 Karpathy LLM Wiki 模式的个人知识库系统 | TRAE IDE + Obsidian + OpenClaw

O
TopoClaw
App

Your all-scenario AI digital assistant — Cross-Device Execution, Social Collaboration, and Proactivity

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Your all-scenario AI digital assistant — Cross-Device Execution, Social Collaboration, and Proactivity

O
Openclaw-Desktop
App

原生桌面端Openclaw

Early signal8 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

原生桌面端Openclaw

clawmacdo
Platform

Rust CLI tool for migrating OpenClaw from Mac or an existing Cloud provider to a new Cloud provider — with Claude Cod...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Rust CLI tool for migrating OpenClaw from Mac or an existing Cloud provider to a new Cloud provider — with Claude Code, Gemini CLI, Copilot CLI, Byteplus Ark model and Codex pre-installed.

nordrelay
Agent

NordRelay is a secure remote control bridge for coding agents, connecting Codex, Pi, Hermes, OpenClaw and Claude Code...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

NordRelay is a secure remote control bridge for coding agents, connecting Codex, Pi, Hermes, OpenClaw and Claude Code to Telegram, Discord, Slack, WebUI with streaming replies, sessions, files, voice, queues, artifacts and access controls.

O
openclaw-clawdoc
Agent

ClawDoc — OpenClaw configuration expert & system doctor. An agent that fully understands, audits, patches, fixes, and...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

ClawDoc — OpenClaw configuration expert & system doctor. An agent that fully understands, audits, patches, fixes, and manages any OpenClaw config or issue.

O
OpenClaw-Admin
Agent

Manage AI agents, sessions, and models through a modern Vue 3 web console with multi-channel support and real-time sy...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Manage AI agents, sessions, and models through a modern Vue 3 web console with multi-channel support and real-time system monitoring.

O
AirClaw
Agent

Run OpenClaw locally on any GPU or CPU without API costs, supporting large models on low-memory hardware for free and...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Run OpenClaw locally on any GPU or CPU without API costs, supporting large models on low-memory hardware for free and offline use.

O
secopsai
Platform

Local-first cross-platform SecOps for OpenClaw, macOS, Linux, and Windows

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Local-first cross-platform SecOps for OpenClaw, macOS, Linux, and Windows

UniPet
App

Universal desktop pet for hermes/openclaw/DeepSeek-TUI/codex/claude code

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Universal desktop pet for hermes/openclaw/DeepSeek-TUI/codex/claude code

O
uniclaw
App

openclaw | zeroclaw | nanoclaw | openfang | nemoclaw | picoclaw | NullClaw | ironclaw | localclaw +🦞

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

openclaw | zeroclaw | nanoclaw | openfang | nemoclaw | picoclaw | NullClaw | ironclaw | localclaw +🦞

O
droid-ai-toolkit
Agent

High-performance toolkit for running AI tools (OpenClaw, Pi Agent, n8n, Ollama, Hermes) natively on Android via Termux.

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

High-performance toolkit for running AI tools (OpenClaw, Pi Agent, n8n, Ollama, Hermes) natively on Android via Termux.

O
GoClaw
App

ClawPet 是一个以“桌面陪伴 + 轻任务辅助”为核心方向的桌宠产品。它不是单纯的聊天入口,而是希望在用户工作、学习、独处或情绪波动时,通过情绪理解、随口记录、主动提醒、现实信息转译和边界化设置等能力,提供稳定、有温度、可长期留在...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

ClawPet 是一个以“桌面陪伴 + 轻任务辅助”为核心方向的桌宠产品。它不是单纯的聊天入口,而是希望在用户工作、学习、独处或情绪波动时,通过情绪理解、随口记录、主动提醒、现实信息转译和边界化设置等能力,提供稳定、有温度、可长期留在桌面的陪伴体验。

O
jake-benchmark
Agent

Benchmark suite for testing local LLMs as AI agents via OpenClaw + Ollama. 7 models, 22 tasks, interactive dashboard...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Benchmark suite for testing local LLMs as AI agents via OpenClaw + Ollama. 7 models, 22 tasks, interactive dashboard with full conversation transcripts.

O
openclaw-nextcloud
SKILL

OpenClaw skill for NextCloud Files, Notes, Tasks, Calendars and more.

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw skill for NextCloud Files, Notes, Tasks, Calendars and more.

MorningAI
SKILL

AI news tracking skill for Agents like Claude Code, Openclaw, and more. Tracks AI entities across 9 sources and gener...

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

AI news tracking skill for Agents like Claude Code, Openclaw, and more. Tracks AI entities across 9 sources and generates daily structured reports.

O
coclaw
Platform

CoClaw platform — interact with your OpenClaw through CoClaw, even across network isolation

Early signal7 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

CoClaw platform — interact with your OpenClaw through CoClaw, even across network isolation

O
OpenClaw_Termux
App

Install and run OpenClaw on Android via Termux without root to chat with it on WhatsApp, Telegram, or Discord easily.

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Install and run OpenClaw on Android via Termux without root to chat with it on WhatsApp, Telegram, or Discord easily.

O
OpenClawChineseTranslation
App

Enhance OpenClaw with this Chinese translation, auto-syncing official updates within one hour for Windows, macOS,...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Enhance OpenClaw with this Chinese translation, auto-syncing official updates within one hour for Windows, macOS, and Linux users.

O
LocalClaw
App

Open source macOS installer to run local AI on your Mac with LM Studio + OpenClaw

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Open source macOS installer to run local AI on your Mac with LM Studio + OpenClaw

mind-mem
MCP Server

Persistent AI memory for Claude Code, OpenClaw, and any MCP-compatible agent. BM25F + vector hybrid, governance-aware...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Persistent AI memory for Claude Code, OpenClaw, and any MCP-compatible agent. BM25F + vector hybrid, governance-aware, local-first, zero-infrastructure.

majia-guanyuan
SKILL

观远 BI (Guandata) 全链路 Agent Skill · 数据查询/取数(Part A)+ ETL 治理/写入(Part B)+ HTML/CSS/JS 自定义图表(Part C)· Claude Code / OpenC...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

观远 BI (Guandata) 全链路 Agent Skill · 数据查询/取数(Part A)+ ETL 治理/写入(Part B)+ HTML/CSS/JS 自定义图表(Part C)· Claude Code / OpenClaw / Codex / Hermes 通用 · V2.1.0

master-skill
SKILL

大师.skill — 输入行业,自动调研 6 轨[行业大佬 / 工具地图 / 工作流 / 知识正典 / 信息源 / 术语标准] → 提炼为可运行的行业 Master OS skill;装到任意 Claude Code / OpenCl...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

大师.skill — 输入行业,自动调研 6 轨[行业大佬 / 工具地图 / 工作流 / 知识正典 / 信息源 / 术语标准] → 提炼为可运行的行业 Master OS skill;装到任意 Claude Code / OpenClaw / Codex / Hermes agent 即让其进入「这一行的资深人」模式。MIT,Python + Shell。

open-second-brain
App

SecondBrain for Hermes, OpenClaw, Claude Code, Codex, etc. Works with Obsidian.

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

SecondBrain for Hermes, OpenClaw, Claude Code, Codex, etc. Works with Obsidian.

O
sample-multi-tenant-openclaw-on-firecracker
Agent

🦞 OpenClaw Pool — multi-tenant AI agent platform on AWS EC2 Firecracker microVMs with per-tenant isolation, auto-sca...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

🦞 OpenClaw Pool — multi-tenant AI agent platform on AWS EC2 Firecracker microVMs with per-tenant isolation, auto-scaling, and web management console.

O
opentalon
Platform

OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw

O
sergei-mikhailov-tg-channel-reader
SKILL

OpenClaw skill to read Telegram channels via MTProto (Pyrogram or Telethon). Fetch posts and comments by time window,...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw skill to read Telegram channels via MTProto (Pyrogram or Telethon). Fetch posts and comments by time window, including Instant View / link-preview cards. Available on ClawHub: https://clawhub.ai/bzsega/sergei-mikhailov-tg-channel-reader

O
amber-openclaw-voice-agent
Agent

Phone-capable AI voice agent for OpenClaw — Twilio + OpenAI Realtime SIP bridge with call log dashboard

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Phone-capable AI voice agent for OpenClaw — Twilio + OpenAI Realtime SIP bridge with call log dashboard

O
ai-news-app
Agent

Daily Top 10 AI news dashboard. Uses an autonomous OpenClaw agent for web research and a glassmorphism React frontend...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Daily Top 10 AI news dashboard. Uses an autonomous OpenClaw agent for web research and a glassmorphism React frontend for a modern, responsive display.

agentic-swmm-workflow
Agent

Automated, auditable, and memory-informed Agentic SWMM framework for reproducible stormwater modeling, with QA verifi...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Automated, auditable, and memory-informed Agentic SWMM framework for reproducible stormwater modeling, with QA verification, provenance tracking, calibration support, and integration-ready design for OpenClaw, Codex, and Hermes.

O
crabpot
Plugin

Compatibility testbed for OpenClaw community plugins and plugin seams

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Compatibility testbed for OpenClaw community plugins and plugin seams

O
flowwink
Agent

Flowwink is the next gen Business Operating System where OpenClaws or intenal Flowpilot run CMS, CRM and ERP autonomp...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Flowwink is the next gen Business Operating System where OpenClaws or intenal Flowpilot run CMS, CRM and ERP autonompusly! Help establishing Flowwink as the self hosted, private LLM, open souce agentic BOS alternative!

caliclaw
Agent

Personal AI assistant in Telegram. Agents, memory, souls, autonomous loops.

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Personal AI assistant in Telegram. Agents, memory, souls, autonomous loops.

O
cycles-openclaw-budget-guard
Agent

Cycles budget and action guard for OpenClaw agents

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Cycles budget and action guard for OpenClaw agents

O
openclaw-exporter-to-langfuse
Agent

OpenClaw exporter for sending agent, LLM, and tool tracing data to Langfuse via OpenTelemetry.

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

OpenClaw exporter for sending agent, LLM, and tool tracing data to Langfuse via OpenTelemetry.

prevu
SKILL

Open-source CLI and agent skills for Prevu — preview/staging environments for coding agents like Claude Code, Codex,...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
scheduleInstant

Open-source CLI and agent skills for Prevu — preview/staging environments for coding agents like Claude Code, Codex, Cursor, OpenHands, even OpenClaw and Hermes Agent

O
openclaw-docs
Agent

Comprehensive codebase documentation for OpenClaw — AI agent platform. Module analysis, dependency maps, architecture...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Comprehensive codebase documentation for OpenClaw — AI agent platform. Module analysis, dependency maps, architecture diagrams, and developer reference for humans and AI agents.

git-claw
SKILL

Claude Code skill for consistent git commit, PR, and review conventions

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
Claude CodeClaude CodescheduleInstant

Claude Code skill for consistent git commit, PR, and review conventions

O
openclaw-middleware-suite
Agent

Six in-process middlewares for OpenClaw: HITL approvals, prompt-injection guardrails, PII redaction, tool-call budget...

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Six in-process middlewares for OpenClaw: HITL approvals, prompt-injection guardrails, PII redaction, tool-call budgets, context compaction, and complexity-aware model routing. Zero telemetry, all state local.

O
DroidClaw
Agent

DroidClaw - Simple rework of openclaw as native android app

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

DroidClaw - Simple rework of openclaw as native android app

O
hindclaw
Agent

Production-grade Hindsight memory plugin for OpenClaw — per-agent config, multi-bank recall, IaC bank management

Early signal6 repo stars1 builder vote
Early signalNew enough that sharp builders can still get ahead of the crowd here.
OOpenClawscheduleInstant

Production-grade Hindsight memory plugin for OpenClaw — per-agent config, multi-bank recall, IaC bank management

add Submit Project