obsidian-enrich-note

obsidian-enrich-note is a skill for Claude Code, Codex from alexeyshishin/as-skill. It costs 122 tokens per session (836 once invoked), scanned A, original, MIT.

An Obsidian note-editing skill that fills in navigation fields in a note's frontmatter, the metadata block at the top of the file.

In plain words
What is it for?
Use it to add aliases and related-note links in the `up`, `down`, and `other` fields, especially for notes in an inbox folder.
Why use it?
It improves how a note can be found and connected without moving the file or changing its main text, tags, links, or sources.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to add aliases and related-note links in the up, down, and other fields, especially for notes in an inbox folder.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alexeyshishin/as-skill/obsidian-enrich-note
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.

Any agent
npx skills add alexeyshishin/as-skill --skill obsidian-enrich-note
Clone the repo
git clone --depth 1 https://github.com/alexeyshishin/as-skill

Made for: Claude Code, Codex.

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-enrich-note

README.md
[![agentmods](https://agentmods.dev/badge/skills/alexeyshishin/as-skill/obsidian-enrich-note/github.svg)](https://agentmods.dev/skills/alexeyshishin/as-skill/obsidian-enrich-note)
Your own site
<a href="https://agentmods.dev/skills/alexeyshishin/as-skill/obsidian-enrich-note"><img src="https://agentmods.dev/badge/skills/alexeyshishin/as-skill/obsidian-enrich-note/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-enrich-note

Your own site · 80×15
<a href="https://agentmods.dev/skills/alexeyshishin/as-skill/obsidian-enrich-note"><img src="https://agentmods.dev/badge/skills/alexeyshishin/as-skill/obsidian-enrich-note.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 122 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 836 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.00122 $0.00836
Opus 5 $0.00061 $0.00418
Sonnet 5 $0.00024 $0.00167
Haiku 4.5 $0.00012 $0.00084

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

Security

Grade A, and why

obsidian-enrich-note 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 11d 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.

domains/obsidian/skills/obsidian-enrich-note/SKILL.md · 93 lines

How it starts

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

obsidian-enrich-note

A targeted frontmatter update without moving the file and without changing tags. Only these change: aliases, up, down, other. The note body, tags, links, sources are left untouched.

Semantics of the up/down/other/links fields — in .claude/rules/content-style.md. Vault structure — in .claude/rules/vault-struct.md.

When NOT to use this

Situation Use instead
Need to change tags and move the note obsidian-refactor-inbox
First need to understand what's in the inbox obsidian-inbox-review
The note needs to be split obsidian-split-note

Algorithm

1. Read the note

Note down the main topic and the key concepts from the title and body.

2. Compose aliases

Think like the user's search query:

  • Synonyms of the concept
  • English equivalent (if the term is well-established)
  • Abbreviations
  • Alternative spellings
aliases:
  - Закон Гудхарта
  - Goodhart's Law
  - Goodhart Law

3. Find links

rg -l "KEYWORD" "03. Ресурсы/" "02. Сферы/" | head -20

Where to look:

  • 02. Сферы/07. Карты/ — candidates for up (MOC)
  • 03. Ресурсы/<Тема>/База знаний/ — atomic notes on adjacent topics (other)
  • If the topic relates to a person, there's no dedicated folder yet — search the whole vault for an existing note about them before adding an other link

4. Fill in the fields

Rules (from content-style.md):

  • up — the parent topic / MOC this note derives from (from specific to general)
  • down — what this note gives rise to (from general to specific)
  • other — horizontal links (adjacent topics, people, MOCs that don't fit under up/down)

An empty field is fine if there's no link. Don't make things up.

5. Update frontmatter via Edit

If a field is already filled — add to it, don't overwrite it. Wikilinks — in quotes if they contain a colon or start with [[:

aliases:
  - Синоним 1
  - English Name
up:
  - "[[Родительская тема]]"
down:
  - "[[Дочерняя тема]]"
other:
  - "[[Смежная тема]]"
  - "[[Имя Человека]]"

Read the full file on GitHub · 93 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 93 lines · 122 tokens per session scan A 62f6c92b20bc

Subscribe to this mod's changes

obsidian-enrich-note is a skill published in the GitHub repository alexeyshishin/as-skill (4 stars, last pushed 22d ago), licensed MIT. It adds 122 tokens to every session and 836 once invoked, about $0.0006 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-31.