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

@nodeops-createos/cli

v0.1.0-beta.9

Published

Deploy anything to CreateOS - AI agents, APIs, MCP servers, bots, and more

Downloads

748

Readme

@nodeops-createos/cli

Deploy anything to production with CreateOS - AI agents, APIs, MCP servers, bots, and more.

npm version Beta


This is a beta release. We welcome feedback and bug reports at GitHub Issues.


Installation

# Install globally
npm install -g @nodeops-createos/cli

# Or use directly with npx (no install needed)
npx @nodeops-createos/cli init

Quick Start

# 1. Get your API key from https://createos.nodeops.network/settings/api-keys

# 2. Authenticate
createos login --token YOUR_API_KEY
# Or set environment variable:
export CREATEOS_API_KEY="your-api-key"

# 3. Initialize a project
createos init

# 4. Deploy!
createos deploy

Commands

Initialize Project

createos init                        # Interactive setup
createos init -t agent -n my-agent   # Create AI agent project
createos init -t mcp -n my-mcp       # Create MCP server
createos init -t api -n my-api       # Create API service

Deploy

createos deploy                  # Deploy current directory
createos deploy -d ./dist        # Deploy specific directory
createos deploy -b main          # Deploy specific branch (VCS)
createos deploy -i nginx:latest  # Deploy Docker image

Quick Deploy Shortcuts

createos agent my-agent -r org/repo    # Deploy AI agent from GitHub
createos mcp my-mcp -r org/repo        # Deploy MCP server
createos api my-api -r org/repo        # Deploy API service
createos bot my-bot -i mybot:latest    # Deploy bot from Docker

Project Management

createos list                    # List all projects
createos logs my-project         # View runtime logs
createos logs my-project -t build # View build logs
createos env list my-project     # List environment variables
createos env set my-project prod -k API_KEY -v secret

Domains

createos domains list my-project
createos domains add my-project -d api.example.com
createos domains verify my-project -d api.example.com
createos domains remove my-project -d api.example.com

AI Agent Integration

createos skill              # Show skill info
createos skill install      # Install skill files for AI agents
createos skill export -o ./my-skill

For AI Agents (MCP)

If you're using OpenClaw, Claude, MoltBot, or other AI agents with MCP:

MCP Endpoint: https://api-createos.nodeops.network/mcp

No API key needed when connected via MCP! Just call tools directly:

CreateProject(...)
UploadDeploymentFiles(...)
ListProjects(...)

Configuration

Environment Variables

  • CREATEOS_API_KEY - Your API key (required)
  • CREATEOS_API_URL - Custom API URL (optional)

Project Config (createos.json)

Created automatically by createos init:

{
  "uniqueName": "my-app",
  "displayName": "My App",
  "type": "upload",
  "source": {},
  "settings": {
    "runtime": "node:20",
    "port": 3000
  }
}

Supported Technologies

Runtimes: node:18, node:20, node:22, python:3.11, python:3.12, golang:1.22, rust:1.75, bun:1.3, static

Frameworks: nextjs, reactjs-spa, vuejs-spa, nuxtjs, astro, express, fastapi, flask, django, gin

Programmatic Usage

import { CreateOSClient } from 'createos';

const client = new CreateOSClient('your-api-key');

// Create project
const project = await client.createProject({
  uniqueName: 'my-app',
  displayName: 'My App',
  type: 'upload',
  source: {},
  settings: { runtime: 'node:20', port: 3000 }
});

// Deploy files
await client.uploadFiles(project.id, [
  { path: 'index.js', content: 'console.log("Hello!")' }
]);

Beta Program

This CLI is currently in open beta. We appreciate your feedback!

Updating

Always use the latest beta version for the best experience:

npm update -g @nodeops-createos/cli

Links

  • Homepage: https://createos.io
  • Dashboard: https://createos.nodeops.network
  • API Docs: https://api-createos.nodeops.network/api-docs
  • Documentation: https://createos.io/docs

Contributing

See CONTRIBUTING.md for guidelines on how to contribute.

License

MIT - see LICENSE for details.