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

chiral-cli

v1.0.0

Published

Chiral Controller CLI - 手机远程控制 Kimi CLI 代码生成

Readme

Chiral CLI

手机远程控制 Kimi CLI 代码生成的命令行工具。

安装

npm install -g chiral-cli

使用方法

启动开发环境

# 使用默认配置启动 (superpowers 版本)
chiral run dev

# 使用普通 kimi 版本
chiral run dev --normal

# 指定端口
chiral run dev --port 3777 --client-port 5173

单独启动服务

# 只启动 MCP Server
chiral run server

# 只启动 Web Client
chiral run client

查看状态

chiral status

停止服务

chiral stop

配置管理

# 查看所有配置
chiral config

# 获取配置项
chiral config --get serverPort

# 设置配置项
chiral config --set serverPort --value 3778

快捷别名

安装后也可以使用 cc 命令:

cc run dev
cc status
cc stop

配置项

| 配置项 | 默认值 | 说明 | |--------|--------|------| | serverPort | 3777 | MCP Server 端口 | | clientPort | 5173 | Web Client 端口 | | kimiVersion | kimi-superpowers | 默认使用的 Kimi 版本 | | autoStart | false | 是否自动启动 |

环境变量

| 变量名 | 说明 | |--------|------| | CHIRAL_ROOT | Chiral Controller 项目根目录 | | KIMI_CLI | 使用的 Kimi CLI 版本 |

项目结构

Chiral CLI 需要配合 Chiral Controller 项目使用:

Chiral-Controller/
├── skill/          # MCP Server
├── mobile/         # Web Client
└── ...

CLI 会自动查找项目根目录(通过检查 skill 和 mobile 目录)。

License

MIT