← 返回排行榜

openclaw/openclaw

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

359.4k
星标
73.1k
分支
359.4k
关注者
TypeScript
语言

📖 项目介绍

🦞 OpenClaw — Personal AI Assistant




OpenClaw


EXFOLIATE! EXFOLIATE!


CI status
GitHub release
Discord
MIT License

OpenClaw is a _personal AI assistant_ you run on your own devices.
It answers you on the channels you already use. It can speak and listen on macOS/iOS/Android, and can render a live Canvas you control. The Gateway is just the control plane — the product is the assistant.

If you want a personal, single-user assistant that feels local, fast, and always-on, this is it.

Supported channels include: WhatsApp, Telegram, Slack, Discord, Google Chat, Signal, iMessage, BlueBubbles, IRC, Microsoft Teams, Matrix, Feishu, LINE, Mattermost, Nextcloud Talk, Nostr, Synology Chat, Tlon, Twitch, Zalo, Zalo Personal, WeChat, QQ, WebChat.

Website · Docs · Vision · DeepWiki · Getting Started · Updating · Showcase · FAQ · Onboarding · Nix · Docker · Discord

New install? Start here: Getting started

Preferred setup: run openclaw onboard in your terminal.
OpenClaw Onboard guides you step by step through setting up the gateway, workspace, channels, and skills. It is the recommended CLI setup path and works on macOS, Linux, and Windows (via WSL2; strongly recommended).
Works with npm, pnpm, or bun.

Sponsors














OpenAI






GitHub






NVIDIA






Vercel






Blacksmith






Convex


Subscriptions (OAuth):

- OpenAI (ChatGPT/Codex)

Model note: while many providers and models are supported, prefer a current flagship model from the provider you trust and already use. See Onboarding.

Install (recommended)

Runtime: Node 24 (recommended) or Node 22.16+.

bash
npm install -g openclaw@latest

or: pnpm add -g openclaw@latest

openclaw onboard --install-daemon

OpenClaw Onboard installs the Gateway daemon (launchd/systemd user service) so it stays running.

Quick start (TL;DR)

Runtime: Node 24 (recommended) or Node 22.16+.

Full beginner guide (auth, pairing, channels): Getting started

bash
openclaw onboard --install-daemon

openclaw gateway --port 18789 --verbose

Send a message


openclaw message send --to +1234567890 --message "Hello from OpenClaw"

Talk to the assistant (optionally deliver back to any connected channel: WhatsApp/Telegram/Slack/Discord/Google Chat/Signal/iMessage/BlueBubbles/IRC/Microsoft Teams/Matrix/Feishu/LINE/Mattermost/Nextcloud Talk/Nostr/Synology Chat/Tlon/Twitch/Zalo/Zalo Personal/WeChat/QQ/WebChat)


openclaw agent --message "Ship checklist" --thinking high

Upgrading? Updating guide (and run openclaw doctor).

Models config + CLI: Models. Auth profile rotation + fallbacks: Model failover.

Security defaults (DM access)

OpenClaw connects to real messaging surfaces. Treat inbound DMs as untrusted input.

Full security guide: Security

Default behavior on Telegram/WhatsApp/Signal/iMessage/Microsoft Teams/Discord/Google Chat/Slack:

- DM pairing (dmPolicy="pairing" / channels.discord.dmPolicy="pairing" / channels.slack.dmPolicy="pairing"; legacy: channels.discord.dm.policy, channels.slack.dm.policy): unknown senders receive a short pairing code and the bot does not process their message.
- Approve with: openclaw pairing approve (then the sender is added to a local allowlist store).
- Public inbound DMs require an explicit opt-in: set dmPolicy="open" and include "*" in the channel allowlist (allowFrom / channels.discord.allowFrom / channels.slack.allowFrom; legacy: channels.discord.dm.allowFrom, channels.slack.dm.allowFrom).

Run openclaw doctor to surface risky/misconfigured DM policies.

Highlights

- Local-first Gateway — single control plane for sessions, channels, tools, and events.
- Multi-channel inbox — WhatsApp, Telegram, Slack, Discord, Google Chat, Signal, BlueBubbles (iMessage), iMessage (legacy), IRC, Microsoft Teams, Matrix, Feishu, LINE, Mattermost, Nextcloud Talk, Nostr, Synology Chat, Tlon, Twitch, Zalo, Zalo Personal, WeChat, QQ, WebChat, macOS, iOS/Android.
- Multi-agent routing — route inbound channels/accounts/peers to isolated agents (workspaces + per-agent sessions).
- Voice Wake + Talk Mode — wake words on macOS/iOS and continuous voice on Android (ElevenLabs + system TTS fallback).
- Live Canvas — agent-driven visual workspace with A2UI.
- First-class tools — browser, canvas, nodes, cron, sessions, and Discord/Slack actions.
- Companion apps — macOS menu bar app + iOS/Android nodes.
- Onboarding + skills — onboarding-driven setup with bundled/managed/workspace skills.

Security model (important)

- Default: tools run on the host for the main session, so the agent has full access when it is just you.
- Group/channel safety: set agents.defaults.sandbox.mode: "non-main" to run non-main sessions inside per-session Docker sandboxes.
- Typical sandbox default: allow bash, process, read, write, edit, sessions_list, sessions_history, sessions_send, sessions_spawn; deny browser, canvas, nodes, cron, discord, gateway.
- Before exposing anything remotely, read Security, Docker sandboxing, and Configuration.

Operator quick refs

