README file from
GithubCard Workspace
An Obsidian plugin that shows folder notes as beautiful card stream in the sidebar or main editor leaf. Open Card Workspace manually, browse notes by folder, filter notes by tags, search notes by builtin function, click a card to open it, and optionally link File Explorer folder clicks into the view.

Table of contents
- Why Card Workspace
- Installation
- Quick start
- Features
- Compatibility and limitations
- Privacy
- Development
- Releasing
- Support and license
Why Card Workspace
Card Workspace gives you a visual, scannable way to browse and organize the notes inside any folder. Instead of reading a plain file list, you see cards with titles and excerpts. Click a folder, glance at the cards, and open the note you want without losing your place.
Installation
Card Workspace is installed manually from GitHub releases.
- Download the latest release from the Releases page.
- Extract the archive and copy
main.js,manifest.json, andstyles.cssinto your vault's.obsidian/plugins/card-workspace/folder. - Open Obsidian's Settings -> Community plugins.
- Turn off Safe mode if it is on.
- Find Card Workspace in the plugin list and enable it.
Quick start
- Run Open Card Workspace view from Obsidian's command palette to open the panel in the left sidebar.
- Browse notes in Card Workspace and click a card to open it.
- If you want File Explorer folder clicks to jump into Card Workspace too, enable Link File Explorer folder clicks to Card Workspace in the plugin settings.
Features
- Left-sidebar folder browsing. Open Card Workspace in the left sidebar and browse a folder as a card stream.
- Optional File Explorer linkage. When enabled, clicking a folder in the File Explorer also opens that folder in Card Workspace.
- Card previews. Each card shows the note title and a Markdown-stripped excerpt.
- Virtualized scrolling. Large folders stay smooth because only visible cards are rendered.
- Two-way sync. Click a card to open its note. Switch notes in the editor and the corresponding card is selected automatically.
- Local search. Full-text search across the current folder's cards.
- Tag filtering. Filter cards by tags extracted from frontmatter and note content.
- Pin reordering. Pin cards to keep them at the top of the stream.
- Bulk actions. Select multiple cards to move, delete, or merge notes in batches.
Compatibility and limitations
- Desktop only. Card Workspace relies on desktop File Explorer and left-sidebar workflows. It is unavailable on mobile.
- Sidebar-first workflow. Card Workspace remains available as a left-sidebar view, while File Explorer folder-click linkage is optional and disabled by default.
- Obsidian version. Requires Obsidian 1.5.0 or later. Behavior and compatibility follow what is declared in
manifest.json.
Privacy
All processing stays inside your vault. The plugin does not make external network requests. File operations go through Obsidian's local Vault and FileManager APIs. Search indexing uses the local minisearch library.
Development
npm install
npm run build
For watch mode:
npm run dev
Run type checks and tests:
npm run check
npm test
Releasing
This repo creates draft GitHub Releases from bare semver tags through .github/workflows/release.yml.
-
Determine the target version from
manifest.json:TAG=$(node -p "require('./manifest.json').version") -
Sync the release metadata:
npm run release:prepare -- "$TAG"To also raise the minimum supported Obsidian version, pass it as the second argument:
npm run release:prepare -- "$TAG" 1.6.0 -
Run the normal checks plus release validation:
npm run check:svelte npm run check npm run build npm test npm run release:check -- "$TAG" -
Commit the version bump, then create and push an annotated bare semver tag that exactly matches
manifest.json.version(for example<version>, notv<version>):git tag -a "$TAG" -m "$TAG" git push origin main git push origin "$TAG" -
The workflow creates a draft GitHub Release containing
main.js,manifest.json, andstyles.css. -
Add release notes on GitHub and publish the draft release.
Support and license
If you run into issues, please open a ticket on GitHub Issues.
Card Workspace is released under the MIT License.