zero35 downloadsAsk local AI agents questions about your Markdown vault, cite evidence, and add review notes.
Local Agent Assistant is a desktop Obsidian plugin for asking local AI agent CLIs questions about a Markdown vault, reviewing selected text, and keeping evidence-linked review notes.
[来源:路径#章节].REV-NNN identifier.shell: false.Install Local Agent Assistant from Settings → Community plugins after the plugin has been published.
install.cmd on Windows.The installer preserves existing community plugins and plugin data. It does not modify Markdown files.
Open Settings → Community plugins → Local Agent Assistant.
The Local agent profiles field accepts an array such as:
[
{
"id": "hermes",
"name": "Hermes",
"command": "hermes",
"args": ["-z", "{prompt}"],
"models": ["provider/model-a", "provider/model-b"]
},
{
"id": "my-local-agent",
"name": "My Local Agent",
"command": "C:/Tools/my-agent.exe",
"args": ["--prompt", "{prompt}", "--model", "{model}"],
"models": ["local-model"]
}
]
Supported argument placeholders are {prompt}, {vault}, {file}, {selection}, {question}, and {model}. For Hermes, a selected model is passed with -m. For other CLIs, add the model placeholder wherever that CLI expects it.
The plugin is prepared for the Obsidian Community directory:
manifest.json uses a unique lowercase hyphenated ID and semantic version.versions.json maps release versions to compatible Obsidian versions.main.js, manifest.json, and styles.css are available as root-level release assets.manifest.json.See RELEASE.md for the release checklist.