Interact with Obsidian vaults for personal knowledge management. Create, read, update, and organize notes. Build a second brain with Zettelkasten principles. Triggers: 'obsidian', 'note', 'vault', 'knowledge base', 'second brain'.
Interact with Obsidian vaults for personal knowledge management.
| Setting | Value |
|---------|-------|
| Vault Path | /home/aptest/Documents/Obsidian Vault |
| Daily Notes | Daily Notes/ |
| Templates | Templates/ |
| Attachments | Attachments/ |
# Create a new note
NOTE_TITLE="$1"
NOTE_PATH="$HOME/Documents/Obsidian Vault/${NOTE_TITLE}.md"
# Create with template
cat > "$NOTE_PATH" << EOF
---
created: $(date +%Y-%m-%d)
modified: $(date +%Y-%m-%d)
tags: []
---
# ${NOTE_TITLE}
EOF
echo "✅ Note created: $NOTE_PATH"
NOTE_PATH="$HOME/Documents/Obsidian Vault/${1}.md"
cat "$NOTE_PATH"
grep -rn "$1" "$HOME/Documents/Obsidian Vault/" --include="*.md"
TODAY=$(date +%Y-%m-%d)
DAILY_PATH="$HOME/Documents/Obsidian Vault/Daily Notes/${TODAY}.md"
mkdir -p "$(dirname "$DAILY_PATH")"
if [ ! -f "$DAILY_PATH" ]; then
cat > "$DAILY_PATH" << EOF
---
created: $(date +%Y-%m-%d)
type: daily
---
# $(date +"%A, %B %d, %Y")
## 📋 Tasks
- [ ]
## 📝 Notes
## 💡 Ideas
## 🔗 Links
EOF
fi
cat "$DAILY_PATH"
Obsidian Vault/
├── 00 - Inbox/ # Quick capture
├── 01 - Projects/ # Active projects
├── 02 - Areas/ # Life areas (health, work, etc.)
├── 03 - Resources/ # Reference material
├── 04 - Archives/ # Completed/inactive
├── 05 - Templates/ # Note templates
├── Daily Notes/ # Daily journal
├── Fleeting Notes/ # Quick thoughts
└── Permanent Notes/ # Zettelkasten notes
Each permanent note contains:
YYYYMMDDHHMM - Brief Title
Example: 202602242200 - Automation Philosophy
- Related: [[202602242100 - Task Automation]]
- Source: [[Book - Atomic Habits]]
- Applies to: [[Project - PMS Dashboard]]
---
created: {{date}}
type: meeting
attendees: []
---
# Meeting: {{title}}
**Date:** {{date}}
**Time:** {{time}}
**Attendees:**
## Agenda
1.
## Notes
## Action Items
- [ ]
## Follow-up
---
created: {{date}}
type: project
status: active
---
# Project: {{title}}
## Overview
Brief description
## Goals
- [ ] Goal 1
- [ ] Goal 2
## Tasks
- [ ]
## Resources
-
## Notes
## Related
-
---
created: {{date}}
type: person
---
# {{name}}
## Contact
- Email:
- Phone:
- LinkedIn:
## Context
Where/How we met
## Notes
## Interactions
- {{date}}:
| Command | Action |
|---------|--------|
| obsidian create "[title]" | Create new note |
| obsidian read "[title]" | Read note |
| obsidian search "[query]" | Search vault |
| obsidian daily | Open daily note |
| obsidian inbox "[note]" | Quick capture |
| obsidian link "[from]" "[to]" | Link notes |
Anukar can automatically log to Obsidian:
| Anukar Data | Obsidian Location |
|-------------|-------------------|
| Daily achievements | Daily Notes/ |
| Skill documentation | Resources/Skills/ |
| Meeting notes | Resources/Meetings/ |
| Project progress | Projects/ |
# Create folder structure
mkdir -p "$HOME/Documents/Obsidian Vault/"{00\ -\ Inbox,01\ -\ Projects,02\ -\ Areas,03\ -\ Resources,04\ -\ Archives,05\ -\ Templates,Daily\ Notes,Fleeting\ Notes,Permanent\ Notes}
# Create templates
mkdir -p "$HOME/Documents/Obsidian Vault/05 - Templates"
.obsidian/ folder contains settings and plugins[[Note Name]] for internal links#tag anywhere in note--- at topGoogle Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
Use when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Manage Apple Reminders via remindctl CLI (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.
Manage Trello boards, lists, and cards via the Trello REST API.
Category:productivity