Obsidian Alchemy

Transform your vault into a living, breathing second brain with these advanced PKM techniques, forged in the fires of expert practice.

Proactive Future-Proofing

Structural decisions that pay dividends as your vault grows from hundreds to thousands of notes.

Atomic vs Evergreen

When to use atomic notes for raw information and evergreen notes for synthesized knowledge.

Advanced Strategy

Metadata Schemas

Design metadata fields that remain useful as your vault scales (status, context, projects).

System Design

Linking Strategies

How to create meaningful connections between notes without creating a tangled web.

Connective Tissue

Folder vs Tag Systems

When to use folders for structure and tags for cross-cutting concerns in large vaults.

Structural Decision

Vault Maintenance & Scalability

Keep your vault running smoothly as it grows from a small collection to an extensive knowledge base.

Task Frequency Tools Impact
Orphan Note Cleanup Monthly Dataview High
Broken Link Audit Quarterly Various Plugins Medium
Metadata Consistency Check Bi-Annual Templater High

Alchemist's Code Spells

Powerful scripts and automations to transform your vault into a thinking partner.

templater-autotag.js
// Auto-tag new notes based on folder location
module.exports = async function(params) {
    const file = app.workspace.getActiveFile();
    const folder = app.vault.getAbstractFileByPath(file.path).parent.path;
    
    if (folder.includes("Literature")) {
        await app.fileManager.processFrontMatter(file, fm => {
            if (!fm.tags) fm.tags = [];
            if (!fm.tags.includes("literature")) {
                fm.tags.push("literature");
            }
        });
    }
    
    // Add more conditions for other folders
};