kenan282 downloadsBrowse folder notes as a warm retro card stream in the left sidebar.
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 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.
Card Workspace is installed manually from GitHub releases.
main.js, manifest.json, and styles.css into your vault's .obsidian/plugins/card-workspace/ folder.manifest.json.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.
npm install
npm run build
For watch mode:
npm run dev
Run type checks and tests:
npm run check
npm test
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>, not v<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, and styles.css.
Add release notes on GitHub and publish the draft release.
If you run into issues, please open a ticket on GitHub Issues.
Card Workspace is released under the MIT License.