- Chat commands: /status, /new, /reset, /compact, /think , /verbose on|off, /trace on|off, /usage off|tokens|full, /restart, /activation mention|always
- Session tools: sessions_list, sessions_history, sessions_send
- Skills registry: ClawHub
- Architecture overview: Architecture

Docs by goal

- New here: Getting started, Onboarding, Updating
- Channel setup: Channels index, WhatsApp, Telegram, Discord, Slack
- Apps + nodes: macOS, iOS, Android, Nodes
- Config + security: Configuration, Security, Docker sandboxing
- Remote + web: Gateway, Remote access, Tailscale, Web surfaces
- Tools + automation: Tools, Skills, Cron jobs, Webhooks, Gmail Pub/Sub
- Internals: Architecture, Agent, Session model, Gateway protocol
- Troubleshooting: Channel troubleshooting, Logging, Docs home

Apps (optional)

The Gateway alone delivers a great experience. All apps are optional and add extra features.

If you plan to build/run companion apps, follow the platform runbooks below.

macOS (OpenClaw.app) (optional)

- Menu bar control for the Gateway and health.
- Voice Wake + push-to-talk overlay.
- WebChat + debug tools.
- Remote gateway control over SSH.

Note: signed builds required for macOS permissions to stick across rebuilds (see macOS Permissions).

iOS node (optional)

- Pairs as a node over the Gateway WebSocket (device pairing).
- Voice trigger forwarding + Canvas surface.
- Controlled via openclaw nodes ….

Runbook: iOS connect.

Android node (optional)

- Pairs as a WS node via device pairing (openclaw devices ...).
- Exposes Connect/Chat/Voice tabs plus Canvas, Camera, Screen capture, and Android device command families.
- Runbook: Android connect.

From source (development)

Prefer pnpm for builds from source. Bun is optional for running TypeScript directly.

bash
git clone https://github.com/openclaw/openclaw.git
cd openclaw

pnpm install
pnpm ui:build # auto-installs UI deps on first run
pnpm build

pnpm openclaw onboard --install-daemon

Dev loop (auto-reload on source/config changes)


pnpm gateway:watch

Note: pnpm openclaw ... runs TypeScript directly (via tsx). pnpm build produces dist/ for running via Node / the packaged openclaw binary.

Development channels

- stable: tagged releases (vYYYY.M.D or vYYYY.M.D-), npm dist-tag latest.
- beta: prerelease tags (vYYYY.M.D-beta.N), npm dist-tag beta (macOS app may be missing).
- dev: moving head of main, npm dist-tag dev (when published).

Switch channels (git + npm): openclaw update --channel stable|beta|dev.
Details: Development channels.

Agent workspace + skills

- Workspace root: ~/.openclaw/workspace (configurable via agents.defaults.workspace).
- Injected prompt files: AGENTS.md, SOUL.md, TOOLS.md.
- Skills: ~/.openclaw/workspace/skills//SKILL.md.

Configuration

Minimal ~/.openclaw/openclaw.json (model + defaults):

json5
{
agent: {
model: "/",
},
}

Full configuration reference (all keys + examples).

Star History

