skills$openclaw/fieldfix
blueprintstudioco1.4k

by blueprintstudioco

fieldfix – OpenClaw Skill

fieldfix is an OpenClaw Skills integration for writing workflows. Query and manage your heavy equipment fleet through FieldFix's API. Track machines, log maintenance, monitor expenses, and get AI diagnostics.

1.4k stars475 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namefieldfix
descriptionQuery and manage your heavy equipment fleet through FieldFix's API. Track machines, log maintenance, monitor expenses, and get AI diagnostics. OpenClaw Skills integration.
ownerblueprintstudioco
repositoryblueprintstudioco/fieldfix
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @blueprintstudioco/fieldfix
last updatedFeb 7, 2026

Maintainer

blueprintstudioco

blueprintstudioco

Maintains fieldfix in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
scripts
fieldfix.js
4.3 KB
_meta.json
279 B
config.example.json
65 B
package.json
595 B
SKILL.md
2.4 KB
SKILL.md

name: fieldfix description: Query and manage your heavy equipment fleet through FieldFix's API. Track machines, log maintenance, monitor expenses, and get AI diagnostics. version: 1.0.0 author: FieldFix support@fieldfix.ai homepage: https://www.fieldfix.ai/api

FieldFix Skill

Query and manage your heavy equipment fleet through FieldFix's Agent API.

Setup

  1. Get your API key from FieldFix Settings
  2. Set environment variable:
    export FIELDFIX_API_KEY=ff_sk_live_your_key_here
    

Pricing

API access is included with all paid plans:

  • $10/machine/month (1-25 machines)
  • $7/machine/month (26-100 machines)
  • $5/machine/month (100+ machines)
  • 2 months free trial — no credit card required

Capabilities

Read Operations

List all machines:

node scripts/fieldfix.js machines

Get machine details:

node scripts/fieldfix.js machine <id>

Get machine expenses:

node scripts/fieldfix.js expenses <id>

Get service history:

node scripts/fieldfix.js service <id>

Get fleet alerts:

node scripts/fieldfix.js alerts

Write Operations

Log a service entry:

node scripts/fieldfix.js log-service <id> "Oil Change" 120 "Changed oil and filter"

Log an expense:

node scripts/fieldfix.js log-expense <id> fuel 250 "Filled tank"

Update hour meter:

node scripts/fieldfix.js update-hours <id> 1250

Example Prompts

Once configured, try asking your agent:

  • "What machines do I have in FieldFix?"
  • "When is my CAT 299 due for service?"
  • "How much have I spent on fuel this month?"
  • "Log an oil change on the excavator for $120"
  • "What's the total cost per hour for my skid steer?"
EndpointMethodDescription
/machinesGETList all machines
/machines/{id}GETGet machine details
/machines/{id}/expensesGETGet expense history
/machines/{id}/serviceGETGet service history
/alertsGETGet fleet alerts
/machines/{id}/servicePOSTLog service entry
/machines/{id}/expensesPOSTLog expense
/machines/{id}/hoursPOSTUpdate hours
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install fieldfix?

Run openclaw add @blueprintstudioco/fieldfix in your terminal. This installs fieldfix into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/blueprintstudioco/fieldfix. Review commits and README documentation before installing.