Transform your vault into a living, breathing second brain with these advanced PKM techniques, forged in the fires of expert practice.
Structural decisions that pay dividends as your vault grows from hundreds to thousands of notes.
When to use atomic notes for raw information and evergreen notes for synthesized knowledge.
Design metadata fields that remain useful as your vault scales (status, context, projects).
How to create meaningful connections between notes without creating a tangled web.
When to use folders for structure and tags for cross-cutting concerns in large vaults.
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 |
Powerful scripts and automations to transform your vault into a thinking partner.
// 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
};