Agent skill · Workflow & Productivity

linking-notes

Discover and add wiki-links between notes. Use when asked to "find connections", "link this note", "what should I link to", or "connect my notes".

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill linking-notes --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: ReadGlobGrep
Path: skills/analysis/linking-notes/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Discovering Wiki-Link Connections This skill helps find meaningful connections between notes in the knowledge base. ## Workflow ### 1. Identify the Target Note If a specific note is mentioned, read it first: ```bash # List all content to find the note ls content/*.md ``` Extract from the target note: - Title - Tags - Key concepts/terms - Existing wiki-links ### 2. Search for Related Content **By Title Mentions:** ```bash # Search for the note's title in other files grep -l "note title" content/*.md ``` **By Tag Overlap:** ```bash # Find notes sharing the same tags grep -l "tags:.*tag-name" content/*.md ``` **By Key Terms:** ```bash # Search for key concepts grep -l "specific concept" content/*.md ``` ### 3. Evaluate Connection Strength **Aim for connection, not perfection.** Every note benefits from 2-3 meaningful links. An orphan note is harder to discover than an over-connected one. ✅ **Link when:** - Same author or creator - Explicitly references or cites the other work - Directly builds on or responds to the other content - Covers the same core topic (e.g., two notes about "habit formation") - Part of the same series or project - Should be grouped together in a **Map Note** (

What's inside
Steps it walks through
  1. Workflow
  2. 1. Identify the Target Note
  3. 2. Search for Related Content
  4. 3. Evaluate Connection Strength
  5. 4. Present Suggestions
  6. Output Format
  7. Map Notes for Clustering
  8. Quality Checklist
Ships with 1 file
  • metadata.json
Commands it runs
List all content to find the note
ls content/*.md
Search for the note's title in other files
grep -l "note title" content/*.md
Find notes sharing the same tags
grep -l "tags:.*tag-name" content/*.md
Search for key concepts
grep -l "specific concept" content/*.md
Check existing maps
grep -l "type: map" content/*.md
More from claude-skill-registry
All skills →
About this skill
What does the linking-notes skill do?

Discover and add wiki-links between notes. Use when asked to "find connections", "link this note", "what should I link to", or "connect my notes".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill linking-notes --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going