feat: complete vault structure — 34 folders, 14 templates, 7 MOCs, dashboards, area overviews

This commit is contained in:
Obsidian Backup 2026-06-07 06:15:22 +00:00
parent cd6afb6f8e
commit 925a748255
31 changed files with 1242 additions and 0 deletions

53
10 - Atlas/Home.md Normal file
View file

@ -0,0 +1,53 @@
---
type: dashboard
---
# 🏠 Home
> *The purpose of this vault is to think better and build better.*
---
## ⚡ Active Projects
```dataview
table status, target, priority
from "30 - Projects"
where status = "active"
sort priority desc
```
---
## 🗺️ Navigate
| Domain | MOC |
|--------|-----|
| 🤖 AI | [[MOC - AI]] |
| 🚀 Startup | [[MOC - Startup]] |
| 💰 Investing | [[MOC - Investing]] |
| 🌱 Renewables | [[MOC - Renewables]] |
| 💻 Software | [[MOC - Software]] |
| 📚 Learning | [[MOC - Learning]] |
---
## 🌱 Recent Knowledge
```dataview
table created, maturity
from "60 - Knowledge"
sort created desc
limit 7
```
## 📅 Recent Daily Notes
```dataview
list from "20 - Journal/Daily"
sort file.name desc
limit 5
```
## 📥 Inbox
```dataview
list from "00 - Inbox"
sort file.mtime desc
limit 5
```

40
10 - Atlas/MOC - AI.md Normal file
View file

@ -0,0 +1,40 @@
---
type: moc
domain: ai
---
# 🤖 MOC — AI & AI Agents
> Your curated map of AI knowledge. Add links as you build understanding.
---
## Foundational Concepts
-
## Agent Architecture
-
## LLM Research & Papers
-
## Prompt Engineering
- [[Prompt Library]]
## Experiments
```dataview
table model, status, date
from "40 - Areas/AI Development"
where type = "ai-experiment"
sort date desc
limit 10
```
## Open Questions
-
## Key Resources
```dataview
list from "50 - Resources/AI"
sort file.mtime desc
```

View file

@ -0,0 +1,43 @@
---
type: moc
domain: investing
---
# 💰 MOC — Investing
> Your curated investment knowledge, frameworks, and active positions.
---
## Frameworks & Mental Models
-
## Active Positions
```dataview
table type, status
from "40 - Areas/Investing"
where type = "investment" and status = "invested"
```
## In Research
```dataview
table type, date
from "40 - Areas/Investing"
where type = "investment" and status = "researching"
sort date desc
```
## Recent Decisions
```dataview
table date
from "40 - Areas/Investing"
where type = "decision"
sort date desc
limit 10
```
## Key Resources
```dataview
list from "50 - Resources/Finance & Markets"
sort file.mtime desc
```

View file

@ -0,0 +1,42 @@
---
type: moc
domain: learning
---
# 📚 MOC — Learning
> Your reading list, learning queue, and knowledge inputs.
---
## Currently Reading
```dataview
table author, status
from "50 - Resources/Books"
where status = "reading"
```
## Finished This Year
```dataview
table author, rating, finished
from "50 - Resources/Books"
where status = "finished"
sort finished desc
```
## To Read
```dataview
table author
from "50 - Resources/Books"
where status = "to-read"
```
## Recent Articles
```dataview
list from "50 - Resources/Articles"
sort file.mtime desc
limit 10
```
## Top Permanent Notes (from reading)
-

View file

@ -0,0 +1,28 @@
---
type: moc
domain: renewables
---
# 🌱 MOC — Renewables & Climate
> Your curated knowledge on renewable energy, climate tech, and the transition.
---
## Sector Understanding
-
## Investment Themes
-
## Key Players & Markets
-
## Technical Concepts
-
## Key Resources
```dataview
list from "50 - Resources/Renewables"
sort file.mtime desc
```

View file

@ -0,0 +1,28 @@
---
type: moc
domain: software
---
# 💻 MOC — Software Engineering
> Your curated software knowledge — architecture, patterns, tools.
---
## Architecture & Patterns
-
## Languages & Frameworks
-
## Tools & Infrastructure
-
## Learnings from Projects
-
## Key Resources
```dataview
list from "50 - Resources/Software Engineering"
sort file.mtime desc
```

