@burtson-labs/agent-adapters-node
v1.0.6
Published
Node.js adapter for the Bandit Agent Framework.
Readme
@burtson-labs/agent-adapters-node
Node.js host adapter for the Bandit Agent Framework.
Wires @burtson-labs/agent-core's runtime to a Node process — shell execution, filesystem reads/writes, and an AgentRuntime factory configured for server-side hosts.
Install
pnpm add @burtson-labs/agent-adapters-node @burtson-labs/agent-coreWhat's inside
runCommand/CommandRunOptions/CommandRunResult— promise-wrappedchild_process.execwith cwd, env, and timeout knobs- Node-targeted
AgentRuntimefactory built on top ofcreateAgentRuntimefromagent-core - Step executors that read/write files through
fs/promises
Quick example
import { runCommand } from "@burtson-labs/agent-adapters-node";
const result = await runCommand("pnpm test", {
cwd: "/path/to/repo",
timeoutMs: 60_000
});
console.log(result.exitCode, result.stdout);License
Apache License 2.0 — Copyright 2026 Burtson Labs.
