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

@yestarz/ai-code-starter

v2.0.2

Published

跨平台项目与CLI管理工具

Readme

ACS - AI Code Starter

npm version license node version

多语言的统一命令行入口,帮助你在任何项目目录中快速唤起常用 AI 编码工具。

📖 简介

ACS 提供统一的 CLI 入口来管理本地项目,并一键启动 CodeXClaude CodeGemini 等 AI 编码工具。支持中文、英文、日语界面,可通过 acs lang 命令即时切换。

✨ 功能特性

  • 🗂️ 项目管理:集中管理常用项目路径,秒级切换目录
  • 🔧 CLI 集成:一条命令唤起多种 AI 助手
  • 💻 跨平台支持:兼容 Windows、macOS、Linux
  • 🎯 交互式体验:友好的命令行询问流程
  • 🔒 安全可靠:自动备份配置,出现异常可快速回滚
  • 🌍 多语言界面:支持 zh / en / jaacs lang 即时切换

🚀 快速开始

安装

# 全局安装
npm install -g @yestarz/ai-code-starter

# 或者从源码构建
git clone <repository-url>
cd ai-code-starter
npm install
npm run build
npm link

首次使用

运行任意命令会自动创建 ~/.acs/config.json

acs ls

📋 命令指南

🔍 查看项目列表

acs list
acs ls --json # 输出 JSON 结果

➕ 添加新项目

acs add
  • 交互式输入项目路径
  • 自动校验路径是否存在
  • 避免重复记录

❌ 删除项目

acs remove
acs rm
  • 多选删除
  • 二次确认
  • 失败自动回滚

🚀 启动 AI 工具

acs code
  1. 选择项目
  2. 选择 CLI 工具
  3. 自动切换目录并执行命令

🌐 切换显示语言

# 直接指定语言代码
acs lang en

# 或进入交互式选择
acs lang

支持 zh(中文)、en(English)、ja(日本語)。

⚙️ 配置文件

配置文件位于 ~/.acs/config.json

{
  "language": "zh",
  "projects": [
    {
      "name": "my-web-app",
      "path": "/Users/username/code/my-web-app"
    }
  ],
  "cli": [
    {
      "name": "CodeX",
      "command": "codex"
    },
    {
      "name": "Claude Code",
      "command": "claude"
    },
    {
      "name": "Gemini Cli",
      "command": "gemini"
    }
  ]
}
  • language:CLI 显示语言,默认 zh
  • projects:项目列表,路径会自动规范化
  • cli:可用的 AI 工具与其命令

💡 示例流程

$ acs add
? 请输入项目路径 › /Users/dev/my-react-app
✅ 添加成功:my-react-app -> /Users/dev/my-react-app

$ acs ls
共 1 个项目:
1. my-react-app -> /Users/dev/my-react-app

$ acs lang en
Language switched to English

🔧 开发与测试

npm run dev   # 开发模式
npm run build # 打包
npm test      # 运行测试
acs ls --verbose # 显示调试日志