Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:3,766
forks:292
updated:January 10, 2026 at 01:54
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | router-first-architecture |
| description | Router-First Architecture |
| user-invocable | false |
Route through domain routers before using individual tools. Routers abstract tool selection.
Domain routers (like math-router) provide deterministic mapping from user intent to exact CLI commands. Always use the router first; only bypass for edge cases.
math-router route "<intent>" before any math operationcoActivate in skill-rules.json)command: nullDomain skills should co-activate with their router:
{
"math/abstract-algebra/groups": {
"coActivate": ["math-router"],
"coActivateMode": "always"
}
}
This ensures the router is always available when domain knowledge is activated.
Keep the trigger layer broader than routing - the router should handle "not found" gracefully.