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

cjhelper

v1.1.0

Published

基于 AI 的仓颉编程语言开发工具,支持智能问答和代码生成。

Downloads

15

Readme

仓颉 AI 助手

基于 AI 的仓颉编程语言开发工具,支持智能问答和代码生成。

🚀 快速开始

安装与启动

全局安装, 项目安装在C:\Users\Administrator\AppData\Roaming\npm\node_modules\

# 全局安装
npm i cjhelper -g

# 启动服务(任意目录均可)
cjhelper

Linux / macOS

# 全局安装
sudo npm i cjhelper -g

# 启动服务
cjhelper

# 或者使用项目中的脚本
bash start.sh

手动启动

# 安装依赖
npm install

# Windows
npm start

# Linux / macOS
bash start.sh

首次启动会自动下载知识库并配置环境,之后直接启动服务。

访问 http://127.0.0.1:5000


📖 使用说明

两种模式

  • 问答模式 - 基于知识库的智能问答
  • 代码生成模式 - 生成、编译、运行仓颉代码

🔧 环境要求

  • Python 3.12.10
  • 仓颉编译器 (cjc)

📁 项目结构

CangjieHelp/
├── cangjie-ask-backend/          # 后端核心模块
│   ├── cangjie-dev-run/          # 代码生成和运行
│   └── cangjie-dev-workflow/     # RAG 知识库问答
├── cangjie-ask-frontend/         # 前端项目
│   ├── app.py                    # Flask 后端
│   ├── static/                   # 静态资源
│   └── templates/                # HTML 模板
├── scripts/                      # 启动脚本
├── setup-knowledge-base.bat      # 环境配置脚本
└── README.md