← All skills
Tencent SkillHub Β· Developer Tools

Fieldy AI Webhook

Wire a Fieldy webhook transform into Moltbot hooks.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Wire a Fieldy webhook transform into Moltbot hooks.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
package.json, SKILL.md, src/fieldy-webhook.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

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 <workspace>/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.token is required when hooks are enabled (see Webhooks docs). Ensure hooks.enabled: true exists somewhere in your config (and optionally hooks.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"}'

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • src/fieldy-webhook.js Scripts
  • package.json Config