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

icit-cli

v2.11.1

Published

CLI for ICIT Odoo infrastructure management

Readme

icit-cli

CLI for ICIT Odoo infrastructure management.

Prerequisites

  • Node.js 18+
  • SSH access to the gateway server (configured in ~/.ssh/config)
  • Microsoft Authenticator set up for MFA

Install

# npm (recommended)
npm install -g icit-cli

# or run without installing
npx icit-cli status

# or curl
curl -fsSLk https://46.101.21.210/install.sh | bash

Quickstart

# 1. Login (SSH + MFA)
icit login

# 2. Check server status
icit status premium

# 3. View Patroni cluster
icit db

# 4. Check container logs
icit logs premium odoo-qfa-prod 50

Commands

Auth

| Command | Description | |---------|-------------| | icit login | Authenticate via SSH + MFA | | icit logout | Clear stored credentials | | icit whoami | Show current session info |

Monitoring

| Command | Description | |---------|-------------| | icit health | API health check | | icit status | List all servers | | icit status <server> | Server metrics + containers | | icit containers <server> | List containers | | icit logs <server> <container> | Container logs (--tail N) | | icit db | Patroni cluster status |

Operations

| Command | Description | |---------|-------------| | icit start <server> <container> | Start a container | | icit stop <server> <container> | Stop a container | | icit restart <server> <container> | Restart a container |

Production containers require confirmation. Skip with --yes.

Deployments

| Command | Description | |---------|-------------| | icit deploy | List all deployments | | icit deploy trigger <name> | Trigger blue/green deploy | | icit deploy status <id> | Check deploy progress | | icit deploy history <name> | Deploy history (--limit N) | | icit deploy rollback <name> | Rollback to previous color |

Configuration

| Command | Description | |---------|-------------| | icit config list | List nginx sites | | icit config show <site> | Show site config | | icit config reload-nginx | Validate + reload nginx | | icit config reload-haproxy | Validate + reload HAProxy |

Admin

| Command | Description | |---------|-------------| | icit keys list | List API keys | | icit keys create <name> <scopes> | Create key (--expires N) | | icit keys revoke <id> | Deactivate key | | icit keys delete <id> | Delete key permanently | | icit audit | View audit log (--limit N, --key NAME) |

Global Flags

| Flag | Description | |------|-------------| | --json | Output raw JSON (for scripting) | | --yes, -y | Skip confirmation prompts | | --help, -h | Show help for a command |

Servers

| Name | Containers | |------|-----------| | premium | QFA, Cruxstone, Slow (prod/staging/dev/sandbox) | | clients | Kuddy, Flotech, Bakers, Rosaab, Safeco, Trino |

Scripting

# JSON output + jq
icit containers premium --json | jq '.[].name'
icit db --json | jq '.nodes[] | select(.role == "primary") | .name'

# CI/CD: use --yes to skip prompts
icit deploy trigger odoo-qfa-dev --yes

Auth Details

icit login authenticates via SSH to the gateway server, which triggers password + TOTP verification. On success, a time-limited API key is created and stored in ~/.icit/credentials.json. All subsequent commands use this key. Sessions expire after 24-48 hours depending on your user role.

API

The CLI wraps the ICIT Infrastructure API running at https://46.101.21.210/api/v1/. Swagger docs available at https://46.101.21.210/docs.