37 lines
912 B
Markdown
37 lines
912 B
Markdown
# WORK Folder Setup - 2026-02
|
|
|
|
**Channel:** #work-assistant (Discord)
|
|
**Purpose:** Work-related tasks and notes
|
|
**Obsidian Path:** `WORK/` folder
|
|
|
|
## Folder Structure
|
|
|
|
```
|
|
WORK/
|
|
├── Inbox/ # Quick capture - dump thoughts here
|
|
├── Tasks/ # To-dos, action items, checklists
|
|
├── Projects/ # Active work projects
|
|
├── Meetings/ # Meeting notes, summaries
|
|
└── Reference/ # Docs, links, resources
|
|
```
|
|
|
|
## Usage Rules
|
|
|
|
- Anything mentioned in #work-assistant → goes to WORK folder
|
|
- Quick notes → Inbox/
|
|
- Tasks & to-dos → Tasks/
|
|
- Active projects → Projects/
|
|
- Meeting summaries → Meetings/
|
|
- Reference material → Reference/
|
|
|
|
## Quick Commands
|
|
|
|
```powershell
|
|
# Create work note
|
|
notesmd-cli create "WORK/Inbox/quick-idea" --content "..."
|
|
|
|
# Search work notes
|
|
notesmd-cli search "WORK/"
|
|
notesmd-cli search-content "keyword" --folder "WORK"
|
|
```
|