View file

@ -0,0 +1,43 @@
---
type: moc
domain: startup
---
# 🚀 MOC — Startup
> Your curated map of startup knowledge, strategy, and operations.
---
## Vision & Strategy
- [[Vision]]
- [[Competitive Landscape]]
## Product
- [[Roadmap]]
## Frameworks & Mental Models
-
## Customer Insights
```dataview
table date, status
from "40 - Areas/Startup"
where type = "startup-note" and category = "customer-feedback"
sort date desc
limit 10
```
## Open Experiments
```dataview
table status, date
from "40 - Areas/Startup/Experiments"
sort date desc
limit 10
```
## Key Resources
```dataview
list from "50 - Resources/Business & Strategy"
sort file.mtime desc
```

View file

@ -0,0 +1,40 @@
---
area: AI Development
type: area
updated:
---
# 🤖 AI Development
## 🧭 Purpose
Building AI-powered products and researching AI agents.
## 📐 Standards
- Run at least one experiment per week
- Document all experiments (even failures)
- Keep prompt library updated
---
## 🚀 Active Projects
```dataview
table status, priority
from "30 - Projects"
where area = "AI Development" and status = "active"
sort priority desc
```
## 🔬 Recent Experiments
```dataview
table model, status, date
from "40 - Areas/AI Development"
where type = "ai-experiment"
sort date desc
limit 5
```
---
## 🔗 Key Links
- [[Prompt Library]]
- [[MOC - AI]]

View file

@ -0,0 +1,41 @@
---
type: reference
updated:
---
# Prompt Library
> Working prompts that proved useful. Add context, not just the prompt.
---
## Code Generation
### [Prompt Name]
**Use case:**
**Prompt:**
```
[prompt here]
```
**Notes:**
---
## Research & Synthesis
### [Prompt Name]
**Use case:**
**Prompt:**
```
[prompt here]
```
**Notes:**
---
## Agent Instructions
### [Prompt Name]
**Use case:**
**Prompt:**
```
[prompt here]
```
**Notes:**

View file

@ -0,0 +1,37 @@
---
area: Investing
type: area
updated:
---
# 💰 Investing
## 🧭 Philosophy
> Your investing philosophy in 2-3 sentences.
## 📐 Standards
- Research before every position
- Write a thesis before investing
- Review portfolio quarterly
---
## Active Positions
```dataview
table type, status
from "40 - Areas/Investing"
where type = "investment" and status = "invested"
```
## In Research
```dataview
table type, date
from "40 - Areas/Investing"
where type = "investment" and status = "researching"
sort date desc
```
---
## 🔗 Key Links
- [[MOC - Investing]]

View file

@ -0,0 +1,27 @@
---
area: Learning
type: area
updated:
---
# 📚 Learning
## 🧭 Purpose
Deliberate, compounding learning across all domains.
## 📐 Standards
- Read 50+ pages per week
- Extract permanent notes from every book
- Monthly learning review
---
## Currently Reading
```dataview
table author
from "50 - Resources/Books"
where status = "reading"
```
## 🔗 Key Links
- [[MOC - Learning]]

View file

@ -0,0 +1,19 @@
---
area: Renewables
type: area
updated:
---
# 🌱 Renewables & Climate
## 🧭 Focus
> Your specific angle within the renewables space.
## 📐 Standards
- Stay current on policy and market shifts
- Track key players quarterly
---
## 🔗 Key Links
- [[MOC - Renewables]]

View file

@ -0,0 +1,21 @@
---
type: startup-note
category: metrics
updated:
---
# Weekly Metrics
> Updated every Friday. Track what matters, cut the rest.
## Key Metrics
| Metric | Week 1 | Week 2 | Week 3 | Week 4 |
|--------|--------|--------|--------|--------|
| MRR | | | | |
| DAU | | | | |
| Churn | | | | |
| Burn | | | | |
| Runway | | | | |
## Notes
-

View file

@ -0,0 +1,25 @@
---
type: startup-note
category: strategy
updated:
---
# Product Roadmap
> Living document. Updated as priorities shift.
## 🎯 Current Quarter Goal
## 🔨 Now (Active)
- [ ]
## 📅 Next (Queued)
-
## 🔮 Later (Backlog)
-
## ❌ Will Not Do
| Feature | Reason |
|---------|--------|
| | |

