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

@descix/cli

v1.0.1

Published

DeSciX CLI and MCP Server - Unified command-line interface for DeSciX platform

Readme

DeSciX CLI

The official command-line interface for the DeSciX platform.

Installation

npm install -g @descix/cli

Quick Start

  1. Login to DeSciX:

    descix login
  2. Setup your workspace:

    descix setup

    This will guide you through connecting your Google Drive and setting up your local environment.

    Development Mode: If you are developing locally or against a test environment, you can use the --dev flag:

    npx descix setup --dev

    This defaults to https://localhost:4000 unless configured otherwise.

  3. Check your status:

    descix status

Workspace Modes

The CLI supports three workspace modes to accommodate different development needs:

1. Single App Mode (single_app)

Best for individual developers working on one app.

  • Structure: The root folder is your app folder.
  • Drive Path: {community_id}/{app_id}/

2. Single Community Mode (single_community)

Best for teams managing multiple apps within one community.

  • Structure: The root folder is the community folder, containing subfolders for each app.
  • Drive Path: {community_id}/

3. Multi-Community Mode (multi_community)

Best for platform admins or agencies managing multiple communities.

  • Structure: The root folder contains subfolders for each community.
  • Drive Path: / (Root of your base folder)

Core Commands

  • descix login: Authenticate with the platform.
  • descix setup: Initialize or repair your workspace configuration.
  • descix status: View your current environment status and workspace mode.
  • descix init: Create .descix/workspace.json for the current project.
  • descix app create: Show instructions; use --quick -c <community> -a <name> for template-only app creation, or use PWA / descix-admin app create.
  • descix sync: Sync content to the platform (Site, Assets).
  • descix kb: Manage Knowledge Base content (Pull -> Chunk -> Sync).

Knowledge Base Management (Git Mode)

For apps managed via CLI (Git Mode), use the following commands to process your Knowledge Base locally:

  1. Pull: Fetch source documents from Drive.
    descix kb pull
  2. Chunk: Process documents into chunks locally.
    descix kb chunk
  3. Sync: Push chunks to the platform (Pinecone).
    descix kb sync
  4. Build: Run the full pipeline (Pull -> Chunk -> Sync).
    descix kb build

Provisioning

Communities and apps are created in the PWA (Workspace Config / Device Setup / App Manager) or via Admin CLI (descix-admin community create, descix-admin app create) for platform admins. The user CLI does not create communities or full app structures; use descix init to write .descix/workspace.json and PWA or Admin CLI to create entities.

  1. Create your App in the PWA (Workspace Builder).
  2. Run descix setup to hydrate your local folder structure.

Documentation

For full documentation, please refer to the DeSciX SDK Documentation.