skill-master

Meta-skill for skill selection and routing. Use this skill FIRST when you are unsure which skill to use for a task. Provides a decision tree, keyword triggers, and guidance on combining multiple skills for complex workflows. Also use when onboarding to understand the full skill library.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "skill-master" with this command: npx skills add netanel-abergel/skill-master

Skill Master

Minimum Model

Any model. This is a lookup table — any model can use it.


⚠️ Skill Count Rule

Current: 19 active skills. Sweet spot: 15–25. Above 30 = routing breaks down. Start lean. Add a new skill only when there's a clear, recurring trigger that no existing skill covers.


How to Use This Skill

  1. Read the owner's request.
  2. Find a match in the Quick Lookup table below.
  3. If not found, use the Decision Tree.
  4. ⚠️ Log the selection FIRST — before doing any work (see Analytics below).
  5. Load that skill's SKILL.md and follow it.

Do not improvise. If no skill matches, say so and ask the owner.

Skipping the log is not allowed. Every skill invocation must be recorded, even for simple tasks. This is how the agent and the owner track what's working.


📊 Analytics — MANDATORY: Log Every Skill Use

This step is NOT optional. Before starting any skill, append one line:

mkdir -p /opt/ocana/openclaw/workspace/data
echo "{\"ts\":\"$(date -u +%Y-%m-%dT%H:%M:%SZ)\",\"skill\":\"SKILL_NAME\",\"trigger\":\"TRIGGER\",\"context\":\"CONTEXT\"}" \
  >> /opt/ocana/openclaw/workspace/data/skill-analytics.jsonl

Replace:

  • SKILL_NAME → the skill selected (e.g. meetings)
  • TRIGGER → the phrase that matched (e.g. schedule meeting with Daniel)
  • CONTEXTdm, group:<name>, or cron

This is ~50 bytes/entry. Non-negotiable.

Why This Matters

  • The owner can ask "skill stats" at any time to see what's being used
  • Unused skills get pruned, improving routing quality
  • Shared across the PA network so every agent learns from usage patterns
  • Enables weekly reports on which skills are carrying the most weight

To View Analytics

Ask: "skill stats" / "skill usage" / "which skills am I using?" → triggers skill-analytics skill



Quick Lookup — By Trigger Phrase

If the owner says...Use skill
"schedule a meeting with X"meetings
"summarize meeting notes" / "action items from meeting"meetings
"what's on my calendar today"owner-briefing
"send me a morning briefing"owner-briefing
"billing error" / "API out of credits"billing-monitor
"connect my calendar" / "can't write to calendar"calendar-setup
"connect Gmail" / "set up email"calendar-setup
"set up a new PA" / "onboard a new agent"pa-onboarding
"contact [person]'s PA" / "find PA phone number"ai-pa
"set up monday.com" / "create a board item" / "monday question"monday-for-agents
"I made a mistake" / "owner corrected me"self-learning
"backup workspace" / "push to git"maintenance
"update openclaw" / "update skills" / "run maintenance"maintenance
"what was discussed in [group]"whatsapp
"find new skill ideas" / "what skills are trending"skill-scout
"skill usage" / "skill stats" / "skill report"skill-analytics
"which skills am I using" / "unused skills"skill-analytics
"security check" / "check for vulnerabilities"self-monitor
"health check" / "check infrastructure"self-monitor
"how are all the PAs doing" / "PA network status"supervisor
"מה הסטטוס" / "what's the status"supervisor
"how am I doing" / "review my performance"eval
"run eval" / "מה עובד ומה לא"eval
"summarize this YouTube video"youtube-watcher
"add nikud to this" / "Hebrew vowel points"hebrew-nikud
"compact memory" / "organize memory"memory-tiering

Decision Tree

What kind of task is this?
│
├─ COMMUNICATION / COORDINATION
│   ├─ Find a PA's contact → ai-pa
│   ├─ Schedule a meeting → meetings
│   ├─ Summarize meeting notes → meetings
│   └─ Broadcast to all PAs → ai-pa
│
├─ SETUP / ONBOARDING
│   ├─ New PA from scratch → pa-onboarding
│   ├─ Connect Google Calendar or Gmail → calendar-setup
│   └─ Connect monday.com → monday-for-agents
│
├─ MONITORING / HEALTH
│   ├─ Billing error detected → billing-monitor
│   ├─ Infrastructure / security check → self-monitor
│   └─ Check all PAs at once → supervisor
│
├─ DAILY OPERATIONS
│   ├─ Morning/evening briefing → owner-briefing
│   ├─ monday.com board task → monday-for-agents
│   ├─ Backup workspace or update OpenClaw → maintenance
│   └─ WhatsApp conversation context → whatsapp
│
└─ SELF-IMPROVEMENT
    ├─ Owner corrected me → self-learning
    ├─ Performance review / audit → eval
    ├─ Find new skill ideas → skill-scout
    └─ Memory compaction → memory-tiering

Full Skill Library

