(script: str, description: str, outputs: list[str])
| 60 | |
| 61 | |
| 62 | def stub_payload(script: str, description: str, outputs: list[str]) -> dict[str, Any]: |
| 63 | return { |
| 64 | "status": "scaffold", |
| 65 | "script": script, |
| 66 | "description": description, |
| 67 | "next_step": "Implement this contract incrementally.", |
| 68 | "outputs": outputs, |
| 69 | } |
| 70 | |
| 71 | |
| 72 | def load_json_file(path: str | Path) -> dict[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected