— No reviews yet
0 installs
17 views
0.0% view→install
Install
$ agentstack add skill-eobarretooo-clawlite-obsidian ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Obsidian? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
Obsidian
Use this skill when the user wants to interact with their local Obsidian vault (markdown files).
Vault location
Check OBSIDIAN_VAULT env var or ask the user. Default paths:
- macOS:
~/Documents/Obsidianor~/Library/Mobile Documents/iCloud~md~obsidian/Documents/ - Linux:
~/obsidianor~/Documents/obsidian
Operations
Search notes
grep -r "query" "$OBSIDIAN_VAULT" --include="*.md" -l
grep -r "query" "$OBSIDIAN_VAULT" --include="*.md" -n
Read a note
cat "$OBSIDIAN_VAULT/path/to/note.md"
List all notes
find "$OBSIDIAN_VAULT" -name "*.md" | sort
Create or append a note
# Create new
cat > "$OBSIDIAN_VAULT/folder/new-note.md" > "$OBSIDIAN_VAULT/existing-note.md"
Search by frontmatter tag
grep -r "tags:.*mytag" "$OBSIDIAN_VAULT" --include="*.md" -l
Safety notes
- Always resolve
$OBSIDIAN_VAULTbefore operating. - Do not delete notes without explicit user confirmation.
- Preserve existing frontmatter when updating files.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: eobarretooo
- Source: eobarretooo/ClawLite
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.