Use when taking notes during a lecture, seminar, class, or while reading a dense text — to capture information in a structured three-section format that builds in review, retrieval practice, and summarization without extra study sessions.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add jeffreytse/grimoire-core --skill apply-cornell-notes --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Apply Cornell Notes?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jeffreytse-apply-cornell-notes)More formats (shields.io, HTML) on the badges page.
---
name: apply-cornell-notes
description: Use when taking notes during a lecture, seminar, class, or while reading a dense text — to capture information in a structured three-section format that builds in review, retrieval practice, and summarization without extra study sessions.
source: 'Walter Pauk, "How to Study in College" (1962, 10th ed. 2013, Cengage Learning); AVID College Readiness System methodology; Hattie, "Visible Learning" (2009); Williams & Eggert, "A Meta-Analysis of the Efficacy of Note-Taking Strategies", Journal of Educational Research (2002)'
tags: [note-taking, active-learning, study, cornell-notes, learner, retention]
---
# Apply Cornell Notes
Divide your note page into three sections — right column for real-time capture, left column for review questions written after, and a bottom summary written from memory — building retrieval practice directly into the note-taking workflow without requiring a separate study session.
## Why This Is Best Practice
**Adopted by:** AVID (Advancement Via Individual Determination) mandates Cornell Notes as its core note-taking system across 6,000+ schools in all 50 US states, serving approximately 650,000 students annually — the largest structured academic readiness program in the United States. Taught in academic skills programs at Cornell University, Penn State, University of Arizona, University of Edinburgh, and the majority of US and UK university learning centers. Walter Pauk's "How to Study in College" — the canonical study skills textbook, 10 editions over 50 years — describes and advocates Cornell Notes throughout.
**Impact:** Hattie's Visible Learning (2009, 800+ meta-analyses) rates note-taking strategies at effect size ~0.44, above the 0.40 meaningful-intervention threshold. Williams & Eggert (2002) meta-analysis of note-taking research found that organized, review-oriented note-taking (the Cornell model) consistently outperforms linear transcription for retention on assessments. The cue column mechanism is a direct implementation of retrieval practice: Roediger & Karpicke (2006) demonstrated that a single retrieval attempt produces 50% better long-term recall than re-studying for equal time. Pauk's key insight — that the review cue questions must be written after, not during, the lecture — forces active reformulation that encodes material more deeply than transcription.
**Why best:** Linear note-taking (writing everything in sequence) is efficient for capture but creates no built-in review mechanism — the notes sit unused until exam time. Cornell Notes does what linear notes cannot: it forces active review within 24 hours (cue column), builds a retrieval practice routine (cover the notes, answer from cues), and requires summary synthesis (bottom strip). The alternative — taking linear notes and then making flashcards or summaries separately — requires a separate study session that most learners skip. Cornell Notes makes the review non-optional: the cue column is blank until you fill it, which creates visible incompleteness that drives completion.
Sources: Walter Pauk (1962, 2013); AVID methodology; Hattie (2009) "Visible Learning"; Williams & Eggert (2002); Roediger & Karpicke (2006)
## Steps
### Step 1 — Set up the page
Divide every note page into three regions before the lecture or reading session:
```
┌─────────────────────────────────────────────────────┐
│ CUE COLUMN │ NOTES COLUMN │
│ (~2.5 in / 30%) │ (~6 in / 60–65%) │
│ │ │
│ [Fill in AFTER] │ [Capture DURING] │
│ │ │
│ │ │
│ │ │
│ │ │
├──────────────────────┴──────────────────────────────┤
│ SUMMARY STRIP (~2 in / bottom of page) │
│ [Write from memory AFTER reviewing cues] │
└─────────────────────────────────────────────────────┘
```
For digital note-taking: use a two-column table (30%/70%) with a merged footer row. In Notion, OneNote, or Obsidian: create templates with this structure so setup time is zero.
### Step 2 — Capture in the Notes column (right) — during the session
Write in the right column only. Rules:
- Use phrases and abbreviations, not complete sentences
- Capture main ideas + supporting details + key examples
- Leave 2–3 blank lines between distinct topics — space to add details later
- Indent: supporting points go below and indented from the main point they support
- Mark confusion with a `?` in the margin — do not stop to resolve during capture
```
Example (lecture on HTTP caching):
Cache-Control header — tells browser how to cache
max-age=3600 → browser can use cached copy for 1hr
no-store → never cache (sensitive data)
must-revalidate → check with server before using expired cache
ETag — fingerprint of resource content
server sends ETag in response
browser sends If-None-Match on next request
if unchanged: 304 Not Modified (no body sent) → faster
? When does browser decide cache is "stale"?
```
Do NOT fill the cue column during capture. The right column is for raw notes; the left is for later.
### Step 3 — Fill the Cue column — within 24 hours
Within 24 hours of the lecture or reading session (before the next one):
1. Re-read your notes in the right column
2. Cover the right column with your hand or a card
3. For each cluster of notes, write a question or keyword in the left cue column that could prompt recall of that content
```
Example (same notes):
CUE COLUMN │ NOTES COLUMN
─────────────────────────┼────────────────────────────────
What does Cache-Control │ Cache-Control header — tells
do? 3 key directives? │ browser how to cache
│ max-age=3600 → ...
─────────────────────────┼────────────────────────────────
What is ETag? How does │ ETag — fingerprint of resource
conditional GET work? │ content ...
─────────────────────────┼────────────────────────────────
```
Cue quality check: can you answer the cue question without looking at the right column? If not, rewrite the cue to be more specific.
### Step 4 — Write the Summary strip — from memory
At the bottom of each page, after completing the cues, write a 3–5 sentence summary of the page's content without looking at the notes:
```
Cache-Control and ETag are the two primary HTTP caching mechanisms. Cache-Control
sets policy for how long a response can be reused without checking the server;
no-store disables caching entirely for sensitive responses. ETags enable conditional
requests — the browser reuses its cached copy if the ETag matches, receiving a 304
Not Modified instead of a full response body.
```
If you cannot write the summary without looking at the notes, re-read the right column and try again. The inability to summarize reveals where understanding is incomplete.
### Step 5 — Review with the Cue column (retrieval practice)
For scheduled review (daily → weekly → spaced per your schedule):
1. Cover the right column — expose cue column only
2. Read each cue question and answer it aloud or in writing from memory
3. Uncover to verify — mark items you could not answer with `✗`
4. For `✗` items: re-read the right column and reattempt from memory (not just re-read)
```
Review session (5–10 min per page):
"What does Cache-Control do? 3 key directives?" → answer without looking
Uncover → verify → ✓ or ✗
"What is ETag? How does conditional GET work?" → answer without looking
Uncover → verify → ✓ or ✗
```
Items marked `✗` go into the next spaced repetition cycle (see `apply-spaced-repetition`).
## Rules
- Fill the cue column within 24 hours — Pauk's research showed that 80% of detail fades within 24 hours of a lecture without active review; the 24-hour cue-writing window is the intervention point.
- Write the summary from memory, not copied text — copying from notes is re-reading; summary from memory is retrieval. The difficulty of recall is the mechanism that drives retention.
- Never fill the cue column during capture — writing cues during the lecture means half-attending to both tasks; cue quality degrades and note capture suffers.
- One cue per distinct idea cluster, not one per sentence — granular cues that match every sentence create low-signal review; cues should span a concept worth knowing, not a transcribed sentence.
## Common Mistakes
- **Filling cues by re-reading notes and copying keywords** — cues copied from notes produce recognition, not recall. Write cues after covering the right column; if you look at notes to write cues, you're not generating retrieval prompts.
- **Skipping the summary strip** — the summary is the highest-synthesis step; learners who skip it treat Cornell Notes as a layout, not a method. No summary = no final encoding pass.
- **Taking notes in both columns simultaneously** — the cue column must be filled after, not during. Real-time cue writing prevents capturing lecture content and produces poor cues.
- **Using Cornell Notes for narrative or procedural content without headings** — works best for expository content (lectures, textbooks). For step-by-step procedures or stories without discrete concepts, the cue question format doesn't map cleanly; adapt the left column to "trigger words" rather than questions.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!