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

@clix-so/clix-cli

v1.1.2

Published

A CLI tool for integrating and managing the Clix SDK in your mobile projects

Readme

Clix CLI

Command-mode AI assistant for Clix SDK installation and diagnostics.

Features

  • Command-only workflow — no interactive chat mode
  • Step-based install preparation flow for Firebase and iOS push setup
  • Interactive agent handoff for install and doctor commands
  • Built-in MCP server installer (mcp)
  • Built-in skills installer (skills)

Installation

npm

npm install -g @clix-so/clix-cli

Bun

bun add -g @clix-so/clix-cli

Script

curl -fsSL https://clix.sh/install | bash

Homebrew (macOS)

brew tap clix-so/clix-cli
brew install clix

See UNINSTALL.md for removal instructions.

Prerequisites

  • Node.js 20+
  • One of the following AI agents:

| Agent | Free Plan | CLI Free Usage | | ------------------------------------------------------------------------------------ | :-------: | ------------------------------------- | | Gemini CLI | Yes | 1,000 requests/day | | GitHub Copilot | Yes | 50 premium requests/month | | OpenCode | Yes | Unlimited (with your own API keys) | | Cursor | Limited | 50 slow requests/month | | Claude Code | No | Requires Pro ($20/mo) or API | | Codex | No | Requires ChatGPT Plus ($20/mo) or API |

Tip: If you don't have an active subscription, start with Gemini CLI or GitHub Copilot which offer generous free tiers.

Quick Start

clix agent          # Select an AI agent
clix install        # Install Clix SDK into your project
clix doctor         # Diagnose SDK integration issues

Commands

| Command | Description | | ---------------------------------- | --------------------------------------------------- | | clix / clix help | Show help and exit | | clix agent [name] | List available agents or switch the active agent | | clix install | Run install preparation, then hand off to agent CLI | | clix doctor | Run SDK diagnostics via agent handoff | | clix mcp | Install Clix MCP Server | | clix skills | Install Clix Skills | | clix update | Check for and apply CLI updates | | clix login / logout / whoami | Account and authentication | | clix uninstall | Remove Clix CLI from your system |

clix install [--start-task <task>]

Runs a two-phase install pipeline:

  1. Preparation UI — guided step-by-step setup for Firebase, APNS, and iOS configuration
  2. Agent handoff — launches the selected AI agent CLI with the install prompt

The --start-task flag is development-only and requires CLIX_DEV_ENABLE_TASK_OVERRIDE=1.

clix doctor

Hands off to the selected AI agent CLI with a diagnostic prompt. The agent analyzes SDK integration status, dependency health, and configuration issues.

clix mcp

Installs the Clix MCP Server via npx add-mcp @clix-so/clix-mcp-server@latest --name clix.

clix skills

Installs the Clix Skills via npx skills add clix-so/skills and transfers CLI control.

clix update [--dry-run] [--force]

Checks for CLI updates and applies them. Use --dry-run to preview without applying, --force to skip confirmation.

clix uninstall [--keep-config] [--keep-state] [--dry-run] [--force]

Removes Clix CLI. Use --keep-config or --keep-state to preserve local data.

Install Preparation Tasks

clix install enforces the following order for required preparation tasks:

  1. Firebase Configuration Files
  2. Firebase Service Account
  3. APNS Key for Firebase
  4. iOS Entitlements
  5. Notification Service Extension

Runtime SDK installation executes only after all required preparation steps are complete.

Development

See CONTRIBUTING.md for the full development guide.

bun install          # Install dependencies
bun run dev          # Run CLI from source
bun run build        # Bundle for distribution
bun test             # Run all tests
bun run check        # Lint + typecheck

Links

License

MIT