npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/maintainx-pack

v1.0.0

Published

Claude Code skill pack for MaintainX - 24 skills covering CMMS work orders, assets, preventive maintenance, and procedures

Downloads

144

Readme

MaintainX Skill Pack

Claude Code skill pack for MaintainX CMMS integration (24 skills)

Installation

/plugin install maintainx-pack@claude-code-plugins-plus

About MaintainX

MaintainX is a cloud-based Computerized Maintenance Management System (CMMS) used by industrial teams to manage maintenance operations. The REST API at api.getmaintainx.com/v1 provides programmatic access to work orders, assets, locations, procedures, meters, parts inventory, and team management.

Key facts:

  • REST API v1 at https://api.getmaintainx.com/v1/
  • Bearer token authentication (API key from Settings > Integrations)
  • Cursor-based pagination with cursor and limit parameters
  • Professional or Enterprise plan required for API access
  • Official documentation at maintainx.dev

Skills Included

Standard Skills (S01-S12)

| Skill | Description | |-------|-------------| | maintainx-install-auth | REST API client setup with TypeScript and Python wrappers | | maintainx-hello-world | Create first work order via API and curl | | maintainx-local-dev-loop | Development environment with sandbox testing | | maintainx-sdk-patterns | REST patterns, cursor pagination, typed interfaces | | maintainx-core-workflow-a | Work order lifecycle (OPEN > IN_PROGRESS > COMPLETED) | | maintainx-core-workflow-b | Asset and location management | | maintainx-common-errors | HTTP error codes, validation errors, auth issues | | maintainx-debug-bundle | API diagnostics, request tracing, response inspection | | maintainx-rate-limits | Rate limiting, cursor pagination, request optimization | | maintainx-security-basics | API key security, org isolation, access control | | maintainx-prod-checklist | Production deployment and integration checklist | | maintainx-upgrade-migration | API version migration and breaking changes |

Pro Skills (P13-P18)

| Skill | Description | |-------|-------------| | maintainx-ci-integration | CI/CD pipeline with API testing | | maintainx-deploy-integration | Deployment automation and infrastructure | | maintainx-webhooks-events | Webhook setup and event handling | | maintainx-performance-tuning | API performance, caching, batch operations | | maintainx-cost-tuning | API usage optimization and cost management | | maintainx-reference-architecture | Production architecture with sync patterns |

Flagship Skills (F19-F24)

| Skill | Description | |-------|-------------| | maintainx-multi-env-setup | Dev/staging/prod with org-level isolation | | maintainx-observability | API monitoring, alerting, and dashboards | | maintainx-incident-runbook | API failure triage and recovery | | maintainx-data-handling | Data sync, ETL patterns, export workflows | | maintainx-enterprise-rbac | Multi-org access, role-based permissions | | maintainx-migration-deep-dive | Platform migration from other CMMS systems |

Quick Start

# Set API key
export MAINTAINX_API_KEY="your-api-key"

# Create a work order
curl -X POST https://api.getmaintainx.com/v1/workorders \
  -H "Authorization: Bearer $MAINTAINX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title": "HVAC Filter Replacement", "priority": "MEDIUM", "status": "OPEN"}'

# List open work orders
curl -s "https://api.getmaintainx.com/v1/workorders?status=OPEN&limit=5" \
  -H "Authorization: Bearer $MAINTAINX_API_KEY" | jq '.workOrders[] | {id, title, status}'

API Reference

| Endpoint | Methods | Description | |----------|---------|-------------| | /workorders | GET, POST | Work order CRUD | | /workorders/{id} | GET, PATCH, DELETE | Single work order | | /assets | GET, POST | Equipment and asset management | | /locations | GET, POST | Facility and area management | | /users | GET | Team member listing | | /teams | GET | Team management | | /meters | GET, POST | Meter readings | | /parts | GET, POST | Parts and inventory | | /procedures | GET | Standard operating procedures |

Resources

License

MIT