惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
罗磊的独立博客
美团技术团队
B
Blog
量子位
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Blog — PlanetScale
Blog — PlanetScale
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题

Show HN

The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code. GitHub - tamerh/enju: Coordinating Humans, AI Agents, and Compute as Peers on a Shared Workflow Graph
GitHub - patriceckhart/zot-sdk-javascript: TypeScript SDK...
patriceckhar · 2026-06-19 · via Show HN

TypeScript SDK for embedding zot rpc in Node.js applications.

The SDK starts a long-lived zot rpc child process and talks newline-delimited JSON over stdin/stdout. It is intended for Node-compatible server runtimes. Do not import it in browser components or edge runtimes.

Install

npm install @patriceckhart/zot-sdk-javascript
# or
pnpm add @patriceckhart/zot-sdk-javascript
# or
yarn add @patriceckhart/zot-sdk-javascript
# or
bun add @patriceckhart/zot-sdk-javascript

During install, postinstall detects your OS and CPU. If zot is already on PATH, it uses that. Otherwise it downloads the matching release asset from GitHub, verifies checksums.txt, and stores the binary under the package vendor/ directory. Platform binaries are not committed to this package.

Bun

Bun may block dependency lifecycle scripts and print Blocked 1 postinstall. If that happens, either trust the package with Bun or run the installer manually after bun add:

node node_modules/@patriceckhart/zot-sdk-javascript/scripts/install-zot.js

If zot is already installed on your PATH, no download is needed.

Environment controls:

  • ZOT_SKIP_INSTALL=1: skip binary download.
  • ZOT_FORCE_INSTALL=1: download even when zot exists on PATH.
  • ZOT_VERSION=v0.2.31: pin a zot release tag.
  • ZOT_BINARY=/path/to/zot: use a specific binary at runtime.

Node.js usage

import { ZotClient } from "@patriceckhart/zot-sdk-javascript";

const zot = new ZotClient({
  provider: "anthropic",
  model: "claude-sonnet-4-5",
  cwd: process.cwd(),
});

for await (const event of zot.promptStream("Explain this project in 3 bullets")) {
  if (event.type === "text_delta") process.stdout.write(event.delta);
  if (event.type === "tool_call") console.log("\ntool:", event.name, event.args);
}

zot.close();

One-shot prompt:

import { createZotClient } from "@patriceckhart/zot-sdk-javascript";

const zot = await createZotClient({ provider: "openai", cwd: process.cwd() });
const result = await zot.prompt("Write a tiny README for this app");
console.log(result.text);
zot.close();

Framework usage

zot rpc is stateful, so keep one client per chat session on the server. The SDK works in any Node-compatible server framework that can spawn child processes. It does not work in browser code or edge runtimes.

Next.js route handler example

This minimal example streams text deltas as Server-Sent Events.

// app/api/chat/route.ts
import { ZotClient } from "@patriceckhart/zot-sdk-javascript";

export const runtime = "nodejs";

const clients = new Map<string, ZotClient>();

function getClient(sessionId: string) {
  let client = clients.get(sessionId);
  if (!client) {
    client = new ZotClient({
      provider: process.env.ZOT_PROVIDER ?? "anthropic",
      model: process.env.ZOT_MODEL,
      cwd: process.cwd(),
    });
    clients.set(sessionId, client);
  }
  return client;
}

export async function POST(req: Request) {
  const { message, sessionId = "default" } = await req.json();
  const client = getClient(sessionId);

  const stream = new ReadableStream({
    async start(controller) {
      const encoder = new TextEncoder();
      try {
        for await (const event of client.promptStream(message)) {
          if (event.type === "text_delta") {
            controller.enqueue(encoder.encode(`data: ${JSON.stringify({ delta: event.delta })}\n\n`));
          }
          if (event.type === "done") {
            controller.enqueue(encoder.encode("data: [DONE]\n\n"));
          }
        }
      } catch (error) {
        controller.enqueue(encoder.encode(`event: error\ndata: ${JSON.stringify(String(error))}\n\n`));
      } finally {
        controller.close();
      }
    },
  });

  return new Response(stream, {
    headers: {
      "content-type": "text/event-stream",
      "cache-control": "no-cache",
    },
  });
}

Nuxt server route example

// server/api/chat.post.ts
import { ZotClient } from "@patriceckhart/zot-sdk-javascript";

const zot = new ZotClient({
  provider: process.env.ZOT_PROVIDER ?? "anthropic",
  model: process.env.ZOT_MODEL,
  cwd: process.cwd(),
});

export default defineEventHandler(async (event) => {
  const body = await readBody<{ message: string }>(event);
  const result = await zot.prompt(body.message);
  return { text: result.text };
});

API

const client = new ZotClient(options);
await client.start();
await client.hello();
await client.ping();
await client.prompt("message");
client.promptStream("message");
await client.abort();
await client.compact();
await client.getState();
await client.getMessages();
await client.clear();
await client.setModel("model-id");
await client.getModels();
client.close();

Important options:

  • binary: path to zot. Defaults to ZOT_BINARY or zot.
  • provider, model, cwd, apiKey, baseUrl map to zot rpc flags.
  • systemPrompt, appendSystemPrompt, reasoning, maxSteps, noTools, tools map to zot rpc flags.
  • rpcToken: sends the initial hello token when ZOTCORE_RPC_TOKEN is set on the child process.

Auth

Use normal zot auth. Run zot and /login, or pass provider API keys via environment variables such as ANTHROPIC_API_KEY, OPENAI_API_KEY, GEMINI_API_KEY, KIMI_API_KEY, and others supported by zot.

Notes

  • One ZotClient wraps one zot rpc process, cwd, model, and session.
  • Use it only in Node-compatible server runtimes with child process support.
  • Only one prompt or compact operation should be active per client.
  • For multiple projects or concurrent chats, create multiple clients.
  • The process exits when closed or when stdin closes.

License

MIT