* Generate JSON Schema from the settings Zod schema. * This keeps the skill prompt in sync with the actual types.
()
| 8 | * This keeps the skill prompt in sync with the actual types. |
| 9 | */ |
| 10 | function generateSettingsSchema(): string { |
| 11 | const jsonSchema = toJSONSchema(SettingsSchema(), { io: 'input' }) |
| 12 | return jsonStringify(jsonSchema, null, 2) |
| 13 | } |
| 14 | |
| 15 | const SETTINGS_EXAMPLES_DOCS = `## Settings File Locations |
| 16 |
no test coverage detected