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

@alint-js/model-adapter-acp

v0.6.0

Published

OpenAI-compatible HTTP gateway for Agent Client Protocol coding agents

Readme

@alint-js/model-adapter-acp

An OpenAI-compatible HTTP gateway for ACP coding agents.

What it does

The package keeps ACP session semantics outside alint. It exposes configured ACP agents as OpenAI-compatible models and implements:

  • GET /v1/models
  • non-streaming and SSE text chat completions
  • request-scoped OpenAI function tools exposed to ACP through MCP Streamable HTTP
  • deferred tool_calls continuation through a later role: tool message
  • tool_choice, usage, abort, continuation TTL, and permission-denial handling

The integration suite also runs a real runAlint file rule through ctx.model(), xsAI generateStructured, this HTTP gateway, an ACP session, and the MCP reportFindings tool before asserting the diagnostic returned by alint.

The MCP bridge uses a random route and bearer token for each completion turn. When the public gateway address is not loopback, configure mcpBaseUrl; request Host headers are not trusted to choose the authenticated MCP destination.

ACP has no equivalent for OpenAI temperature, and final ACP usage is unavailable while a deferred tool call is pending. Use onCompatibilityDiagnostic to observe those cases. Pending tool-call responses report zero usage because xsAI requires the OpenAI usage object.

How to use with a command

createCommandModel uses tinyexec to start one ACP process per completion. startGateway owns the loopback HTTP server and closes active ACP processes when it shuts down.

import { createCommandModel, startGateway } from '@alint-js/model-adapter-acp'

const gateway = await startGateway({
  cwd: process.cwd(),
  models: [createCommandModel({
    command: 'codex-acp',
    cwd: process.cwd(),
    id: 'codex',
    name: 'Codex ACP',
  })],
})

console.info(gateway.endpoint)
await gateway.shutdown()

The alint CLI wraps this interface. Users normally set driver = "acp" on a provider model in global setup or .alint/config.toml instead of starting the gateway themselves.

How to embed an ACP connection

import { createGateway } from '@alint-js/model-adapter-acp'
import { serve } from 'h3/node'

const app = createGateway({
  cwd: process.cwd(),
  mcpBaseUrl: 'http://127.0.0.1:7419',
  models: [{
    id: 'reviewer',
    name: 'Review Agent',
    openConnection: async () => ({
      kind: 'stream',
      stream: await openYourAcpStream(),
    }),
  }],
})

const server = await serve(app, { hostname: '127.0.0.1', port: 7419 }).ready()

// On shutdown, stop accepting HTTP first, then cancel retained ACP continuations.
await server.close()
await app.shutdown()

openConnection accepts either an official ACP AgentApp or Stream. An embedding application can own a different transport or lifecycle policy without using the command adapter.

Other OpenAI-compatible consumers can use the resulting ordinary provider endpoint:

[[providers]]
id = "acp"
type = "openai-compatible"
endpoint = "http://127.0.0.1:7419/v1"

When to use

  • You need existing OpenAI-compatible consumers to call an ACP coding agent.
  • The ACP agent supports MCP over HTTP when request tools are used.
  • The OpenAI client executes function calls and returns role: tool messages.

When not to use

  • Use an alint agent adapter when a rule intentionally depends on agent-specific behavior.
  • Do not use this package as an OpenAI Responses, realtime, audio, or image compatibility layer.
  • Sequential tool calls work with streaming and non-streaming chat completions.
  • Parallel tool calls are not supported.