View file

@ -0,0 +1,37 @@
---
area: Startup
type: area
updated:
---
# 🚀 Startup
## 🧭 Purpose
Building [your startup] — [one line mission].
## 📐 Standards
- Ship weekly
- Talk to customers monthly
- Review strategy quarterly
---
## 🚀 Active Projects
```dataview
table status, priority, target
from "30 - Projects"
where area = "Startup" and status = "active"
sort priority desc
```
## 📋 Ongoing
- [ ] Weekly metrics review
- [ ] Customer check-ins
---
## 🔗 Key Links
- [[Vision]]
- [[Roadmap]]
- [[Competitive Landscape]]
- [[MOC - Startup]]

View file

@ -0,0 +1,23 @@
---
type: startup-note
category: competitive
updated:
---
# Competitive Landscape
> Updated monthly. Last update:
## Market Map
| Player | Strength | Weakness | Threat Level |
|--------|----------|----------|--------------|
| | | | |
## Our Differentiation
> What makes us different from each of the above?
## Emerging Threats
-
## White Space Opportunities
-

View file

@ -0,0 +1,26 @@
---
type: startup-note
category: strategy
updated:
---
# Vision
## 🌟 North Star
> Where are we going in 10 years?
## 🎯 Mission
> What do we do and for whom?
## 💡 Core Insight
> What do we believe that others do not?
## 🏆 Unique Edge
> Why us? Why now?
---
## Values
1.
2.
3.

View file

@ -0,0 +1,51 @@
---
date: <% tp.date.now("YYYY-MM-DD") %>
type: ai-experiment
model:
status: running
tags: []
---
# Experiment: <% tp.file.title %>
**Date:** <% tp.date.now("YYYY-MM-DD") %>
**Model / Tool:**
**Version:**
---
## 🎯 Hypothesis
> What are you testing? What do you expect?
## ⚙️ Setup
**Parameters:**
- Temperature:
- Max tokens:
- Other:
**Prompt / Config:**
```
[paste exact prompt or config here]
```
---
## 📊 Results
**Output:**
**Quantitative:**
| Metric | Value |
|--------|-------|
| | |
---
## 💡 Observations
## ✅ Conclusions
## ➡️ Next Experiment
-
## 🔗 Related
- [[]]

38
_Templates/Area Note.md Normal file
View file

@ -0,0 +1,38 @@
---
area: <% tp.file.title %>
type: area
updated: <% tp.date.now("YYYY-MM-DD") %>
---
# <% tp.file.title %>
## 🧭 Purpose
> Why this area exists in your life/work.
## 📐 Standards
> What good looks like here.
---
## 🚀 Active Projects
```dataview
list from "30 - Projects"
where area = this.area and status = "active"
```
---
## 📋 Ongoing Tasks
- [ ]
---
## 🔗 Key Resources
-
## 💡 Related Knowledge
-
---
## 📅 Last Reviewed: <% tp.date.now("YYYY-MM-DD") %>

View file

@ -0,0 +1,31 @@
---
title: <% tp.file.title %>
author:
source:
date-read: <% tp.date.now("YYYY-MM-DD") %>
type: article
url:
tags: []
---
# <% tp.file.title %>
**Source:**
**Read:** <% tp.date.now("YYYY-MM-DD") %>
---
## 💡 Core Argument
## 🔑 Key Points
1.
2.
3.
## 💭 My Take
## 🔗 Links
- [[]]
## 🌱 Permanent Notes
- [[]]

53
_Templates/Book Note.md Normal file
View file

@ -0,0 +1,53 @@
---
title: <% tp.file.title %>
author:
finished:
rating:
type: book
status: reading
genre: []
---
# <% tp.file.title %>
**Author:**
**Finished:**
**Rating:** /10
**One sentence:**
---
## 🎯 Why I Read This
## 📖 Summary
> 3-5 sentences capturing the core thesis.
---
## 🔑 Key Ideas
### Idea 1:
### Idea 2:
### Idea 3:
---
## 💬 Best Quotes
> "..." — p.
---
## 💭 My Reactions
## ❓ Questions It Raised
-
---
## 🌱 Permanent Notes Created
- [[]]
## ✅ Actions / Changes
-

