Skip to main content

wiki-lint

Run a health check on the LLM Wiki vault — mechanical checks (orphans, broken links, stale pages, missing frontmatter, log gap, duplicates) plus semantic checks (contradictions, cross-reference gaps, concepts missing their own page). Outputs a markdown report with suggested actions.

설치로 이동

소스 정보

저장소
JantonioFC/skillsbank
최근 소스 활동
2026년 8월 4일 03:15
감지된 SKILL.md 언어
영어
스타
6
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
wiki-lint
description
Run a health check on the LLM Wiki vault — mechanical checks (orphans, broken links, stale pages, missing frontmatter, log gap, duplicates) plus semantic checks (contradictions, cross-reference gaps, concepts missing their own page). Outputs a markdown report with suggested actions.
<!-- canonical copy: engineering/llm-wiki/commands/wiki-lint.md — keep in sync (root copy uses repo-root-relative script paths) --> # /wiki-lint Health-check the wiki. Surfaces orphan pages, broken wikilinks, stale claims, missing frontmatter, contradictions, and structural drift. **Reports, doesn't silently fix** — you decide what to change. Run this weekly, after batch ingests, and always before sharing the wiki. ## Usage ``` /wiki-lint /wiki-lint --stale-days 60 /wiki-lint --log-gap-days 7 ``` ## What happens ### Pass 1 — Mechanical (scripts) - `engineering/llm-wiki/skills/llm-wiki/scripts/lint_wiki.py` — orphans, broken links, stale pages, missing frontmatter, duplicate titles, log gap - `engineering/llm-wiki/skills/llm-wiki/scripts/graph_analyzer.py` — hubs, sinks, connected components, graph stats ### Pass 2 — Semantic (LLM reads and thinks) - Contradictions between recently-updated pages - Stale claims superseded by newer sources - Concepts mentioned in plain text across 3+ pages without their own page - Cross-reference gaps (entities mentioned but not wikilinked) - Index drift (index.md out of sync with wiki/) ### Pass 3 — Report A markdown report grouped by severity: ```markdown # Wiki lint — <date> **Total pages:** N **Components:** N **Last log:** <date> ## Found - ⚠️ <N> contradictions (list) - <N> orphans - <N> broken links - <N> stale pages - ... ## Suggested actions 1. Investigate contradiction between [[sources/a]] and [[sources/b]] 2. Create concept page for "<name>" 3. Fix broken link in [[concepts/x]] 4. Re-ingest [[sources/c]] — stale + contradicted 5. ... ``` Then appends a `lint` entry to `log.md`. ## Sub-agent Dispatches the `wiki-linter` sub-agent. See `agents/wiki-linter.md`. ## Scripts - `engineering/llm-wiki/skills/llm-wiki/scripts/lint_wiki.py` - `engineering/llm-wiki/skills/llm-wiki/scripts/graph_analyzer.py` - `engineering/llm-wiki/skills/llm-wiki/scripts/append_log.py` ## Frequency | Trigger | Pass | |---|---| | Weekly | Mechanical only — fast | | After batch ingest | Full (mechanical + semantic) | | Monthly | Full + structural review | | Before sharing | Full + extra review | ## Skill Reference → `engineering/llm-wiki/skills/llm-wiki/SKILL.md` → `engineering/llm-wiki/skills/llm-wiki/references/lint-workflow.md` ## Activation Triggers Usage /wiki-lint [--stale-days N] [--log-gap-days N]
GitHub에서 보기