GB-Power-Market-JJ obsidian
Work with Obsidian vaults (plain Markdown notes) and automate via notesmd-cli.
install
source · Clone the upstream repo
git clone https://github.com/GeorgeDoors888/GB-Power-Market-JJ
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.claude/skills && cp -r "$T/openclaw-skills/skills/bassshang/obsidian-notesmd-cli" ~/.claude/skills/georgedoors888-gb-power-market-jj-obsidian-28486b && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/GeorgeDoors888/GB-Power-Market-JJ "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/openclaw-skills/skills/bassshang/obsidian-notesmd-cli" ~/.openclaw/skills/georgedoors888-gb-power-market-jj-obsidian-28486b && rm -rf "$T"
manifest:
openclaw-skills/skills/bassshang/obsidian-notesmd-cli/SKILL.mdsource content
Obsidian
Obsidian vault = a normal folder on disk.
Vault structure (typical)
- Notes:
(plain text Markdown; edit with any editor)*.md - Config:
(workspace + plugin settings; usually don’t touch from scripts).obsidian/ - Canvases:
(JSON)*.canvas - Attachments: whatever folder you chose in Obsidian settings (images/PDFs/etc.)
Find the active vault(s)
Obsidian desktop tracks vaults here (source of truth):
~/Library/Application Support/obsidian/obsidian.json
notesmd-cli resolves vaults from that file; vault name is typically the folder name (path suffix).
Fast “what vault is active / where are the notes?”
- If you’ve already set a default:
notesmd-cli print-default --path-only - Otherwise, read
and use the vault entry with~/Library/Application Support/obsidian/obsidian.json
."open": true
notesmd-cli quick start
Pick a default vault and open behavior (once):
notesmd-cli set-default "<vault-folder-name>"
(Sets default to use your terminal/GUInotesmd-cli set-default --open-type editor
instead of opening the Obsidian app)$EDITOR
/notesmd-cli print-defaultnotesmd-cli print-default --path-only
Search
(Interactive fuzzy search for notes; respects Obsidian's excluded files)notesmd-cli search
(Searches inside notes; shows snippets + lines)notesmd-cli search-content "query"
Create
notesmd-cli create "Folder/New note" --content "..."
(Opens in Obsidian, ornotesmd-cli create "New note" --open
if$EDITOR
flag is passed)--editor- Note: Works directly on disk (headless supported); Obsidian does not need to be running. Reads
for default new file locations..obsidian/app.json
Daily Notes
(Creates or opens today's daily note directly on disk)notesmd-cli daily- Automatically reads your
for folder, format, and template configurations..obsidian/daily-notes.json
Frontmatter (YAML Metadata)
notesmd-cli frontmatter "NoteName" --printnotesmd-cli frontmatter "NoteName" --edit --key "status" --value "done"notesmd-cli frontmatter "NoteName" --delete --key "draft"
Move/rename (safe refactor)
notesmd-cli move "old/path/note" "new/path/note"- Updates
and common Markdown links across the vault (this is the main win vs standard[[wikilinks]]
).mv
Delete
notesmd-cli delete "path/note"
Prefer direct edits when appropriate: open the
.md file in any editor (notesmd-cli open "note" --editor) and change it; Obsidian will automatically pick it up.