fieldy

Route Moltbot webhook requests through a Fieldy transform before agent execution.

1|Updated Jan 28, 2026
One-click install
npx skills add https://github.com/fieldyai/fieldy-moltbot --skill fieldy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fieldy
Source: https://github.com/fieldyai/fieldy-moltbot/tree/main
Command: npx skills add https://github.com/fieldyai/fieldy-moltbot --skill fieldy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill wires a Fieldy webhook transform into Moltbot hooks, enabling automatic processing of incoming webhook payloads by a deterministic transform before agent runs, and providing transcript logging for audit and debugging.

Core Features & Use Cases

  • Webhook-to-transform wiring: routes /hooks/fieldy requests through a dedicated transform module before agent execution.
  • Wake-word parsing and logging: detects wake words in transcripts, logs transcripts to per-day JSONL files, and yields a structured command when wake word is found.
  • Configurability: wake words, parsing rules, and logging behavior can be adjusted by updating the Fieldy transform script.
  • Use Case: integrate Fieldy with Moltbot to trigger an agent run when a user says "Hey Fieldy ..." and keep a transcript history for later analysis.

Quick Start

Configure Moltbot gateway to load the fieldy-webhook transform from the configured transforms folder, then send a test transcript to trigger the agent.

Frequently Asked Questions about fieldy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route a webhook payload through a transform before triggering an agent?

To route a webhook payload through a transform before triggering an agent, you wire a dedicated transform module into the gateway hooks to parse incoming requests and forward the resulting command to the agent.

Can I log voice transcripts to JSONL files for debugging an agent workflow?

Yes, you can log transcripts to per-day JSONL files for debugging an agent workflow. The transform detects wake words in transcripts and logs the data under the workspace to support later auditing and analysis.

How do I parse wake words from webhook transcripts to trigger a bot?

To parse wake words from webhook transcripts and trigger a bot, apply a transform script that detects specific wake words in the text and yields a structured command to forward to the agent.

Do I need a gateway setup to process webhook requests with a transform script?

Yes, you need a gateway setup to process webhook requests with a transform script. The gateway loads the transform module from the configured transforms folder to intercept and process incoming payloads before agent execution.

Can I configure custom wake words for transcript parsing in a webhook transform?

Yes, you can configure custom wake words for transcript parsing in a webhook transform. Wake words, parsing rules, and logging behavior can all be adjusted by updating the transform script directly.

What's the best way to integrate a webhook with a bot agent using a transform?

The best way to integrate a webhook with a bot agent using a transform is to route the webhook requests through a deterministic transform module that parses the payload and forwards structured commands to the agent.