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

@conduitai/bridge

v1.0.3

Published

Local bridge that connects Conduit AI web app to Claude Code Pro

Downloads

615

Readme

Conduit AI Bridge

Proceso local que corre en la máquina del usuario. Conecta el app en Vercel con el modelo LLM local, el filesystem, y Obsidian.

Por qué es local

  • Accede al CLI del modelo LLM instalado en la PC
  • Lee y escribe archivos locales (Obsidian vault, filesystem)
  • No tiene URL pública — solo escucha en localhost:3284

Instalación

npm install -g @conduitai/bridge
conduit-bridge start

Comandos disponibles

conduit-bridge start     # Inicia el bridge en localhost:3284
conduit-bridge stop      # Detiene el proceso
conduit-bridge status    # Muestra si está corriendo + PID + URL
conduit-bridge --version # Muestra la versión instalada

Setup para desarrollo (contribuidores)

git clone https://github.com/FlowingKi/conduit-ai-bridge.git
cd conduit-ai-bridge
npm install
cp .env.example .env
# Editar .env con los valores reales
npm run dev

Variables de entorno (.env)

PORT=3284
BRIDGE_TOKEN=<token secreto — debe coincidir con el configurado en el app>
SUPABASE_URL=<url del proyecto Supabase>
SUPABASE_SERVICE_ROLE_KEY=<service role key>

⚠️ Protocolo de actualización — OBLIGATORIO

Cada vez que el repo recibe cambios, el usuario debe actualizar su bridge local:

cd conduit-ai-bridge
git pull
npm install   # solo si cambiaron dependencias en package.json
npm run dev   # reiniciar el proceso

Cómo saber si el bridge está desactualizado:

  • El app muestra errores en el chat o features que no funcionan
  • La pantalla Monitor en /monitor muestra versión desactualizada
  • El app espera un campo en el request body que el bridge no acepta

Arquitectura

Vercel (Next.js app)
    │
    │  HTTP POST localhost:3284/chat/run
    │  { systemPrompt, messages, composioMcpUrl? }
    ▼
Bridge (Express local)
    │
    ├── spawn("claude", ["--print", prompt, "--mcp-config", tempFile?])
    │       ▲
    │       └── Composio MCP URL (tools SaaS via HTTP)
    │
    └── SSE stream de respuesta → Vercel → browser

Endpoints

| Método | Ruta | Descripción | |--------|------|-------------| | GET | /ping | Health check — devuelve { ok: true } | | POST | /chat/run | Ejecuta chat con el modelo LLM, stream SSE | | POST | /flow/run | Ejecuta un flow de canvas | | POST | /task/run | Ejecuta una tarea asíncrona |

Relación con el repo principal

  • App: https://github.com/FlowingKi/conduit-ai — deploya en Vercel
  • Bridge: https://github.com/FlowingKi/conduit-ai-bridge — este repo, corre local

Cuando se agrega una feature que requiere cambios en ambos repos, los dos deben commitearse y pushearse antes de cerrar la tarea.