50
_Templates/Daily Note.md Normal file
View file

@ -0,0 +1,50 @@
---
date: <% tp.date.now("YYYY-MM-DD") %>
day: <% tp.date.now("dddd") %>
week: <% tp.date.now("[W]WW YYYY") %>
type: daily
---
# <% tp.date.now("dddd, MMMM D YYYY") %>
## 🎯 Top 3
> What would make today a success?
1.
2.
3.
## ⚡ Energy & Intention
**Energy:** ☐ Low ☐ Medium ☐ High
**Mode:** ☐ Deep Work ☐ Meetings ☐ Admin ☐ Creative
---
## 📋 Tasks
```tasks
not done
due on <% tp.date.now("YYYY-MM-DD") %>
```
---
## 📝 Captures
> Dump everything here during the day.
-
---
## 🔗 Today's Links
-
---
## 🌙 End of Day
**Done:**
**Unfinished → tomorrow:**
**One thing I learned:**
**Energy at close:** /10

View file

@ -0,0 +1,53 @@
---
date: <% tp.date.now("YYYY-MM-DD") %>
type: decision
area:
reversible: true
status: made
review-date:
---
# Decision: <% tp.file.title %>
**Date:** <% tp.date.now("YYYY-MM-DD") %>
**Area:**
**Reversible:** Yes / No
**Stakes:** Low / Medium / High
---
## 🧭 Context
> What situation forced this decision?
## ❓ The Question
> Exactly what was being decided.
---
## 🔄 Options Considered
### Option A:
**Pros:**
**Cons:**
### Option B:
**Pros:**
**Cons:**
---
## ✅ Decision Made
> What was chosen and why.
## 💭 Assumptions
> What must be true for this to be right?
## 📊 Expected Outcome
---
## 📅 Review
**Review date:**
**Actual outcome:**
**Was it right?**
**What I'd do differently:**

View file

@ -0,0 +1,46 @@
---
asset: <% tp.file.title %>
type: equity
date: <% tp.date.now("YYYY-MM-DD") %>
status: researching
tags: []
---
# Investment: <% tp.file.title %>
**Asset:**
**Type:** equity | crypto | real-estate | angel | fund
**Status:** researching | thesis-formed | invested | monitoring | exited
---
## 🎯 Investment Thesis
> Why would this outperform? What is the edge?
## 📊 Key Metrics
| Metric | Value | Source |
|--------|-------|--------|
| | | |
## ⚠️ Key Risks
1.
2.
---
## 🔍 Research Notes
---
## 🤝 Decision
> [[]] (link to Decision Log)
**Entry:**
**Target:**
**Position size rationale:**
---
## 📅 Updates
### <% tp.date.now("YYYY-MM-DD") %>
-

View file

@ -0,0 +1,40 @@
---
date: <% tp.date.now("YYYY-MM-DD") %>
type: meeting
attendees: []
project:
tags: []
---
# Meeting — <% tp.date.now("YYYY-MM-DD") %>
**Date:** <% tp.date.now("dddd, MMMM D YYYY") %>
**Attendees:**
**Type:** ☐ Internal ☐ Investor ☐ Customer ☐ Partner ☐ 1:1
---
## 📋 Agenda
1.
2.
---
## 📝 Notes
---
## ✅ Action Items
- [ ]
---
## 🤝 Decisions Made
-
## ❓ Open Questions
-
## 🔗 Follow-ups
-

View file

@ -0,0 +1,80 @@
---
month: <% tp.date.now("MMMM YYYY") %>
type: monthly-review
---
# <% tp.date.now("MMMM YYYY") %> — Monthly Review
## 🧭 Month Theme
> One sentence: what was this month about?
---
## 🎯 Goals Review
| Goal | Status | Notes |
|------|--------|-------|
| | | |
---
## 🚀 Projects
**Completed:**
**In Progress:**
**Abandoned (why):**
---
## 📚 Knowledge Inputs
**Books finished:**
**Most valuable read:**
**Course / video:**
## 💡 Top 3 Insights
1.
2.
3.
---
## 💰 Investing & Finance
**Portfolio change:**
**Decisions made:**
**Thesis updated:**
---
## 🤝 Key Decisions
| Decision | Rationale | Expected Outcome |
|----------|-----------|------------------|
| | | |
---
## 🌱 Personal Growth
**Energy/health:**
**Relationships:**
**Habit scorecard:**
---
## 📊 Metrics
| Metric | Value |
|--------|-------|
| Notes created | |
| Books finished | |
| Experiments run | |
| Deep work hours | |
---
## 🔭 Next Month
**Theme:**
**Top 3 outcomes:**
1.
2.
3.
**What to eliminate:**

