Card Workspace

approved

by kenan

Browse folder notes as a warm retro card stream in the left sidebar. - This plugin has not been manually reviewed by Obsidian staff.

4 stars282 downloadsUpdated 1mo agoMIT

Card 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, and click a card to open it.

Card Workspace demo

Table of contents

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.

  1. Download the latest release from the Releases page.
  2. Extract the archive and copy main.js, manifest.json, and styles.css into your vault's .obsidian/plugins/card-workspace/ folder.
  3. Open Obsidian's Settings -> Community plugins.
  4. Turn off Safe mode if it is on.
  5. Find Card Workspace in the plugin list and enable it.

Quick start

  1. Run Open Card Workspace view from Obsidian's command palette to open the panel in the left sidebar.
  2. Pick a folder, tag, or box in Card Workspace's own navigation pane.
  3. Browse the cards and click one to open its note.

Features

  • Left-sidebar folder browsing. Open Card Workspace in the left sidebar and browse a folder as a card stream.
  • Built-in navigation pane. Switch folders, tags, and boxes from Card Workspace itself, without leaving the panel.
  • 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 left-sidebar workflows. It is unavailable on mobile.
  • Sidebar-first workflow. Card Workspace is a left-sidebar view with its own navigation pane, opened from the ribbon icon or the command palette.
  • 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.

  1. Determine the target version from manifest.json:

    TAG=$(node -p "require('./manifest.json').version")
    
  2. 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
    
  3. Run the normal checks plus release validation:

    npm run check:svelte
    npm run check
    npm run build
    npm test
    npm run release:check -- "$TAG"
    
  4. Commit the version bump, then create and push an annotated bare semver tag that exactly matches manifest.json.version (for example <version>, not v<version>):

    git tag -a "$TAG" -m "$TAG"
    git push origin main
    git push origin "$TAG"
    
  5. The workflow creates a draft GitHub Release containing main.js, manifest.json, and styles.css.

  6. 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.

For plugin developers

Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.