skills/claude-skills-open/skills/core/dispatcher/SKILL.md
Route complex multi-step tasks, multi-skill orchestration, post-execution checklist
npx skillsauth add aaaaqwq/agi-super-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
AI驱动的智能浏览器自动化工具。使用LLM理解页面并自动执行任务,比传统Playwright更智能、更省token。适用于复杂交互、动态页面、需要智能决策的浏览器操作。Chrome浏览器优先。
tools
网页登录态管理。使用 fast-browser-use (fbu) 管理各平台登录状态,定期检查可用性,新平台授权时自动保存 profile。
development
Monitor and report on API provider quotas, balances, and usage. Query official providers (Moonshot, DeepSeek, xAI, Google AI Studio) and relay/proxy providers (Xingjiabiapi, Aixn, WoW) via their billing APIs. Also checks subscription services (Brave Search, OpenRouter). Generates quota reports. Triggers on "查额度", "API余额", "quota check", "billing report", "api balance", "供应商额度", "中转站余额", "费用报告", "check balance", "how much credit".
development
# A股基金监控 Skill A股基金净值监控,支持实时估值和盘后净值,自动判断交易日/节假日。 ## 用法 ### 快速监控(命令行) ```bash # 默认配置,输出到控制台 bash ~/clawd/skills/a-fund-monitor/scripts/monitor.sh # 推送到群(使用--push参数) bash ~/clawd/skills/a-fund-monitor/scripts/monitor.sh --push # 监控指定基金 bash ~/clawd/skills/a-fund-monitor/scripts/monitor.sh --codes "000979 002943" ``` ### Agent调用 ``` 执行A股基金监控任务。 1. 读取配置文件: ~/clawd/skills/a-fund-monitor/config.json 2. 获取实时净值数据 3. 非交易日自动切换为简短报告 配置文件格式: { "funds": [ {"code": "000979", "name": "景顺长城沪港深精选股票