
Obsidian Workspace
- 2 repo stars
- Updated July 11, 2026
- musingfox/cc-plugins
Run personal vault productivity in Obsidian: quick capture to journal, long-form notes, and project management via the Obsidian CLI.
About
obsidian-workspace supports personal vault productivity in Obsidian, including quick capture to a journal, long-form notes, and project management through the Obsidian CLI. It helps users organize knowledge and tasks inside their vault. Aimed at personal note-taking and PKM workflows.
- Obsidian vault productivity
- Quick capture to journal
- Long-form notes
- Project management via CLI
Obsidian Workspace by the numbers
- Data as of Jul 12, 2026 (Skillselion catalog sync)
/plugin marketplace add musingfox/cc-plugins/plugin install obsidian-workspace@nick-personal-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | July 11, 2026 |
| Repository | musingfox/cc-plugins ↗ |
What it does
Run personal vault productivity in Obsidian: quick capture to journal, long-form notes, and project management via the Obsidian CLI.
README.md
Obsidian Workspace
Project-scoped Obsidian vault productivity for Claude Code — quick capture, long-form notes, and project management. The plugin owns folder layout + file templates + minimal glue; all vault I/O delegates to the Obsidian CLI and the official obsidian:obsidian-cli skill. Each skill file is kept small so it doesn't burn your context budget.
Plugin identifier: obw (commands invoked as /obw:<name>).
Commands
| Command | Purpose |
|---|---|
/obw:init |
Pick a vault, write .obsidian.yaml, install starter templates into your vault's Templates folder |
/obw:cap <text> |
Append a timestamped bullet to today's daily note (via obsidian daily:append) |
/obw:note <title> |
Create a long-form note at your default folder with a chosen filename strategy |
/obw:pm [intent] |
Task / document / ADR lifecycle, project-scoped; free-form natural language |
Natural-language phrasing also works via the matching skills (cap, note, pm).
How It Works
- Vault I/O goes through the
obsidianCLI. This plugin does not duplicate CLI syntax; it defers to the officialobsidian:obsidian-cliskill andobsidian help. - Daily notes use Obsidian's Daily Notes core plugin (folder / filename / template).
/obw:capcallsdaily:append. - Templates (
task,doc,adr) live in your vault's Obsidian Templates folder. On/obw:initthe plugin copies starter files fromtemplates/only if the same name doesn't already exist — it never overwrites your edits. - Dashboards (optional) are Obsidian Bases (
.basefiles — core in Obsidian 1.9+) generated from plugin-internal templates via shell substitution, so contents never enter Claude's context.
Prerequisites
- Obsidian app running (headless CLI also works)
- Obsidian community plugin
obsidian-cliinstalled and enabled. The plugin's name isobsidian-clibut the executable it installs isobsidian(invoked asobsidian vault=<name> ...). This is not the unrelated standaloneobsidian-clibinary by Yakitrak. - Templates core plugin enabled (required for
/obw:pm—task/doc/adrtemplates) - Daily Notes core plugin enabled (required for
/obw:cap) - Bases core plugin enabled (required only for
/obw:pmdashboards — bundled in Obsidian 1.9+)
Installation
/plugin install obsidian-workspace
Permissions (recommended)
The plugin runs vault operations inside the obsidian-operator sub-agent, which shells out to the obsidian CLI plus a few Unix helpers. In auto mode every un-allowlisted Bash invocation prompts the user — and the sub-agent will stall waiting for that prompt. Add these to user settings.json (~/.claude/settings.json) once:
{
"permissions": {
"allow": [
"Bash(obsidian:*)",
"Bash(cat:*)",
"Bash(jq:*)",
"Bash(cp:*)",
"Bash(sed:*)"
]
}
}
Or run /fewer-permission-prompts after a stuck /obw:init and it will scan transcripts and propose the same list.
Configuration
Run /obw:init in a project root. The generated .obsidian.yaml:
vault: MyVault
note:
default_folder: Inbox
filename_strategy: title # title | slug | timestamp-title
pm:
project: my-project # Omit this section to disable /obw:pm
Daily note folder / filename / template are not in .obsidian.yaml — they come from Obsidian's Daily Notes settings.
Vault Layout (/obw:pm)
pm/
├── dashboard.base # Cross-project dashboard (optional, Bases)
└── {project}/
├── dashboard.base # Project dashboard (optional, Bases)
├── tasks/ # Active tasks
├── archive/ # Completed tasks
└── docs/ # Docs + ADRs
Property Schema
Dashboards and searches depend on these frontmatter fields. If you edit the installed templates, keep the field names.
- Task —
type: task,status(todo/in-progress/blocked/done),priority(high/medium/low),project,due(date),tags(list),created,completed - Doc —
type: doc,project,created,updated - ADR —
type: adr,project,status(proposed/accepted/deprecated/superseded),created,deciders
Examples
/obw:cap #worklog 完成 API 重構 PR,等 review
/obw:note API Redesign Proposal --folder Architecture --tag design
/obw:pm add task implement-auth, high priority, due 2026-05-01
/obw:pm create adr about switching to SQLite
/obw:pm implement-auth is done, archive it
/obw:pm refresh dashboard