YouTip LogoYouTip

Obsidian Workflows

Obsidian Workflow Setup |

\\n\\n

The features learned so far are like scattered tools in a toolbox—you know how to use a hammer or a screwdriver, but haven’t yet learned how to build a table.

\\n\\n

This chapter connects core features and plugins into 5 practical workflows, helping you upgrade from “knowing how to use tools” to “having a system.”

\\n\\n
\\n\\n

Reading Notes Workflow

\\n\\n

Reading is the primary way of knowledge input. This workflow helps turn a book into a long-term, searchable, and linkable asset.

\\n\\n

Workflow Overview

\\n\\n
    \\n
  1. Create a book home note: Use a template to quickly create a note and record the book’s metadata.
  2. \\n
  3. Record excerpts and annotations while reading: Use Callouts to distinguish between quoted text and personal thoughts.
  4. \\n
  5. Extract core concept notes: Turn important concepts from the book into atomic notes.
  6. \\n
  7. Establish links between concepts: Connect new concepts to your existing knowledge network.
  8. \\n
\\n\\n

Book Home Template

\\n\\n
---\\ntitle: "Book Title"\\nauthor: "Author Name"\\ntags:\\n  - Reading\\n  - Type/Technology\\nrating: 4\\ndate_started: 2026-05-01\\ndate_finished: 2026-05-20\\nstatus: Finished Reading\\n---\\n
\\n\\n

Body Structure

\\n\\n

Example

\\n\\n
# 《Book Title》\\n\\n## 3-Sentence Summary\\n\\n1. What is the book’s core idea?\\n\\n2. What is the most valuable insight?\\n\\n3. Who is it for, and what problem does it solve?\\n\\n## Core Concepts\\n\\n- []: One-sentence explanation\\n\\n- []: One-sentence explanation\\n\\n- []: One-sentence explanation\\n\\n## Excerpts & Annotations\\n\\n> [!quote] Excerpt\\n\\n> This is an important passage from the book.\\n\\nMy understanding: This passage means... It reminds me of [].\\n\\n> [!quote] Excerpt\\n\\n> Another important passage.\\n\\nMy understanding: This conflicts with Author A’s view because...\\n\\n## Action Checklist\\n\\n-  Try applying Concept A\\n-  Apply Concept B to my project\\n-  Reread Chapter 3 and add more notes\\n
\\n\\n

Dataview Aid: Book Dashboard

\\n\\n

On your homepage or a dedicated dashboard note, use Dataview to summarize all books:

\\n\\n

Example

\\n\\n
```dataview\\nTABLE author, rating, date_finished, status\\nFROM "Reading"\\nWHERE type = "book"\\nSORT date_finished DESC\\n\\n
\\n\\n
\\n\\n

Daily Workflow (Simplified GTD)

\\n\\n

This workflow doesn’t require formal GTD training—it only adopts the most practical parts.

\\n\\n

Daily Process

\\n\\n
    \\n
  1. Morning: Open today’s daily note and list 3 daily goals.
  2. \\n
  3. Daytime: Record ideas, add tasks, or update progress anytime in the daily note.
  4. \\n
  5. Evening: Review the day, check off completed tasks, and write a brief summary.
  6. \\n
\\n\\n

Daily Note Template (Templater Version)

\\n\\n

Example

\\n\\n
---\\ntags: \\ncreated: <% tp.date.now("YYYY-MM-DD")%>\\n---\\n\\n# <% tp.date.now("YYYY-MM-DD dddd") %>\\n\\n## Today’s Goals\\n\\n-  Goal 1\\n-  Goal 2\\n-  Goal 3\\n\\n## Notes & Ideas\\n\\n(Record ideas, inspirations, or temporary tasks anytime)\\n\\n## Today’s Summary\\n\\n### What Was Accomplished\\n\\n### Difficulties Encountered\\n\\n### One Key Focus for Tomorrow\\n\\n<% tp.date.tomorrow("YYYY-MM-DD dddd")%>\\n
\\n\\n

Summarize Incomplete Tasks with Dataview

\\n\\n

Place a Dataview query block on your homepage note to automatically collect all incomplete tasks from daily notes:

\\n\\n

Example

\\n\\n
```dataview\\nTASK\\nFROM "00-Diary"\\nWHERE !completed\\nSORT file.day DESC\\nLIMIT 20\\n\\n
\\n\\n

