ashlr

ashlr__ask

Natural-language router. Accepts a question and dispatches to the correct ashlr tool via deterministic rules — no LLM routing cost.

Server: ashlr-askservers/ask-server.ts

A meta-tool that accepts a plain-English question and routes it to the right underlying ashlr tool without an LLM round-trip. Routing is purely deterministic: regex patterns match question verbs and token shapes, and the first match wins.

Input schema

FieldTypeRequiredDescription
questionstringyesNatural-language question or instruction

Routing table

SignalRoutes to
Glob token (**/*.ts, *.json)ashlr__glob
Read verb + path tokenashlr__read
grep / find / search / where isashlr__grep
how does / explain / walk me throughashlr__orient
list / tree / structure / directoryashlr__tree
fallbackashlr__orient

Output format

Returns the output of whichever tool was invoked, prepended with a routing annotation:

[routed to ashlr__read — path token matched: servers/efficiency-server.ts]
<read output>

Example

Use ashlr__ask: "show me the contents of servers/efficiency-server.ts"

On this page