maintainx-core-workflow-b

Featured

Execute MaintainX secondary workflow: Asset and Location management. Use when managing equipment assets, organizing locations/facilities, building asset hierarchies, and tracking equipment maintenance history. Trigger with phrases like "maintainx asset", "maintainx location", "equipment tracking", "asset management", "facility hierarchy".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# MaintainX Core Workflow B: Asset & Location Management ## Overview Manage equipment assets and facility locations in MaintainX. Assets represent equipment that requires maintenance; locations organize your facilities into a manageable hierarchy. ## Prerequisites - Completed `maintainx-install-auth` setup - `MAINTAINX_API_KEY` environment variable configured - MaintainX account with asset management permissions ## Instructions ### Step 1: Create a Location Hierarchy ```typescript import { MaintainXClient } from './maintainx/client'; const client = new MaintainXClient(); // Create top-level facility const { data: plant } = await client.request('POST', '/locations', { name: 'Manufacturing Plant - Austin', description: 'Main production facility', address: '1234 Industrial Blvd, Austin, TX 78701', }); // Create sub-locations const { data: floor } = await client.request('POST', '/locations', { name: 'Production Floor - Building A', parentId: plant.id, description: 'Primary manufacturing area with 12 production lines', }); const { data: mechRoom } = await client.request('POST', '/locations', { name: 'Mechanical Room - B2', parentId: plant.id, description: 'Pumps, compressors, and HVAC equipment', }); console.log(`Location hierarchy created: ${plant.id} → ${floor.id}, ${mechRoom.id}`); ``` ### Step 2: Register Assets ```typescript // Create an asset linked to a location const { data: pump } = await client.request('POST', '/assets', { name: 'Centrifug...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

maintainx-core-workflow-a

Execute MaintainX primary workflow: Work Order lifecycle management. Use when creating, updating, and managing work orders through their full lifecycle, from creation to completion with all status transitions. Trigger with phrases like "maintainx work order", "create work order", "work order lifecycle", "maintenance task", "manage work orders".

2,266 Updated today
jeremylongshore
AI & Automation Featured

maintainx-install-auth

Install and configure MaintainX REST API authentication. Use when setting up a new MaintainX integration, configuring API keys, or initializing MaintainX API access in your project. Trigger with phrases like "install maintainx", "setup maintainx", "maintainx auth", "configure maintainx API key", "maintainx credentials".

2,266 Updated today
jeremylongshore
AI & Automation Featured

maintainx-hello-world

Create a minimal working MaintainX example - your first work order. Use when starting a new MaintainX integration, testing your setup, or learning basic MaintainX API patterns. Trigger with phrases like "maintainx hello world", "maintainx example", "maintainx quick start", "create first work order", "simple maintainx code".

2,266 Updated today
jeremylongshore
AI & Automation Listed

maintainx-automation

Automate Maintainx tasks via Rube MCP (Composio). Always search tools first for current schemas.

62,564 Updated 1 weeks ago
ComposioHQ
AI & Automation Featured

maintainx-enterprise-rbac

Configure enterprise role-based access control for MaintainX integrations. Use when implementing SSO, managing organization-level permissions, or setting up enterprise access controls with MaintainX. Trigger with phrases like "maintainx rbac", "maintainx sso", "maintainx enterprise", "maintainx permissions", "maintainx roles".

2,266 Updated today
jeremylongshore