一键导入
prath-mode
Route a task to the right skill in prathamdby/skills and run multi-step workflow chains. Verifies the leaf skill is installed before invoking it.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Route a task to the right skill in prathamdby/skills and run multi-step workflow chains. Verifies the leaf skill is installed before invoking it.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
box a git repo, clone it locally and search the real source, with a tracked manifest. Delegates repo work to subagents when available, runs in the main thread otherwise. Triggers: a VCS URL (GitHub, GitLab, Bitbucket), a previously cloned repo name, or a request to clone/search/explore a repo. Flags: --persist, --update, --list, --no-subagents.
explain-diff: explain a code change, diff, branch, or PR as a rich self-contained HTML page. Flags: --target <branch>, --pr <n>, --staged, --unstaged, --output <path>.
fix a Linear ticket end to end: fetch it, branch, classify mode, plan, implement, review. Flags: --base <branch> (default main), --mode <mode> (default auto; values: auto, scratch, modify, debug, trivial), and a ticket ID positional arg.
fix PR review feedback: fetch unresolved threads, triage each finding skeptically, fix what holds, reply on threads, commit and push. Triggers: /fix-pr, address PR reviews. Reached by prath-mode after make-pr. Flags: --pr <n|url>, --no-push, --no-reply.
notify the user via Discord webhook embed. Triggers: /notify, send a Discord notification, alert me when done, ping me on Discord. Flags: --task, --link, --webhook, --color, --field, --content, --dry-run.
make a pull request with a plain-English title and a clean-room thematic summary built from the branch diff. Triggers: open a PR, create a pull request, submit a PR. Flags: --target <branch> (default main), --ticket <id> (prefix title with the ticket), --conventional (conventional-commit title).
| name | prath-mode |
| description | Route a task to the right skill in prathamdby/skills and run multi-step workflow chains. Verifies the leaf skill is installed before invoking it. |
| disable-model-invocation | true |
Read the matched leaf skill in full before executing. Do not restate or improvise its workflow. The leaf owns its own triggers, flags, and rules.
| Action | Leaf skill |
|---|---|
| Commit or write a commit message | commit (../commit/SKILL.md) |
| Strip AI slop or simplify a diff | deslop (../deslop/SKILL.md) |
| Open a pull request | make-pr (../make-pr/SKILL.md) |
| Address PR review feedback | fix-pr (../fix-pr/SKILL.md) |
| Fix or implement a Linear ticket | fix-linear-ticket (../fix-linear-ticket/SKILL.md) |
| Review a plan, design, or implementation | peer-review (../peer-review/SKILL.md) |
| Clone or search an external git repo | box (../box/SKILL.md) |
| Delegate work to an external agent | assign (../assign/SKILL.md) |
| Save session context or resume a handoff | handoff (../handoff/SKILL.md) |
| Explain a diff, branch, or PR (HTML) | explain-diff (../explain-diff/SKILL.md) |
| Send a Discord notification or alert | notify (../notify/SKILL.md) |
When a request matches several skills, pick the leaf that owns the immediate action. For multi-step work, use a chain below.
Run in order. Read each leaf before its step. implement is not a skill.
fix-linear-ticket → implement → deslop → commit →
make-pr (pass --ticket to make-pr when the ID is known)peer-review → implement → deslop → commit → make-prdeslop (optional) → commitfix-pr → commit → pushboxassignhandoff or handoff --resume <path>Match the request to one leaf or one chain. If nothing matches, say so and ask what the user wants.
Before reading or executing a leaf, confirm it is installed: resolve
../<skill-name>/SKILL.md relative to this skill's directory and check it exists
(test -f or the Read tool). For a chain, verify every leaf before the first
step and re-check before each subsequent step, the user may install skills
between steps.
If any leaf is missing, stop and report its name and checked path, list all
missing names in one message, and tell the user to install:
npx skills@latest add prathamdby/skills. Never improvise a missing leaf's
workflow.
Read the matched leaf's SKILL.md in full, then execute per the leaf. For
chains, complete each step before starting the next unless the user narrows scope.