Back to tutorials

Apply the Question Test

beginner 15 minutes

What You’ll Build

A sorted inventory of 10 project items placed into the correct triad leg. By the end, you’ll be able to instantly sort any new file into what/, how/, or who/ using the question test.

Prerequisites

  • Understand the triad (what/how/who)
  • Understand the ontology (entity types within each leg)

Steps

Step 1: Learn the Test

The question test is one question with three answers:

“Is this about WHAT we know, HOW we work, or WHO is involved?”

AnswerTriad LegIt belongs here if…
WHAT we knowwhat/Its primary purpose is to capture knowledge
HOW we workhow/Its primary purpose is to drive action
WHO is involvedwho/Its primary purpose is to describe people or relationships

That’s it. One question. Three possible answers. Every file in the project gets exactly one.

Step 2: Sort 10 Items

Here are 10 items from a hypothetical biotech research project. For each, ask the question and write your answer:

#ItemYour Answer
1A research summary on CRISPR gene editing
2A sprint plan for the next two weeks
3The team roster with roles and contact info
4A decision record choosing Python over R
5A template for writing experiment reports
6Notes from a meeting between the PI and the postdoc
7A context file on protein folding methods
8A mission plan to build the data pipeline
9The lab’s code of conduct
10A lattice YAML defining the analysis workflow

Step 3: Check Your Answers

#ItemQuestionAnswerDirectory
1CRISPR research summaryWHAT do we know?Knowledgewhat/context/
2Sprint planHOW do we work?Actionhow/missions/
3Team rosterWHO is involved?Peoplewho/team/
4Decision record (Python vs. R)WHAT do we know?Knowledgewhat/decisions/
5Experiment report templateHOW do we work?Actionhow/templates/
6Meeting coordination notesWHO is involved?Peoplewho/coordination/
7Protein folding context fileWHAT do we know?Knowledgewhat/context/
8Data pipeline mission planHOW do we work?Actionhow/missions/
9Code of conductWHO is involved?Peoplewho/governance/
10Analysis workflow latticeWHAT do we know?Knowledgewhat/lattices/

Common trip-ups:

  • Item 4 (decision record): You might think “deciding is an action → HOW.” But the record captures knowledge about what was decided and why. The decision process was HOW; the record is WHAT.
  • Item 6 (meeting notes): Could feel like “knowledge from the meeting → WHAT.” But coordination notes describe people communicating — WHO is involved in this conversation.
  • Item 9 (code of conduct): Could feel like “a rule → HOW we work.” But it governs people’s behavior and relationships — WHO is involved and what standards they follow.

Step 4: Apply to Your Own Project

List 5 files from a real project you’re working on. Apply the question test to each:

FileQuestionTriad Leg

If any item feels like it belongs in two legs, it’s trying to do two things. Split it. A “team sprint plan” is two files: the team roster (WHO) and the sprint plan (HOW).

What You Learned

  • The question test always produces exactly one answer
  • Edge cases usually involve files trying to serve two purposes — split them
  • The test works for any content type: documents, code, data, configs
  • Consistent sorting makes the vault navigable for both humans and agents

Next Steps