skills/claude-skills-open/skills/core/dispatcher/SKILL.md
Route complex multi-step tasks, multi-skill orchestration, post-execution checklist
npx skillsauth add aaaaqwq/claude-code-skills dispatcherInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
MANDATORY first step before selecting any skill. Contains the complete routing table for all 61+ skills. The system prompt only shows ~50 skills — this file is the single source of truth.
Claude Code has a ~50 skill limit in the system prompt. Skills beyond this limit are silently dropped. The dispatcher contains the COMPLETE routing table. Always consult this file before choosing a skill, especially for:
email-send-direct (NOT email-send-bulk)call-prepdocumentsDetermine:
| Trigger | Skill |
|---------|-------|
| Add new company/person/lead | add-lead |
| Update lead status, notes, contacts | update-lead |
| Search, filter, reports on CRM data | query-leads |
| Import data from staging to CRM | crm-import |
| Log email/call/meeting activity | log-activity |
| Validate CRM/PM changes before PR | change-review |
| Trigger | Skill |
|---------|-------|
| "What should I do today?" / priority tasks | show-today |
| Morning briefing (tasks + email + follow-ups) | daily-briefing |
| Weekly project review report | weekly-review |
| Create new project with task breakdown | create-project |
| Mark task done + schedule follow-up | pm-done |
| Task prioritization and scoring | task-prioritization |
| Trigger | Skill |
|---------|-------|
| Prepare for a call with client/lead | call-prep |
| Analyze client requests → scoping + pricing | client-discovery |
| Create client folder, share docs, pre-call check | client-workspace |
| Multi-channel outreach (TG + email + WhatsApp) | mass-outreach |
| Trigger | Skill |
|---------|-------|
| Send single email (with dry-run, reply, attachments) | email-send-direct |
| Bulk email sending | email-send-bulk |
| Read inbox / sent emails via Gmail API | email-read |
| AI inbox classification + TG notification | email-monitor |
| Send Telegram DM (CSV, rate-limited) | telegram-send |
| Check inbound Telegram messages | telegram-check |
| Export/import/lookup Telegram contacts | telegram-contacts |
| Telegram group management (post, members) | telegram-groups |
| Search Telegram channels, read posts | telegram-scrape |
| Send WhatsApp message (Baileys) | whatsapp-send |
| LinkedIn automation (mouse/keyboard, CDP) | linkedin-cdp |
| Connect to AI agent via MCP | mcp-agent-connect |
| Trigger | Skill |
|---------|-------|
| Generate invoice (manual, no CRM) | invoice |
| Auto-generate invoice with CRM integration | invoice-generator-agent |
| Track expenses, export data | expense-tracker |
| Stripe webhook management (AI Kitchen Pro) | stripe-webhook |
| Trigger | Skill |
|---------|-------|
| AI code review for PR or local changes | code-review |
| Git: branch, PR, merge, cleanup | git-workflow |
| Deploy website via GitHub PR + Cloud Build | deploy-website |
| Trigger | Skill |
|---------|-------|
| Google OAuth setup / refresh tokens | google-auth |
| Google Drive: upload, folders, share, create doc | google-drive |
| Facebook CDP automation (comments, data) | infra-facebook-cdp |
| Create/update Telethon session | telegram-session |
| ttyd + Tailscale for mobile terminal access | remote-access |
| Trigger | Skill |
|---------|-------|
| Review NDA, contracts, agreements | legal-review |
| Trigger | Skill |
|---------|-------|
| Build agent from spec | agent-builder |
| Test agent (dry-run, unit, integration) | agent-tester |
| Process analysis, gap finding, spec generation | process-analyst |
| Auto: daily briefing | daily-briefing-run |
| Auto: weekly review | weekly-review-run |
| Auto: email outreach | email-outreach-run |
| Auto: Telegram inbound processing | telegram-inbound-run |
| Auto: Telegram scraping | telegram-scraper-run |
| Auto: LinkedIn inbound processing | linkedin-inbound-run |
| Auto: WhatsApp outreach | whatsapp-outreach-run |
| Auto: channel/contact sync | channel-truth-run |
| Auto: lead trigger monitoring | watchers-run |
| Auto: payment tracking | payment-tracker-run |
| Auto: experiment runner | experiment-runner-run |
| Trigger | Skill |
|---------|-------|
| Send rekvizity, passport data, INN | documents |
| Upload document scans to Drive | documents |
| "де мої документи?" / company data | documents |
| Trigger | Skill |
|---------|-------|
| Persistent memory (observations, summaries) | memory |
| Timezone conversion, local time | timezone |
| Company knowledge base (domains, infra, accounts) | company-wiki |
| AI agent contacts (add, list, remove MCP) | agent-contacts |
Examples of combinations:
"Send all clients a message about new prices"
1. query-leads → get clients (relationships/clients.csv)
2. For each → find contact (contacts/people.csv)
3. telegram-send / email-send-bulk → send
4. log-activity → record in activities.csv
"Good morning, what's new?"
1. daily-briefing → tasks + email + follow-ups
"Prepare for a call with X and send the agenda"
1. call-prep → research + plan (includes workspace check)
2. email-send-direct → send agenda
3. log-activity → record activity
"Client sent a list of automation requests"
1. query-leads → get CRM context
2. client-discovery → analyze requests, estimate hours, prioritize
3. client-workspace → create shared questionnaire doc
4. log-activity → record activity
"Set up folder for new client"
1. query-leads → get company + contact email
2. client-workspace → create folder structure + share
3. log-activity → record activity
"Generate and send invoice to client"
1. query-leads → get client + billing info
2. invoice-generator-agent → generate invoice
3. google-drive → upload to client folder
4. email-send-direct → send to client
5. log-activity → record
"Deploy website changes"
1. code-review → check changes
2. git-workflow → branch + PR
3. deploy-website → deploy via Cloud Build
"Review this NDA and send feedback"
1. legal-review → analyze document
2. email-send-direct → send feedback
3. log-activity → record
"Send rekvizity / passport data to partner"
1. documents → read structured data blocks
2. email-send-direct → send (reply to thread)
3. log-activity → record
"User provides document scans"
1. documents → extract data, upload scans to Drive
2. Update passport_data.md with structured data
After executing a task that modifies data:
What changed?
│
├── DATA (CSV in CRM/PM)?
│ ↓
│ change-review → git-workflow
│
└── CODE (*.py, *.js, *.md)?
↓
code-review → git-workflow
If there was outreach (email/telegram/call):
activities.csv (log-activity)pm_tasks_master.csvIf CRM/PM data was modified:
schema.yamlIf code or skills were modified:
| Domain | Path |
|--------|------|
| CRM | $CRM_PATH/ |
| PM | $PM_PATH/ |
| CRM Schema | sales/crm/schema.yaml (always read first for CRM tasks) |
When creating a new skill, ALWAYS complete ALL steps:
Create SKILL.md in ~/claude-skills/skills/{category}/{skill-name}/SKILL.md
~/claude-skills/skills/TEMPLATE.mdname and descriptionCreate symlink: ln -s ~/claude-skills/skills/{category}/{skill-name} ~/.claude/skills/{skill-name}
Update THIS dispatcher:
Verify discovery:
Commit via git-workflow: branch → PR → merge
CRITICAL: Steps 3-4 are what gets forgotten. If you skip updating the dispatcher, the skill becomes invisible when the system prompt drops it.
testing
通用自媒体文章自动发布工具。支持百家号、搜狐号、知乎、微信公众号、小红书、抖音号六个平台的自动化发布流程。使用Playwright自动化实现平台导航和发布,支持通过storageState管理Cookie实现账号切换。
development
# SKILL.md - Model Configuration Status (mcstatus) ## 触发条件 - `/mcstatus` 命令 - 用户询问模型配备、模型配置、model status、模型列表等 ## 功能 实时生成 Agent + Cron 的模型配置报告,展示当前所有 agent 的主模型/fallback链和所有 cron 任务的模型分配。 ## 执行步骤 ### Step 1: 收集 Agent 模型配置 读取各 agent 的 models.json 获取主模型和 fallback 链: ```bash for agent in main ops code quant data research content market finance pm law product sales batch; do config=$(cat ~/.openclaw/agents/$agent/agent/models.json 2>/dev/null) if [ -n "$config" ]; then echo "=== $agent
tools
MCP 服务器智能管理助手。自动检测 MCP 可用性、智能开关、功能问答,提供人性化的 MCP 管理体验。
tools
从GitHub搜索并自动安装配置MCP(Model Context Protocol)服务器工具到Claude配置文件。当用户需要安装MCP工具时触发此技能。工作流程:搜索GitHub上的MCP项目 -> 提取npx配置 -> 添加到~/.claude.json -> 处理API密钥(如有)。