feat(global): implement main phase

This commit is contained in:
h
2026-01-05 17:49:03 +01:00
parent a5bddc4e6e
commit cdc494ad79
111 changed files with 5481 additions and 10 deletions

View File

@@ -0,0 +1,153 @@
> This file is intended for AI agents with Obsidian access. Goal - quickly understand the structure, find what's needed, and correctly make changes.
---
## 👤 About the vault owner
**Profile:** Builder/Beaver - student, programmer, musician.
**Mindset:** Ambitious, values structure and action.
**Context:** Vault is used as a life operating system - planning, journal, knowledge base, people CRM.
---
## 🗺️ Directory Map
### Control Center
| Path | Purpose | When to look |
|------|---------|--------------|
| `📆 planning/roadmap.md` | **Main file.** Current priorities across all areas | **ALWAYS at session start** |
| `📆 boards/*.md` | Kanban boards (study, work, music, organization) with Tasks plugin tasks | When you need to view/add specific tasks |
| `📆 planning/lists/*.md` | "Queue" - tasks without dates, for transfer to boards later | When you need to write something for the future |
> ⚠️ **Important:** Agent does NOT see Tasks query renders. To see tasks - read board files directly.
### Journal
| Path | Purpose |
|------|---------|
| `📅 days/YYYY-MM-DD.md` | Daily log. Free format, timestamps, links to people/events |
**Pattern:** Entries often contain `[[Name]]` - links to people from `👤 people/`.
### People
| Path | Purpose |
| --------------------------- | ---------------------------------------------- |
| `👤 people/personal/` | Friends, girlfriends, acquaintances |
| `👤 people/personal/archive/` | Inactive contacts (exes, lost connections) |
| `👤 people/personal/groups/` | **Hub files** with people lists |
| `👤 people/professional/` | Teachers, colleagues, business contacts |
**How to find a person:**
1. `file:name` - direct search
2. If you need a category → check group files in `groups/`
3. `graph.neighbors(path)` will show person's connections to journal
**People frontmatter:** `aliases`, `tags` (#people/friend), `birthday`
### Projects
| Path | Purpose |
|------|---------|
| `💻 projects/active/` | Current projects. Each project = folder with working materials |
| `💻 projects/archive/` | Completed/frozen projects |
**Project structure:** Free form. May contain specs, canvas, notes, drafts.
### Knowledge Base
| Path | Purpose |
| ----------------- | ---------------------------------------------------- |
| `💻 skills/` | Problem → solution. Cheat sheets. Quick reference |
| `💻 education/` | University, school materials |
| `📶 research/` | Research in progress. Later migrates to `skills/` |
**Skills pattern:** Nesting by technology: `skills/programming/python/poetry/torch won't install.md`
### Objects and Places
| Path | Purpose |
|------|---------|
| `📦 objects/physical/` | Things: tech, perfumes, clothes. With usage instructions |
| `📦 objects/virtual/apps/` | Programs/utilities with description and commands |
| `🌍 places/real/` | Cities, districts, specific locations (stores) |
| `🌍 places/virtual/sites/` | Website bookmarks by category |
### Other
| Path | Purpose |
| -------------- | -------------------------------------------------------------------------- |
| `🏄 events/` | Trips, important events. Subfolder `_groups` - reports by event types |
| `📺 media/` | Books, anime, series, music - what I watched/read |
| `🧠 thoughts/` | Philosophy, manifestos, identity-level ideas. Format: `YYYY-MM-DD-name.md` |
| `meta/` | Templates, scripts. **Don't touch this** |
---
## 🔍 Navigation Patterns
### Search
```
file:name - by substring in filename (NOT fuzzy, typos not forgiven)
path:folder - by substring in path
content:text - full-text
tag:#tag/subtag - by tags
```
### Graph
```
graph.neighbors(path) - direct file connections
graph.traverse(path) - traverse N levels
graph.backlinks(path) - who references the file
```
### Typical Scenarios
**"Find person by name"**
`vault.search(file:Name)`
**"What happened yesterday"**
`view.file(📅 days/YYYY-MM-DD.md)` with yesterday's date
**"Current study tasks"**
`view.file(📆 boards/study.md)`
**"Add task for later"**
→ Write to `📆 planning/lists/{category}.md`
---
## ✍️ Writing Conventions
### Tags (hierarchical)
- `#people/friend`, `#people/girlfriend`, `#people/friend/archive`
- `#projects/programming`, `#projects/music`
- `#places/new-york`
- `#things/perfumes`, `#apps/utilities/programming`
- `#thoughts/manifestos`
- `#solutions` - for skills/cheat sheets
Most notes the user should create themselves using QuickAdd. If you're NOT working with materials in `💻 education`/`💻 projects`, most likely the absence of a ready file is an error, and you should ask the user to create it in the right place with the right template, and only then write to it.
### Frontmatter
### Links to people in journal
```markdown
Walked with [[John Smith|John]]
```
---
## 🚫 What NOT to do
1. **Don't touch `meta/`** - templates are there, don't modify
2. **Don't try to render Tasks queries** - they only work in the client
3. **Don't create files unnecessarily** - ask first
4. **Don't change folder structure** - it's established
5. **Don't invent tags** - use existing patterns, can deepen
---
## 🚀 Session Start Protocol (Desktop Mode)
1. **Read this file** (already done)
2. **Check `📆 planning/roadmap.md`** - current focus
3. **Optionally:** glance at last 2-3 days in `📅 days/` for context
4. **Listen to user request** and navigate using the map above
---

View File

@@ -0,0 +1,69 @@
idea: your life is an operating system. vault is the database. AI is the manager that helps run it.
how it works:
- you maintain a vault: journal, tasks, projects, people, knowledge
- AI reads the vault via MCP and understands your life context
- instead of generic answers - personalized help based on your data, with a pleasant response style and reduced restrictions
use cases:
- handling many tasks simultaneously
- mentally challenging periods
philosophy:
- action cures fear
- vault is your second brain, not a TODO-app
who it's for:
- you already use obsidian or are ready to learn
- you need a centralized system, not another task list
- you're a builder, not a consumer
- you're ready to genuinely chat with an AI (try starting with Gemini if you're skeptical)
this is the complete structure of my vault that I use daily.
this readme is written in the same style I use for my notes
I intentionally don't provide detailed descriptions of each folder, consider this a comprehensive starting point, but explore everything yourself
also intentionally omitted is the finance management sphere, I use Firefly III for that
your optimal structure will likely be different.
always keep AGENTS.md up to date, it should always contain the structure as you have it.
in the meta folder are my recommended templates - set up the templates and quickadd plugins
some of them (like the journal) look too demanding to fill out. most likely, in the early stages you won't need half of this.
recommended scripts are also there nearby, once you study the whole structure you'll understand where they're used.
each folder has a brief description of what it's used for and example tags that I have set.
tips:
- keep everything in the language you know best, don't write notes in your second language for unknown reasons
- treat the vault as your second personality, if you try storing your secrets here, filling and maintaining it in the future will be easier
- don't demand daily journal entries and use of all folders you've created, change the structure, gradually you'll find the perfect recipe
recommended plugins:
- Advanced Canvas
- Advanced Tables
- Advanced URI
- BRAT
- Calendar (configure for your days folder)
- Dataview
- Excalidraw
- Folder notes (configure Key for creating/opening to ⌘ + Click)
- Image converter (set up auto-compression for images)
- Kanban
- Latex Suite (study its auto-replacements, sometimes they're non-obvious, but you'll get used to it quickly)
- Minimal Theme
- QuickAdd (pinned in Command Palette)
- Semantic Notes Vault MCP (BRAT: aaronsb/obsidian-mcp-plugin)
- Spaced Repetition (disable Notes -> Enable note review pane on startup)
- Tasks
- Templater (set up Folder templates, `/` -> `meta/templates/templates/note.md`, so all notes are created with a tags field)
- TimeStamper (bind it somehow, set `YYYY-MM-DD - ` in template)
- Waypoint (MOC that glows in the graph, I ended up not using it because I highlight tags on the graph)
my binds:
(to bind CapsLock, use Raycast)
- Add internal link -> CapsLock + [
- Kanban: Toggle between Kanban and markdown mode -> CapsLock + M
- Reveal in Finder -> CapsLock + O
- Search & replace in current file -> ⌘ + R
- Toggle left sidebar -> CapsLock + ←
- Toggle Live Preview/Source mode -> CapsLock + S
- Toggle right sidebar -> CapsLock + →
- Undo close tab -> ⌘ + ⇧ + T
good luck.

View File

@@ -0,0 +1,3 @@
files from here live here
https://github.com/702573N/Obsidian-Tasks-Calendar

View File

@@ -0,0 +1,14 @@
---
date_start: {{date}}
date_end: {{date}}
tags:
aliases:
---
[[{{date}}]]
## Brief Description
## Event Progress
## Notes

View File

@@ -0,0 +1,18 @@
---
finished: false
episodes:
rating:
genres:
banner:
aliases:
link:
tags:
- media/anime
---
## Description
## Opinion
## Notes

View File

@@ -0,0 +1,16 @@
---
finished: false
pages:
rating:
genres:
aliases:
tags:
- media/book
---
## Description
## Opinion
## Notes

View File

@@ -0,0 +1,18 @@
---
finished: false
episodes:
rating:
genres:
banner:
aliases:
link:
tags:
- media/series
---
## Description
## Opinion
## Notes

View File

@@ -0,0 +1,45 @@
---
aliases:
tags:
birthday: ""
---
# 👤 {{name}}
## Basic Information
- Age: `= date(today) - date(this.birthday)`
- Know them from:
## Personal Information
---
## Psychological Profile
### State
[[{{date}}]]
-
### Character and Communication Style
[[{{date}}]]
-
### Interests and Hobbies
[[{{date}}]]
-
---
## Interaction Specifics
### What to Remember When Communicating:
[[{{date}}]]
-
#### What they like:
[[{{date}}]]
-
#### What they dislike:
[[{{date}}]]
-
---
## Personal Opinion
[[{{date}}]]

View File

@@ -0,0 +1,10 @@
---
aliases:
tags:
---
## Sources

View File

@@ -0,0 +1,13 @@
---
aliases:
tags:
- "#things/clothes"
brand: {{VALUE:brand}}
model: {{VALUE:model}}
price:
spent:
fake: false
link:
banner:
---
# {{VALUE:brand}} {{VALUE:model}}

View File

@@ -0,0 +1,17 @@
---
aliases:
tags:
- "#things/perfumes"
designer: {{VALUE:designer}}
model: {{VALUE:model}}
price:
link:
notes:
---
# {{VALUE:designer}} {{VALUE:model}}
## Info
## Use Case
## Application

View File

@@ -0,0 +1,3 @@
---
aliases:
---

View File

@@ -0,0 +1,2 @@
when editing a template - remember that frontmatter must be edited in source mode
otherwise {{these things}} break

View File

@@ -0,0 +1,62 @@
---
tags:
- days
---
## morning state
- energy: /10
- mental clarity: /10
- willpower: /10
- physical: /10
- vibe: /10
## summary
-
---
---
# plans
overdue:
```tasks
not done
due before {{title}}
```
must do today:
```tasks
not done
due on {{title}}
```
would be nice earlier, but we're on time:
```tasks
not done
scheduled before {{title}}
due after {{title}}
```
today, but can be later:
```tasks
not done
scheduled on {{title}}
due after {{title}}
```
## evening state
- sleepiness: /10
- mental clarity: /10
- physical: /10
- result: /10
## results
- achievements:
- gratitude:
- conclusions:
```tasks
done on {{title}}
```

View File

@@ -0,0 +1,4 @@
---
aliases:
tags:
---

View File

@@ -0,0 +1,7 @@
---
tags:
- places/city_name
---
here I store important places and notes to them, subfolder per city/country
mainly used for backlinks, but sometimes not only

View File

@@ -0,0 +1,6 @@
---
tags:
- sites/subtype
---
here I store links to various sites by folders (categories)

View File

@@ -0,0 +1,6 @@
---
tags:
- events/event_type
---
reports by specific event types, date in filename

View File

@@ -0,0 +1,6 @@
---
tags:
- events/event_type
---
event reports, subfolders by year, date in filename

View File

@@ -0,0 +1,9 @@
---
aliases:
- Full Name
tags:
- people/celebrities
birthday: 0000-00-00
---
any kind of celebrities

View File

@@ -0,0 +1,9 @@
---
aliases:
- Full Name
tags:
- people/friend/archive
birthday: 0000-00-00
---
those I no longer communicate with. usually get a changed tag

View File

@@ -0,0 +1,9 @@
---
aliases:
- Full Name
tags:
- people/friend
birthday: 0000-00-00
---
friends, girlfriends, everyone I know

View File

@@ -0,0 +1,9 @@
---
aliases:
- Full Name
tags:
- people/teacher/subject
birthday: 0000-00-00
---
teachers, colleagues

View File

@@ -0,0 +1,6 @@
---
tags:
- study/subject
---
lecture notes, subfolders by institutions/subjects

View File

@@ -0,0 +1,8 @@
---
tags:
- projects/area
---
subfolders active/archive
inside subfolders by activity areas, then folders per project
usually chaos inside with all needed project info

View File

@@ -0,0 +1,6 @@
---
tags:
- solutions/area/more_specific
---
quick problem solutions, notes on programs, things I know but forget

View File

@@ -0,0 +1,7 @@
---
tags:
- days
---
daily note, Calendar plugin and daily notes are configured here
workspace for each day, small thoughts, daily routine filling, day progress

View File

@@ -0,0 +1,7 @@
---
kanban-plugin: board
---
kanban boards for each area (e.g.: organization, work, study, research)
I use the Tasks plugin, set due dates
only what's currently in progress goes here

View File

@@ -0,0 +1,2 @@
for each note in boards there's a matching note here, but tasks for the future go here
added to the exclusion list in the Tasks plugin

View File

@@ -0,0 +1,8 @@
workspace, status for each area
# Priorities
- priority tasks
# Different Areas
## Various Projects
- status of each and upcoming plans

View File

@@ -0,0 +1,5 @@
```dataviewjs
await dv.view("meta/scripts/taskscalendar", {pages: "", view: "week", firstDayOfWeek: "1", options: "style4"})
```
renders a calendar

View File

@@ -0,0 +1,11 @@
```tasks
no due date
not done
```
```tasks
not done
has due date
```
tasks get parsed here

View File

@@ -0,0 +1 @@
for cases when you just need a text editor

View File

@@ -0,0 +1,9 @@
---
tags:
- "#things/thing_type"
---
different types of things, categorized by type
for example I have folders "perfumes", "food", "clothes", "tech"
usually guides for household tech here, for clothes backlinks to collect fits etc
I don't store recipes directly here, recommend Mealie for that (in "food" directory I have standard shopping lists), but you can

View File

@@ -0,0 +1,7 @@
---
aliases:
tags:
- apps/type/subtype
---
notes about various programs (almost like places/virtual, but for programs)

View File

@@ -0,0 +1,8 @@
---
tags:
- research/area/task
---
subfolders for different areas
notes on sources, all collected interesting information
usually something from here later goes to "skills" in concentrated form

View File

@@ -0,0 +1,6 @@
---
tags:
- media/type
---
description, notes and review of watched/read/listened

View File

@@ -0,0 +1,6 @@
---
tags:
- thoughts/topic
---
subfolders for each topic, e.g. "philosophy". something that isn't a skill but too big to write in the journal

View File

@@ -0,0 +1,7 @@
---
tags:
- thoughts/type
---
ideas, manifestos, any longreads generated directly from the brain
subfolders by year, date in filename

View File

@@ -0,0 +1,152 @@
> Этот файл предназначен для AI-агентов с доступом к Obsidian. Цель - максимально быстро понять структуру, найти нужное, и корректно вносить изменения.
---
## 👤 О владельце vault'а
**Профиль:** Builder/Beaver - студент, программист, музыкант.
**Mindset:** Амбициозный, ценит структуру и действие.
**Контекст:** Vault используется как операционная система жизни - планирование, дневник, база знаний, CRM по людям.
---
## 🗺️ Карта директорий
### Центр управления
| Путь | Назначение | Когда лезть |
|------|------------|-------------|
| `📆 планирование/роадмап.md` | **Главный файл.** Текущие приоритеты по всем сферам | **ВСЕГДА при старте сессии** |
| `📆 доски/*.md` | Kanban-доски (учеба, работа, музыка, организация) с задачами Tasks-плагина | Когда нужно посмотреть/добавить конкретные задачи |
| `📆 планирование/списки/*.md` | "Очередь" - задачи без дат, для переноса в доски потом | Когда нужно записать что-то на будущее |
> ⚠️ **Важно:** Агент НЕ видит рендер Tasks-запросов. Чтобы увидеть задачи - читай файлы досок напрямую.
### Дневник
| Путь | Назначение |
|------|------------|
| `📅 дни/YYYY-MM-DD.md` | Ежедневный лог. Свободный формат, таймстампы, ссылки на людей/события |
**Паттерн:** Записи часто содержат `[[Имя]]` - ссылки на людей из `👤 люди/`.
### Люди
| Путь | Назначение |
| --------------------------- | ---------------------------------------------- |
| `👤 люди/личное/` | Друзья, девушки, знакомые |
| `👤 люди/личное/архив/` | Неактивные контакты (бывшие, потерянные связи) |
| `👤 люди/личное/группы/` | **Файлы-хабы** со списками людей |
| `👤 люди/профессиональное/` | Учителя, коллеги, бизнес-контакты |
**Как искать человека:**
1. `file:имя` - прямой поиск
2. Если нужна категория → смотри файлы-группы в `группы/`
3. `graph.neighbors(путь)` покажет связи человека с дневником
**Frontmatter людей:** `aliases`, `tags` ( #люди/друг), `birthday`
### Проекты
| Путь | Назначение |
|------|------------|
| `💻 проекты/активные/` | Текущие проекты. Каждый проект = папка с рабочими материалами |
| `💻 проекты/архив/` | Завершённые/замороженные проекты |
**Структура проекта:** Свободная. Может содержать specs, canvas, заметки, драфты.
### База знаний
| Путь | Назначение |
| ----------------- | ---------------------------------------------------- |
| `💻 навыки/` | Проблема → решение. Чит-шиты. Quick reference |
| `💻 образование/` | Университет, школьные материалы |
| `📶 ресерчи/` | Исследования в процессе. Потом мигрируют в `навыки/` |
**Паттерн навыков:** Вложенность по технологии: `навыки/программирование/python/poetry/torch не устанавливается.md`
### Объекты и места
| Путь | Назначение |
|------|------------|
| `📦 объекты/материальное/` | Вещи: техника, духи, шмотки. С инструкциями по использованию |
| `📦 объекты/виртуальное/программы/` | Программы/утилиты с описанием и командами |
| `🌍 места/реальные/` | Города, районы, конкретные локации (магазины) |
| `🌍 места/виртуальные/сайты/` | Закладки сайтов по категориям |
### Остальное
| Путь | Назначение |
| ------------- | -------------------------------------------------------------------------------- |
| `🏄 события/` | Поездки, важные события. Подпапка `_группы` - отчёты по конкретным видам событий |
| `📺 медиа/` | Книги, аниме, сериалы, музыка - что смотрел/читал |
| `🧠 мысли/` | Философия, манифесты, identity-level идеи. Формат: `YYYY-MM-DD-название.md` |
| `мета/` | Шаблоны, скрипты. **Не лезть сюда** |
---
## 🔍 Паттерны навигации
### Поиск
```
file:имя - по подстроке в имени файла (НЕ fuzzy, опечатки не прощает)
path:папка - по подстроке в пути
content:текст - полнотекстовый
tag:#тег/подтег - по тегам
```
### Граф
```
graph.neighbors(path) - прямые связи файла
graph.traverse(path) - обход на N уровней
graph.backlinks(path) - кто ссылается на файл
```
### Типичные сценарии
**"Найти человека по имени"**
`vault.search(file:Имя)`
**"Что происходило вчера"**
`view.file(📅 дни/YYYY-MM-DD.md)` с вчерашней датой
**"Текущие задачи по учёбе"**
`view.file(📆 доски/учеба.md)`
**"Добавить задачу на потом"**
→ Записать в `📆 планирование/списки/{категория}.md`
---
## ✍️ Конвенции записи
### Теги (иерархические)
- `#люди/друг`, `#люди/подруга`, `#люди/друг/архив`
- `#проекты/программирование`, `#проекты/музыка`
- `#места/нью-йорк`
- `#вещи/духи`, `#приложения/утилиты/программирование`
- `#мысли/манифесты`
- `#решения` - для навыков/чит-шитов
Большинство заметок пользователь должен создавать сам, используя QuickAdd. Если ты работаешь НЕ с материалами в `💻 образование`/`💻 проекты` , скорее всего отсутствие готового файла - ошибка, и ты должен попросить пользователя его создать в правильном месте с правильным шаблоном, а только потом в него записывать.
### Frontmatter
### Ссылки на людей в дневнике
```markdown
Гулял с [[Василий Пупкин|Васей]]
```
---
## 🚫 Чего НЕ делать
1. **Не лезть в `мета/`** - там шаблоны, не трогать
2. **Не пытаться рендерить Tasks-запросы** - они работают только в клиенте
3. **Не создавать файлы без необходимости** - сначала спросить
4. **Не менять структуру папок** - она устоялась
5. **Не выдумывать теги** - использовать существующие паттерны, можно углублять
---
## 🚀 Протокол старта сессии (Desktop Mode)
1. **Прочитать этот файл** (уже сделано)
2. **Проверить `📆 планирование/роадмап.md`** - текущий фокус
3. **Опционально:** глянуть последние 2-3 дня в `📅 дни/` для контекста
4. **Слушать запрос юзера** и навигировать по карте выше
---

View File

@@ -0,0 +1,69 @@
идея: твоя жизнь - это операционная система. vault - база данных. AI - менеджер, который помогает ей управлять.
как работает:
- ты ведёшь vault: дневник, задачи, проекты, люди, знания
- AI читает vault через MCP и понимает контекст твоей жизни
- вместо generic ответов - персонализированная помощь на основе твоих данных, с приятным стилем ответов и сниженными ограничениями
юзкейсы:
- большое количество задач одновременно
- ментально сложные периоды
философия:
- action cures fear
- vault это твой второй мозг, а не TODO-app
для кого:
- ты уже пользуешься obsidian или готов разобраться
- тебе нужна централизованная система, а не очередной список задач
- ты builder, не consumer
- ты готов неиронично переписываться с нейронкой (попробуй начать с Gemini если относишься скептически)
это полная структура моего vault, которой я пользуюсь ежедневно.
этот readme написан в том же стиле, в котором я веду заметки
я намеренно не занимаюсь подробным описанием каждой из папок, рассматривайте это как комплексную отправную точку, но изучайте все сами
также намеренно полностью упущена сфера менеджмента финансов, я использую Firefly III для этого
для вас оптимальная структура, скорее всего, будет другой.
обязательно держите AGENTS.md актуальным, он всегда должен содержать структуру в том виде, в котором она у вас.
в папке мета лежат мои рекомендованные темплейты - настройте плагин templates и quickadd
некоторые из них (например, дневник) выглядят слишком demanding для заполнения. скорее всего, на начальных этапах половина из этого вам нужна не будет.
там же рядом лежат рекомендованные скрипты, изучив всю структуру вы поймете где они используются.
в каждой из папок максимально краткое описание для чего она используется и пример тегов, установленных у меня.
советы:
- ведите все на том языке, который лучше всего знаете, не стоит по неизвестным причинам писать заметки на вашем втором языке
- относитесь к хранилищу как к вашей второй личности, если попробуете хранить тут всякие секреты, заполнение и ведение в будущем будет идти проще
- не требуйте от себя ежедневного заполнения дневника и использования всех папок, что вы придумали, меняйте структуру, постепенно вы найдете идеальный рецепт
рекомендованные плагины:
- Advanced Canvas
- Advanced Tables
- Advanced URI
- BRAT
- Calendar (настройте на вашу папку дней)
- Dataview
- Excalidraw
- Folder notes (сконфигурируйте Key for creating/opening на ⌘ + Click)
- Image converter (настройте автосжатие картинок)
- Kanban
- Latex Suite (изучите его автозамены, иногда они неочевидные, но вы быстро привыкнете)
- Minimal Theme
- QuickAdd (закреплен в Command Palette)
- Semantic Notes Vault MCP (BRAT: aaronsb/obsidian-mcp-plugin)
- Spaced Repetition (отключите Notes -> Enable note review pane on startup)
- Tasks
- Templater (настройте Folder templates, `/` -> `мета/шаблоны/templates/заметка.md`, чтобы все заметки создавались сразу с полем для тегов)
- TimeStamper (забиндите его как-нибудь, поставьте `YYYY-MM-DD - ` в темплейт)
- Waypoint (MOC который светится в графе, я в итоге не использую, потому что свечу теги на графе)
мои бинды:
(чтобы биндить CapsLock, используйте Raycast)
- Add internal link -> CapsLock + [
- Kanban: Toggle between Kanban and markdown mode -> CapsLock + M
- Reveal in Finder -> CapsLock + O
- Search & replace in current file -> ⌘ + R
- Toggle left sidebar -> CapsLock + ←
- Toggle Live Preview/Source mode -> CapsLock + S
- Toggle right sidebar -> CapsLock + →
- Undo close tab -> ⌘ + ⇧ + T
удачи.

View File

@@ -0,0 +1,3 @@
тут лежат файлы отсюда
https://github.com/702573N/Obsidian-Tasks-Calendar

View File

@@ -0,0 +1,17 @@
---
aliases:
tags:
- "#вещи/духи"
designer: {{VALUE:designer}}
model: {{VALUE:model}}
price:
link:
notes:
---
# {{VALUE:designer}} {{VALUE:model}}
## Инфо
## Юзкейс
## Нанесение

View File

@@ -0,0 +1,13 @@
---
aliases:
tags:
- "#вещи/шмотки"
brand: {{VALUE:brand}}
model: {{VALUE:model}}
price:
spent:
fake: false
link:
banner:
---
# {{VALUE:brand}} {{VALUE:model}}

View File

@@ -0,0 +1,18 @@
---
досмотрел: false
серий:
оценка:
жанры:
banner:
aliases:
ссылка:
tags:
- медиа/аниме
---
## Описание
## Мнение
## Заметки

View File

@@ -0,0 +1,16 @@
---
дочитал: false
страниц:
оценка:
жанры:
aliases:
tags:
- медиа/книга
---
## Описание
## Мнение
## Заметки

View File

@@ -0,0 +1,18 @@
---
досмотрел: false
серий:
оценка:
жанры:
banner:
aliases:
ссылка:
tags:
- медиа/сериал
---
## Описание
## Мнение
## Заметки

View File

@@ -0,0 +1,3 @@
---
aliases:
---

View File

@@ -0,0 +1,10 @@
---
aliases:
tags:
---
## Источники

View File

@@ -0,0 +1,14 @@
---
date_start: {{date}}
date_end: {{date}}
tags:
aliases:
---
[[{{date}}]]
## Краткое описание
## Ход события
## Заметки

View File

@@ -0,0 +1,45 @@
---
aliases:
tags:
birthday: ""
---
# 👤 {{name}}
## Основная информация
- Возраст: `= date(today) - date(this.birthday)`
- Знакомы из-за:
## Личная информация
---
## Психологический профиль
### Состояние
[[{{date}}]]
-
### Характер и стиль общения
[[{{date}}]]
-
### Интересы и увлечения
[[{{date}}]]
-
---
## Особенности взаимодействия
### Что важно помнить при общении:
[[{{date}}]]
-
#### Что ему/ей приятно:
[[{{date}}]]
-
#### Что неприятно:
[[{{date}}]]
-
---
## Личное отношение
[[{{date}}]]

View File

@@ -0,0 +1,2 @@
когда редактируете шаблон - помните что frontmatter надо редактировать в source mode
иначе слетают {{вот эти штуки}}

View File

@@ -0,0 +1,62 @@
---
tags:
- дни
---
## состояние утром
- заряд: /10
- ясность мышления: /10
- воля: /10
- физика: /10
- вайб: /10
## сводка
-
---
---
# планы
просрочены:
```tasks
not done
due before {{title}}
```
обязательно сегодня:
```tasks
not done
due on {{title}}
```
неплохо бы раньше, но успеваем:
```tasks
not done
scheduled before {{title}}
due after {{title}}
```
сегодня, но можно потом:
```tasks
not done
scheduled on {{title}}
due after {{title}}
```
## состояние вечером
- сонливость: /10
- ясность мышления: /10
- физика: /10
- итог: /10
## результаты
- достижения:
- благодарность:
- выводы:
```tasks
done on {{title}}
```

View File

@@ -0,0 +1,4 @@
---
aliases:
tags:
---

View File

@@ -0,0 +1,6 @@
---
tags:
- сайты/подтип
---
тут я храню по папкам (категории) ссылки на разные сайты

View File

@@ -0,0 +1,7 @@
---
tags:
- места/название_города
---
тут я храню важные места и заметки к ним, подпапка на город/страну
в основном у меня используется для backlinks, но иногда не только

View File

@@ -0,0 +1,6 @@
---
tags:
- события/тип_события
---
отчеты по конкретным видам событий, дата в названии файла

View File

@@ -0,0 +1,6 @@
---
tags:
- события/тип_события
---
отчеты по событиям, подпапки по годам, дата в названии файла

View File

@@ -0,0 +1,9 @@
---
aliases:
- Полное Имя
tags:
- люди/друг
birthday: 0000-00-00
---
друзья, подруги, все кого знаю

View File

@@ -0,0 +1,9 @@
---
aliases:
- Полное Имя
tags:
- люди/друг/архив
birthday: 0000-00-00
---
те, с кем больше не общаюсь. обычно получают смененный тег

View File

@@ -0,0 +1,9 @@
---
aliases:
- Полное Имя
tags:
- люди/популярные
birthday: 0000-00-00
---
любого рода селебрити

View File

@@ -0,0 +1,9 @@
---
aliases:
- Полное Имя
tags:
- люди/учитель/предмет
birthday: 0000-00-00
---
учителя, коллеги

View File

@@ -0,0 +1,6 @@
---
tags:
- решения/сфера/конкретнее
---
быстрые решения проблем, заметки по программам, то что я умею, но забываю

View File

@@ -0,0 +1,6 @@
---
tags:
- учеба/предмет
---
конспекты, подпапки по учебным заведениям/предметам

View File

@@ -0,0 +1,8 @@
---
tags:
- проекты/сфера
---
подпапки активные/архив
внутри подпапки по сферам деятельности, в них папки по проектам
обычно внутри хаос со всей нужной инфой по проекту

View File

@@ -0,0 +1,7 @@
---
tags:
- дни
---
ежедневная заметка, сюда сконфигурирован плагин Calendar и ежедневные заметки
рабочее поле на каждый день, мелкие мысли, заполнение ежедневной рутины, ход дня

View File

@@ -0,0 +1,7 @@
---
kanban-plugin: board
---
kanban-доски по каждой из сфер (например: организация, работа, учеба, ресерчи)
использую плагин Tasks, проставляю даты выполнения
тут лежит только то что прямо сейчас в работе

View File

@@ -0,0 +1,5 @@
```dataviewjs
await dv.view("мета/скрипты/taskscalendar", {pages: "", view: "week", firstDayOfWeek: "1", options: "style4"})
```
рендерится календарь

View File

@@ -0,0 +1,11 @@
```tasks
no due date
not done
```
```tasks
not done
has due date
```
сюда парсятся задачи

View File

@@ -0,0 +1,8 @@
рабочее поле, статусы по каждой из сфер
# Приоритеты
- приоритетные задачи
# Разные сферы
## Разные проекты
- статус каждого из них и ближайшие планы

View File

@@ -0,0 +1,2 @@
под каждую заметку из досок тут такая же заметка, но сюда кладутся задачи на будущее
добавлена в список исключений в плагине Tasks

View File

@@ -0,0 +1 @@
на случаи когда нужен просто текстовый редактор

View File

@@ -0,0 +1,7 @@
---
aliases:
tags:
- приложения/тип/подтип
---
заметки о разных программах (почти как места/виртуальные, только для программ)

View File

@@ -0,0 +1,9 @@
---
tags:
- "#вещи/тип_вещи"
---
разные виды вещей, категоризованны по видам
напирмер у меня есть папки "духи", "еда", "одежда", "техника"
тут обычно гайды на всякую бытовую технику, под одежду беклинки для сбора фитов и тд
напрямую рецепты тут не храню, советую Mealie для этого (в директории "еда" у меня стандартные списки закупок), но вы можете

View File

@@ -0,0 +1,8 @@
---
tags:
- ресерчи/сфера/задача
---
подпапки на разные сферы
заметки по источникам, вся собранная интересная информация
обычно что-то отсюда в будущем уходит в "навыки" в концентрированном виде

View File

@@ -0,0 +1,6 @@
---
tags:
- медиа/тип
---
описание, заметки и отзыв о просмотренном/прочитанном/прослушанном

View File

@@ -0,0 +1,6 @@
---
tags:
- мысли/тема
---
подпапки под каждую тему, например "философия". что-то, что не является навыком, но слишком большое, чтобы писать в дневник

View File

@@ -0,0 +1,7 @@
---
tags:
- мысли/тип
---
идеи, манифесты, любые лонгриды сгенерированные напрямую из мозга
подпапки по годам, дата в названии файла