# Obsidian

> Read, write, and search local Obsidian vault markdown files via the filesystem.

- **Type:** Skill
- **Install:** `agentstack add skill-eobarretooo-clawlite-obsidian`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [eobarretooo](https://agentstack.voostack.com/s/eobarretooo)
- **Installs:** 0
- **Category:** [Productivity](https://agentstack.voostack.com/c/productivity)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [eobarretooo](https://github.com/eobarretooo)
- **Source:** https://github.com/eobarretooo/ClawLite/tree/main/clawlite/skills/obsidian

## Install

```sh
agentstack add skill-eobarretooo-clawlite-obsidian
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# 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/Obsidian` or `~/Library/Mobile Documents/iCloud~md~obsidian/Documents/`
- Linux: `~/obsidian` or `~/Documents/obsidian`

## Operations

### Search notes
```bash
grep -r "query" "$OBSIDIAN_VAULT" --include="*.md" -l
grep -r "query" "$OBSIDIAN_VAULT" --include="*.md" -n
```

### Read a note
```bash
cat "$OBSIDIAN_VAULT/path/to/note.md"
```

### List all notes
```bash
find "$OBSIDIAN_VAULT" -name "*.md" | sort
```

### Create or append a note
```bash
# Create new
cat > "$OBSIDIAN_VAULT/folder/new-note.md" > "$OBSIDIAN_VAULT/existing-note.md"
```

### Search by frontmatter tag
```bash
grep -r "tags:.*mytag" "$OBSIDIAN_VAULT" --include="*.md" -l
```

## Safety notes

- Always resolve `$OBSIDIAN_VAULT` before 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](https://github.com/eobarretooo)
- **Source:** [eobarretooo/ClawLite](https://github.com/eobarretooo/ClawLite)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-eobarretooo-clawlite-obsidian
- Seller: https://agentstack.voostack.com/s/eobarretooo
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
