{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fieldy-ai-webhook",
    "name": "Fieldy AI Webhook",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mrzilvis/fieldy-ai-webhook",
    "canonicalUrl": "https://clawhub.ai/mrzilvis/fieldy-ai-webhook",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fieldy-ai-webhook",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fieldy-ai-webhook",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "SKILL.md",
      "src/fieldy-webhook.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fieldy-ai-webhook"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/fieldy-ai-webhook",
    "agentPageUrl": "https://openagent3.xyz/skills/fieldy-ai-webhook/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fieldy-ai-webhook/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fieldy-ai-webhook/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "What this sets up",
        "body": "You’ll configure Moltbot Gateway webhooks so an incoming request to POST /hooks/fieldy runs through a transform module (fieldy-webhook.js) before triggering an agent run.\n\nBehavior notes (defaults in fieldy-webhook.js):\n\nSaying \"Hey, Fieldy\" (or just \"Fieldy\") will trigger the agent with the text after the wake word.\nTranscripts without the wake word will not wake the agent; they’ll only be logged to JSONL files by fieldy-webhook.js (under <workspace>/fieldy/transcripts/).\nYou can adjust wake words, parsing, and logging behavior by editing fieldy-webhook.js."
      },
      {
        "title": "1) Put the transform script in the configured transforms dir",
        "body": "Your hooks.transformsDir is:\n\n/root/clawd/skills/fieldy/scripts\n\nMove the script from this repo:\n\nFrom: src/fieldy-webhook.js\nTo: /root/clawd/skills/fieldy/scripts/fieldy-webhook.js\n\nNotes:\n\nMake sure the destination filename is exactly fieldy-webhook.js (matches the config below)."
      },
      {
        "title": "2) Add the webhook mapping to ~/.clawdbot/moltbot.json",
        "body": "Add this config:\n\n\"hooks\": {\n  \"token\": \"insert-your-token\",\n  \"transformsDir\": \"/root/clawd/skills/fieldy/scripts\",\n  \"mappings\": [\n    {\n      \"match\": {\n        \"path\": \"fieldy\"\n      },\n      \"action\": \"agent\",\n      \"name\": \"Fieldy\",\n      \"messageTemplate\": \"{{message}}\",\n      \"deliver\": true,\n      \"transform\": {\n        \"module\": \"fieldy-webhook.js\"\n      }\n    }\n  ]\n}\n\nImportant:\n\nhooks.token is required when hooks are enabled (see Webhooks docs).\nEnsure hooks.enabled: true exists somewhere in your config (and optionally hooks.path, default is /hooks)."
      },
      {
        "title": "3) Restart the Gateway",
        "body": "Plugins/config changes generally require a gateway restart. After restarting, the webhook endpoint should be live."
      },
      {
        "title": "4) Configure the webhook URL in the Fieldy app",
        "body": "Log in to your Fieldy app\nGo to Settings → Developer Settings\nSet Webhook Endpoint URL to:\n\nhttps://your-url.com/hooks/fieldy?token=insert-your-token\n\nNote: Moltbot supports sending the token via header too, but many webhook providers only support query params. Moltbot still accepts ?token= (see Webhooks docs)."
      },
      {
        "title": "5) Test",
        "body": "Example request (adjust host/port and token):\n\ncurl -X POST \"http://127.0.0.1:18789/hooks/fieldy\" \\\n  -H \"Authorization: Bearer insert-your-token\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"transcript\":\"Hey Fieldy summarize this: hello world\"}'"
      }
    ],
    "body": "What this sets up\n\nYou’ll configure Moltbot Gateway webhooks so an incoming request to POST /hooks/fieldy runs through a transform module (fieldy-webhook.js) before triggering an agent run.\n\nBehavior notes (defaults in fieldy-webhook.js):\n\nSaying \"Hey, Fieldy\" (or just \"Fieldy\") will trigger the agent with the text after the wake word.\nTranscripts without the wake word will not wake the agent; they’ll only be logged to JSONL files by fieldy-webhook.js (under <workspace>/fieldy/transcripts/).\nYou can adjust wake words, parsing, and logging behavior by editing fieldy-webhook.js.\n1) Put the transform script in the configured transforms dir\n\nYour hooks.transformsDir is:\n\n/root/clawd/skills/fieldy/scripts\n\nMove the script from this repo:\n\nFrom: src/fieldy-webhook.js\nTo: /root/clawd/skills/fieldy/scripts/fieldy-webhook.js\n\nNotes:\n\nMake sure the destination filename is exactly fieldy-webhook.js (matches the config below).\n2) Add the webhook mapping to ~/.clawdbot/moltbot.json\n\nAdd this config:\n\n\"hooks\": {\n  \"token\": \"insert-your-token\",\n  \"transformsDir\": \"/root/clawd/skills/fieldy/scripts\",\n  \"mappings\": [\n    {\n      \"match\": {\n        \"path\": \"fieldy\"\n      },\n      \"action\": \"agent\",\n      \"name\": \"Fieldy\",\n      \"messageTemplate\": \"{{message}}\",\n      \"deliver\": true,\n      \"transform\": {\n        \"module\": \"fieldy-webhook.js\"\n      }\n    }\n  ]\n}\n\n\nImportant:\n\nhooks.token is required when hooks are enabled (see Webhooks docs).\nEnsure hooks.enabled: true exists somewhere in your config (and optionally hooks.path, default is /hooks).\n3) Restart the Gateway\n\nPlugins/config changes generally require a gateway restart. After restarting, the webhook endpoint should be live.\n\n4) Configure the webhook URL in the Fieldy app\nLog in to your Fieldy app\nGo to Settings → Developer Settings\nSet Webhook Endpoint URL to:\n\nhttps://your-url.com/hooks/fieldy?token=insert-your-token\n\nNote: Moltbot supports sending the token via header too, but many webhook providers only support query params. Moltbot still accepts ?token= (see Webhooks docs).\n\n5) Test\n\nExample request (adjust host/port and token):\n\ncurl -X POST \"http://127.0.0.1:18789/hooks/fieldy\" \\\n  -H \"Authorization: Bearer insert-your-token\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"transcript\":\"Hey Fieldy summarize this: hello world\"}'"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mrzilvis/fieldy-ai-webhook",
    "publisherUrl": "https://clawhub.ai/mrzilvis/fieldy-ai-webhook",
    "owner": "mrzilvis",
    "version": "0.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fieldy-ai-webhook",
    "downloadUrl": "https://openagent3.xyz/downloads/fieldy-ai-webhook",
    "agentUrl": "https://openagent3.xyz/skills/fieldy-ai-webhook/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fieldy-ai-webhook/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fieldy-ai-webhook/agent.md"
  }
}