Read up on
⚙️ There are many like them, but these dotfiles are mine. A stow-managed macOS setup: Zsh, Neovim, tmux, Ghostty, and a pile of Claude Code tooling.
npx -y skills add magnusrodseth/dotfiles --skill read-up-onAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Jog the agent's memory on a topic, person, or project that lives somewhere in the user's Obsidian vault (second brain). Works from any directory on the machine. Use when the user says "read up on X", "catch me up on X", "what do I know about X", "remind yourself about X", or otherwise asks for a briefing on a subject they expect to be in their vault but won't say where.
SKILL.md
5.7 KB, ~1.5k tokens by cl100k_base, as published. Nobody here has run it
Read Up On
Build a briefing on a topic by discovering and synthesizing everything the vault already knows about it. The user invokes this when they want full context loaded before continuing; they don't know (or care) which files hold the answer.
Can be invoked from ANY project on the machine.
Configuration
Resolve the vault location first, then use $VAULT everywhere below:
if [ -d "$HOME/dev/personal/vault" ]; then
VAULT="$HOME/dev/personal/vault" # local machine (any cwd)
else
VAULT="${CLAUDE_PROJECT_DIR:-$PWD}" # cloud session: the repo IS the vault
fi
The fallback matters in Claude Code cloud/web sessions, where the vault is cloned to a sandbox path and $HOME/dev/personal/vault does not exist. On a local machine the first branch always wins, so behaviour there is unchanged.
All searches below run against $VAULT, regardless of the current working directory.
The vault's auto-memory lives at $HOME/.claude/projects/*-dev-personal-vault/memory/MEMORY.md (glob it; the project dir name encodes the username, which differs between machines). This path does not exist in cloud sessions — if the glob matches nothing, skip the auto-memory step and rely on the notes and git history instead. Do not treat its absence as an error.
When to use
Trigger phrases: "read up on ...", "catch me up on ...", "what do I have on ...", "refresh on ...", "load context on ...".
Topics can be:
- A project (e.g. "REMA 1000 tech lead role")
- A person (e.g. "Øistein", "Daniel Pedersen")
- A concept or domain (e.g. "agentic commerce", "padel")
- A company/product (e.g. "Capra", "Shopify")
If the request is ambiguous (multiple candidate topics), ask one quick clarifying question before searching.
Workflow
Run steps 1-3 in parallel. Then read, then synthesize.
1. Discover candidates (parallel)
Cast a wide net. Norwegian + English variants matter; many vault notes are in Norwegian.
- Filename matches:
find "$VAULT" -iname "*<keyword>*" -type ffor each keyword variant - Full-text grep:
grep -r -l -i "<keyword>" --include="*.md" "$VAULT"for each variant - Auto-memory: read
$HOME/.claude/projects/*-dev-personal-vault/memory/MEMORY.mdand any topic-related memory files next to it - Recent activity:
git -C "$VAULT" log --since="30 days ago" --name-only --pretty=format: -- "*.md" | grep -i <keyword>to surface recent edits
2. Rank candidates
Score each match. Read the top 5-10.
| Signal | Weight |
|---|---|
| Filename matches the topic | +++ |
Lives in Projects/ or Meetings/ | ++ |
Lives in Personal/People/ (for person topics) | +++ |
| Mentioned in auto-memory | ++ |
| Edited in the last 14 days | ++ |
Lives in Learning/ or Notes/ | + |
| Single passing mention | - (skip) |
Skip files where the keyword appears only once in passing (e.g. a tangential [[link]] in an unrelated note).
3. Read top notes (parallel)
Use the Read tool on the top-ranked files in a single batch. Note frontmatter type, related:, and any [[wikilinks]] in the body.
4. Expand one level (selective)
From the notes you just read, collect [[wikilink targets]] that look load-bearing (people mentioned, sister projects, key concepts). Also run a quick backlinks check: grep -r -l "\[\[<TopNoteName>" --include="*.md" "$VAULT" to find what links to the cluster. Read 2-5 of these. Stop here unless the user asks to go deeper.
5. Synthesize the briefing
Output in this structure (skip empty sections):
## <Topic>
**Summary**: 2-3 sentences on what this is and the user's relationship to it.
**Key facts**
- Bullet of the load-bearing facts (dates, decisions, stakes)
**People**
- [[Name]]: role / relevance
**Recent activity** (last 30 days)
- DD.MM.YYYY: what changed, in which note
**Open threads / next steps**
- Anything marked TODO, "waiting on", or implied by recent notes
**Sources**
- [[Note Name]] (Projects/): one-line why this matters
- [[Note Name]] (Meetings/): ...
Cite every claim with a [[wikilink]] to its source note. Don't invent facts the notes don't support.
Heuristics
- Norwegian + English: search both. "Tech lead" and "team lead" and "teamleder" can all hit.
- People topics: always check
Personal/People/first, then meetings they attended. - Project topics: always check
Projects/first, then linked meetings and learnings. - Don't read >12 files on the first pass. If you need more, surface a "want me to go deeper?" prompt.
- Respect language: if source notes are in Norwegian, the briefing can mix Norwegian quotes with English framing; match what the user used in their request.
Example
User: "read up on everything REMA 1000 and the tech lead role"
- Parallel:
find "$VAULT" -iname "*rema*",grep -ril rema "$VAULT",grep -ril "tech lead\|team lead\|teamleder" "$VAULT", readMEMORY.md,git -C "$VAULT" log --since="30 days ago" | grep -i rema. - Rank:
Projects/REMA 1000 App - Team Lead Opportunity.md(filename match + project folder) ranks top. Next: meetings with Øistein/Henning, thenPersonal/People/Øistein Burøy Olsen.md, then prep docs inProjects/. - Read top 8 in one batch.
- Follow
[[Øistein Burøy Olsen]],[[Anders Rodem]],[[Henning Hønsvall Meierhaugen]]wikilinks. Backlinks grep on the main project note. - Output a structured briefing with sources.