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

vortexai-l0

v1.2.2

Published

VortexAI L0 - Universal Work Orchestrator CLI

Downloads

405

Readme

VortexAI L0 (Lzero Platform CLI)

VortexAI L0 is the CLI entry point for the Lzero platform — a local-first reasoning and orchestration stack with persistent memory, millisecond latency, and offline-ready execution. This package ships the CLI and the core orchestration runtime used by the SDKs.

Lzero platform package map

  • CLI + Orchestrator (this package): vortexai-l0
    • Node-first CLI with multiple aliases and local orchestration runtime.
  • Web & multi-platform SDK: @lanonasis/ai-sdk
    • Browser/Node SDK for apps and UI integrations.
  • Persistent memory: @lanonasis/memory-sdk-standalone
    • Memory client used by the SDK and orchestration workflows.

CLI Installation

# Install VortexAI L0 globally
npm install -g vortexai-l0

# Or use as a project dependency
npm install vortexai-l0

CLI Usage (Node)

The CLI is available under multiple command names for convenience:

  • vortex - Full name
  • vortexai - Alternative full name
  • l0 - Short alias
  • vxai - Short alias (new)
  • lzero - Short alias (new)
# Initialize workspace (any command works)
vortex init
lzero init
vxai init

# Real-world orchestration examples
vortex l0 "develop a new feature for my application"
vortex l0 "research options for security tools"
vortex l0 "research options for marketing"
vortex l0 "research options for sales"
vortex l0 "research options for customer support"
vortex orchestrate "analyze trending hashtags and create content calendar"
vortex orchestrate "research competitors and update Q4 strategy"

# Campaign management
vortex campaign "increase brand awareness among millennials"

# Development workflows
vortex l0 code "social media scheduler component"
vortex l0 memory "oauth implementation patterns"
vortex l0 help "technical topic"

Programmatic API

import { L0Orchestrator } from 'vortexai-l0/orchestrator';

const orchestrator = new L0Orchestrator();

const response = await orchestrator.query('create viral TikTok campaign');
console.log(response.workflow);
console.log(response.agents);

const code = await orchestrator.findCode('floating notification card');
console.log(code.code);

Repository layout

  • CLI package: apps/vortexai-l0
  • SaaS landing site: apps/vortexai-l0/L0-saas-index
  • SDK package: packages/ai-sdk

Build & publish (CLI)

cd apps/vortexai-l0
npm install
npm run build
npm publish --access public

Note: the landing site lives in apps/vortexai-l0/L0-saas-index and is not published to npm. Always publish from apps/vortexai-l0 to avoid conflicts.

Links

  • Marketing site: https://l0.vortexcore.app
  • Docs: https://docs.lanonasis.com
  • SDK: https://www.npmjs.com/package/@lanonasis/ai-sdk
  • CLI: https://www.npmjs.com/package/vortexai-l0

Lzero = persistent memory + edge reasoning + orchestration. Lead with the CLI for automation workflows, and use the SDK for web and multi-platform products.