AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Link Check

skill-robabby-claude-skills-link-check · by robabby

Validate wiki-links in an Obsidian vault. Finds broken links that don't resolve to real files, orphaned notes with no incoming links, and link health statistics. Use for vault maintenance and cleanup. Works with or without Obsidian MCP.

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-robabby-claude-skills-link-check

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-robabby-claude-skills-link-check)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
8mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Link Check? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Link Check

Validate wiki-links and find orphaned notes.

What It Checks

| Issue | Description | Impact | |-------|-------------|--------| | Broken links | [[Note]] where Note.md doesn't exist | Navigation fails | | Orphaned notes | Files with no incoming links | Hard to discover | | Ambiguous links | Multiple files match the link | Unpredictable resolution |

Workflow

  1. Scan for all wiki-links
  • Find [[...]] patterns in all .md files
  • Extract link targets
  1. Validate each link
  • Check if target file exists
  • Check for ambiguous matches
  • Track which files link to what
  1. Find orphaned notes
  • Files that no other file links to
  • Exclude expected orphans (CLAUDE.md, templates, etc.)
  1. Generate report
  • Broken links with source files
  • Orphaned notes list
  • Link statistics

Search Patterns

# Find all wiki-links
Grep pattern="\[\[[^\]]+\]\]" path="{vault}" glob="*.md"

# Find links to specific note
Grep pattern="\[\[Note Name\]\]" path="{vault}" glob="*.md"

Output Format

## Link Check Report

### Summary
- Total links: {count}
- Broken links: {count}
- Orphaned notes: {count}

### Broken Links
| Source File | Broken Link |
|-------------|-------------|
| {file} | [[{target}]] |

### Orphaned Notes
Files with no incoming links:
- {file}
- {file}

### Recommendations
- {actionable suggestion}

Parameters

  • $ARGUMENTS (optional):
  • No args: Full vault scan
  • {folder}: Scan specific folder only
  • --orphans-only: Only check for orphaned notes
  • --broken-only: Only check for broken links

Example

User: /link-check

Response: "## Link Check Report

Summary

  • Total links: 1,247
  • Broken links: 8
  • Orphaned notes: 23

Broken Links

| Source File | Broken Link | |-------------|-------------| | Projects/Active/Website.md | [[Design System]] | | Areas/Career/Resume.md | [[Portfolio]] | | Resources/Books/Atomic Habits.md | [[Book Notes Template]] |

Orphaned Notes

Files with no incoming links:

  • Inbox/Quick thought 2024-03-15.md
  • Resources/Snippets/bash-aliases.md
  • Archive/Old Project/notes.md

(20 more in Archive/)

Recommendations

  1. Create Design System.md or update link in Website.md
  2. Review Inbox/ items for processing or deletion
  3. Orphans in Archive/ may be intentional - consider excluding from future checks"

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.