OpenClaw Master Skills is a curated, regularly updated collection of skills that extends an AI personal assistant platform with capabilities such as research, browser automation, presentation creation, and prompt work. It is intended for people using OpenClaw or MyClaw.ai to give their agents additional tasks and workflows. The catalogue contains many skills and agents 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 LeoYeAI/openclaw-master-skills --skill agent-chat-ux-v1-4-0git clone --depth 1 https://github.com/LeoYeAI/openclaw-master-skillsWrote 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/leoyeai/openclaw-master-skills/agent-chat-ux-v1-4-0)<a href="https://agentmods.dev/skills/leoyeai/openclaw-master-skills/agent-chat-ux-v1-4-0"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/agent-chat-ux-v1-4-0/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/leoyeai/openclaw-master-skills/agent-chat-ux-v1-4-0"><img src="https://agentmods.dev/badge/skills/leoyeai/openclaw-master-skills/agent-chat-ux-v1-4-0.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 34 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium Data Exfiltration · line 35 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00049 | $0.06721 |
| Opus 5 | $0.00024 | $0.03361 |
| Sonnet 5 | $0.00010 | $0.01344 |
| Haiku 4.5 | $0.00005 | $0.00672 |
Grade A, and why
agent-chat-ux 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 9d 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 — 479 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agent-chat-ux
name: agent-chat-ux
version: 1.4.0
author: Charles Sears
description: Multi-agent UX for OpenClaw Control UI — agent selector, per-agent sessions, session history viewer with search, agent-filtered Sessions tab with friendly names, Create Agent wizard, emoji picker, and backend agent CRUD.
⚠️ Security & Transparency Notes
Before applying this skill's patches, be aware of the following:
Credential Access (agents.wizard)
The AI Wizard backend (agents.wizard RPC) calls the configured model provider API directly via HTTP. To do this it needs an API key. It resolves credentials in this exact order:
- Default config auth — uses it if the resolved mode is
api-key(most common) - Auth profile store — searches for the first
api_key-type profile matching the provider. Reads onlyproviderandtypefields to find it; does not log or return values. - Environment variable —
ANTHROPIC_API_KEYorOPENAI_API_KEYas a last resort
If you don't want the wizard reading your auth store, set
ANTHROPIC_API_KEYin your environment and ensure your default auth profile is alreadyapi-keymode — step 2 is skipped entirely in that case.
External API Calls
agents.wizard makes a single HTTP POST to:
https://api.anthropic.com/v1/messages(Anthropic models)https://api.openai.com/v1/chat/completions(OpenAI-compatible models)
No other outbound calls. The call carries your user-supplied description and nothing else from your system.
Patch Scope
These patches modify only agent-related files:
| Patch | File modified | What it changes |
|---|---|---|
schema-agents.txt |
src/gateway/protocol/schema/agents-models-skills.ts |
Adds emoji optional param to AgentsUpdateParamsSchema |
server-agents.txt |
src/gateway/server-methods/agents.ts |
Adds agents.wizard RPC; fixes agents.update to write - Emoji: (not - Avatar:) so emoji edits persist correctly |
app-main.txt |
ui/src/ui/app.ts |
Adds 19 @state() fields: 10 for Create Agent/Wizard + 9 for edit agent, delete agent |
app-render.txt |
ui/src/ui/app-render.ts |
Wires create/wizard props + edit agent save handler (sends emoji param, not avatar; evicts identity cache after save) |
app-render-helpers.txt |
ui/src/ui/app-render.helpers.ts |
Agent selector dropdown in chat header (uses resolveAgentEmoji() for correct emoji), per-agent session filter, + New Session button |
agents-view.txt |
ui/src/ui/views/agents.ts |
Create Agent panel (manual + wizard modes, 103-emoji picker); Edit agent inline form (name/emoji/workspace); Delete agent with confirmation; always-editable Overview |
agents-utils.txt |
ui/src/ui/views/agents-utils.ts |
buildModelOptionsMulti() for multi-select fallback dropdown |
agents-panels-cron.txt |
ui/src/ui/views/agents-panels-status-files.ts |
Cron Jobs tab Scheduler card now shows agent-specific job count and next-wake (not global gateway stats) |
What ships with it
15 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- _meta.json 329 B
- .metadata.json 5.6 KB
- references/agents-panels-cron.txt 1.9 KB
- references/agents-utils.txt 2.4 KB
- references/agents-view.txt 13 KB
- references/app-main.txt 850 B
- references/app-render-helpers.txt 1.1 KB
- references/app-render.txt 7.4 KB
- references/schema-agents.txt 561 B
- references/server-agents.txt 4.5 KB
- references/v1.4.0/patch-01-sessions-history-rpc.txt 7.3 KB
- references/v1.4.0/patch-02-sessions-tab-overhaul.txt 14 KB
- references/v1.4.0/patch-03-app-wiring.txt 8.8 KB
- references/v1.4.0/patch-04-sessions-history-modal.ts 9.4 KB runs code
- references/v1.4.0/patch-05-chat-sessions-all.txt 441 B
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.
- 9d ago First seen · 479 lines · 49 tokens per session scan A 4cc5c40f7f9f
agent-chat-ux is a skill published in the GitHub repository LeoYeAI/openclaw-master-skills (2,141 stars, last pushed 1mo ago), licensed MIT. It adds 49 tokens to every session and 6,721 once invoked, about $0.0002 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-09-03.
Other skills, from other repositories
welcome
Introduce yourself to a newly connected channel. Triggered automatically when a channel is first wired. Send a friendly greeting and brief overview of what you can do.
add-teams
Add Microsoft Teams channel integration via Chat SDK.
meeting-note-summarizer
Turn meeting notes or transcripts into factual summaries, decisions, questions, and action items. Use when a user wants a concise recap or needs explicit owners and deadlines extracted without filling in missing details.
wellbeing
Proactive coaching across hydration, breaks, meals, posture and environmental comfort (with the environment skill). Use when an [activity] event fires (message starts with [activity] Activity detected: activity labels. — labels include drink, break, celebrate, the fatigue label "yawning", or sedentary raw labels like…
wisdom-forget
Remove a must-keep CocoWisdom entry with rationale. Usage: $wisdom forget --id --rationale " ".
03_task2
Extracts action items and pending tasks from Slack messages. Use when: reviewing unread messages for todos, finding deadlines or requests directed at the user, or producing a task summary from recent Slack activity.