{
  "version": "1.0.0",
  "kind": "olonjs-page-contract",
  "slug": "about",
  "title": "About -- The Brief",
  "description": "The Brief is a publication for engineering and product leaders building at scale.",
  "manifestHref": "/mcp-manifests/about.json",
  "systemPrompt": "You are operating the \"About -- The Brief\" page in OlonJS Studio. Use only the declared tools and keep mutations valid against the section schema.",
  "sectionTypes": [
    "header",
    "footer",
    "about-hero",
    "about-bio",
    "newsletter-cta"
  ],
  "sectionInstances": [
    {
      "id": "global-header",
      "type": "header",
      "scope": "global",
      "label": "header"
    },
    {
      "id": "global-footer",
      "type": "footer",
      "scope": "global",
      "label": "footer"
    },
    {
      "id": "about-hero-section",
      "type": "about-hero",
      "scope": "local",
      "label": "about-hero"
    },
    {
      "id": "about-bio-section",
      "type": "about-bio",
      "scope": "local",
      "label": "Our Mission"
    },
    {
      "id": "about-newsletter",
      "type": "newsletter-cta",
      "scope": "local",
      "label": "Read with us."
    }
  ],
  "sectionSchemas": {
    "header": {
      "type": "object",
      "required": [
        "logoText"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "menu": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "label",
              "href"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "href": {
                "type": "string",
                "description": "ui:text"
              },
              "isCta": {
                "type": "boolean"
              },
              "label": {
                "type": "string",
                "description": "ui:text"
              }
            },
            "additionalProperties": false
          },
          "description": "ui:list"
        },
        "anchorId": {
          "type": "string",
          "description": "ui:text"
        },
        "logoText": {
          "type": "string",
          "description": "ui:text"
        },
        "announcement": {
          "type": "string",
          "description": "ui:text"
        },
        "logoHighlight": {
          "type": "string",
          "description": "ui:text"
        }
      },
      "additionalProperties": false
    },
    "footer": {
      "type": "object",
      "required": [
        "brandText",
        "copyright"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "menu": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "label",
              "href"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "href": {
                "type": "string",
                "description": "ui:text"
              },
              "label": {
                "type": "string",
                "description": "ui:text"
              },
              "external": {
                "type": "boolean"
              }
            },
            "additionalProperties": false
          },
          "description": "ui:list"
        },
        "anchorId": {
          "type": "string",
          "description": "ui:text"
        },
        "brandText": {
          "type": "string",
          "description": "ui:text"
        },
        "copyright": {
          "type": "string",
          "description": "ui:text"
        },
        "legalLinks": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "label",
              "href"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "href": {
                "type": "string",
                "description": "ui:text"
              },
              "label": {
                "type": "string",
                "description": "ui:text"
              },
              "external": {
                "type": "boolean"
              }
            },
            "additionalProperties": false
          },
          "description": "ui:list"
        },
        "socialLinks": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "label",
              "href"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "href": {
                "type": "string",
                "description": "ui:text"
              },
              "label": {
                "type": "string",
                "description": "ui:text"
              },
              "external": {
                "type": "boolean"
              }
            },
            "additionalProperties": false
          },
          "description": "ui:list"
        },
        "brandTagline": {
          "type": "string",
          "description": "ui:text"
        }
      },
      "additionalProperties": false
    },
    "about-hero": {
      "type": "object",
      "required": [
        "name",
        "role",
        "tagline"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string",
          "description": "ui:text"
        },
        "role": {
          "type": "string",
          "description": "ui:text"
        },
        "image": {
          "type": "object",
          "required": [
            "url"
          ],
          "properties": {
            "alt": {
              "type": "string"
            },
            "url": {
              "type": "string"
            }
          },
          "description": "ui:image-picker",
          "additionalProperties": false
        },
        "ctaHref": {
          "type": "string",
          "description": "ui:text"
        },
        "eyebrow": {
          "type": "string",
          "description": "ui:text"
        },
        "tagline": {
          "type": "string",
          "description": "ui:textarea"
        },
        "anchorId": {
          "type": "string",
          "description": "ui:text"
        },
        "ctaLabel": {
          "type": "string",
          "description": "ui:text"
        }
      },
      "additionalProperties": false
    },
    "about-bio": {
      "type": "object",
      "required": [
        "blocks"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "label": {
          "type": "string",
          "description": "ui:text"
        },
        "blocks": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "heading",
              "body"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "body": {
                "type": "string",
                "description": "ui:textarea"
              },
              "heading": {
                "type": "string",
                "description": "ui:text"
              }
            },
            "additionalProperties": false
          },
          "description": "ui:list"
        },
        "skills": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "name"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "name": {
                "type": "string",
                "description": "ui:text"
              }
            },
            "additionalProperties": false
          },
          "description": "ui:list"
        },
        "anchorId": {
          "type": "string",
          "description": "ui:text"
        }
      },
      "additionalProperties": false
    },
    "newsletter-cta": {
      "type": "object",
      "required": [
        "title"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "title": {
          "type": "string",
          "description": "ui:text"
        },
        "eyebrow": {
          "type": "string",
          "description": "ui:text"
        },
        "anchorId": {
          "type": "string",
          "description": "ui:text"
        },
        "ctaLabel": {
          "type": "string",
          "description": "ui:text"
        },
        "subtitle": {
          "type": "string",
          "description": "ui:textarea"
        },
        "disclaimer": {
          "type": "string",
          "description": "ui:text"
        },
        "placeholder": {
          "type": "string",
          "description": "ui:text"
        }
      },
      "additionalProperties": false
    }
  },
  "tools": [
    {
      "name": "update-section",
      "description": "Update a section field in the Studio draft. Does not persist — call save when all updates are complete. Use sectionType to select the matching schema from sectionSchemas.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "slug": {
            "type": "string",
            "description": "Canonical page slug currently open in Studio."
          },
          "sectionId": {
            "type": "string",
            "description": "Concrete section instance id inside the current draft."
          },
          "sectionType": {
            "type": "string",
            "description": "Section type being updated (for example \"hero\" or \"header\"). Used to select the correct validation schema."
          },
          "scope": {
            "type": "string",
            "enum": [
              "local",
              "global"
            ],
            "default": "local"
          },
          "data": {
            "type": "object",
            "description": "Full replacement payload validated against the schema declared for sectionType."
          },
          "itemPath": {
            "type": "array",
            "description": "Optional root-to-leaf selection path for targeted field mutation.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "fieldKey": {
                  "type": "string"
                },
                "itemId": {
                  "type": "string"
                }
              },
              "required": [
                "fieldKey"
              ]
            }
          },
          "value": {
            "description": "Value written to the final field targeted by itemPath."
          },
          "fieldKey": {
            "type": "string",
            "description": "Shorthand for a top-level scalar field update when itemPath is omitted."
          }
        },
        "required": [
          "sectionId"
        ],
        "oneOf": [
          {
            "required": [
              "data"
            ]
          },
          {
            "required": [
              "itemPath",
              "value"
            ]
          },
          {
            "required": [
              "fieldKey",
              "value"
            ]
          }
        ]
      }
    },
    {
      "name": "save",
      "description": "Persist all pending draft changes using the active save mode (local file, hot save, or save2repo). Call once after all update-section calls are complete.",
      "inputSchema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {}
      }
    }
  ]
}
