Files
whetstone_DSL/schemas/methods/generateCode.schema.json
Bill c9d938f855 Sprint 7 Phase 7a: API documentation, schemas, and new RPC methods (Steps 202-206)
- Step 202: docs/AGENT_API.md — comprehensive JSON-RPC API reference with 23 methods
- Step 203: schemas/ — 20 JSON Schema files (8 types, 12 methods) for validation
- Step 204: Expose ContextAPI (getInScopeSymbols, getCallHierarchy, getDependencyGraph) and BatchMutationAPI (applyBatch) via WebSocket RPC
- Step 205: Expose Pipeline operations (runPipeline, parseSource, generateFromAST, projectLanguage) via WebSocket RPC
- Step 206: API schema validation tests — 51/51 assertions pass
- Updated PROGRESS.md with Sprint 5+6 completion, corrected summary table
- Updated FEATURE_REQUESTS.md to reflect implemented items
- Created sprint7_plan.md with 33 steps across 6 phases

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 07:31:01 -07:00

52 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://whetstone-dsl.org/schemas/methods/generateCode.schema.json",
"title": "generateCode",
"description": "Generate code from a natural language specification",
"type": "object",
"properties": {
"request": {
"type": "object",
"properties": {
"spec": {
"type": "string",
"description": "The natural language specification describing the desired code"
},
"preferImports": {
"type": "boolean",
"description": "Whether to prefer imports over inline definitions"
}
},
"required": ["spec"],
"additionalProperties": false
},
"response": {
"type": "object",
"properties": {
"node": {
"type": "object",
"description": "The generated AST node"
},
"note": {
"type": "string",
"description": "A note about the generation process"
},
"usedSymbols": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of symbols used in the generated code"
},
"language": {
"type": "string",
"description": "The language of the generated code"
}
},
"required": ["node", "note", "usedSymbols", "language"],
"additionalProperties": false
}
},
"required": ["request", "response"]
}