mindwiki_lint
Run a health check on the vault. Identifies broken wikilinks, orphan pages, missing frontmatter, and other issues.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| fix | boolean | No | Automatically fix issues where possible (default: false) |
Example Request
json
{
"tool": "mindwiki_lint",
"arguments": {
"fix": false
}
}Example Response
json
{
"issues": [
{ "type": "broken_link", "page": "research/network-effects.md", "link": "[[social-proof]]", "message": "Target page does not exist" },
{ "type": "missing_frontmatter", "page": "capture/quick-note.md", "message": "Page is missing 'type' field in frontmatter" },
{ "type": "orphan", "page": "people/old-contact.md", "message": "No incoming or outgoing links" }
],
"total_issues": 3,
"pages_checked": 47
}