一键导入
health
Run vault health diagnostics. 3 modes: quick (schema+orphans+links), full (all 8 categories), three-space (boundary violations).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run vault health diagnostics. 3 modes: quick (schema+orphans+links), full (all 8 categories), three-space (boundary violations).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add a new knowledge domain to an existing vault. Creates domain-specific MOCs, templates, and vocabulary mappings.
Research-backed vault evolution guidance. Toggle features (self-space, semantic search), rebalance MOCs, adjust dimensions with full rationale.
Query the Ars Contexta research methodology. Answers 'why does my system do X?' with research-backed explanations from 249 interconnected claims.
Analyze the vault's knowledge graph. Subcommands: orphans, density, bridges, synthesis, traverse, clusters, stats.
Contextual guidance and command discovery. Shows available skills, agents, and intelligent suggestions based on vault state.
End-to-end source processing: reduce → reflect → reweave → verify. Fresh context per phase for optimal LLM attention.
| name | health |
| description | Run vault health diagnostics. 3 modes: quick (schema+orphans+links), full (all 8 categories), three-space (boundary violations). |
| tags | ["diagnostics","maintenance","quality"] |
Delegates to: @ars-contexta:health-checker
Invoke this skill to run vault-wide health diagnostics. More comprehensive than verify (which focuses on recently processed notes). Use health for periodic maintenance checks.
quick — run 3 core categories: schema compliance, orphan detection, link health (default)full — run all 8 diagnostic categoriesthree-space — run boundary violation checks onlyIf no argument is provided, use quick.
Parse the mode from arguments and run the applicable diagnostic categories.
The 8 Diagnostic Categories
1. Schema Compliance (quick, full) Check every note's YAML frontmatter against its template. Required fields: description, type, created. Flag missing or malformed fields. Severity: FAIL for missing required fields, WARN for unrecognized fields.
2. Orphan Detection (quick, full) Find notes with zero incoming wiki-links (no other note links to them). Orphans are unreachable via graph traversal. They may be legitimate entry points or forgotten notes. Report count and list. Severity: WARN.
3. Link Health (quick, full) Resolve every wiki-link in every note to a vault file. Flag dangling links (target file does not exist). Severity: FAIL for dangling links, WARN for links to archived files.
4. Description Quality (full) Check that descriptions differ from titles, are >50 chars, and add meaningful information. Severity: WARN.
5. Three-Space Boundaries (three-space, full) Verify that the three-space separation is intact:
6. Processing Throughput (full) Check inbox/ for files that have been present for more than 7 days without processing. Stale inbox items indicate pipeline neglect. Severity: WARN for >7 days, WARN for >14 days.
7. Stale Notes (full)
Find notes with created dates older than 90 days that have never been linked to by another note. These may be worth reviewing or archiving. Severity: WARN.
8. MOC Coherence (full) Check MOC files for structural issues:
Report output
Write the report to ops/health/YYYY-MM-DD-report.md with the following structure:
# Vault Health Report — YYYY-MM-DD
Mode: {quick | full | three-space}
## Summary
| Category | Status | Issues |
|-----------------------|--------|--------|
| Schema Compliance | PASS | 0 |
| Orphan Detection | WARN | 3 |
| ... | | |
## Issues
### {Category Name}
- `{file}`: {issue description}
Also output the summary table directly to the user after writing the file.