task-routing
Installation
SKILL.md
Task Routing
Route issues to the correct repo using the routing config from CLAUDE.md. Part of the Personal Corp framework: project-init → task-routing → weekly-planning / weekly-retro.
How It Works
digraph routing {
"New task" -> "Read routing config from CLAUDE.md";
"Read routing config from CLAUDE.md" -> "Match keywords → target repo";
"Match keywords → target repo" -> "Check duplicates in target repo";
"Check duplicates in target repo" -> "Duplicate found?" [shape=diamond];
"Duplicate found?" -> "Update existing issue" [label="yes"];
"Duplicate found?" -> "Check W-label exists in target repo" [label="no"];
"Check W-label exists in target repo" -> "Create issue in target repo";
}