- Streaming chat sidebar with OpenAI-compatible API client - Path-referencing context injection via MCP tools - Dark theme styling with Obsidian CSS variables - Settings: gateway URL, API key, context/model toggles - SSE streaming with fetch timeout protection - Session continuity via X-Hermes-Session-Id headers
16 lines
407 B
JSON
16 lines
407 B
JSON
{
|
|
"name": "obsidian-hermes-plugin",
|
|
"version": "1.0.0",
|
|
"description": "Chat with Hermes Agent directly from Obsidian via REST API",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.14.0",
|
|
"esbuild": "^0.23.0",
|
|
"obsidian": "latest",
|
|
"typescript": "~5.4.0"
|
|
}
|
|
}
|