Weekly Review (Optional)

\\n\\n

Every Sunday, spend 15 minutes writing a weekly review note containing:

\\n\\n

Example

\\n\\n
# 2026-W21 Weekly Review\\n\\n## This Week’s Accomplishments\\n\\n- Completed X\\n- Progressed Y\\n\\n## Incomplete Tasks\\n\\n```dataview\\nTASK\\nFROM "00-Diary"\\nWHERE !completed AND file.day >= date(2026-05-18) AND file.day <= date(2026-05-24)\\n\\n## Next Week’s Focus\\n\\n1. Focus 1\\n2. Focus 2\\n
\\n\\n
\\n\\n

Learning Notes Workflow (Simplified Zettelkasten)

\\n\\n

This is a practical adaptation of the Zettelkasten methodology, tailored for technical professionals and students.

\\n\\n

Three Types of Notes

\\n\\n\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n
TypeSourceFeaturesStorage Location
Scratch NotesIdeas or inspirations that pop up anytimeNo formatting required; quick captureDaily Note or inbox folder
Literature NotesNotes taken while reading books, articles, or tutorialsParaphrased in your own words, with original source citedResource folder for the relevant domain
Permanent NotesRefined versions of scratch and literature notesAtomic, one concept per note, linked via bidirectional linksScattered across the vault; discovered via links, not folders
\\n\\n

Practical Steps

\\n\\n
    \\n
  1. When learning something new, first record it in your daily note or temporary note (scratch note).
  2. \\n
  3. DuringOrganization, rewrite core concepts as independent notes (literature notes → permanent notes).
  4. \\n
  5. Add bidirectional links to each concept note, connecting it to existing knowledge.
  6. \\n
  7. Open the backlinks panel to check whether your new note is naturally referenced elsewhere.
  8. \\n
\\n\\n

Concept Note Template

\\n\\n

Example

\\n\\n
---\\ntags:\\n  - Concept\\n  - Programming\\ncreated: 2026-05-21\\naliases:\\n  - Concept Alias\\n---\\n\\n# Concept Name\\n\\n## One-Sentence Definition\\n\\nClearly define the concept in one sentence.\\n\\n## Detailed Explanation\\n\\nExplain the concept in your own words—avoid copying textbook content.\\n\\n## Why It Matters\\n\\nIn what scenarios is it useful? What problem does it solve?\\n\\n## Related Concepts\\n\\n- []: Prerequisite knowledge\\n- []: Further reading\\n- []: Contrasting or opposing concept\\n\\n## Code Example (Optional)\\n\\n```python\\n# A minimal runnable example\\n\\n
\\n\\n
\\n

The core idea of Zettelkasten is “write your own understanding,” not “copy others’ words.” If you onlyCopy-paste (Copy-paste meansCopy-pasteTransfer—Copy-paste porter =Copy-pasteTransfer worker) textbook content into Obsidian, you’re just aCopy-pasteTransfer worker—not truly internalizing knowledge.

\\n
\\n\\n
\\n\\n

Writing Workflow

\\n\\n

From idea to publication—everything happens inside Obsidian.

\\n\\n

Four-Stage Workflow

\\n\\n\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n
StageNote TypeTools
Material CollectionScratch notes, excerpt cardsDaily Note + Quick Capture
Outline PlanningOutline noteOutline panel + Canvas drag-and-drop
Draft WritingDraft noteEditor area + Focus Mode
Publishing & ExportFinal versionExport PDF / Obsidian Publish / Pandoc to other formats
\\n\\n

Material Collection Stage

\\n\\n

Whenever you encounter content related to your writing topic during daily reading or thinking, record it immediately.

\\n\\n

For each writing project, create a “material pool” note and use Dataview to query content tagged with #Writing/Project Name.

\\n\\n

Outline Planning Stage

\\n\\n

