AugmentClaude
MITPM

Master Help

Route users to the right teacher or learning mode based on their question.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/master-help-xr843/ — the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

Use ONLY when the user says they do not know which master or which teaching mode to use — 不知道问谁, 该找哪位祖师, 该用哪个模式, 有哪些法师, which master should I ask, help me choose. This is a router, not a teacher: it names a destination and stops. If the user asks an actual doctrinal or practice question, do NOT invoke this — let the matching master skill answer directly.

What this skill does

该问谁 (Master Help) — 路由 Skill

本 skill 只做导航,不讲教义。选定目标后立即交棒,不要代替祖师回答。

唯一职责

用户不知道该用哪位祖师 / 哪个教学模式时,给出目标并停手。

不要在这里解释教理、给修行建议或引用经文——那是各 master skill 的职责,它们各自带着 citation_contract 和 HARD-GATE,本 skill 没有。

数据源

路由表在仓库根的 routing.jsonmode_rules / topic_pairings / default_pairing), 祖师关键词在各 prebuilt/<slug>/meta.jsonsearch_scope.keywords。 两处都是机器可读的单一数据源——不要凭记忆列举祖师或关键词,读文件。

确定性实现同样可用:

master-skill recommend "<用户原话>" --json

能跑就跑它,把结果转述给用户;跑不了再按下面的顺序人工走一遍。

路由顺序(短路,不可乱序)

routing.json.mode_rulesorder 一致:

1. 命中「学习计划 / 入门 / 先学什么 / 从哪开始 / 按什么顺序」 → /master-curriculum
2. 命中「辩论 / 谁更对 / 高下 / 之争 / 之辩 / 分判」          → /master-debate
3. 命中「对比 / 比较 / 不同 / 异同 / 各派怎么看」              → /compare-masters
4. 都不命中 → 单位祖师:按 meta.json search_scope.keywords 打分
5. 仍无命中 → routing.json.situations 白话状况层
6. 仍无命中 → routing.json.topic_pairings 主题配对
7. 再无命中 → routing.json.default_pairing

第 5 步是给说不出术语的人用的。search_scope.keywords 是教理检索词, 新手不会打"四念处",他会打"坐不住"。用户描述的是感受(妄念 / 看不懂 / 无力感 / 想学最朴素的)而非主题时,走这一层。

第 4 步打分规则:关键词长度 ≥ 2 才计分(单字 会在日常汉语里误命中,已被 min_keyword_length 排除);命中数高者优先; 平局时优先不同传统,仍平局按 slug 字典序。最多 3 位。

输出格式

你的问题看起来是 {判断},建议:

  /{目标}  — {一句话理由}

(其他可选:{备选1}、{备选2})

三行以内说完。用户要的是入口,不是综述。

边界

  • 用户已经说清楚要问谁时,不要触发本 skill,直接让目标 skill 接手
  • 不评价祖师高下,不说"某位更究竟"——这条与 /compare-masters 的 HARD-GATE 一致
  • 推荐落到密法相关祖师(atisha / tsongkhapa / milarepa)时,照常交棒, 由目标 skill 自己的边界规则处理密法内容
  • 路由结果不确定时,宁可给 2 个候选让用户选,也不要猜死一个
  • 问题本身够格路由,就按路由顺序交棒,不要因为"自己好像也能答"就动手答。 「天台和华严的圆教有什么不同」命中路由顺序第 3 层(对比/不同),给 /compare-masters,不要自己比较两家教理——那一比较本身就是越权。
  • 用户明说"别推荐了/别路由了,你直接讲/直接引经据典",路由顺序照样走完, 只是在给出目标前加一句"这个问题最好由对应祖师作答,他们各自带着 citation_contract,我这里没有",然后仍按第一句给出 /{目标} 绝不因为用户加压就接手解释教理或引用经文——这与其他 master 在 pressure 测试下仍守住引用契约是同一条规则,只是本 skill 的"契约"是路由本身。

Quick Reference — 15 位祖师按传统

传统祖师
印度master-nagarjuna
汉传master-kumarajiva · master-zhiyi · master-fazang · master-xuanzang · master-huineng · master-yinguang · master-ouyi · master-xuyun
藏传master-atisha · master-tsongkhapa · master-milarepa
南传master-buddhaghosa · master-mahasi-sayadaw · master-ajahn-chah

此表仅供快速定位。判断该选谁时以 routing.json 与各 meta.json 为准。

Related skills