slopwatch_claim_and_verify
Streamline claim registration and verification in AI implementations by merging into a single tool call, ensuring alignment between promises and actual file updates.
Instructions
Register claim and verify implementation in one call - reduces from 2 tool calls to 1
Input Schema
Name | Required | Description | Default |
---|---|---|---|
claim | Yes | What you implemented | |
originalFileContents | Yes | Original content of files before implementation (filename -> content) | |
updatedFileContents | Yes | Updated content of files after implementation (filename -> content) |
Input Schema (JSON Schema)
{
"properties": {
"claim": {
"description": "What you implemented",
"type": "string"
},
"originalFileContents": {
"additionalProperties": {
"type": "string"
},
"description": "Original content of files before implementation (filename -> content)",
"type": "object"
},
"updatedFileContents": {
"additionalProperties": {
"type": "string"
},
"description": "Updated content of files after implementation (filename -> content)",
"type": "object"
}
},
"required": [
"claim",
"originalFileContents",
"updatedFileContents"
],
"type": "object"
}