将 Fieldy webhook 转换为 Moltbot hook。
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install fieldy-ai-webhook或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install fieldy-ai-webhook⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/fieldy-ai-webhook/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: fieldy description: Wire a Fieldy webhook transform into Moltbot hooks. ---
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):
fieldy-webhook.js (under /fieldy/transcripts/ ).fieldy-webhook.js.Your hooks.transformsDir is:
/root/clawd/skills/fieldy/scripts
Move the script from this repo:
src/fieldy-webhook.js/root/clawd/skills/fieldy/scripts/fieldy-webhook.jsNotes:
fieldy-webhook.js (matches the config below).~/.clawdbot/moltbot.jsonAdd 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.token is required when hooks are enabled (see Webhooks docs).hooks.enabled: true exists somewhere in your config (and optionally hooks.path, default is /hooks).Plugins/config changes generally require a gateway restart. After restarting, the webhook endpoint should be live.
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).
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"}'安装 Fieldy AI Webhook 后,可以对 AI 说这些话来触发它
Help me get started with Fieldy AI Webhook
Explains what Fieldy AI Webhook does, walks through the setup, and runs a quick demo based on your current project
Use Fieldy AI Webhook to wire a Fieldy webhook transform into Moltbot hooks
Invokes Fieldy AI Webhook with the right parameters and returns the result directly in the conversation
What can I do with Fieldy AI Webhook in my developer & devops workflow?
Lists the top use cases for Fieldy AI Webhook, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/fieldy-ai-webhook/ 目录(个人级,所有项目可用),或 .claude/skills/fieldy-ai-webhook/(项目级)。重启 AI 客户端后,用 /fieldy-ai-webhook 主动调用,或让 AI 根据上下文自动发现并使用。
Fieldy AI Webhook 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Fieldy AI Webhook 可免费安装使用。请查阅仓库了解许可证信息。
将 Fieldy webhook 转换为 Moltbot hook。
Fieldy AI Webhook 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Fieldy AI Webhook
Identifies repetitive steps in your workflow and sets up Fieldy AI Webhook to handle them automatically