FieldFix
Scanned@blueprintstudioco
npx machina-cli add skill @blueprintstudioco/fieldfix --openclawFieldFix Skill
Query and manage your heavy equipment fleet through FieldFix's Agent API.
Setup
- Get your API key from FieldFix Settings
- 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?"
API Endpoints
| Endpoint | Method | Description |
|---|---|---|
/machines | GET | List all machines |
/machines/{id} | GET | Get machine details |
/machines/{id}/expenses | GET | Get expense history |
/machines/{id}/service | GET | Get service history |
/alerts | GET | Get fleet alerts |
/machines/{id}/service | POST | Log service entry |
/machines/{id}/expenses | POST | Log expense |
/machines/{id}/hours | POST | Update hours |
Links
Overview
FieldFix provides an API to query and manage your heavy equipment fleet. It lets you list machines, fetch details, review expenses and service history, log maintenance, and update hours, helping you optimize maintenance and costs. AI diagnostics support helps leak detection and predictive insights for uptime.
How This Skill Works
Authenticate with your API key exposed via the FIELDFIX_API_KEY environment variable. Use the FieldFix Agent API or the provided CLI commands to perform read operations (list machines, get machine details, expenses, service history, and alerts) and write operations (log service, log expense, update hours). Endpoints include /machines, /machines/{id}, /machines/{id}/expenses, /machines/{id}/service, /alerts, and /machines/{id}/hours, with sample scripts shown in the Skill documentation.
When to Use It
- When you need a complete list of all machines in your FieldFix fleet.
- When you want details about a specific machine (specs, history, expenses).
- When budgeting or auditing costs by reviewing expenses and service history.
- When logging maintenance or expenses directly from the field.
- When updating hour meters and monitoring fleet alerts.
Quick Start
- Step 1: Get your API key from FieldFix Settings.
- Step 2: Set the environment variable: export FIELDFIX_API_KEY=ff_sk_live_your_key_here
- Step 3: Try a quick prompt or run a sample command like: node scripts/fieldfix.js machines
Best Practices
- Securely store and rotate your API key; use environment variables like FIELDFIX_API_KEY.
- Fetch data with read endpoints before performing write actions to avoid duplicates.
- Validate machine IDs and contexts before logging service or expenses.
- Include clear, consistent descriptions and amounts when logging services or expenses.
- Regularly review hours, expenses, and alerts to prevent unplanned downtime.
Example Use Cases
- 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?