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

machinaos

v0.0.10

Published

Open source workflow automation platform with AI agents, React Flow, and n8n-inspired architecture

Readme

MachinaOS

Open-source Platform to Build Your Own Personal AI Assistant, mashup of clawdbot and n8n, but More Powerful.

Full Capabilities.

60 nodes | 6 AI providers | WebSocket-first | Self-hosted

Quick Start

npm install -g machinaos
machinaos start

Open http://localhost:3000

One-Line Install (installs all dependencies automatically)

Linux/macOS:

curl -fsSL https://raw.githubusercontent.com/trohitg/MachinaOS/main/install.sh | bash

Windows (PowerShell):

iwr -useb https://raw.githubusercontent.com/trohitg/MachinaOS/main/install.ps1 | iex

Clone & Run

git clone https://github.com/trohitg/MachinaOS.git
cd MachinaOS
npm run build
npm run start

Docker

git clone https://github.com/trohitg/MachinaOS.git
cd MachinaOS
npm run docker:up

Features

AI Integration (6 Providers)

| Provider | Models | Features | |----------|--------|----------| | OpenAI | GPT-4o, GPT-4 Turbo, o1, o3, o4-mini | JSON mode, reasoning effort | | Anthropic | Claude 3.5 Sonnet, Claude 3 Opus, Claude 3 Haiku | Extended thinking | | Google | Gemini 2.5 Pro, Gemini 2.5 Flash, Gemini 2.0 Flash Thinking | Multimodal, 1M context | | OpenRouter | 200+ models | Unified API for all providers | | Groq | Llama, Mixtral, Qwen | Ultra-fast inference | | Cerebras | Llama, Qwen | Ultra-fast on custom hardware |

AI Agents & Skills

  • AI Agent - LangGraph-powered with tool calling and iterative reasoning
  • Chat Agent - Conversational agent with skill support for multi-turn chat
  • 10 Skills - WhatsApp, Maps, HTTP, Scheduler, Android, Code, Memory, Web Search, Custom
  • 4 Tools - Calculator, Current Time, Web Search, Android Toolkit
  • Simple Memory - Markdown-based conversation history with vector storage

Platform Integrations

  • WhatsApp - Send/receive messages with QR pairing, filters, group support
  • Android - 17 service nodes for device control (battery, WiFi, Bluetooth, apps, camera, sensors)
  • HTTP/Webhooks - REST API integration with event-driven triggers
  • Google Maps - Geocoding, nearby places, directions

Document Processing (RAG Pipeline)

  • HTTP Scraper - Scrape URLs with pagination and date ranges
  • File Downloader - Parallel downloads with semaphore concurrency
  • Document Parser - PyPDF, Marker (OCR), Unstructured, BeautifulSoup
  • Text Chunker - Recursive, markdown, or token-based splitting
  • Embedding Generator - HuggingFace, OpenAI, Ollama embeddings
  • Vector Store - ChromaDB, Qdrant, Pinecone backends

Node Categories

| Category | Count | Description | |----------|-------|-------------| | AI Models | 6 | OpenAI, Anthropic, Google, OpenRouter, Groq, Cerebras | | AI Agents | 3 | AI Agent, Chat Agent, Simple Memory | | AI Skills | 10 | WhatsApp, Maps, HTTP, Scheduler, Android, Code, etc. | | AI Tools | 4 | Calculator, Time, Search, Android Toolkit | | WhatsApp | 3 | Send, Receive, Database | | Android | 17 | Device control and monitoring | | Documents | 6 | RAG pipeline nodes | | Utilities | 5 | HTTP, Webhooks, Chat Trigger, Console | | Location | 3 | Google Maps integration | | Code | 2 | Python and JavaScript executors | | Workflow | 1 | Start node |

Total: 60 nodes

Prerequisites

The install script handles these automatically, but for manual installation:

  • Node.js 18+ - https://nodejs.org/
  • Python 3.11+ - https://python.org/
  • uv - curl -LsSf https://astral.sh/uv/install.sh | sh
  • Go 1.21+ - https://go.dev/dl/ (for WhatsApp service)

CLI Commands

| Command | Description | |---------|-------------| | machinaos start | Start all services (frontend, backend, WhatsApp) | | machinaos stop | Stop all running services | | machinaos build | Build for production | | machinaos clean | Remove build artifacts and dependencies | | machinaos docker:up | Start with Docker Compose | | machinaos docker:down | Stop Docker containers | | machinaos help | Show all available commands |

Configuration

API Keys: Click Credentials button in toolbar to add API keys for OpenAI, Claude, Google Maps, etc.

Environment: Copy .env.template to .env and customize ports, auth settings, database location.

Docker Commands

| Command | Description | |---------|-------------| | machinaos docker:up | Start containers (detached) | | machinaos docker:down | Stop containers | | machinaos docker:build | Rebuild images | | machinaos docker:logs | View logs (follows) |

Redis (optional): Set REDIS_ENABLED=true in .env

Production Docker

npm run docker:prod:build
npm run docker:prod:up

Project Structure

MachinaOS/
├── client/           # React frontend (localhost:3000)
├── server/           # Python FastAPI backend (localhost:3010)
│   ├── services/     # Workflow execution, AI, handlers
│   ├── routers/      # API endpoints, WebSocket
│   └── whatsapp-rpc/ # WhatsApp Go service
├── scripts/          # Cross-platform Node.js scripts
└── bin/cli.js        # CLI entry point

Tech Stack

  • Frontend: React 19, TypeScript, React Flow, Zustand
  • Backend: Python 3.11+, FastAPI, SQLite, LangChain/LangGraph
  • Services: WhatsApp (Go + whatsmeow), WebSocket relay
  • Package Manager: uv (Python), npm (Node.js)

Documentation

Full documentation available at: https://docs.machinaos.dev

Troubleshooting

Port already in use:

machinaos stop   # Kill all services
machinaos start  # Restart

Missing dependencies:

machinaos build  # Install all dependencies

Clean install:

machinaos clean  # Remove node_modules, .venv, dist
machinaos build  # Reinstall everything

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Run tests and linting
  5. Submit a pull request

License

MIT