claudetool: add missing json schema field
Apparently this is required, and Anthropic happens to not care.
diff --git a/claudetool/differential.go b/claudetool/differential.go
index 386086a..a6b3413 100644
--- a/claudetool/differential.go
+++ b/claudetool/differential.go
@@ -31,7 +31,7 @@
Name: "codereview",
Description: `Run an automated code review.`,
// If you modify this, update the termui template for prettier rendering.
- InputSchema: ant.MustSchema(`{"type": "object"}`),
+ InputSchema: ant.MustSchema(`{"type": "object", "properties": {}}`),
Run: r.Run,
}
return spec