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": "Dangerous-call patterns to acknowledge for this run only.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedInput schema / properties / gitnexus_dir
Added value: +{
+ "default": null,
+ "description": "Path to a `.gitnexus` dependency-graph directory, for COMPOSABLE\nscoring. When omitted, it is auto-detected from the project root;\nif missing or stale, this tool generates/refreshes it first (see\n`no_composable`). If generation isn't possible (GitNexus not\ninstalled, generation failure), COMPOSABLE is reported as\nunavailable rather than failing the whole evaluation.",
+ "type": [
+ "string",
+ "null"
+ ]
+}
addedInput schema / properties / include_security_findings
Added value: +{
+ "default": false,
+ "description": "When true, attach per-file SECURE findings to each entry; off by\ndefault to keep responses compact.",
+ "type": "boolean"
+}
addedInput schema / properties / limit
Added value: +{
+ "default": 25,
+ "description": "Per-file rows to return per page (1–500, default 25).",
+ "format": "uint",
+ "minimum": 0,
+ "type": "integer"
+}
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"
+}
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Zero-based row offset for pagination; pass the response's\n`next_offset` to fetch the next page.",
+ "format": "uint",
+ "minimum": 0,
+ "type": "integer"
+}
removedInput schema / properties / params
Removed value: -{
- "additionalProperties": false,
- "description": "Arguments for ``topos_evaluate_project``.",
- "properties": {
- "allow": {
- "description": "Dangerous-call patterns to acknowledge for this run only (e.g. `subprocess.run`), suppressing their SECURE penalty without changing stored preferences.",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "gitnexus_dir": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Path to a `.gitnexus` dependency-graph directory, required for COMPOSABLE scoring. When omitted, it is auto-detected from the project root; if none is found, COMPOSABLE is reported as unavailable rather than failing."
- },
- "include_security_findings": {
- "default": false,
- "description": "When true, attach per-file SECURE findings (dangerous-call locations) to each entry; off by default to keep responses compact.",
- "type": "boolean"
- },
- "limit": {
- "default": 25,
- "description": "Per-file rows to return per page (1–500, default 25).",
- "maximum": 500,
- "minimum": 1,
- "type": "integer"
- },
- "offset": {
- "default": 0,
- "description": "Zero-based row offset for pagination; pass the response's `next_offset` to fetch the next page.",
- "minimum": 0,
- "type": "integer"
- },
- "path": {
- "description": "Directory to evaluate, walked recursively. Must resolve inside the trusted file root; paths outside it are refused. All supported languages are autodetected — no language argument is needed.",
- "minLength": 1,
- "type": "string"
- },
- "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 ranking of simple/composable/secure (best first). The top-ranked generator sets scorer priority; omit to default to SIMPLE priority."
- },
- "verbose": {
- "default": false,
- "description": "When true, include each file's raw metric values (entropy, complexity, instability) alongside the scores.",
- "type": "boolean"
- }
- },
- "required": [
- "path"
- ],
- "type": "object"
-}
addedInput schema / properties / path
Added value: +{
+ "description": "Directory to evaluate, walked recursively. Must resolve inside the\ntrusted file root; paths outside it are refused. All supported\nlanguages are autodetected — no language argument is needed.",
+ "type": "string"
+}
addedInput schema / properties / preferences
Added value: +{
+ "anyOf": [
+ {
+ "$ref": "#/$defs/UserPreferencesInput"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Optional ranking of simple/composable/secure (best first). The\ntop-ranked generator sets scorer priority; omit to default to\nSIMPLE priority."
+}
addedInput schema / properties / verbose
Added value: +{
+ "default": false,
+ "description": "When true, include each file's raw metric values alongside scores.",
+ "type": "boolean"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "path"
+]