From knowlery
Scan agent-maintained directories for health issues: orphan pages, broken wikilinks, stale content, frontmatter violations, tag taxonomy drift, oversized pages. Use this skill whenever the user wants to audit knowledge base quality, check for broken links, find stale or orphan pages, or says anything like "check my wiki", "are there any issues", "audit the knowledge base", "find broken links", or "what needs fixing".
How this skill is triggered — by the user, by Claude, or both
Slash command
/knowlery:auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scan the four agent-maintained directories (`entities/`, `concepts/`, `comparisons/`, `queries/`)
Scan the four agent-maintained directories (entities/, concepts/, comparisons/, queries/)
for structural issues.
Use the deterministic tools first — they compute several categories exactly:
obsidian orphans # category 1: files with no incoming links
obsidian unresolved # category 2: broken wikilinks, with counts
obsidian deadends # bonus signal: files with no outgoing links
obsidian knowlery:stale # categories 3 and 7 (or: knowlery stale / node .knowlery/bin/query.mjs --stale)
If the knowlery MCP stale tool is present, prefer it for categories 3 and 7 —
same report, no shell needed.
Filter tool output to the four agent directories. Fall back to manual traversal only when none of the tools is available.
Pages with no inbound wikilinks from any other note — from obsidian orphans.
Wikilinks in agent pages that point to non-existent targets — from obsidian unresolved.
Compiled pages whose cited sources changed after the page was last written — the
Stale pages section of the staleness report.
Pages missing required fields (title, date, created, updated, type, tags, sources).
Tags used in agent pages that are not defined in SCHEMA.md.
Pages exceeding ~200 lines — candidates for splitting.
Agent pages whose sources cite notes that no longer exist — the Dangling sources
section of the staleness report.
Group findings by severity:
Health check complete. Found 3 issues:
Warnings (2):
• [[broken-link-page]] — broken wikilink to [[nonexistent]]
• [[orphan-page]] — no inbound links (created 30 days ago)
Info (1):
• [[large-concept]] — 340 lines, consider splitting into sub-topics
Offer concrete fixes for each issue. Ask before making changes.
npx claudepluginhub jayjiangct/knowlery --plugin knowleryGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.