task-routing
仓库创建 2025年12月16日最近提交 8 天前SkillHot 收录 21 天前
▸ 精选理由
自动判定目标仓库与标签,减少人工分配错误和混淆
▸ 风险提示
会在目标仓库中创建或修改 issue/任务
这个 Skill 做什么
根据 CLAUDE.md 的路由配置自动把新任务分配到合适仓库
新建 GitHub issue 或往 backlog 加任务时,它会根据仓库里的 CLAUDE.md 路由规则把任务自动派到最合适的 repo。适合不确定某个问题属于哪个项目、或者想把任务自动分类而不用人工判断的时候使用。特别之处在于读取项目级的 routing 配置按关键字匹配并接入个人工作流(如 weekly-planning),减少分配错误和沟通成本。
▸ 展开 SKILL.md 英文原文
Use when creating GitHub issues, adding tasks to backlog, or when unsure which repo/project an issue belongs to. Triggers on "создай задачу", "issue", "добавь в бэклог", "task routing", "куда положить задачу".
208
Stars
26
Forks
32
仓库内 Skill
+6
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/serejaris/personal-corp-skills/main/skills/task-routing/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/serejaris/personal-corp-skills/main/skills/task-routing/SKILL.md"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
```dot
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 tavia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有