Created
December 26, 2025 14:41
-
-
Save S1M0N38/5dc776cea0afa506ee7a4b20585558c6 to your computer and use it in GitHub Desktop.
BalatroLLM strategy schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "title": "BalatroLLM Strategy Manifest", | |
| "description": "Schema for strategy manifest.json files in BalatroLLM", | |
| "type": "object", | |
| "required": ["name", "description", "author", "version", "tags"], | |
| "additionalProperties": false, | |
| "properties": { | |
| "name": { | |
| "type": "string", | |
| "minLength": 1, | |
| "description": "Display name of the strategy" | |
| }, | |
| "description": { | |
| "type": "string", | |
| "minLength": 1, | |
| "description": "Human-readable description of what the strategy does" | |
| }, | |
| "author": { | |
| "type": "string", | |
| "minLength": 1, | |
| "description": "Author or creator of the strategy" | |
| }, | |
| "version": { | |
| "type": "string", | |
| "pattern": "^\\d+\\.\\d+\\.\\d+$", | |
| "description": "Semantic version (MAJOR.MINOR.PATCH)" | |
| }, | |
| "tags": { | |
| "type": "array", | |
| "items": { | |
| "type": "string", | |
| "minLength": 1 | |
| }, | |
| "description": "Categorical tags for classification" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment