awesome-openclaw-agents is a curated collection of ready-to-use SOUL.md configurations that define AI agents for tasks across areas such as development, marketing, finance, support, and automation. It is for OpenClaw users who want predefined agent roles and workflows to adapt or deploy. The catalogue entries are agent-related skills drawn from this collection.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add mergisi/awesome-openclaw-agents --skill excalidraw-architecturegit clone --depth 1 https://github.com/mergisi/awesome-openclaw-agentsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/mergisi/awesome-openclaw-agents/excalidraw-architecture)<a href="https://agentmods.dev/skills/mergisi/awesome-openclaw-agents/excalidraw-architecture"><img src="https://agentmods.dev/badge/skills/mergisi/awesome-openclaw-agents/excalidraw-architecture/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/mergisi/awesome-openclaw-agents/excalidraw-architecture"><img src="https://agentmods.dev/badge/skills/mergisi/awesome-openclaw-agents/excalidraw-architecture.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00078 | $0.01127 |
| Opus 5 | $0.00039 | $0.00563 |
| Sonnet 5 | $0.00016 | $0.00225 |
| Haiku 4.5 | $0.00008 | $0.00113 |
Grade A, and why
excalidraw-architecture scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Excalidraw Architecture
Produce an architecture diagram of the current project as an Excalidraw file (docs/architecture.excalidraw). The diagram shows services, entry points, data stores, and the edges between them — the kind of whiteboard sketch you'd draw in a design review.
Inspired by Bilgin Ibryam's Medium post on "Architecture diagrams as code with Claude Code + Excalidraw" — credit: @bibryam. This skill is a lightweight reimplementation for OpenClaw-style repos.
When to use
- New contributor asks "what does this repo look like?"
- User wants to update a stale architecture diagram after a refactor
- User says "draw me the system", "excalidraw the backend", "/excalidraw-architecture"
- Preparing a design doc and needs a canonical diagram
Instructions
- Survey the codebase. Use Glob and Grep to identify:
- Entry points:
main.*,index.*,server.*,api/**/route.*,cmd/*/main.go,package.json"scripts" field,DockerfileCMD. - Data stores: mentions of
postgres,redis,convex,sqlite,s3,mongodb,prisma. - External services: Stripe, OpenAI, Anthropic, Twilio, SendGrid, webhook handlers.
- Internal modules: top-level folders under
src/,app/,lib/,agents/. Read at most 3-5 key files to confirm how the pieces connect — don't try to read the whole repo.
- Entry points:
- Sketch the model mentally. List nodes (rectangles) and edges (arrows with labels like "HTTP", "SQL", "pub/sub"). Group related nodes into clusters.
- Generate the Excalidraw JSON. The file format is standard Excalidraw:
Each element needs at minimum:{ "type": "excalidraw", "version": 2, "source": "https://excalidraw.com", "elements": [ /* rectangle, arrow, text elements */ ], "appState": { "viewBackgroundColor": "#ffffff", "gridSize": 20 }, "files": {} }id,type(rectangle/arrow/text/ellipse),x,y,width,height,angle: 0,strokeColor,backgroundColor,fillStyle,strokeWidth,roughness,opacity,seed,versionNonce,isDeleted: false,groupIds: [],boundElements,updated,link: null,locked: false. For text elements addtext,fontSize,fontFamily,textAlign,verticalAlign. For arrows addpoints,startBinding,endBinding. Use integer pixel coordinates on a ~20px grid. Arrange nodes left-to-right by data flow. - Do not hand-forge exotic fields you're unsure about. If a field is optional and you're not confident, omit it — Excalidraw is forgiving on load. When in doubt, open the resulting file in the Excalidraw web app and confirm it renders; fix any errors it reports.
- Write the file to
docs/architecture.excalidrawusing the Write tool. If the directory doesn't exist, create it first withmkdir -p docs. - Offer to open it. Suggest the user run:
Or drag-drop into excalidraw.com.open docs/architecture.excalidraw # macOS — opens in Excalidraw desktop app if installed - Update vs regenerate. If
docs/architecture.excalidrawalready exists, read it first. If the existing layout still fits, only add/move the nodes that changed. If the shape of the system has changed significantly, tell the user and regenerate from scratch.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 13d ago First seen · 62 lines · 78 tokens per session scan A 16f0df4b6d88
excalidraw-architecture is a skill published in the GitHub repository mergisi/awesome-openclaw-agents (3,959 stars, last pushed 3mo ago), licensed MIT. It adds 78 tokens to every session and 1,127 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
animation-patterns
Framer Motion patterns, page transitions, skeleton loading, scroll-linked animations, and gesture-based interactions for React.
brand-identity
Voice framework, visual identity standards, color palette management, typography specs, brand consistency.
accessibility-patterns
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization.
component-library-patterns
Design system token management, component API design, Storybook, and visual regression testing patterns.
ux-audit
Walk through a live web app AS a real user to find usability + behavioural bugs that static reviews miss. REQUIRES proof of interaction (typing, clicking, sending, observing) before any verdict — a sweep that didn't interact terminates with verdict 'Incomplete'. Walks threads, exercises every element, runs the…
design-loop
Autonomous multi-page site builder using a baton-passing loop. Each iteration reads a task from .design/next-prompt.md, generates a page in HTML/Tailwind, integrates it into the site, verifies visually, then writes the next task to keep the loop alive. Use whenever the user asks to build an entire site autonomously…