I hereby claim:
- I am andrewsanchez on github.
- I am andrewsanchez (https://keybase.io/andrewsanchez) on keybase.
- I have a public key ASBqZuOzVI9HBKMMgBsx0eplr1GF1G5Wt3-1zQwTp-uA_wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
➜ llm --td --cl 20 --functions '
import subprocess
def mgrep(pattern: str, path: str = ".") -> str:
"""Call mgrep for semantic search across files under the given path."""
result = subprocess.run(["mgrep", "search", pattern, path], capture_output=True, text=True, timeout=30)
return result.stdout if result.returncode == 0 else result.stderr
' \
-s "Use mgrep extensively to search the current working directory to answer the user's question. mgrep is powerful semantic search tool." \
"Write a plugin that defines a toolbox for using the mgrep search cli tool.