Search MisakaNet from your favorite tools.
| Tool | Location | Type |
|---|---|---|
| VS Code | integrations/vscode-misakanet/ |
Extension |
| Shell (Bash/Zsh) | integrations/shell/misaka.sh |
Function + completion |
| Aider | via shell integration | Custom command |
Shortcut: Ctrl+Shift+M (Cmd+Shift+M on Mac)
- Clone MisakaNet and install
misakanet-core - Open VS Code → Extensions → Install from VSIX (or symlink)
- Set
misakanet.repoPathif not auto-detected - Press
Ctrl+Shift+M, type your query, click a result to open
source integrations/shell/misaka.sh
misaka "pip timeout" --top 5Any tool that can call python3 search_knowledge.py "<query>" --json can integrate:
import subprocess, json
def search_misakanet(query: str, top_k: int = 5) -> list[dict]:
result = subprocess.run(
["python3", "search_knowledge.py", query, "--json", "--top", str(top_k)],
capture_output=True, text=True, cwd="/path/to/MisakaNet"
)
return json.loads(result.stdout)- #268 — Build a MisakaNet search plugin for your AI tool
- #318 — Cursor integration (MCP server)