Claude-skill-registry expert-routing

Domain expert routing. When the knowledge base cannot answer user questions, find and notify the corresponding expert based on the question domain. Only available in IM mode. Trigger condition: No results in 6-stage retrieval.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/expert-routing" ~/.claude/skills/majiayu000-claude-skill-registry-expert-routing && rm -rf "$T"
manifest: skills/data/expert-routing/SKILL.md
source content

Domain Expert Routing

Automatically route questions to domain experts when the knowledge base cannot answer user questions.

Applicable Scenarios

  • User question has no answer in knowledge base
  • Question belongs to a specific domain requiring professional response
  • Only available in IM mode (WeCom/Feishu/DingTalk)

Quick Workflow

  1. Identify domain → Determine the domain based on question semantics
  2. Query expert → Get expert information from domain_experts.xlsx
  3. Notify expert → Send message to expert with user question
  4. Notify user → Inform user that expert has been contacted

Domain Identification Examples

Question KeywordsDomain
Salary/wage/adjustmentCompensation & Benefits
Leave/attendance/clock-inAttendance Management
Onboarding/new employee/trainingRecruitment & Training
Contract/labor/resignationEmployee Relations

Detailed Workflow

For complete expert routing workflow, see WORKFLOW.md