addedInput schema / $defs
Added value: +{
+ "GeneratorInput": {
+ "description": "Wire form of a generator name.",
+ "enum": [
+ "simple",
+ "composable",
+ "secure"
+ ],
+ "type": "string"
+ },
+ "LatticeElement": {
+ "description": "The 8 elements of the free Heyting algebra H(G_qual) on the three\ngenerators SIMPLE, COMPOSABLE, SECURE, mirroring `EvaluationValue` on\nthe MCP wire.",
+ "enum": [
+ "SLOP",
+ "SIMPLE",
+ "COMPOSABLE",
+ "SECURE",
+ "SIMPLE_COMPOSABLE",
+ "SIMPLE_SECURE",
+ "COMPOSABLE_SECURE",
+ "IDEAL"
+ ],
+ "type": "string"
+ },
+ "UserPreferencesInput": {
+ "additionalProperties": false,
+ "description": "Strict ranking over simple, composable, and secure.",
+ "properties": {
+ "ranking": {
+ "description": "Permutation of simple/composable/secure, best first.",
+ "items": {
+ "$ref": "#/$defs/GeneratorInput"
+ },
+ "type": "array"
+ },
+ "target": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/LatticeElement"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional explicit target verdict."
+ }
+ },
+ "required": [
+ "ranking"
+ ],
+ "type": "object"
+ }
+}
addedInput schema / $schema
Added value: +"https://json-schema.org/draft/2020-12/schema"
addedInput schema / properties / allow
Added value: +{
+ "default": [],
+ "description": "One-off acknowledged dangerous-call patterns.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedInput schema / properties / filepath
Added value: +{
+ "description": "Source file path.",
+ "type": "string"
+}
addedInput schema / properties / gitnexus_dir
Added value: +{
+ "default": null,
+ "description": ".gitnexus directory for COMPOSABLE scoring. When omitted, it is\nauto-detected at `<file root>/.gitnexus`; if missing or stale, this\ntool generates/refreshes it first (see `no_composable`).",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / include_security_findings
Added value: +{
+ "default": true,
+ "description": "Include SECURE findings.",
+ "type": "boolean"
+}
addedInput schema / properties / no_composable
Added value: +{
+ "default": false,
+ "description": "Skip GitNexus detection/generation; score SIMPLE/SECURE only,\nexactly like a missing `.gitnexus` did before this tool started\ngenerating it automatically.",
+ "type": "boolean"
+}
removedInput schema / properties / params
Removed value: -{
- "additionalProperties": false,
- "description": "Arguments for ``topos_evaluate_file``.",
- "properties": {
- "allow": {
- "description": "One-off acknowledged dangerous-call patterns.",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "filepath": {
- "description": "Source file path.",
- "minLength": 1,
- "type": "string"
- },
- "gitnexus_dir": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": ".gitnexus directory for COMPOSABLE scoring."
- },
- "include_security_findings": {
- "default": true,
- "description": "Include SECURE findings.",
- "type": "boolean"
- },
- "preferences": {
- "anyOf": [
- {
- "additionalProperties": false,
- "description": "Strict ranking over simple, composable, and secure.",
- "properties": {
- "ranking": {
- "description": "Permutation of simple/composable/secure, best first.",
- "items": {
- "description": "The three quality generators of ``G_qual``.",
- "enum": [
- "simple",
- "composable",
- "secure"
- ],
- "type": "string"
- },
- "maxItems": 3,
- "minItems": 3,
- "type": "array"
- },
- "target": {
- "anyOf": [
- {
- "description": "The 8 quality verdicts, from SLOP (none) to IDEAL (simple+composable+secure).",
- "enum": [
- "SLOP",
- "SIMPLE",
- "COMPOSABLE",
- "SECURE",
- "SIMPLE_COMPOSABLE",
- "SIMPLE_SECURE",
- "COMPOSABLE_SECURE",
- "IDEAL"
- ],
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional explicit target verdict."
- }
- },
- "required": [
- "ranking"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional generator ranking."
- },
- "refactor_targets": {
- "default": 0,
- "description": "Ranked edit targets to return (0 = off).",
- "maximum": 25,
- "minimum": 0,
- "type": "integer"
- },
- "verbose": {
- "default": false,
- "description": "Include raw metrics.",
- "type": "boolean"
- }
- },
- "required": [
- "filepath"
- ],
- "type": "object"
-}
addedInput schema / properties / preferences
Added value: +{
+ "anyOf": [
+ {
+ "$ref": "#/$defs/UserPreferencesInput"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Optional generator ranking."
+}
addedInput schema / properties / refactor_targets
Added value: +{
+ "default": 3,
+ "description": "Ranked edit targets to return, gate failures first (default 3;\n0 = off; capped at 25).",
+ "format": "uint",
+ "minimum": 0,
+ "type": "integer"
+}
addedInput schema / properties / verbose
Added value: +{
+ "default": false,
+ "description": "Include raw metrics.",
+ "type": "boolean"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "filepath"
+]