obsidian-projects

obsidian-projects is a command for Claude Code from eugeniughelbur/obsidian-second-brain. It costs 20 tokens per session (1,284 once invoked), scanned A, original, MIT.

A command that combines Git repository state with project notes stored as Markdown files in an Obsidian vault. It can show either an overview of tracked projects or detailed context for one project.

In plain words
What is it for?
Use it to review project status, recent activity, next steps, and repository changes across projects, or inspect one project in detail.
Why use it?
It removes the need to check project notes and Git status separately. It also finds project information from existing notes instead of requiring extra configuration.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: mentions subagents.

Part of the obsidian-second-brain plugin — 1 skill, 47 commands, 3 hooks shipped together

Good fit Use it to review project status, recent activity, next steps, and repository changes across projects, or inspect one project in detail.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/eugeniughelbur/obsidian-second-brain/obsidian-projects
About the project

obsidian-second-brain turns an Obsidian vault into persistent, searchable memory for Claude Code and other command-line coding agents, storing knowledge as linked Markdown notes. It is for developers, founders, writers, and researchers who want agents to retain project context across sessions. Its catalogue entries provide commands, hooks, a plugin, a skill, and instructions for capturing, finding, and maintaining that memory.

eugeniughelbur/obsidian-second-brain · 4,376 stars · on GitHub · eugeniughelbur.github.io

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/eugeniughelbur/obsidian-second-brain

Made for: Claude Code.

Or install obsidian-second-brain, the plugin that ships this one along with the rest of its 1 skill, 47 commands, 3 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for obsidian-projects

README.md
[![agentmods](https://agentmods.dev/badge/commands/eugeniughelbur/obsidian-second-brain/obsidian-projects/github.svg)](https://agentmods.dev/commands/eugeniughelbur/obsidian-second-brain/obsidian-projects)
Your own site
<a href="https://agentmods.dev/commands/eugeniughelbur/obsidian-second-brain/obsidian-projects"><img src="https://agentmods.dev/badge/commands/eugeniughelbur/obsidian-second-brain/obsidian-projects/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for obsidian-projects

Your own site · 80×15
<a href="https://agentmods.dev/commands/eugeniughelbur/obsidian-second-brain/obsidian-projects"><img src="https://agentmods.dev/badge/commands/eugeniughelbur/obsidian-second-brain/obsidian-projects.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,284 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.01284
Opus 5 $0.00010 $0.00642
Sonnet 5 $0.00004 $0.00257
Haiku 4.5 $0.00002 $0.00128

Measured 10d ago against content hash 69efd7d37339, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

obsidian-projects scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/obsidian-projects.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Use the obsidian-second-brain skill. Execute /obsidian-projects $ARGUMENTS:

Optional argument: a specific project name. If given, show deep context for that one project only. If no argument, run the full overview for all tracked projects.

Step 1 - discover projects

Read _CLAUDE.md to find the projects folder name, resolved per references/folder-map.md (wiki-style wiki/projects/, Obsidian-style Projects/). If not defined, default to the wiki-style wiki/projects/.

Scan that folder for all .md files. For each file, read its frontmatter. A note is a tracked project if it has type: project OR lives in the projects folder and has a repo: field. Collect:

  • vault_note - the file path
  • name - from name: frontmatter or the filename
  • repo - from repo: frontmatter; absent means non-code project (git steps skip)
  • status - from status: frontmatter if present

If the optional argument was given, filter to the matching project only.

Step 2 - gather state in parallel

Spawn one subagent per project. Each agent runs three checks:

Vault check:

  • Read the project note
  • Extract: status, most recent entry in any Recent Activity section, next_action, open questions, blockers. IGNORE ## Last overview sections - this command writes those, and reading them back would mark stale projects active forever (a feedback loop)

Git check (skip if no repo: field):

  • git -C "<repo>" log --oneline --no-merges -15
  • git -C "<repo>" status --short
  • If the path doesn't exist or isn't a git repo, note it and skip

Docs check (skip if no repo: field):

  • Look for NOTES.md, TODO.md, docs/NOTES.md, docs/TODO.md in the repo root
  • Read the first one found; skip if none exist
  • Extract explicit next steps, blockers, or context not in the vault note

Step 3 - synthesize per project

Merge the three agent results into one status block per project:

  • Status: infer from activity recency: active (commits or vault update in last 7 days, excluding ## Last overview writes), stalled (7-30 days), idle (30+ days), blocked (explicit blocker found). Override with the note's status: field if it says on-hold, completed, or archived.
  • Last session: what was worked on and when. Prefer git commit dates + messages over vault dates.
  • Next action: single most concrete next step. Pull from vault open questions or docs TODO. If unclear, say so - do not invent one.
  • Blocked by: anything explicitly blocking. none if nothing found.

Read the full file on GitHub · 91 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 91 lines · 20 tokens per session scan A 69efd7d37339

Subscribe to this mod's changes

obsidian-projects is a command published in the GitHub repository eugeniughelbur/obsidian-second-brain (4,376 stars, last pushed 2d ago), licensed MIT. It adds 20 tokens to every session and 1,284 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.