Vouch resolve issue
Skill vouchdev/vouch/adapters/openclaw/skills/vouch-resolve-issue
A git-native, review-gated knowledge base for AI agents: they propose writes, you approve them. Every claim cites a source, every change is a diff in your repo. MCP + CLI.
npx -y skills add vouchdev/vouch --skill vouch-resolve-issueAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Use vouch's KB to ground a fix for a GitHub issue
SKILL.md
1.1 KB, as published. Nobody here has run it
/vouch-resolve-issue
Wire vouch's kb_context into an issue-resolution flow: the KB should
inform the fix, and the act of solving should propose new claims that
make the next contributor faster.
Steps:
- Parse
$ARGUMENTSas a GitHub issue URL or<owner>/<repo>#<num>shorthand. If neither, ask for clarification. kb_contextwith the issue title + body — what does the KB already know about this area? Show the top 5 claims.- Read the relevant code paths.
- Propose the smallest fix (run the project's tests first to confirm the bug reproduces).
- After the fix is committed, propose at most three new claims via
kb_propose_claimthat capture:- the root cause in one sentence (cited by the offending file:line),
- the chosen fix pattern (cited by the patch commit), and
- any policy/precedent established (only if novel).
Do not auto-approve. Leave the proposals in .vouch/proposed/ for the
maintainer to review with vouch approve after the PR merges.