View file

@ -0,0 +1,29 @@
---
created: <% tp.date.now("YYYY-MM-DD") %>
type: permanent
maturity: seedling
tags: []
---
# <% tp.file.title %>
> [Core idea in 1-3 sentences, as if explaining to a smart friend with no context]
---
## The Idea
[Expand in your own words. No quotes. No copy-paste. Pure synthesis.]
---
## Why It Matters
## Connections
- Related: [[]]
- Contradicts: [[]]
- Supports: [[]]
- Leads to: [[]]
## Sources
- [[]]

View file

@ -0,0 +1,51 @@
---
project: <% tp.file.title %>
status: active
area:
start: <% tp.date.now("YYYY-MM-DD") %>
target:
priority: medium
type: project
---
# <% tp.file.title %>
## 🎯 Outcome
> What does success look like? One clear sentence.
## 💡 Why This Matters
---
## ✅ Tasks
- [ ]
---
## 📋 Progress Log
### <% tp.date.now("YYYY-MM-DD") %>
- Started
---
## 🤝 Decisions
| Date | Decision | Rationale |
|------|----------|-----------|
| | | |
---
## 🔗 Resources & Links
-
## 👥 People Involved
-
---
## 💡 Learnings
---
## 🏁 Completion Notes
> Fill when done — what worked, what did not, what to carry forward.

View file

@ -0,0 +1,49 @@
---
topic:
source-type: primary
status: raw
date: <% tp.date.now("YYYY-MM-DD") %>
type: research
---
# Research: <% tp.file.title %>
**Status:** 🌱 Raw → 🔄 Processing → ✅ Synthesized
---
## 🎯 Research Question
> What am I trying to find out?
## 🔍 Sources
| Source | Type | Credibility |
|--------|------|-------------|
| | | |
---
## 📝 Raw Notes
---
## 🔑 Key Findings
1.
2.
## ❓ Questions Raised
-
## ⚠️ Contradictions / Surprises
-
---
## 💡 Synthesis
> Your own interpretation — in your own words.
## 🔗 Links to Other Notes
-
## ➡️ Next Steps
-

View file

@ -0,0 +1,30 @@
---
date: <% tp.date.now("YYYY-MM-DD") %>
type: startup-note
category: idea
status: raw
---
# <% tp.file.title %>
**Date:** <% tp.date.now("YYYY-MM-DD") %>
**Category:** idea | strategy | customer-feedback | experiment | metrics | competitive
**Status:** raw | active | validated | invalidated | archived
---
## Context
## Content
---
## Hypothesis
> What do we believe? What would prove/disprove it?
## Next Action
- [ ]
## Links
- [[]]

View file

@ -0,0 +1,68 @@
---
week: <% tp.date.now("[W]WW") %>
year: <% tp.date.now("YYYY") %>
type: weekly-review
---
# Week <% tp.date.now("WW") %> — <% tp.date.now("YYYY") %>
## 📊 Week in Review
### ✅ Wins
-
### ❌ What Did Not Happen
-
### 🔄 What I'd Do Differently
-
---
## 🚀 Projects Status
```dataview
table status, target
from "30 - Projects"
where status = "active"
sort file.mtime desc
```
---
## 📚 Learning This Week
**Books progressed:**
**Articles read:**
**Key insight:**
---
## 💡 Ideas Generated
-
## 🤝 Decisions Made
-
## 💰 Investment Activity
-
---
## 🎯 Next Week
**Top 3 priorities:**
1.
2.
3.
**Must protect time for:**
**What to say no to:**
---
## 📈 Metrics
| Metric | Target | Actual |
|--------|--------|--------|
| Deep work hours | 20 | |
| Exercise sessions | 4 | |
| Book pages | 50 | |
| Notes created | 5 | |