maintainx-local-dev-loop

Featured

Set up a local development loop for MaintainX integration development. Use when configuring dev environment, testing API calls locally, or setting up a sandbox workflow for MaintainX. Trigger with phrases like "maintainx dev setup", "maintainx local", "maintainx development environment", "maintainx testing setup".

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 Local Dev Loop ## Overview Set up an efficient local development workflow for building and testing MaintainX integrations with hot reload, mock servers, and automated testing. ## Prerequisites - Completed `maintainx-install-auth` setup - Node.js 18+ installed - `MAINTAINX_API_KEY` environment variable set ## Instructions ### Step 1: Initialize TypeScript Project ```bash mkdir maintainx-integration && cd maintainx-integration npm init -y npm install axios dotenv npm install -D typescript tsx vitest @types/node npx tsc --init --target ES2022 --module NodeNext --moduleResolution nodenext --outDir dist ``` Create `tsconfig.json` paths: ```json { "compilerOptions": { "target": "ES2022", "module": "NodeNext", "moduleResolution": "nodenext", "outDir": "dist", "strict": true, "esModuleInterop": true }, "include": ["src/**/*"] } ``` ### Step 2: Project Structure ``` maintainx-integration/ ├── src/ │ ├── client.ts # MaintainX API client (from install-auth) │ ├── work-orders.ts # Work order service layer │ └── sync.ts # Data sync logic ├── tests/ │ ├── client.test.ts # Unit tests with mocks │ └── integration.test.ts # Live API tests ├── .env # MAINTAINX_API_KEY=... ├── .env.example # MAINTAINX_API_KEY=your-key-here ├── package.json └── tsconfig.json ``` ### Step 3: Dev Scripts in package.json ```json { "scripts": { "dev": "tsx watch src/index.ts", "test": "vite...

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

klaviyo-local-dev-loop

Configure Klaviyo local development with hot reload, mocking, and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with the Klaviyo API. Trigger with phrases like "klaviyo dev setup", "klaviyo local development", "klaviyo dev environment", "develop with klaviyo", "klaviyo testing".

2,266 Updated today
jeremylongshore
AI & Automation Featured

mistral-local-dev-loop

Configure Mistral AI local development with hot reload, testing, and mocking. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Mistral AI. Trigger with phrases like "mistral dev setup", "mistral local development", "mistral dev environment", "develop with mistral".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickup-local-dev-loop

Set up local development for ClickUp API integrations with testing, mocking, and hot reload. Trigger: "clickup dev setup", "clickup local development", "clickup dev environment", "develop with clickup", "clickup testing setup", "mock clickup API".

2,266 Updated today
jeremylongshore
AI & Automation Featured

attio-local-dev-loop

Set up a fast local development loop for Attio integrations with hot reload, mock server, and integration tests. Trigger: "attio dev setup", "attio local development", "attio dev environment", "develop with attio", "attio project setup".

2,266 Updated today
jeremylongshore
AI & Automation Featured

miro-local-dev-loop

Configure Miro local development with hot reload, testing, and ngrok tunneling. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with the Miro REST API v2. Trigger with phrases like "miro dev setup", "miro local development", "miro dev environment", "develop with miro", "miro testing".

2,266 Updated today
jeremylongshore