My Obsidian People Note Template

Dann Berg
7 min readOct 20, 2022

--

By Dann Berg

Feel free to skip the fluff and navigate directly to the raw People Page template.

I recently shared the template that I created for my Daily Notes, and many people found it useful. As a follow up, I wanted to share how I manage people in my Obsidian universe.

For me, the most common use-case for People entries in Obsidian is for meeting notes. I add an attendee list to every meeting note I take, with each name linking to a page that’s been populated with the People Template I share here.

A useful People page should contain the following information:

  • At-a-glance information about who a person is
  • How to contact them
  • Additional notes (maybe a fun fact?)
  • List of all meetings we’ve attended together

In this post, I’ll first walk you through the template itself, and then share how I use it in my day-to-day note taking.

Setting up the People template

These are the plugins you’ll need:

You’ll want to install the plugins directly through Obsidian.

Next, create a new note and paste in the contents of my People page template (or a version that’s been modified for your needs). Move this file to the directory where you store your other templates (I use Extras/Templates, and make sure that the Templater plugin settings point to this same location.

At the very top of the page, as YAML metadata, I like to include all the at-a-glance information I might need about a person. For me, this includes:

Additionally, if you want more of a CRM-style system, you can add the following items here:

I don’t fill in all this information for each person, but I try to immediately fill out as much relevant information as I can when I first create the note. Usually this means filling in company, title, and email at a minimum. Location is also useful, since so much of life happens remote these days.

The aliases section isn't just for nicknames. Aliases are a powerful Obsidian-specific tool that allows you to refer to the same note as different names, in different contexts. For example, if I have a People page with the name Dann Berg, I could add aliases: [Daniel Berg, Dann] to the YAML metadata and then [[Dann Berg]], [[Daniel Berg]], and [[Dann]] would all link to the same People page.

Next, every new People page automatically gets the [[People MOC]] tag. This bi-directionally links this new page to my main People Map of Content (MOC).

If you want to link this People page to other pages within your note-taking system (beyond meetings, which we’ll cover below), this is typically where I’d do it.

Templater Plugin organization

The next two lines are specifically for the Templater plugin. When Templater processes this note, each line here will perform a different action.

The line # <% tp.file.title %> will take the file name and make it a H1 headline in the note.

The line <% await tp.file.move("/Extras/People/" + tp.file.title) %> moves the note into a specific directory. For me. it's /Extras/People/, since that is there I keep all my People notes.

If using the QuickAdd plugin to create a new note, all this will run auto-magically in the background, if everything is set up correctly. If not, you can run Templater manually. This depends on how you create the note, which I’ll cover below.

Notes

This is pretty straightforward. Each new People note has a Notes section, with an empty bullet point waiting to be filled in. For me, this is optional — I probably fill out the Notes section for 40–50% of my contacts.

When I do fill this out, it’ll be with either some fun fact, or otherwise interesting note that I feel might be interesting to recall at some point in the future.

Meetings

(Easily copy-and-paste this code from Github)

For me, this is the real meat of the People note. Using the Dataview plugin, I draw a table that lists all the meeting notes from meetings I’ve attended with this person.

There are three columns in this table: the File name, the file creation date, and a meeting “Summary” that I write in the YAML of each meeting.

My Meeting template deserves it’s own post, but until I sit down and write that post, I’ll share my Meeting template in case you want to use it in tandem with this People note template.

In order to get the Dataview table to populate correctly with meeting notes, as it is currently written in my template, each Meeting note needs the following:

  1. To be located in the directory Timestamps/Meetings (you can use a different directory, just make sure you update the Dataview code)
  2. To have a bi-directional link to the People Note (where contains(file.outlinks, [[<% tp.file.title %>]])
  3. A summary: section in the YAML

A note taking system is only as strong as your ability to recall information. If all you’re doing is taking notes, but never using this notes, then it’s the same as never taking notes at all.

For me, information that’s on the tip of my tongue is often linked in my brain to a conversation with an individual. Being able to traverse all the meeting notes linked to a given person, each of which include a brief summary, greatly increases the usability of my note-taking system.

Templater

In Templater, you should make sure the template settings point to the correct template folder directory.

Additionally, you may want to scroll down a bit and enable Folder Templates. This will automatically apply a template to all new notes created in a specific directory. I don’t actually use this in any of my processes, but I have it set up anyway.

QuickAdd

QuickAdd is how I primarily add new notes. To use this, you’ll want to navigate to the plugin settings page, and add a new “choice” for People. Once that’s created, click into the settings for that People Choice and specify the People template location, as well as all the settings you want to enable. I’ve included a screenshot of the settings I use.

Once this is set up, you’ll be able to press Command-P, then type “people” into the Command Palette to QuickAdd a new People page. It will create the new note in the correct directory with the correct template.

Create a new People note anytime

Press Command-P to open the Control Palette. Type “people” and select the “People” QuickAdd command.

At the prompt, enter the full name of the person.

A note will be created in the correct directory, using the correct template, and Templater will automatically expand the template for you. Fill in the information you want to save for that person, and continue your work.

In a meeting

This is where I mostly create new People notes. Before, or at the start of, a meeting, create a new meeting note and add the names of each attendee to the Attendees section.

If people in your meeting already have a People note, add brackets [[ ]] around their name to link to their page. Their name will show as a bright, valid link if they have an existing page tied to the name you typed.

For creating new People notes for people in a meeting, you have two options:

Option 1: Manually create from Meeting note

I mostly create new People pages manually from my meetings. This method is not the most optimized, but I’ve got the muscle memory so it’s what works quickest for me at the moment.

  1. If there’s someone new that you want to create a new People page for, add brackets [[ ]] around their name. Since their page does not yet exist, their link will show is slightly greyed.
  2. Command-Click their name to create a new note from their name (holding command while clicking will open it in a new tab)
  3. Type Command-P to open the Command Palette, then type “template” and select “Insert Template” then type “People” to select the People Template
  4. Type Command-P to open the Command Palette again, and type “tempalter” and select Replace Templates in the active file. This expands all the Templater code

From there, you can fill in the People note as desired.

This method is a bit more optimized, which means fewer steps.

  1. Copy the name from the Attendee list
  2. Type Command-P to open the Command Palette, then type “People” to select the People QuickAdd command
  3. Paste the name of the person from your attendee list

That’ll create the new People note, in the correct directory, with an expanded template. Fill in the People note as desired, and make sure your meeting note links to this new page by adding brackets [[ ]] around the name.

Dive deeper in Obsidian

Found this useful? I also wrote about my Daily Note template, as well as how I use Obsidian to recall books I read.

Originally published at https://dannb.org on October 20, 2022.

--

--

Dann Berg

FinOps Aficionado. Formerly FinOps @ Datadog, FullStory. Tech guy and playwright. Visit me https://dannb.org