Install
openclaw skills install @gonisulaimann/groundedVerify code references against the repository before trusting them. Use when writing, renaming, or reviewing code, imports, paths, or comments.
openclaw skills install @gonisulaimann/groundedGrounded checks whether concrete references in a repository actually resolve: symbols, imports, file paths, magic numbers. It never guesses.
Prefer the MCP tools when available (check_path on edited files,
blast_radius before renames). Without MCP, shell out:
grounded scan <file> --quiet # exit 1 on findings, 0 when clean
grounded impact <symbol> [PATH] # definers, importers, comment claims
grounded fix [PATH] --dry-run # preview unambiguous rewrites
Single-file checks take about a millisecond in-process, about 60 ms cold. Full trees take seconds; gate pull requests on changed lines instead:
grounded scan . --changed
lie: provably false. Fix it before building on it.drift: adjacent evidence disagrees. Read it before trusting it.smell: fragile pattern. Note it, fix it when touching the area.Load these only when needed:
references/rules.md: exact checker semantics, severities, suppressions.references/commands.md: full CLI surface and exit codes.