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

@jimuqu/devops-cli

v0.0.51

Published

Jimuqu DevOps CLI for humans, CI, and AI Agents.

Readme

Jimuqu DevOps CLI

@jimuqu/devops-cli provides the jimuqu-devops command for managing Jimuqu DevOps from a terminal, CI job, or AI Agent.

It can inspect resources, create API tokens, manage hosts/projects/deploy configs, trigger deployments, stream logs, cancel runs, and apply declarative JSON/YAML deployment files.

Install

npm install -g @jimuqu/devops-cli
jimuqu-devops --version

Give This CLI To An Agent

Send the Agent this skill file URL:

https://cdn.jsdelivr.net/npm/@jimuqu/devops-cli@latest/SKILL.md

Or use a fixed version for reproducible behavior. Replace <version> with the CLI version you want the Agent to use:

https://cdn.jsdelivr.net/npm/@jimuqu/devops-cli@<version>/SKILL.md

Tell the Agent:

Read this SKILL.md, install the CLI with npm, use JSON output, and deploy through Jimuqu DevOps:
https://cdn.jsdelivr.net/npm/@jimuqu/devops-cli@latest/SKILL.md

The skill file explains installation, authentication, API token usage, declarative apply, deployment triggers, log streaming, and safety rules for secrets.

Configure

Agents and CI should use environment variables:

export JIMUQU_DEVOPS_URL=http://127.0.0.1:18080
export JIMUQU_DEVOPS_TOKEN=jdp_xxx
jimuqu-devops status --json

Windows PowerShell:

$env:JIMUQU_DEVOPS_URL = "http://127.0.0.1:18080"
$env:JIMUQU_DEVOPS_TOKEN = "jdp_xxx"
jimuqu-devops status --json

Human operators can login once:

jimuqu-devops login --url http://127.0.0.1:18080 --username admin
jimuqu-devops status

The CLI stores url, username, and token only. It does not store passwords.

API Tokens

Create a long-lived token for Agents or CI:

jimuqu-devops token create --name codex-agent --json
jimuqu-devops token list --json
jimuqu-devops token revoke <token-id> --json

Full token values are shown only once at creation time.

Common Workflow

jimuqu-devops status --json
jimuqu-devops host list --json
jimuqu-devops project list --json
jimuqu-devops apply --file jimuqu-devops.yml --trigger --watch --json

--watch and --follow output JSONL events when --json is enabled.

Declarative Apply

apply supports .json, .yaml, and .yml files. It upserts resources by natural key:

  • host: name
  • notification channel: name
  • project: repo_url + branch

Sensitive values can reference local environment variables:

host:
  password: ${SSH_PASSWORD}
project:
  git_password: ${GIT_TOKEN}

Run:

jimuqu-devops apply --file jimuqu-devops.yml --trigger --watch --json

Notification Channel Body

notify create --file and notify update --file accept the same body shape as the notification_channel block in apply files. Use this to define notification channels declaratively without inspecting server or frontend source code.

DingTalk JSON example:

{
  "name": "prod-dingtalk",
  "type": "dingtalk",
  "is_default": true,
  "remark": "Production deploy alerts",
  "config": {
    "webhook_url": "https://oapi.dingtalk.com/robot/send?access_token=xxx",
    "secret": "${DINGTALK_SECRET}"
  }
}

Supported Notification Channel Types

| type | required config fields | optional config fields | | --- | --- | --- | | webhook | url | token, secret | | wechat | webhook_url | key | | dingtalk | webhook_url | secret | | feishu | webhook_url | none | | email | smtp_host, smtp_port, username, password, from, to | subject |

Command Examples

jimuqu-devops notify create --file dingtalk-channel.json --json
jimuqu-devops notify test <channel-id> --json

Discovery

Use these commands to inspect the exact installed command surface:

jimuqu-devops agent commands --json
jimuqu-devops agent examples --json
jimuqu-devops agent schema --json
jimuqu-devops --help

More Documentation

  • GitHub repository: https://github.com/chengliang4810/jimuqu-devops
  • Agent skill via npm CDN: https://cdn.jsdelivr.net/npm/@jimuqu/devops-cli@latest/SKILL.md
  • Agent skill via GitHub raw: https://raw.githubusercontent.com/chengliang4810/jimuqu-devops/main/agent-skills/jimuqu-devops/SKILL.md