SkillCategoryWhen to Use
ai-paCoordinationFind PA contacts, group JIDs, coordination protocols
billing-monitorHealthDetect and respond to API billing failures
calendar-setupSetupCalendar connection with write access + Gmail/email setup
evalSelf-improvementFull performance audit — scores tasks, checks PA health, reviews memory
hebrew-nikudUtilityAdd nikud (vowel points) to Hebrew text, especially for TTS
maintenanceInfrastructureWorkspace git backup (every 6h) + OpenClaw updates (weekly)
meetingsOperationsSchedule meetings AND summarize meeting notes/transcripts
memory-tieringMemoryHOT/WARM/COLD memory compaction and archiving
monday-for-agentsOperationsAll monday.com operations: API, MCP, boards, items
owner-briefingOperationsDaily morning/evening summaries
pa-onboardingSetupFull new agent setup from zero
self-learningSelf-improvementLog corrections and apply lessons; maintain HOT.md
self-monitorHealthInfrastructure + security checks, disk/memory/service health
skill-masterRoutingPick the right skill (this file)
skill-scoutDiscoveryWeekly search for new skill ideas
supervisorOperationsNetwork-wide status dashboard — all PAs, tasks, system health
whatsappMemoryPer-conversation context, unanswered tracking, loop prevention
youtube-watcherUtilityFetch and summarize YouTube video transcripts
skill-analyticsAnalyticsTrack skill usage, generate daily reports, find unused skills

Multi-Skill Workflows

Some tasks need multiple skills in sequence:

New PA Setup

pa-onboarding → calendar-setup → monday-for-agents → ai-pa (add to directory)

PA Network Health Check

supervisor → billing-monitor (flagged PAs) → self-monitor (infrastructure issues)

After a Mistake

self-learning (log it) → eval (update score) → SOUL.md (add rule if pattern)

Schedule a Meeting

ai-pa (find the other PA's contact) → meetings (coordinate + book)

Weekly Maintenance

whatsapp (weekly digest) → owner-briefing (include highlights) → maintenance (push to git)

After Important Group Chat

whatsapp (log decisions) → maintenance (push to GitHub)

Where to Run (Complexity Guide)

Run inline (main session)

  • ai-pa, billing-monitor, owner-briefing, supervisor, self-learning, maintenance

Consider subagent for heavy operations

  • calendar-setup, meetings (scheduling flow), monday-for-agents (bulk ops)

Spawn subagent (recommended)

  • pa-onboarding (20+ steps), eval (full monthly analysis), batch operations, skill-scout

Model Guidance

SkillMinimum Model
ai-pa, billing-monitor, supervisor, maintenance, owner-briefingAny
calendar-setup, pa-onboarding, whatsapp, memory-tieringSmall–Medium
meetings, monday-for-agents, skill-scoutMedium
eval (trend analysis), self-learning (writing rules)Medium–Large

Adding New Skills

When a new skill is added:

  1. Add a row to the Full Skill Library table.
  2. Add trigger phrases to Quick Lookup.
  3. Update the Decision Tree if it fits a new category.
  4. Add to any relevant Multi-Skill Workflows.
  5. Check skill count — stay under 32 active skills.
  6. Add the skill name to the KNOWN_SKILLS list in skill-analytics/SKILL.md.

Supervisor (Status Dashboard)

TriggerAction
"מה הסטטוס" / "what's the status"supervisor
"supervisor"supervisor
"מה קורה" / "give me a summary"supervisor

The supervisor skill aggregates: active tasks, billing issues, group activity, pending follow-ups, and system health into one structured report.


Eval

TriggerAction
"תעשי eval" / "run eval"eval
"מה עובד ומה לא"eval
"בדקי הכל"eval

The eval skill scores performance, audits tasks, checks PA network health, verifies integrations, and reviews memory quality — all in one report.


Cost Tips

  • This skill itself: Very cheap — it's a lookup table, any model works.
  • Routing decision: If unsure, lean toward a smaller, cheaper skill first.
  • Don't over-spawn: Use subagents only when the task would actually block the main session.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

GigaChat (Sber AI) Proxy

Integrate GigaChat (Sber AI) with OpenClaw via gpt2giga proxy

Registry SourceRecently Updated
3600smvlx
General

TencentCloud Video Face Fusion

通过提取两张人脸核心特征并实现自然融合,支持多种风格适配,提升创意互动性和内容传播力,广泛应用于创意营销、娱乐互动和社交分享场景。

Registry SourceRecently Updated
General

TencentCloud Image Face Fusion

图片人脸融合(专业版)为同步接口,支持自定义美颜、人脸增强、牙齿增强、拉脸等参数,最高支持8K分辨率,有多个模型类型供选择。

Registry SourceRecently Updated
General

YoudaoNote News

有道云笔记资讯推送:基于收藏笔记分析关注话题,推送最新相关资讯。支持对话触发与每日定时推送(如早上9点)。触发词:资讯推送、设置资讯推送、生成资讯推送。

Registry SourceRecently Updated
1.5K1lephix