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

@orderly.network/devkit

v1.0.0-beta.6

Published

CLI toolkit for scaffolding and building DEXs, plugins, and modules with Orderly

Downloads

559

Readme

@orderly.network/devkit

CLI toolkit for scaffolding plugins and modules, authenticating with Marketplace, submitting and managing plugins, and installing MCP / agent skill integrations.

Requirements

  • Node.js v20.19.0 or newer.

Installation

From npm

pnpm add -g @orderly.network/devkit
# or
npm install -g @orderly.network/devkit

Then run:

orderly-devkit --help

One-off without global install

pnpm dlx @orderly.network/devkit --help
# or
npx @orderly.network/devkit --help

Authentication

Login uses GitHub OAuth in the browser and a short-lived local callback server.

  • Credentials file: ~/.orderly/auth.json (created automatically).
  • The CLI opens the marketplace login page and completes OAuth callback automatically.
orderly-devkit login              # open browser, complete GitHub auth
orderly-devkit login --force      # re-authenticate even if already logged in
orderly-devkit login --port 9877  # if default port is busy (default is 9876)
orderly-devkit whoami
orderly-devkit logout

Commands overview

Run orderly-devkit <command> --help for options on any command.

create

Scaffold new artifacts (interactive).

| Subcommand | Description | | --------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | create plugin | Clone and render the plugin template (OrderlyNetwork/orderly-plugin-template), prompt for name/plugin id/interceptor target, and optionally generate .orderly-manifest.json. | | create module | Guided flow for module type (page, component, hook, utils, module). File generation is not implemented yet—it only collects choices and prints a summary. |

orderly-devkit create plugin
orderly-devkit create module
orderly-devkit create module --name my-module

Marketplace: submit, list, update, view

These commands use the Marketplace API. You must be logged in (orderly-devkit login).

submit — register a new plugin from a local directory.

  • Resolves metadata from package.json and/or .orderly-manifest.json.
  • repoUrl should be a GitHub URL (https://github.com/<owner>/<repo>); it can be filled from git remote when missing.
  • Tags must be from the allowed set: UI, Indicator, Order Entry, Trading, Chart, Portfolio, Analytics, Tool, Widget (max 5).
orderly-devkit submit
orderly-devkit submit --path ./my-plugin
orderly-devkit submit -p ./my-plugin --tags UI,Trading --dry-run
orderly-devkit submit -p ./my-plugin --storybook-url https://example.com/storybook

list — list plugins associated with your account.

orderly-devkit list
orderly-devkit list --json

update — PATCH plugin metadata for an existing listing (requires pluginId in .orderly-manifest.json).

Updatable fields include: name, description, tags, coverImages, storybookUrl, storybookTooltip, usagePrompt.

orderly-devkit update --path ./my-plugin --dry-run
orderly-devkit update -p ./my-plugin

view — fetch one plugin by ID as JSON.

orderly-devkit view <plugin-id>

mcp install

Install the Orderly SDK Docs MCP server entry for Claude, Codex, Cursor, OpenCode, etc.

orderly-devkit mcp install
orderly-devkit mcp install --client cursor --scope project
orderly-devkit mcp install --client all --scope user
orderly-devkit mcp install --dry-run
orderly-devkit mcp install --force

| Option | Description | | ---------- | ----------------------------------------------------------------------------------------- | | --client | claude, codex, cursor, opencode, all, or comma-separated list (default: all). | | --scope | user or project (default: user). | | --name | MCP server id in config (default: orderly-sdk-docs). |

skills install

Install Orderly agent skills for plugin workflows (create, write, add, submit) with npx -y skills add ….

Default behavior installs four skills non-interactively: orderly-plugin-create, orderly-plugin-write, orderly-plugin-add, orderly-plugin-submit.

orderly-devkit skills install
orderly-devkit skills install --list
orderly-devkit skills install --dry-run
orderly-devkit skills install other/repo --skill my-skill -y
orderly-devkit skills install -- --some-upstream-skills-flag

| Option | Description | | ----------------- | ----------------------------------------------------------------------- | | [source] | GitHub owner/repo, URL, or local path (default source is built in). | | --list | List skills in the source without installing. | | --skill / -s | Repeatable; install only named skills (replaces default four when set). | | --all | Forward --all to the skills CLI. | | --global / -g | Global install for the skills CLI. | | --agent / -a | Target agent(s), e.g. -a cursor. | | --copy | Copy files instead of symlinks. | | --yes / -y | With --list only: pass -y through. | | -- | Everything after -- is forwarded to the upstream skills CLI. |

Troubleshooting

  • Marketplace API errors — check your network connection; if the CLI reports a failed request, try again later or verify you are logged in (orderly-devkit whoami).
  • Login: port in use — run orderly-devkit login --port <free-port>.
  • Ctrl+C during prompts — the CLI handles enquirer cancellation and exits with a clear message when possible.
  • Invalid working directory — if the shell’s cwd was deleted, the CLI may switch to HOME or the package directory and warn you.

License

See the repository root license for this package’s distribution terms.