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 🙏

© 2025 – Pkg Stats / Ryan Hefner

cline-acp

v0.1.6

Published

An ACP-compatible coding agent powered by Cline

Readme

Cline ACP

An ACP-compatible coding agent powered by Cline.

Use Cline from ACP clients such as Zed!

Features

  • Context @-mentions
  • Images
  • Tool calls with permission requests
  • Plan/Act mode switching
  • Multiple AI model support (via Cline's provider configuration)
  • Streaming responses
  • Tool integration testing capabilities

Prerequisites

You need the Cline CLI installed:

npm install -g cline

Configure your API key in Cline's settings before use.

Installation

npm install cline-acp

Usage

Start the ACP agent:

cline-acp

The agent will automatically connect to an existing Cline instance or start a new one.

With Zed

  1. Install dependencies (if not already done):

    npm install -g cline-acp
  2. Configure Zed by adding the agent server to your Zed settings.json:

    {
      "agent_servers": {
        "Cline": {
          "type": "custom",
          "command": "cline-acp"
        }
      }
    }

For more information about Zed's external agents, see Zed's External Agent documentation.

Other Clients

Any ACP-compatible client can use this agent. Learn more about the Agent Client Protocol.

How It Works

This adapter connects to Cline via its gRPC interface:

┌─────────────┐     ACP      ┌─────────────────┐    gRPC     ┌─────────────┐
│ ACP Client  │◄────────────►│    cline-acp    │◄───────────►│ cline-core  │
│   (Zed)     │   (stdio)    │                 │             │             │
└─────────────┘              └─────────────────┘             └─────────────┘

Cline handles all file operations and tool execution internally.

Image Support

Image attachments (screenshots, images) are supported when using a vision-capable model in Cline:

  • Images are converted to data URLs and passed to Cline's API
  • The model must support image/vision input (e.g., Claude 3.5 Sonnet, GPT-4V)
  • If you switch to a non-vision-capable model, you'll see an error: "No endpoints found that support image input"

To use images, simply paste or attach them in your ACP client (e.g., Zed).

Known Limitations

Due to limitations in the Cline CLI's gRPC interface, some ACP features are not fully supported:

| Feature | Status | Notes | | -------------------------- | ------------- | -------------------------------------------------------------------------------------------------------------------- | | Line numbers in file edits | Not available | Cline's ToolMessage struct doesn't include line number fields. File paths work, but jump-to-line is not supported. | | Available commands | Not available | Cline doesn't expose a list of available slash commands through its gRPC interface. |

These limitations are upstream in the Cline CLI and would require changes to the cline/cline repository to resolve.

Known Issues

  • Model switching during retry: If you switch models while Cline is retrying a failed API request, the session may become stuck. Workaround: Cancel and start a new session.

Development

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm run test:run

# Start in development mode
npm run dev

Acknowledgments

Inspired by claude-code-acp by Zed Industries.

Repository

https://github.com/Tonksthebear/cline-acp

License

Apache-2.0