codex-cli-captain 0.0.10

Codex-Cli-Captain runtime, installer, and MCP server for Codex CLI.
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://ccc.local/schemas/role-defaults.schema.json",
  "type": "object",
  "additionalProperties": false,
  "required": ["version", "role_defaults"],
  "properties": {
    "version": {
      "const": 1
    },
    "role_defaults": {
      "type": "object",
      "additionalProperties": false,
      "required": ["way", "code specialist", "verifier"],
      "properties": {
        "way": {
          "$ref": "#/definitions/roleDefaultSettings"
        },
        "explorer": {
          "$ref": "#/definitions/roleDefaultSettings"
        },
        "code specialist": {
          "$ref": "#/definitions/roleDefaultSettings"
        },
        "documenter": {
          "$ref": "#/definitions/roleDefaultSettings"
        },
        "verifier": {
          "$ref": "#/definitions/roleDefaultSettings"
        }
      }
    }
  },
  "definitions": {
    "roleDefaultSettings": {
      "type": "object",
      "additionalProperties": false,
      "required": ["profile", "config_entries"],
      "properties": {
        "profile": {
          "type": ["string", "null"],
          "minLength": 1
        },
        "config_entries": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        }
      }
    }
  }
}