![[Obsidian_OS.excalidraw.png]]
Developed over time - keeping **only** what proved useful.
- [[Obsidian]] tooling
- tags for flagging tasks to show up on queries
- Community Plugins
- [[Dataview Plug-in]] - required
- [[Excalidraw]]
- Obsidian Tasks
- Iconize
- QuickAdd
- Calendar
- Code Editor Shortcuts
- Daily notes plugin set up to work as a weekly note:
- date format = `GGGG-[W]ww`
- Based on the [[PARA Method]]
- Where my [[Weekly Review]] happens
- Trying to [[Do the Simplest Thing]]
This will always evolve, but has held this shape (more or less) for the better part of a year.
# Templates
## Week
```plaintext
# Goals
- [ ]
- [ ]
# Weekly Review
- [ ] Inbox Zero
- [ ] Preview calendar ahead
- [ ] Review project list & any notes below
- [ ] Create next week's weekly page
# Notes
```
## Area
```plaintext
# Links
```dataview
List rows.file.link
WHERE contains(areas, this.file.link)
GROUP BY file.folder
(```)
# Notes
```
## Project
```plaintext
---
areas:
projects:
resources:
---
# Result
# Scope
-
# Workspace
```
## Resource
Note: I'm alpha testing Obsidian's upcoming [[Obsidian Bases]] feature. These use that.
```plaintext
---
areas:
resources:
---
```base
filters:
and:
- resources.contains(link(this.file.name))
views:
- type: table
name: Listed as Resource On
order:
- file.name
- file.folder
```
```
# Important Pages
These pages are basically saved searches to keep my [[Next Action]] list and my active [[Defining Project|project]]s visible always, and have a place for my [[Someday, Maybe]] tasks and projects.
## Home Page
Home page is **pinned** to the sidebar - always visible.
**Pinning** it causes links to open in new tabs.
![[Pasted image 20250412164957.png]]
### Contents
```plaintext
> [!tip] Shortcuts
> [📆 This Week](obsidian://daily?vault=Journal)
> [🆕 New Project](obsidian://new?vault=Journal&file=Projects%2FProspective%2FNewProject&content=---%0Atags:%0A---%0A%23%20Result%0A%0A%23%20Scope%0A%0A%23%20Workspace)
## Next Actions & Due
(```)dataview
Task
Where
(contains(tags, "#next")) OR
(due AND due <= date(now))
Where status = " "
Group by file.link
(```)
## Active Projects
```dataview
LIST
Where file.folder = "Projects"
(```)
# Hold / Waiting
### Waiting Tasks
```dataview
Task
Where
(contains(tags, "#waiting"))
Where status = " "
Group by file.link
(```)
### Hold Projects
```dataview
LIST
Where file.folder = "Projects/On Hold"
(```)
### [[⏲️ Incubator]]
```
## Incubator
A spot to see "maybe"[^1] projects and "#someday" tasks.
### Contents
```plaintext
# "Someday" Tasks
```dataview
Task
Where
(contains(tags, "#someday"))
Where status = " "
Group by file.link
(```)
# "Maybe" Projects
```dataview
table file.cday as "Created", file.mday as "Modfied"
from "Projects/Prospective/Maybe"
sort file.mday desc
(```)
```
****
# More
## Source
- [[Myself]]
[^1]: `/Maybe` is a folder within `Projects/Prospective` to hold things I might want to do someday, to separate them out from "next up" type projects. I may make this cleaner at some point. Maybe.