FieldFix Skill
Query and manage your heavy equipment fleet through FieldFix's Agent API.
Setup
- 1. Get your API key from FieldFix Settings
- Set environment variable:
CODEBLOCK0
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:
CODEBLOCK1
Get machine details:
CODEBLOCK2
Get machine expenses:
CODEBLOCK3
Get service history:
CODEBLOCK4
Get fleet alerts:
CODEBLOCK5
Write Operations
Log a service entry:
CODEBLOCK6
Log an expense:
CODEBLOCK7
Update hour meter:
CODEBLOCK8
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 |
|---|
| INLINECODE0 | GET | List all machines |
| INLINECODE1 |
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
FieldFix 技能
通过 FieldFix 的 Agent API 查询和管理您的重型设备车队。
设置
- 1. 获取您的 API 密钥,请访问 FieldFix 设置页面
- 设置环境变量:
bash
export FIELDFIX
APIKEY=ff
sklive
yourkey_here
定价
所有付费计划均包含 API 访问权限:
- - 每台机器/月 10 美元(1-25 台机器)
- 每台机器/月 7 美元(26-100 台机器)
- 每台机器/月 5 美元(100 台以上机器)
- 2 个月免费试用 — 无需信用卡
功能
读取操作
列出所有机器:
bash
node scripts/fieldfix.js machines
获取机器详情:
bash
node scripts/fieldfix.js machine
获取机器费用:
bash
node scripts/fieldfix.js expenses
获取服务历史:
bash
node scripts/fieldfix.js service
获取车队警报:
bash
node scripts/fieldfix.js alerts
写入操作
记录服务条目:
bash
node scripts/fieldfix.js log-service 更换机油 120 已更换机油和滤清器
记录费用:
bash
node scripts/fieldfix.js log-expense fuel 250 已加满油箱
更新小时表:
bash
node scripts/fieldfix.js update-hours 1250
示例提示
配置完成后,尝试向您的代理提问:
- - 我在 FieldFix 中有哪些机器?
- 我的 CAT 299 何时需要保养?
- 我这个月在燃油上花了多少钱?
- 为挖掘机记录一次 120 美元的机油更换
- 我的滑移装载机每小时的总体成本是多少?
API 端点
| 端点 | 方法 | 描述 |
|---|
| /machines | GET | 列出所有机器 |
| /machines/{id} |
GET | 获取机器详情 |
| /machines/{id}/expenses | GET | 获取费用历史 |
| /machines/{id}/service | GET | 获取服务历史 |
| /alerts | GET | 获取车队警报 |
| /machines/{id}/service | POST | 记录服务条目 |
| /machines/{id}/expenses | POST | 记录费用 |
| /machines/{id}/hours | POST | 更新小时数 |
链接