From 63c5c8f624b7c7718d857992714008e925792a0f Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Sun, 8 Feb 2026 16:30:16 +0000 Subject: [PATCH] feat: add Obsidian REST API endpoint configuration - Add OBSIDIAN_API_URL for flexible endpoint configuration - Default: localhost (127.0.0.1:27123) for local Obsidian - Configurable for remote Obsidian instances (e.g., main PC) - Requires Local REST API community plugin enabled Allows agents to connect to Obsidian running on different machines within the network. --- .env.example | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 231f4a3..d6f0c1d 100644 --- a/.env.example +++ b/.env.example @@ -11,8 +11,13 @@ # ============================================================================= # OBSIDIAN INTEGRATION # ============================================================================= +# Obsidian REST API endpoint (requires Local REST API plugin) +# Default: http://127.0.0.1:27123 (if Obsidian on same machine) +# Change to your main PC IP if running Obsidian remotely +OBSIDIAN_API_URL=http://127.0.0.1:27123 + # Obsidian API key for agent integration with your notes vault -# Get your API key from Obsidian → Settings → Community Plugins → API +# Get your API key from Obsidian → Settings → Community Plugins → Local REST API → API Key # Enables agents to read/write project notes, knowledge base updates OBSIDIAN_API_KEY=your_obsidian_api_key_here