![Star History Chart](https://www.star-history.com/#openclaw/openclaw&type=date&legend=top-left)

Molty

OpenClaw was built for Molty, a space lobster AI assistant. 🦞
by Peter Steinberger and the community.

- openclaw.ai
- soul.md
- steipete.me
- @openclaw

Community

See CONTRIBUTING.md for guidelines, maintainers, and how to submit PRs.
AI/vibe-coded PRs welcome! 🤖

Special thanks to Mario Zechner for his support and for
pi-mono.
Special thanks to Adam Doppelt for the lobster.bot domain.

Thanks to all clawtributors:

![steipete](https://github.com/steipete) ![vincentkoc](https://github.com/vincentkoc) ![Takhoffman](https://github.com/Takhoffman) ![obviyus](https://github.com/obviyus) ![gumadeiras](https://github.com/gumadeiras) ![Mariano Belinky](https://github.com/mbelinky) ![vignesh07](https://github.com/vignesh07) ![joshavant](https://github.com/joshavant) ![scoootscooob](https://github.com/scoootscooob) ![jacobtomlinson](https://github.com/jacobtomlinson)

![shakkernerd](https://github.com/shakkernerd) ![sebslight](https://github.com/sebslight) ![tyler6204](https://github.com/tyler6204) ![ngutman](https://github.com/ngutman) ![thewilloftheshadow](https://github.com/thewilloftheshadow) ![Sid-Qin](https://github.com/Sid-Qin) ![mcaxtr](https://github.com/mcaxtr) ![eleqtrizit](https://github.com/eleqtrizit) ![BunsDev](https://github.com/BunsDev) ![cpojer](https://github.com/cpojer)

![Glucksberg](https://github.com/Glucksberg) ![osolmaz](https://github.com/osolmaz) ![bmendonca3](https://github.com/bmendonca3) ![jalehman](https://github.com/jalehman) ![huntharo](https://github.com/huntharo) ![neeravmakwana](https://github.com/neeravmakwana) ![openperf](https://github.com/openperf) ![joshp123](https://github.com/joshp123) ![pgondhi987](https://github.com/pgondhi987) ![altaywtf](https://github.com/altaywtf)

![quotentiroler](https://github.com/quotentiroler) ![liuxiaopai-ai](https://github.com/liuxiaopai-ai) ![rodrigouroz](https://github.com/rodrigouroz) ![frankekn](https://github.com/frankekn) ![drobison00](https://github.com/drobison00) ![zerone0x](https://github.com/zerone0x) ![onutc](https://github.com/onutc) ![ademczuk](https://github.com/ademczuk) ![ImLukeF](https://github.com/ImLukeF) ![hydro13](https://github.com/hydro13)

![hxy91819](https://github.com/hxy91819) ![coygeek](https://github.com/coygeek) ![dutifulbob](https://github.com/dutifulbob) ![sliverp](https://github.com/sliverp) ![Elonito](https://github.com/0xRaini) ![robbyczgw-cla](https://github.com/robbyczgw-cla) ![joelnishanth](https://github.com/joelnishanth) ![echoVic](https://github.com/echoVic) ![sallyom](https://github.com/sallyom) ![yinghaosang](https://github.com/yinghaosang)

![BradGroux](https://github.com/BradGroux) ![christianklotz](https://github.com/christianklotz) ![odysseus0](https://github.com/odysseus0) ![hclsys](https://github.com/hclsys) ![byungsker](https://github.com/byungsker) ![pashpashpash](https://github.com/pashpashpash) ![stakeswky](https://github.com/stakeswky) [![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4&s=48)](https://github.com/apps/github-actions) ![xinhuagu](https://github.com/xinhuagu) ![MonkeyLeeT](https://github.com/MonkeyLeeT)

![100yenadmin](https://github.com/100yenadmin) ![mcinteerj](https://github.com/mcinteerj) ![samzong](https://github.com/samzong) ![chilu18](https://github.com/chilu18) ![darkamenosa](https://github.com/darkamenosa) ![widingmarcus-cyber](https://github.com/widingmarcus-cyber) ![cgdusek](https://github.com/cgdusek) ![Lukavyi](https://github.com/Lukavyi) ![davidrudduck](https://github.com/davidrudduck) ![VACInc](https://github.com/VACInc)

![MoerAI](https://github.com/MoerAI) ![velvet-shark](https://github.com/velvet-shark) ![HenryLoenwind](https://github.com/HenryLoenwind) ![omarshahine](https://github.com/omarshahine) ![bohdanpodvirnyi](https://github.com/bohdanpodvirnyi) ![Verite Igiraneza](https://github.com/VeriteIgiraneza) ![akramcodez](https://github.com/akramcodez) ![Kaneki-x](https://github.com/Kaneki-x) ![aether-ai-agent](https://github.com/aether-ai-agent) ![joaohlisboa](https://github.com/joaohlisboa)

![MaudeBot](https://github.com/MaudeBot) ![davidguttman](https://github.com/davidguttman) ![justinhuangcode](https://github.com/justinhuangcode) ![lml2468](https://github.com/lml2468) ![wirjo](https://github.com/wirjo) ![iHildy](https://github.com/iHildy) ![mudrii](https://github.com/mudrii) ![advaitpaliwal](https://github.com/advaitpaliwal) ![czekaj](https://github.com/czekaj) ![dlauer](https://github.com/dlauer)

![Solvely-Colin](https://github.com/Solvely-Colin) ![feiskyer](https://github.com/feiskyer) ![brandonwise](https://github.com/brandonwise) ![conroywhitney](https://github.com/conroywhitney) ![mneves75](https://github.com/mneves75) ![jaydenfyi](https://github.com/jaydenfyi) ![davemorin](https://github.com/davemorin) ![joeykrug](https://github.com/joeykrug) ![kevinWangSheng](https://github.com/kevinWangSheng) ![pejmanjohn](https://github.com/pejmanjohn)

![Lanfei](https://github.com/Lanfei) ![liuy](https://github.com/liuy) ![lc0rp](https://github.com/lc0rp) ![teconomix](https://github.com/teconomix) ![omair445](https://github.com/omair445) ![dorukardahan](https://github.com/dorukardahan) ![mmaps](https://github.com/mmaps) ![Tobias Bischoff](https://github.com/tobiasbischoff) ![adhitShet](https://github.com/adhitShet) ![pandego](https://github.com/pandego)

![bradleypriest](https://github.com/bradleypriest) ![bjesuiter](https://github.com/bjesuiter) ![grp06](https://github.com/grp06) ![shadril238](https://github.com/shadril238) ![kesku](https://github.com/kesku) ![YuriNachos](https://github.com/YuriNachos) ![vrknetha](https://github.com/vrknetha) ![smartprogrammer93](https://github.com/smartprogrammer93) ![nachx639](https://github.com/Nachx639) ![jnMetaCode](https://github.com/jnMetaCode)

![Phineas1500](https://github.com/Phineas1500) ![dingn42](https://github.com/dingn42) ![geekhuashan](https://github.com/geekhuashan) ![Nanako0129](https://github.com/Nanako0129) ![AytuncYildizli](https://github.com/AytuncYildizli) ![BruceMacD](https://github.com/BruceMacD) ![jjjojoj](https://github.com/jjjojoj) ![mvanhorn](https://github.com/mvanhorn) ![bugkill3r](https://github.com/bugkill3r) ![rahthakor](https://github.com/rahthakor)

![GodsBoy](https://github.com/GodsBoy) ![SARAMALI15792](https://github.com/SARAMALI15792) ![Radek Paclt](https://github.com/radek-paclt) ![Elarwei001](https://github.com/Elarwei001) ![ingyukoh](https://github.com/ingyukoh) ![SnowSky1](https://github.com/SnowSky1) ![lewiswigmore](https://github.com/lewiswigmore) ![Hiroshi Tanaka](https://github.com/solavrc) ![aldoeliacim](https://github.com/aldoeliacim) ![Jakub Rusz](https://github.com/jrusz)

![Tony Dehnke](https://github.com/tonydehnke) ![roshanasingh4](https://github.com/roshanasingh4) ![zssggle-rgb](https://github.com/zssggle-rgb) ![adam91holt](https://github.com/adam91holt) ![graysurf](https://github.com/graysurf) ![xadenryan](https://github.com/xadenryan) ![sfo2001](https://github.com/sfo2001) ![Jamieson O'Reilly](https://github.com/orlyjamie) ![hsrvc](https://github.com/hsrvc) ![tomsun28](https://github.com/tomsun28)

![BillChirico](https://github.com/BillChirico) ![carrotRakko](https://github.com/carrotRakko) ![ranausmanai](https://github.com/ranausmanai) ![arkyu2077](https://github.com/arkyu2077) ![hoyyeva](https://github.com/hoyyeva) ![luoyanglang](https://github.com/luoyanglang) ![sibbl](https://github.com/sibbl) ![gregmousseau](https://github.com/gregmousseau) ![sahilsatralkar](https://github.com/sahilsatralkar) ![akoscz](https://github.com/akoscz)

![rrenamed](https://github.com/rrenamed) ![YuzuruS](https://github.com/YuzuruS) ![Hongwei Ma](https://github.com/Marvae) ![mitchmcalister](https://github.com/mitchmcalister) ![juanpablodlc](https://github.com/juanpablodlc) ![shtse8](https://github.com/shtse8) ![thebenignhacker](https://github.com/thebenignhacker) ![nimbleenigma](https://github.com/nimbleenigma) ![Linux2010](https://github.com/Linux2010) ![shichangs](https://github.com/shichangs)

![efe-arv](https://github.com/efe-arv) ![Hsiao A](https://github.com/hsiaoa) ![nabbilkhan](https://github.com/nabbilkhan) ![ayanesakura](https://github.com/ayanesakura) ![lupuletic](https://github.com/lupuletic) ![polooooo](https://github.com/polooooo) ![xaeon2026](https://github.com/xaeon2026) ![shrey150](https://github.com/shrey150) ![taw0002](https://github.com/taw0002) ![dinakars777](https://github.com/dinakars777)

![giulio-leone](https://github.com/giulio-leone) ![nyanjou](https://github.com/nyanjou) ![meaningfool](https://github.com/meaningfool) ![kunalk16](https://github.com/kunalk16) ![ide-rea](https://github.com/ide-rea) ![Jonathan Jing](https://github.com/JonathanJing) ![yelog](https://github.com/yelog) ![markmusson](https://github.com/markmusson) ![kiranvk-2011](https://github.com/kiranvk-2011) ![Sathvik Veerapaneni](https://github.com/Sathvik-Chowdary-Veerapaneni)

![rogerdigital](https://github.com/rogerdigital) ![artwalker](https://github.com/artwalker) ![azade-c](https://github.com/azade-c) ![chinar-amrutkar](https://github.com/chinar-amrutkar) ![maxsumrall](https://github.com/maxsumrall) ![Minidoracat](https://github.com/Minidoracat) ![unisone](https://github.com/unisone) ![ly85206559](https://github.com/ly85206559) ![Sam Padilla](https://github.com/theSamPadilla) ![AnonO6](https://github.com/AnonO6)

![afurm](https://github.com/afurm) ![황재원](https://github.com/jwchmodx) ![Leszek Szpunar](https://github.com/leszekszpunar) ![Mrseenz](https://github.com/Mrseenz) ![Yida-Dev](https://github.com/Yida-Dev) ![kesor](https://github.com/kesor) ![mazhe-nerd](https://github.com/mazhe-nerd) ![Harald Buerbaumer](https://github.com/buerbaumer) ![magimetal](https://github.com/magimetal) ![Hiren Patel](https://github.com/patelhiren)

![BinHPdev](https://github.com/BinHPdev) ![RyanLee-Dev](https://github.com/RyanLee-Dev) ![cathrynlavery](https://github.com/cathrynlavery) ![al3mart](https://github.com/al3mart) ![JustYannicc](https://github.com/JustYannicc) ![abhisekbasu1](https://github.com/AbhisekBasu1) ![dbhurley](https://github.com/dbhurley) ![Kris Wu](https://github.com/mpz4life) ![tmimmanuel](https://github.com/tmimmanuel) ![JustasM](https://github.com/JustasMonkev)

![Simantak Dabhade](https://github.com/simantak-dabhade) ![NicholasSpisak](https://github.com/NicholasSpisak) ![natefikru](https://github.com/natefikru) ![dunamismax](https://github.com/dunamismax) ![Simone Macario](https://github.com/simonemacario) ![ENCHIGO](https://github.com/ENCHIGO) ![xingsy97](https://github.com/xingsy97) ![emonty](https://github.com/emonty) ![jadilson12](https://github.com/jadilson12) ![Yi-Cheng Wang](https://github.com/kirisame-wang)

![Mathias Nagler](https://github.com/mathiasnagler) ![Sean McLellan](https://github.com/Oceanswave) ![gumclaw](https://github.com/gumclaw) ![RichardCao](https://github.com/RichardCao) ![MKV21](https://github.com/MKV21) ![petter-b](https://github.com/petter-b) ![CodeForgeNet](https://github.com/CodeForgeNet) ![Johnson Shi](https://github.com/johnsonshi) ![durenzidu](https://github.com/durenzidu) ![dougvk](https://github.com/dougvk)

![Whoaa512](https://github.com/Whoaa512) ![zimeg](https://github.com/zimeg) ![Tseka Luk](https://github.com/TsekaLuk) ![Ryan Haines](https://github.com/Ryan-Haines) ![ufhy](https://github.com/uf-hy) ![Daan van der Plas](https://github.com/Daanvdplas) ![bittoby](https://github.com/bittoby) ![XuHao](https://github.com/xuhao1) ![Lucenx9](https://github.com/Lucenx9) ![HeMuling](https://github.com/HeMuling)

![AaronLuo00](https://github.com/AaronLuo00) ![YUJIE2002](https://github.com/YUJIE2002) ![DhruvBhatia0](https://github.com/DhruvBhatia0) ![Divanoli Mydeen Pitchai](https://github.com/divanoli) ![Bronko](https://github.com/derbronko) ![rubyrunsstuff](https://github.com/rubyrunsstuff) ![rabsef-bicrym](https://github.com/rabsef-bicrym) ![IVY-AI-gif](https://github.com/IVY-AI-gif) ![pvtclawn](https://github.com/pvtclawn) ![stephenschoettler](https://github.com/stephenschoettler)

![Dale Babiy](https://github.com/minupla) ![LeftX](https://github.com/xzq-xu) ![David Gelberg](https://github.com/mousberg) ![Engr. Arif Ahmed Joy](https://github.com/arifahmedjoy) ![Masataka Shinohara](https://github.com/harhogefoo) ![2233admin](https://github.com/2233admin) ![ameno-](https://github.com/ameno-) ![battman21](https://github.com/battman21) ![bcherny](https://github.com/bcherny) ![bobashopcashier](https://github.com/bobashopcashier)

![dguido](https://github.com/dguido) ![druide67](https://github.com/druide67) ![guirguispierre](https://github.com/guirguispierre) ![jzakirov](https://github.com/jzakirov) ![loganprit](https://github.com/loganprit) ![martinfrancois](https://github.com/martinfrancois) ![neo1027144-creator](https://github.com/neo1027144-creator) ![RealKai42](https://github.com/RealKai42) ![schumilin](https://github.com/schumilin) ![shuofengzhang](https://github.com/shuofengzhang)

![solstead](https://github.com/solstead) ![hengm3467](https://github.com/hengm3467) ![chziyue](https://github.com/chziyue) ![James L. Cowan Jr.](https://github.com/jameslcowan) ![scifantastic](https://github.com/scifantastic) ![ryan-crabbe](https://github.com/ryan-crabbe) ![alexfilatov](https://github.com/alexfilatov) ![Luckymingxuan](https://github.com/Luckymingxuan) ![HollyChou](https://github.com/Hollychou924) ![badlogic](https://github.com/badlogic)

![Daniel Hnyk](https://github.com/hnykda) ![dan bachelder](https://github.com/dbachelder) ![heavenlost](https://github.com/heavenlost) ![shad0wca7](https://github.com/shad0wca7) ![Jared](https://github.com/jared596) ![kiranjd](https://github.com/kiranjd) ![Mars](https://github.com/Mellowambience) ![Kim](https://github.com/KimGLee) ![seheepeak](https://github.com/seheepeak) ![tsavo](https://github.com/TSavo)

![McRolly NWANGWU](https://github.com/mcrolly) ![dashed](https://github.com/dashed) ![Shuai-DaiDai](https://github.com/Shuai-DaiDai) ![Subash Natarajan](https://github.com/suboss87) ![emanuelst](https://github.com/emanuelst) ![magendary](https://github.com/magendary) ![LI SHANXIN](https://github.com/PeterShanxin) ![j2h4u](https://github.com/j2h4u) ![bsormagec](https://github.com/bsormagec) ![mjamiv](https://github.com/mjamiv)

![Lalit Singh](https://github.com/aerolalit) ![Jessy LANGE](https://github.com/jessy2027) ![buddyh](https://github.com/buddyh) ![Aaron Zhu](https://github.com/aaron-he-zhu) ![F_ool](https://github.com/hhhhao28) ![Ben Stein](https://github.com/benostein) ![Lyle](https://github.com/LyleLiu666) ![Ping](https://github.com/pingren) ![popomore](https://github.com/popomore) ![Dithilli](https://github.com/Dithilli)

![fal3](https://github.com/fal3) ![mkbehr](https://github.com/mkbehr) ![mteam88](https://github.com/mteam88) ![gupsammy](https://github.com/gupsammy) ![Shailesh](https://github.com/gut-puncture) ![Garnet Liu](https://github.com/garnetlyx) ![Thorfinn](https://github.com/miloudbelarebia) ![Protocol-zero-0](https://github.com/Protocol-zero-0) ![Paul van Oorschot](https://github.com/pvoo) ![Patrick Yingxi Pan](https://github.com/patrick-yingxi-pan)

![Ptah.ai](https://github.com/ptahdunbar) ![정우용](https://github.com/keepitmello) ![artuskg](https://github.com/artuskg) ![Anandesh-Sharma](https://github.com/Anandesh-Sharma) ![zidongdesign](https://github.com/zidongdesign) ![innocent-children](https://github.com/Innocent-children) ![El-Fitz](https://github.com/El-Fitz) ![arthurbr11](https://github.com/arthurbr11) ![jackheuberger](https://github.com/jackheuberger) ![Sergiusz](https://github.com/serkonyc)

![Xu Gu](https://github.com/guxu11) ![hyojin](https://github.com/hyojin) ![jeann2013](https://github.com/jeann2013) ![jogelin](https://github.com/jogelin) ![rmorse](https://github.com/rmorse) ![scz2011](https://github.com/scz2011) ![Andyliu](https://github.com/andyliu) ![benithors](https://github.com/benithors) ![xiwuqi](https://github.com/xiwuqi) ![Alvin](https://github.com/TigerInYourDream)

![AARON AGENT](https://github.com/aaronagent) ![Derek YU](https://github.com/TonyDerek-dot) ![Marvin](https://github.com/Zitzak) ![Andrew Jeon](https://github.com/ruypang) ![stain lu](https://github.com/stainlu) ![OpenCils](https://github.com/OpenCils) ![Stefan Galescu](https://github.com/stefangalescu) ![SP](https://github.com/sp-hk2ldn) ![Michael Flanagan](https://github.com/MikeORed) ![Gracie Gould](https://github.com/graciegould)

![cash-echo-bot](https://github.com/cash-echo-bot) ![visionik](https://github.com/visionik) ![WalterSumbon](https://github.com/WalterSumbon) ![huangcj](https://github.com/SubtleSpark) ![krizpoon](https://github.com/krizpoon) ![rodbland2021](https://github.com/rodbland2021) ![Thomas M](https://github.com/thomasxm) ![sar618](https://github.com/sar618) ![fagemx](https://github.com/fagemx) ![daymade](https://github.com/daymade)

![Tyson Cung](https://github.com/tysoncung) ![Igor Markelov](https://github.com/pycckuu) ![Eng. Juan Combetto](https://github.com/omniwired) ![connorshea](https://github.com/connorshea) ![bonald](https://github.com/bonald) ![Keenan](https://github.com/BeeSting50) ![nachoiacovino](https://github.com/nachoiacovino) ![zhumengzhu](https://github.com/zhumengzhu) ![Amine Harch el korane](https://github.com/Vitalcheffe) ![zhoulc777](https://github.com/zhoulongchao77)

![Alex Navarro](https://github.com/navarrotech) ![Tanwa Arpornthip](https://github.com/CommanderCrowCode) ![TIHU](https://github.com/paceyw) ![Aftabbs](https://github.com/Aftabbs) ![Alex-Alaniz](https://github.com/Alex-Alaniz) ![jarvis-medmatic](https://github.com/jarvis-medmatic) ![Tom Ron](https://github.com/tomron87) ![day253](https://github.com/day253) ![Jaaneek](https://github.com/Jaaneek) ![Justin Song](https://github.com/AnCoSONG)

![ziomancer](https://github.com/ziomancer) ![shayan919293](https://github.com/shayan919293) ![Edward](https://github.com/edwluo) ![Roger Chien](https://github.com/rjchien728) ![Michael Lee](https://github.com/TinyTb) ![Tomáš Dinh](https://github.com/No898) ![Ian Derrington](https://github.com/ianderrington) ![Lucky](https://github.com/L-U-C-K-Y) ![peschee](https://github.com/peschee) ![Harry Cui Kepler](https://github.com/Kepler2024)

![julianengel](https://github.com/julianengel) ![markfietje](https://github.com/markfietje) ![Dakshay Mehta](https://github.com/dakshaymehta) ![TheRipper](https://github.com/DavidNitZ) ![Dominic](https://github.com/dominicnunez) ![danielwanwx](https://github.com/danielwanwx) ![Seungwoo hong](https://github.com/hongsw) ![Youyou972](https://github.com/Youyou972) ![boris721](https://github.com/boris721) ![damoahdominic](https://github.com/damoahdominic)

![dan-dr](https://github.com/dan-dr) ![doodlewind](https://github.com/doodlewind) ![kkarimi](https://github.com/kkarimi) ![brokemac79](https://github.com/brokemac79) ![ozbillwang](https://github.com/ozbillwang) ![Ravish Gupta](https://github.com/ravyg) ![Jason Hargrove](https://github.com/jasonhargrove) ![BrianWang1990](https://github.com/BrianWang1990) ![Joshua McKiddy](https://github.com/hackersifu) ![Fologan](https://github.com/Fologan)

![Anonymous Amit](https://github.com/AnonAmit) ![v1p0r](https://github.com/v1p0r) ![Ajay Elika](https://github.com/ajay99511) ![Iranb](https://github.com/Iranb) ![Yonatan](https://github.com/yhyatt) ![codexGW](https://github.com/codexGW) ![Shaun Tsai](https://github.com/ShaunTsai) ![TideFinder](https://github.com/papago2355) ![Chase Dorsey](https://github.com/cdorsey) ![tda](https://github.com/tda1017)

![0xJonHoldsCrypto](https://github.com/0xJonHoldsCrypto) ![akyourowngames](https://github.com/akyourowngames) [![clawdinator[bot]](https://avatars.githubusercontent.com/in/2607181?v=4&s=48)](https://github.com/apps/clawdinator) ![koala73](https://github.com/koala73) ![sircrumpet](https://github.com/sircrumpet) ![thesomewhatyou](https://github.com/thesomewhatyou) ![zats](https://github.com/zats) ![Accunza](https://github.com/duqaXxX) ![Joly0](https://github.com/Joly0) ![Hanna](https://github.com/hannasdev)

![Jeremiah Lowin](https://github.com/jlowin) ![peetzweg/](https://github.com/peetzweg) ![Skyler Miao](https://github.com/adao-max) ![tumf](https://github.com/tumf) ![Hiago Silva](https://github.com/Huntterxx) ![Nate](https://github.com/nk1tz) ![lidamao633](https://github.com/lidamao633) ![Cklee](https://github.com/liebertar) ![CornBrother0x](https://github.com/CornBrother0x) ![DukeDeSouth](https://github.com/DukeDeSouth)

![Sahan](https://github.com/sahancava) ![CashWilliams](https://github.com/CashWilliams) ![Felix Lu](https://github.com/lumpinif) ![AdeboyeDN](https://github.com/AdeboyeDN) ![Rohan Santhosh Kumar](https://github.com/Rohan5commit) ![Srinivas Pavan](https://github.com/srinivaspavan9) ![h0tp](https://github.com/h0tp-ftw) ![Neo](https://github.com/neooriginal) ![Tianworld](https://github.com/Tianworld) ![neverland](https://github.com/Bermudarat)

![asklee-klawd](https://github.com/asklee-klawd) ![Yuting Lin](https://github.com/yuting0624) ![constansino](https://github.com/constansino) ![ghsmc](https://github.com/ghsmc) ![ibrahimq21](https://github.com/ibrahimq21) ![irtiq7](https://github.com/irtiq7) ![kelvinCB](https://github.com/kelvinCB) ![mitsuhiko](https://github.com/mitsuhiko) ![nohat](https://github.com/nohat) ![santiagomed](https://github.com/santiagomed)

![suminhthanh](https://github.com/suminhthanh) ![svkozak](https://github.com/svkozak) ![张哲芳](https://github.com/zhangzhefang-github) ![Ho Lim](https://github.com/HOYALIM) ![Toven](https://github.com/ping-Toven) ![R. Desmond](https://github.com/0-CYBERDYNE-SYSTEMS-0) ![游乐场](https://github.com/ylc0919) ![Reed](https://github.com/reed1898) ![Aditya Chaudhary](https://github.com/ItsAditya-xyz) ![Sam](https://github.com/samrusani)

![Andy](https://github.com/andyk-ms) ![Rajat Joshi](https://github.com/18-RAJAT) ![cyb1278588254](https://github.com/cyb1278588254) ![Zoher Ghadyali](https://github.com/zoherghadyali) ![Manik Vahsith](https://github.com/manikv12) ![tarouca](https://github.com/manueltarouca) ![MrBrain](https://github.com/GaosCode) ![Daniel Zou](https://github.com/pahdo) ![Lilo](https://github.com/detecti1) ![Jason](https://github.com/JasonOA888)

![SUMUKH](https://github.com/sumukhj1219) ![Bakhtier Sizhaev](https://github.com/bakhtiersizhaev) ![Ganghyun Kim](https://github.com/kyleok) ![AkashKobal](https://github.com/AkashKobal) ![Brian](https://github.com/zhuisDEV) ![wu-tian807](https://github.com/wu-tian807) ![Vasanth Rao Naik Sabavat](https://github.com/vsabavat) ![Kinfey](https://github.com/kinfey) ![Artemii](https://github.com/crimeacs) ![VibhorGautam](https://github.com/VibhorGautam)

![John Rood](https://github.com/John-Rood) ![velamints2](https://github.com/velamints2) ![Benji Peng](https://github.com/benjipeng) ![JINNYEONG KIM](https://github.com/divisonofficer) ![Rahul kumar Pal](https://github.com/Rahulkumar070) ![Rockcent](https://github.com/rockcent) ![Limitless](https://github.com/Limitless2023) ![24601](https://github.com/24601) ![awkoy](https://github.com/awkoy) ![dawondyifraw](https://github.com/dawondyifraw)

[![google-labs-jules[bot]](https://avatars.githubusercontent.com/in/842251?v=4&s=48)](https://github.com/apps/google-labs-jules) ![henrino3](https://github.com/henrino3) ![Kansodata](https://github.com/Kansodata) ![kaonash](https://github.com/kaonash) ![p6l-richard](https://github.com/p6l-richard) ![pi0](https://github.com/pi0) ![skainguyen1412](https://github.com/skainguyen1412) ![Starhappysh](https://github.com/Starhappysh) ![xdanger](https://github.com/xdanger) ![Penchan](https://github.com/p3nchan)

![scald](https://github.com/scald) ![Serhii](https://github.com/kashevk0) ![a](https://github.com/Yuandiaodiaodiao) ![Doğu Abaris](https://github.com/doguabaris) ![ysqander](https://github.com/ysqander) ![andranik-sahakyan](https://github.com/andranik-sahakyan) ![Wangnov](https://github.com/Wangnov) ![Austin](https://github.com/rixau) ![lisitan](https://github.com/lisitan) ![Rishi Vhavle](https://github.com/kaizen403)

![Frank Harris](https://github.com/hirefrank) ![Kenny Lee](https://github.com/kennyklee) ![Alice Losasso](https://github.com/dddabtc) ![edincampara](https://github.com/edincampara) ![Felix Hellström](https://github.com/fellanH) ![Varun Chopra](https://github.com/VarunChopra11) ![wangai-studio](https://github.com/wangai-studio) ![sleontenko](https://github.com/sleontenko) ![Yassine Amjad](https://github.com/yassine20011) ![Anton Eicher](https://github.com/ant1eicher)

![Drake Thomsen](https://github.com/ThomsenDrake) ![Hinata Kaga (samon)](https://github.com/kakuteki) ![andreabadesso](https://github.com/andreabadesso) ![chenxin-yan](https://github.com/chenxin-yan) ![cordx56](https://github.com/cordx56) ![dvrshil](https://github.com/dvrshil) ![MarvinCui](https://github.com/MarvinCui) ![Yeom-JinHo](https://github.com/Yeom-JinHo) ![Jeremy Mumford](https://github.com/17jmumford) ![Charlie Niño](https://github.com/KnHack)

![Sharoon Sharif](https://github.com/SharoonSharif) ![Oren](https://github.com/orenyomtov) ![MattQ](https://github.com/mattqdev) ![Parker Todd Brooks](https://github.com/parkertoddbrooks) ![Yufeng He](https://github.com/he-yufeng) ![Milofax](https://github.com/Milofax) ![Steve (OpenClaw)](https://github.com/stevebot-alive) ![zhoulf1006](https://github.com/zhoulf1006) ![Jonatan](https://github.com/jrrcdev) ![Sebastian B Otaegui](https://github.com/feniix)

![Matthew](https://github.com/ZetiMente) ![ABFS Tech](https://github.com/QuantDeveloperUSA) ![alexstyl](https://github.com/alexstyl) ![Ethan Palm](https://github.com/ethanpalm) ![Qkal](https://github.com/qkal) ![cygaar](https://github.com/cygaar) ![Umut CAN](https://github.com/U-C4N) ![Jakob](https://github.com/jakobdylanc) ![antons](https://github.com/antons) ![austinm911](https://github.com/austinm911)

![mahmoudashraf93](https://github.com/mahmoudashraf93) ![philipp-spiess](https://github.com/philipp-spiess) ![pkrmf](https://github.com/pkrmf) ![joshrad-dev](https://github.com/joshrad-dev) ![factnest365-ops](https://github.com/factnest365-ops) ![yingchunbai](https://github.com/yingchunbai) ![AJ (@techfren)](https://github.com/aj47) ![Marchel Fahrezi](https://github.com/Alg0rix) ![futhgar](https://github.com/futhgar) ![Zhang](https://github.com/YonganZhang)

![Rémi](https://github.com/remusao) ![Dan Ballance](https://github.com/danballance) ![Eric Su](https://github.com/GHesericsu) ![Kimitaka Watanabe](https://github.com/kimitaka) ![Justin Ling](https://github.com/itsjling) ![Raymond Berger](https://github.com/RayBB) ![lutr0](https://github.com/lutr0) ![claude](https://github.com/claude) ![AngryBird](https://github.com/angrybirddd) ![Fabian Williams](https://github.com/fabianwilliams)

![0x4C33](https://github.com/haoruilee) ![8BlT](https://github.com/8BlT) ![atalovesyou](https://github.com/atalovesyou) ![erikpr1994](https://github.com/erikpr1994) ![jonasjancarik](https://github.com/jonasjancarik) ![longmaba](https://github.com/longmaba) ![mitschabaude-bot](https://github.com/mitschabaude-bot) ![thesash](https://github.com/thesash) ![Max](https://github.com/rdev) ![easternbloc](https://github.com/easternbloc)

![chrisrodz](https://github.com/chrisrodz) ![gabriel-trigo](https://github.com/gabriel-trigo) ![manmal](https://github.com/manmal) ![neist](https://github.com/neist) ![wes-davis](https://github.com/wes-davis) ![manuelhettich](https://github.com/ManuelHettich) ![sktbrd](https://github.com/sktbrd) ![larlyssa](https://github.com/larlyssa) ![pcty-nextgen-service-account](https://github.com/pcty-nextgen-service-account) ![Syhids](https://github.com/Syhids)

![tmchow](https://github.com/tmchow) ![Marc Gratch](https://github.com/mgratch) ![xtao](https://github.com/xtao) ![JackyWay](https://github.com/JackyWay) ![Josh Phillips](https://github.com/j1philli) ![T5-AndyML](https://github.com/T5-AndyML) ![huohua-dev](https://github.com/huohua-dev) ![imfing](https://github.com/imfing) ![Randy Torres](https://github.com/RandyVentures) ![Marco Di Dionisio](https://github.com/marcodd23)

![iamadig](https://github.com/Iamadig) ![humanwritten](https://github.com/humanwritten) ![Rob Axelsen](https://github.com/robaxelsen) ![Pratham Dubey](https://github.com/prathamdby) ![0oAstro](https://github.com/0oAstro) ![aaronn](https://github.com/aaronn) ![Arturo](https://github.com/afern247) ![Asleep123](https://github.com/Asleep123) ![dantelex](https://github.com/dantelex) ![fcatuhe](https://github.com/fcatuhe)

![gtsifrikas](https://github.com/gtsifrikas) ![hrdwdmrbl](https://github.com/hrdwdmrbl) ![hugobarauna](https://github.com/hugobarauna) ![jayhickey](https://github.com/jayhickey) ![jiulingyun](https://github.com/jiulingyun) ![Jonathan D. Rhyne (DJ-D)](https://github.com/jdrhyne) ![jverdi](https://github.com/jverdi) ![kitze](https://github.com/kitze) ![loukotal](https://github.com/loukotal) ![minghinmatthewlam](https://github.com/minghinmatthewlam)

![MSch](https://github.com/MSch) ![odrobnik](https://github.com/odrobnik) ![oswalpalash](https://github.com/oswalpalash) ![ratulsarna](https://github.com/ratulsarna) ![reeltimeapps](https://github.com/reeltimeapps) ![snopoke](https://github.com/snopoke) ![sreekaransrinath](https://github.com/sreekaransrinath) ![timkrase](https://github.com/timkrase)



🔗 项目信息

创建时间: 2025/11/24

最后更新: 2026/4/18

开源协议: MIT License

项目大小: 489.5k KB

📊 项目统计

⭐ 星标: 359.4k

🍴 分支: 73.1k

👀 关注者: 359.4k

📝 议题: 19.1k

🌟 访问GitHub仓库