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

@anolisa/copilot-shell

v2.7.0

Published

Copilot Shell - Entrance to AI-native OS

Readme

Copilot Shell

中文版

An AI-powered terminal assistant for code understanding, task automation, and system management. Copilot Shell is a core component of ANOLISA, built on top of upstream Qwen Code v0.9.0.

Features

  • Natural Language Coding — Describe changes in plain language to modify code, implement features, or fix bugs.
  • Code Analysis & Navigation — Understand entire project structures and answer code-related questions.
  • Multi-Tool Orchestration — Integrates file, shell, search, web, LSP, and MCP tools in a single session.
  • Interactive Shell/bash command to drop into an interactive shell; type exit to return.
  • Skill System — Local + remote skill discovery with priority-based fallback (Project > User > Extension > Remote).
  • Hooks System — PreToolUse events for intercepting tool calls before execution.
  • Git Workflow Automation — Automate commits, branch creation, conflict resolution, and release notes.
  • Multi-Provider Support — Aliyun Authentication (ECS RAM Role web auth or AK/SK), Qwen OAuth, Custom Provider (DashScope, DeepSeek, Kimi, GLM, MiniMax, or any OpenAI-compatible endpoint).
  • PTY Mode — Full pseudo-terminal support including sudo commands.
  • Extensible — Extend capabilities via MCP servers and custom skills.

Quick Start

Install from RPM

sudo yum install copilot-shell

Install from Source

cd src/copilot-shell
make build

Run

make start

# Interactive mode
cosh

# Or use alternative aliases
co
copilot

Authenticate

# Aliyun Authentication (default)
# - On ECS: auto-detects environment, opens browser or shows QR code for web auth
# - Elsewhere: enter AK/SK directly
cosh    # follow the on-screen prompts

** Note: ** Supports reusing openclaw model configurations.

Architecture

Copilot Shell uses a monorepo layout with npm workspaces:

| Package | Description | | --------------------- | -------------------------------------------------------------------------- | | packages/cli | Terminal UI layer — input handling, command parsing, Ink/React rendering | | packages/core | Backend core — AI model communication, prompt building, tool orchestration | | packages/test-utils | Shared test utilities |

Development

Prerequisites

  • Node.js >= 20.0.0
  • npm (included with Node.js)

Commands

make install          # Install dependencies
make build            # Build all packages
make test             # Run unit tests
make lint             # Lint with ESLint
make format           # Format with Prettier

Note: make install (i.e. npm install) automatically sets up husky pre-commit hooks. Staged files will be checked with Prettier and ESLint before each commit. Use git commit --no-verify to bypass if needed.

RPM Packaging

make rpm

Configuration

Copilot Shell uses a layered configuration system (highest priority first):

  1. Command-line arguments
  2. Environment variables
  3. Project settings (.copilot-shell/settings.json)
  4. User settings (~/.copilot-shell/settings.json)
  5. System settings
  6. Defaults

Documentation

License

Apache License 2.0 — see LICENSE for details.