farmos-equipment
Query equipment status, maintenance schedules, and service history for the farm fleet. Uses integration endpoints (no auth required).
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/brianppetty/farmos-equipmentFarmOS Equipment
Query and manage farm equipment data — status, maintenance schedules, service records, and parts inventory.
When to Use This
What this skill handles: Fleet status, maintenance schedules, equipment issues, hour/mileage logging, service manual lookups, parts questions, and maintenance completion records.
Trigger phrases: "the [machine] is...", "equipment status", "log hours on...", "maintenance due", "what equipment needs service?", "search equipment manuals for...", "what oil does the 8370R take?"
What this does NOT handle: Field observations about crop/soil/pest issues (use farmos-observations), scheduling repairs for people or assigning work (create a task via farmos-tasks), weather damage reports (use farmos-observations with weather_damage type).
Minimum viable input: A machine name or description of an equipment issue. "The combine sounds funny" is enough.
API Base
Data Completeness Rules
CRITICAL: Always return complete data, never truncated results.
- Dashboard endpoint is for SUMMARY STATS ONLY — use
/api/integration/dashboardfor counts and overdue items, NOT for listing equipment. - For listing equipment, use
/api/integration/equipmentwhich returns ALL equipment without pagination. - For due maintenance, use
/api/integration/due-maintenancewhich returns ALL due/overdue items. - Always state the total count of items returned: "Found 3 overdue maintenance items" (not just "overdue items:").
- If suspiciously few results, flag it: "Only seeing X items — that may be incomplete. Let me try a different endpoint."
- If an endpoint fails, report the failure to the user rather than silently falling back to partial data.
Integration Endpoints (No Auth Required)
Dashboard Summary
GET /api/integration/dashboard
Returns: Equipment counts, maintenance stats, overdue items.
Use for: Summary statistics and counts ONLY. Do NOT use for listing equipment or maintenance items.
Equipment List
GET /api/integration/equipment
Returns: All equipment with id, name, make, model, type, status, current_hours.
Use for: Complete equipment listing. This endpoint returns ALL equipment without truncation.
Use this to look up equipment IDs for other queries.
Equipment Detail
GET /api/integration/equipment/{id}/summary
Returns: Full equipment summary including maintenance history, upcoming service, documents.
Due Maintenance
GET /api/integration/due-maintenance
Returns: List of maintenance items that are due or overdue, including:
- schedule_id, equipment_id, equipment_name
- maintenance_name, priority (low/normal/high/critical)
- trigger_type (hours/calendar/seasonal)
- hours_overdue or days_overdue
- estimated_duration_minutes
- parts_required list
Use for: Complete list of ALL due/overdue maintenance. Returns all items without truncation.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-brianppetty-farmos-equipment": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
farmos-land-portfolio
Query land ownership, leases, landlord info, and land payments. Write operations for payment management and lease renewals.
farmos-tasks
Query and manage farm work orders and tasks. View assignments, create tasks, update status. Uses integration endpoints (no auth) for reads and authenticated endpoints for writes.
farmos-finance
Query farm financial data — cash flow projections, cost tracking, breakeven analysis. Requires admin authentication. Highly sensitive data.
farmos-weather
Query weather data and forecasts for farm fields via the Agronomy module.
farmos-observations
Query and create field observations and AI-processed captures. Photos, voice notes, and text notes from the field.