Obsidian
MindForge: The Enterprise Agentic Framework for Claude Code & Antigravity. High-performance autonomous execution, wave-parallelism, and multi-tier governance for production-grade AI engineering.
npx -y skills add sairam0424/MindForge --skill obsidianAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Read, search, create, and edit notes in the Obsidian vault.
SKILL.md
3.5 KB, 740 tokens by cl100k_base, as published. Nobody here has run it
Obsidian Vault
Use this skill for filesystem-first Obsidian vault work: reading notes, listing notes, searching note files, creating notes, appending content, and adding wikilinks.
Vault path
Use a known or resolved vault path before calling file tools.
The documented vault-path convention is the OBSIDIAN_VAULT_PATH environment variable, for example from ${MINDFORGE_HOME:-~/.mindforge}/.env. If it is unset, use ~/Documents/Obsidian Vault.
File tools do not expand shell variables. Do not pass paths containing $OBSIDIAN_VAULT_PATH to Read, Write, Edit, or Grep; resolve the vault path first and pass a concrete absolute path. Vault paths may contain spaces, which is another reason to prefer file tools over shell commands.
If the vault path is unknown, Bash is acceptable for resolving OBSIDIAN_VAULT_PATH or checking whether the fallback path exists. Once the path is known, switch back to file tools.
Read a note
Use Read with the resolved absolute path to the note. Prefer this over cat because it provides line numbers and pagination.
List notes
Use Grep with target: "files" and the resolved vault path. Prefer this over find or ls.
- To list all markdown notes, use
pattern: "*.md"under the vault path. - To list a subfolder, search under that subfolder's absolute path.
Search
Use Grep for both filename and content searches. Prefer this over grep, find, or ls.
- For filenames, use
Grepwithtarget: "files"and a filenamepattern. - For note contents, use
Grepwithtarget: "content", the content regex aspattern, andfile_glob: "*.md"when you want to restrict matches to markdown notes.
Create a note
Use Write with the resolved absolute path and the full markdown content. Prefer this over shell heredocs or echo because it avoids shell quoting issues and returns structured results.
Append to a note
Prefer a native file-tool workflow when it is not awkward:
- Read the target note with
Read. - Use
Editfor an anchored append when there is stable context, such as adding a section after an existing heading or appending before a known trailing block. - Use
Writewhen rewriting the whole note is clearer than constructing a fragile patch.
For an anchored append with Edit, replace the anchor with the anchor plus the new content.
For a simple append with no stable context, Bash is acceptable if it is the clearest safe option.
Targeted edits
Use Edit for focused note changes when the current content gives you stable context. Prefer this over shell text rewriting.
Wikilinks
Obsidian links notes with [[Note Name]] syntax. When creating notes, use these to link related content.
Mandatory actions when this skill is active
Before applying this skill:
- Read the task requirements fully before acting
- Confirm you understand the goal and constraints
- Check for existing work or prior context in the codebase
While working:
- Follow the methodology described above step by step
- Document any decisions or findings as you go
After completing:
- Self-check: does the output satisfy the original requirement?
- Verify no regressions or unintended side effects
Gives 0 of the 12 instructions most note taking skills give in 740 tokens
Counted across 686 of the 876 authors here whose files we hold, read 2026-08-06
- include a visual element on every slidein 44 of 686, across 13 files
- use wikilinks for internal vault linksin 35 of 686, across 11 files
- commit to a single visual motif across every slidein 34 of 686, across 9 files
- read pptxgenjs guide before creating presentations from scratchin 30 of 686, across 6 files
- keep 0.5 inch minimum marginsin 30 of 686, across 7 files
- use subagents to visually inspect rendered slidesin 30 of 686, across 6 files
- re-verify affected slides after every fixin 27 of 686, across 5 files
- run content QA checks before declaring successin 26 of 686, across 3 files
- Use Markdown links for external URLs onlyin 26 of 686, across 10 files
- pick a bold topic specific color palettein 24 of 686, across 2 files
- read editing guide before editing existing presentationsin 23 of 686, across 1 file
- use one dominant color across all slidesin 23 of 686, across 1 file
Said here and by no other author read
- pass concrete absolute paths to file tools
- use Grep to list notes
- use Edit for focused note changes
- use Edit for anchored appends
- read the task requirements fully before acting
- self-check that the output satisfies the requirement
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.