prath-mode
Original:🇺🇸 English
Translated
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.
95installs
Sourceprathamdby/skills
Added on
NPX Install
npx skill4agent add prathamdby/skills prath-modeTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Prath mode
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.
Routing map
| Action | Leaf skill |
|---|---|
| Commit or write a commit message | commit ( |
| Strip AI slop or simplify a diff | deslop ( |
| Open a pull request | make-pr ( |
| Address PR review feedback | fix-pr ( |
| Fix or implement a Linear ticket | fix-linear-ticket ( |
| Review a plan, design, or implementation | peer-review ( |
| Clone or search an external git repo | box ( |
| Delegate work to an external agent | assign ( |
| Save session context or resume a handoff | handoff ( |
| Explain a diff, branch, or PR (HTML) | explain-diff ( |
| Send a Discord notification or alert | notify ( |
When a request matches several skills, pick the leaf that owns the immediate
action. For multi-step work, use a chain below.
Workflow chains
Run in order. Read each leaf before its step. is not a skill.
implement- Ship ticket work: → implement →
fix-linear-ticket→deslop→commit(passmake-prto make-pr when the ID is known)--ticket - Ship planned work: → implement →
peer-review→deslop→commitmake-pr - Quick save: (optional) →
deslopcommit - Land PR feedback: →
fix-pr→ pushcommit - Research external code:
box - Delegate heavy lift:
assign - End or resume session: or
handoffhandoff --resume <path>
Step 1: Match
Match the request to one leaf or one chain. If nothing matches, say so and ask
what the user wants.
Step 2: Verify installation
Before reading or executing a leaf, confirm it is installed: resolve
relative to this skill's directory and check it exists
( 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.
../<skill-name>/SKILL.mdtest -fIf 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:
. Never improvise a missing leaf's
workflow.
npx skills@latest add prathamdby/skillsStep 3: Read and invoke
Read the matched leaf's in full, then execute per the leaf. For
chains, complete each step before starting the next unless the user narrows scope.
SKILL.md