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-team 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.
development
Technology-agnostic prompt generator that creates customizable AI prompts for scanning codebases and identifying high-quality code exemplars. Supports multiple programming languages (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with configurable analysis depth, categorization methods, and documentation formats to establish coding standards and maintain consistency across development teams.
tools
Expert-level browser automation, debugging, and performance analysis using Chrome DevTools MCP. Use for interacting with web pages, capturing screenshots, analyzing network traffic, and profiling performance.
data-ai
Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.
tools
Interactive prompt refinement workflow: interrogates scope, deliverables, constraints; copies final markdown to clipboard; never writes code. Requires the Joyride extension.