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

@kernova/cli

v1.1.2

Published

Kernova CLI - Developer tools for the Intelligent Systems Runtime

Downloads

1,856

Readme

@kernova/cli

Developer tools for the Kernova AI Agent Platform.

Create projects, develop with hot-reload, build for production, and deploy to Kernova Cloud.

Installation

npm install -g @kernova/cli

Or use via npx (no install needed):

npx @kernova/cli create my-app

Commands

kernova create <name> — Scaffold a full-stack project

kernova create my-app
kernova create my-app --template multi-agent
kernova create my-app --no-frontend

Generates a complete project with agents, tools, React frontend, and configuration.

kernova dev — Start development server

kernova dev

Starts both the frontend (Next.js on port 3000) and agent backend (port 4555) behind a single URL. Includes hot-reload for agents.

  ✓ Ready at http://localhost:3000

    App:     http://localhost:3000
    Chat:    http://localhost:3000/chat
    Agents:  http://localhost:3000/api/agents/*
    Health:  http://localhost:3000/v1/health

kernova build — Build for production

kernova build

Compiles agents (TypeScript), builds frontend (Next.js), validates config.

kernova start — Run production server

kernova start

Runs the built project in production mode.

kernova deploy — Deploy to Kernova Cloud

kernova deploy

Deploys your app to Kernova Cloud. One command, both frontend and agents.

kernova login — Authenticate with Kernova Cloud

kernova login --key kn_live_xxxxx

kernova logout — Remove credentials

kernova logout

kernova init <name> — Create a legacy project (agents-only)

kernova init my-agent

kernova serve — Start agent runtime with Gateway API

kernova serve

kernova studio — Open the admin dashboard

kernova studio

kernova agent — Manage agent definitions

kernova agent create my-agent
kernova agent list
kernova agent inspect my-agent

kernova status — Show runtime status

kernova status

Development Flow

# Create and start
npx create-kernova-app my-app
cd my-app
kernova dev

# Develop: edit agents/ and app/ → hot reload

# Build and deploy
kernova build
kernova login --key kn_live_xxx
kernova deploy
# → https://my-app.kernova.app

Requirements

  • Node.js 20+
  • At least one AI model provider API key (e.g., OPENAI_API_KEY)

Documentation

Full docs at kernova.dev