Create outline cards in Canvas and drag them to reorder. Use connections to indicate logical relationships.

\\n\\n

Alternatively, write an outline note directly, using heading hierarchy to represent chapter structure, and use the outline panel for a global view.

\\n\\n

Draft Writing Stage

\\n\\n

Press Cmd+P → “Focus Mode” to hide all sidebars.

\\n\\n

After writing each section, use %%comment%% (Obsidian’s comment syntax) below to mark revisions. These comments are visible only in edit mode and hidden in preview mode.

\\n\\n

Publishing & Export

\\n\\n
    \\n
  • Export PDF: Use Obsidian’s built-in export feature.
  • \\n
  • Export Word/HTML: Install the Pandoc plugin to convert Markdown to various formats.
  • \\n
  • Build a Digital Garden: Use Obsidian Publish to publish your entire vault as a website.
  • \\n
\\n\\n
\\n\\n

Project Management Workflow

\\n\\n

Use Obsidian to track progress across multiple projects—not as a replacement for Jira, but as a personal project dashboard.

\\n\\n

Project Note Template

\\n\\n

Example

\\n\\n
---\\ntags:\\n  - Project\\nstatus: In Progress\\ndeadline: 2026-06-15\\npriority: High\\n---\\n\\n# Project Name\\n\\n## Goal\\n\\nOne-sentence description of the desired outcome.\\n\\n## Key Milestones\\n\\n-  Milestone 1: Specific deliverable — Deadline: 2026-05-30\\n-  Milestone 2: Specific deliverable — Deadline: 2026-06-10\\n-  Milestone 3: Specific deliverable — Deadline: 2026-06-15\\n\\n## In-Progress Tasks\\n\\n-  Task 1\\n-  Task 2\\n\\n## Project Notes\\n\\n- []\\n- []\\n\\n## Blockers\\n\\n(Record current issues blocking progress)\\n
\\n\\n

Create a Project Dashboard with Dataview

\\n\\n

Example

\\n\\n
```dataview\\nTABLE deadline, priority, status\\nFROM "10-Projects"\\nWHERE status != "Archived"\\nSORT priority ASC, deadline ASC\\n\\n
\\n\\n

Place all project notes on your homepage or dashboard note for a clear overview of overall progress.

\\n\\n
\\n\\n

Homepage Design Suggestions

\\n\\n

A well-designed homepage (Home Note) is the first interface you see every time you open Obsidian.

\\n\\n

Recommended structure:

\\n\\n

Example

\\n\\n
# Welcome back ?\\n\\n## Quick Links\\n\\n- [[00-Journal/{{date}}|Today’s Diary]]\\n- []\\n- []\\n\\n## Current Projects\\n\\n```dataview\\nTABLE status, deadline\\nFROM "10-Projects"\\nWHERE status = "In Progress"\\n\\n## Incomplete Tasks\\n\\n```dataview\\nTASK\\nFROM "00-Diary"\\nWHERE !completed\\nLIMIT 10\\n\\n## Recently Updated Notes\\n\\n```dataview\\nTABLE file.mtime as "Last Modified"\\nFROM ""\\nSORT file.mtime DESC\\nLIMIT 5\\n\\n
\\n\\n
\\n

The homepage’s purpose is not “to look nice,” but “to be useful.” Put the information you most need to see every time you open Obsidian—such as today’s to-dos, ongoing projects, or recently modified notes—on your homepage. Keep refining it until it truly becomes your main entry point.

\\n
\\n\\n
\\n\\n

Workflow Selection Recommendations

\\n\\n

You don’t need to adopt all five workflows at once. Build them progressively, following this priority:

\\n\\n\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n
PhaseStart WithReason
Week 1Daily Workflow + HomepageEstablish the habit of opening Obsidian daily; other workflows naturally extend from this.
Week 2Learning Notes WorkflowMost directly applicable if you’re currently learning new material.
Month 1Reading Notes WorkflowApply the template when starting your next book.
As NeededWriting / Project Management WorkflowBuild only when you have concrete writing or project tasks—avoid building empty frameworks in advance.
← Qoderwake UsageObsidian File Organization →