Skip to content

Instantly share code, notes, and snippets.

@S1M0N38
Created December 26, 2025 14:41
Show Gist options
  • Select an option

  • Save S1M0N38/5dc776cea0afa506ee7a4b20585558c6 to your computer and use it in GitHub Desktop.

Select an option

Save S1M0N38/5dc776cea0afa506ee7a4b20585558c6 to your computer and use it in GitHub Desktop.
BalatroLLM strategy schema
{
"$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