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

@neuradesk/cli

v0.1.1

Published

NeuraCLI — send business goals from your terminal; NeuraServer runs domain SOP + multi-agent execution

Downloads

290

Readme

NeuraCLI

npm version License: MIT

Most AI CLIs edit files.

Neura sends goals.

Send a business goal from your terminal. NeuraDesk runs domain SOP + multi-agent collab on the server — same pipeline as /collab.

npm i -g @neuradesk/cli
export NEURA_SERVER_URL=https://gateway.datapro.asia
export NEURA_API_KEY=gw-your-key-from-settings
neura send "MCN: analyze competitor hooks for skincare vertical"

中文: 在终端把业务 Goal 交给 NeuraOS 执行,不是又一个改文件的 AI CLI。

Why not another coding CLI?

| | Claude Code / Codex | NeuraCLI | |---|---------------------|----------| | Unit of work | File / repo | Goal | | Routing | Local model | NeuraOS Intent → Plugin → Workflow | | Review | Terminal diff | Desk /collab?task=… | | Output | Code patch | Structured report + optional --json for CI |

Quick start

# Global install (recommended)
npm i -g @neuradesk/cli
neura send "Review our API release checklist" --timeout 120

# Or clone this repo (requires Bun >= 1.1)
git clone https://github.com/lqjack/neura-cli.git
cd neura-cli && bun install
bun run neura send "Review our API release checklist" --timeout 120

Auth

| Variable | Description | |----------|-------------| | NEURA_API_KEY | Bearer gw-… from NeuraDesk settings | | NEURA_SERVER_URL | Gateway base URL (default https://gateway.datapro.asia; local dev: http://127.0.0.1:3000) | | GITHUB_TOKEN | Optional — neura repo ensure owner/repo |

Config file (optional): ~/.config/neura/cli.env — see .env.example.

Demos

| Script | What it shows | |--------|----------------| | demo/01-send-mcn.sh | MCN business goal · ~90s | | demo/02-send-repo-software.sh | --repo owner/app · ~120s | | demo/03-send-json-ci.sh | --json for CI · ~60s |

./demo/01-send-mcn.sh

Record for README: asciinema rec -c "./demo/01-send-mcn.sh" — see docs/DEMO.md.

Core commands

neura send "<goal>" [--json] [--poll 2] [--timeout 600] [--repo owner/repo]
neura repo show | repo set owner/repo | repo ensure owner/repo
neura connector list | connector status | connector import
neura task action <taskId> slack.post_summary --connector slack

Full help: neura --help

Architecture

NeuraCLI is a thin client. It does not embed LLMs or plugins.

Terminal: neura send "…"
    → POST /api/cli/send (NeuraDesk)
    → Intent → Domain Router → Plugin Workflow → Multi-Agent Collab
    → GET /api/cli/tasks/:id (poll)
    → stdout finalReport + deskPath deep link

CI integration

Example GitHub Action: demo/github-action-neura-send.yml

Optional: repo + connectors

export GITHUB_TOKEN=ghp_…
neura repo ensure your-org/your-app
neura connector import --plugin software-evol-os-plugin
neura send --repo your-org/your-app "RIS: competitor scan" --force-run

Set NEURA_PLUGIN_BUNDLE_ROOT to a checkout of llm-gateway plugins for local connector list.

Related products

| Product | Role | |---------|------| | NeuraDesk | Web console — approval, plugins, quant | | NeuraRunner | Local sandbox — neura send --use-runner | | Plugin SDK | Domain SOP authoring |

Docs

| Doc | Description | |------|-------------| | docs/GTM.md | Marketing · PCRRSA · channels | | docs/DEMO.md | Demo runbook · asciinema | | docs/MARKETING-COPY.md | GitHub / PH / HN / 掘金 templates | | docs/OWNER-CHECKLIST.md | Resources you must provide | | docs/SYNC.md | Monorepo sync loop | | docs/MARKETING-PLAYBOOK.md | 后续营销步骤 · 12 周节奏 · 发版 SOP | | CONTRIBUTING.md | Where to send PRs |

Development (monorepo maintainers)

Sources sync from llm-gateway:

cd llm-gateway
bun run neura-cli:sync -- ../neura-cli
bun run neura-cli:push      # git push standalone repo
bun run neura-cli:publish   # npm @neuradesk/cli

Do not hand-edit src/ in this repo — run sync from monorepo.

License

MIT — see LICENSE

Links