/install fieldy-ai-webhook
What this sets up
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.
Behavior notes (defaults in fieldy-webhook.js):
- Saying "Hey, Fieldy" (or just "Fieldy") will trigger the agent with the text after the wake word.
- Transcripts without the wake word will not wake the agent; they’ll only be logged to JSONL files by
fieldy-webhook.js(under\x3Cworkspace>/fieldy/transcripts/). - You can adjust wake words, parsing, and logging behavior by editing
fieldy-webhook.js.
1) Put the transform script in the configured transforms dir
Your hooks.transformsDir is:
/root/clawd/skills/fieldy/scripts
Move the script from this repo:
- From:
src/fieldy-webhook.js - To:
/root/clawd/skills/fieldy/scripts/fieldy-webhook.js
Notes:
- Make sure the destination filename is exactly
fieldy-webhook.js(matches the config below).
2) Add the webhook mapping to ~/.clawdbot/moltbot.json
Add this config:
"hooks": {
"token": "insert-your-token",
"transformsDir": "/root/clawd/skills/fieldy/scripts",
"mappings": [
{
"match": {
"path": "fieldy"
},
"action": "agent",
"name": "Fieldy",
"messageTemplate": "{{message}}",
"deliver": true,
"transform": {
"module": "fieldy-webhook.js"
}
}
]
}
Important:
hooks.tokenis required when hooks are enabled (see Webhooks docs).- Ensure
hooks.enabled: trueexists somewhere in your config (and optionallyhooks.path, default is/hooks).
3) Restart the Gateway
Plugins/config changes generally require a gateway restart. After restarting, the webhook endpoint should be live.
4) Configure the webhook URL in the Fieldy app
- Log in to your Fieldy app
- Go to Settings → Developer Settings
- Set Webhook Endpoint URL to:
https://your-url.com/hooks/fieldy?token=insert-your-token
Note: Moltbot supports sending the token via header too, but many webhook providers only support query params. Moltbot still accepts ?token= (see Webhooks docs).
5) Test
Example request (adjust host/port and token):
curl -X POST "http://127.0.0.1:18789/hooks/fieldy" \
-H "Authorization: Bearer insert-your-token" \
-H "Content-Type: application/json" \
-d '{"transcript":"Hey Fieldy summarize this: hello world"}'
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install fieldy-ai-webhook - 安装完成后,直接呼叫该 Skill 的名称或使用
/fieldy-ai-webhook触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Fieldy AI Webhook 是什么?
Wire a Fieldy webhook transform into Moltbot hooks. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2244 次。
如何安装 Fieldy AI Webhook?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install fieldy-ai-webhook」即可一键安装,无需额外配置。
Fieldy AI Webhook 是免费的吗?
是的,Fieldy AI Webhook 完全免费(开源免费),可自由下载、安装和使用。
Fieldy AI Webhook 支持哪些平台?
Fieldy AI Webhook 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Fieldy AI Webhook?
由 mrzilvis(@mrzilvis)开发并维护,当前版本 v0.1.2。