Steps to reproduce
- Open a specific subdirectory as an isolated Vault (e.g., ~/Documents/My_Vault).
- Go to Settings → Templates and try using a centralized templates path outside the vault (e.g., /home/username/Templates). The plugin will fail.
- Move the templates directory inside the vault root (e.g., Templates) and configure the plugin to point to it. The plugin works, but the folder is locked as an un-hidable visual element in the sidebar workspace explorer.
- Try renaming the folder to .Templates to hide it; the plugin breaks.
- Try adding the folder to the native Excluded files setting; the folder remains permanently visible in the sidebar explorer anyway.
Did you follow the troubleshooting guide? [Y/N]
YES
Expected result
If the application is strictly scoped to only read directories inside its own root workspace, the settings UI input field should explicitly validate against absolute system paths or provide clear UI messaging stating that the path must be strictly relative to the internal vault sidebar.
Core utility/automation folders (like Templates) should have a native toggle or workspace flag allowing them to be hidden from the primary file navigation view without breaking the path interpreter or requiring unvetted community plugins.
Actual result
The input box accepts absolute path strings without validation warnings but fails silently during execution. To fix this, the user is forced to clutter their active project vault sidebar with a permanent, visible configuration folder that cannot be hidden or dismissed by any native setting.
Environment
SYSTEM INFO:
Obsidian version: 1.12.7
Installer version: 1.12.7
Operating system: #1 ZEN SMP PREEMPT_DYNAMIC Wed, 10 Jun 2026 08:57:50 +0000 7.0.12-zen1-1-zen
Login status: not logged in
Language: en
Insider build toggle: off
Live preview: on
Base theme: adapt to system
Community theme: none
Snippets enabled: 0
Restricted mode: on
RECOMMENDATIONS:
none
Additional information
When configuring the core Templates plugin, the configuration input behavior combined with sidebar folder handling creates severe usability issues and UI clutter.First, the “Template folder location” input field allows users to type any directory path string (including absolute Linux system paths like /home/user/Templates or vault-root absolute paths like /Templates). However, the application completely throws a “Folder not found” error for any path string attempting to map to a directory residing outside the physical boundaries of the currently open Vault folder.Second, because the tool is locked into the open vault filesystem, users are forced to create a visible folder inside their project space to store automation templates. There is currently no native way to hide this folder from the left sidebar file explorer.Using a hidden dot-prefix (e.g., .Templates) causes the underlying file reader to treat it as an OS-level hidden directory, causing the plugin to crash with a “Folder not found” error. Conversely, using the built-in “Excluded files” configuration only strips the directory from search results and graph views, stubbornly leaving the folder visible in the primary file navigation tree.