{
  "specVersion": "webmcp-experimental-0.1",
  "name": "Goodfellow AI",
  "description": "Safe, public, read-mostly actions for AI agents interacting with goodfellowai.co.nz. Sensitive actions (payments, account changes, destructive operations) are intentionally NOT exposed.",
  "site": "https://goodfellowai.co.nz",
  "contact": "info@goodfellowai.co.nz",
  "discovery": {
    "llms": "https://goodfellowai.co.nz/llms.txt",
    "llmsFull": "https://goodfellowai.co.nz/llms-full.txt",
    "sitemap": "https://goodfellowai.co.nz/sitemap.xml",
    "agentActionsManifest": "https://goodfellowai.co.nz/.well-known/agent-actions.json",
    "agentActionsManifestAlt": "https://goodfellowai.co.nz/agent-actions.json"
  },
  "safety": {
    "allowsPayments": false,
    "allowsAccountActions": false,
    "allowsDestructiveActions": false,
    "requiresHumanConfirmationForSubmissions": true,
    "notes": "All form submissions (e.g. enquiries) are gated by Google reCAPTCHA v3 and explicit privacy consent. AI agents must hand control back to the human end-user to complete any submission."
  },
  "actions": [
    {
      "name": "view_home",
      "intent": "Open the Goodfellow AI homepage.",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/",
      "mirror": "https://goodfellowai.co.nz/index-md",
      "safety": "read-only"
    },
    {
      "name": "view_packages",
      "intent": "Browse all website packages.",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/#packages",
      "related": [
        "https://goodfellowai.co.nz/packages/website-essentials",
        "https://goodfellowai.co.nz/packages/website-chatbot",
        "https://goodfellowai.co.nz/packages/website-receptionist",
        "https://goodfellowai.co.nz/packages/website-ecommerce"
      ],
      "safety": "read-only"
    },
    {
      "name": "view_pricing",
      "intent": "See pricing for website packages and add-ons.",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/#pricing",
      "safety": "read-only"
    },
    {
      "name": "view_showcase",
      "intent": "View the project showcase of client websites.",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/showcase",
      "safety": "read-only"
    },
    {
      "name": "view_faq",
      "intent": "Read frequently asked questions.",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/faq",
      "mirror": "https://goodfellowai.co.nz/faq-md",
      "safety": "read-only"
    },
    {
      "name": "view_enquiry_engine",
      "intent": "Browse the blog (Enquiry Engine).",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/enquiry-engine",
      "mirror": "https://goodfellowai.co.nz/enquiry-engine-md",
      "safety": "read-only"
    },
    {
      "name": "contact_business",
      "intent": "Get business contact details (phone, email, social).",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/contact",
      "mirror": "https://goodfellowai.co.nz/contact-md",
      "data": {
        "email": "info@goodfellowai.co.nz",
        "phone": "+64 21 336 315",
        "officeHours": "Mon–Fri 7:30am–5:00pm NZST"
      },
      "safety": "read-only"
    },
    {
      "name": "prepare_enquiry",
      "intent": "Help a user prepare an enquiry, request a free website demo, or request a quote. The agent may pre-fill fields, but the human user MUST review and submit the form themselves.",
      "method": "GET",
      "url": "https://goodfellowai.co.nz/contact",
      "form": {
        "selector": "form",
        "requiredFields": [
          { "name": "name", "type": "text", "maxLength": 100 },
          { "name": "email", "type": "email", "maxLength": 255 },
          { "name": "service", "type": "select", "options": ["website", "chat", "receptionist", "ecommerce", "ai-automations", "social-media-management", "not-sure"] },
          { "name": "hasWebsite", "type": "radio", "options": ["yes", "no"] }
        ],
        "optionalFields": [
          { "name": "business", "type": "text", "maxLength": 100 },
          { "name": "phone", "type": "tel", "maxLength": 20 },
          { "name": "message", "type": "textarea", "maxLength": 1000 }
        ]
      },
      "expectedOutcome": "User is contacted within 1 business day.",
      "safety": "human-confirmation-required",
      "limits": {
        "agentMaySubmit": false,
        "rateLimitPerUser": "1 submission per interaction",
        "spamProtection": "Google reCAPTCHA v3 (score > 0.5) and explicit privacy-policy consent are required. AI agents cannot satisfy these checks; the human end-user must submit."
      }
    }
  ],
  "disallowedActions": [
    "complete_payment",
    "modify_account",
    "delete_data",
    "place_order_without_human",
    "submit_form_without_human"
  ]
}