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".
npx skills add majiayu000/claude-skill-registry --skill linking-notes --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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** (
- Workflow
- 1. Identify the Target Note
- 2. Search for Related Content
- 3. Evaluate Connection Strength
- 4. Present Suggestions
- Output Format
- Map Notes for Clustering
- Quality Checklist
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
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.
