mindwiki_lint
Run a vault health check. Returns orphan pages, broken wikilinks, and other integrity findings.
Scope: read
Parameters
None.
Example Request
json
{
"tool": "mindwiki_lint",
"arguments": {}
}Example Response
json
{
"issues": [
{
"type": "broken_link",
"page": "research/network-effects.md",
"link": "[[social-proof]]",
"message": "Target page does not exist"
},
{
"type": "orphan",
"page": "people/old-contact.md",
"message": "No incoming or outgoing wikilinks"
}
],
"stats": {
"pages_checked": 47,
"issue_count": 2
}
}The health endpoint at GET /vault/health (REST) returns the same data. See also Vault Health & Permissions.