@forwardimpact/librepl
v0.1.12
Published
Agent-friendly interactive REPL — exploratory interfaces that humans and agents navigate the same way.
Readme
librepl
Agent-friendly interactive REPL — exploratory interfaces that humans and agents navigate the same way.
Getting Started
import { Repl } from '@forwardimpact/librepl';
const repl = new Repl({
prompt: '> ',
onLine: async (line, state, output) => { output.end(line); },
});
await repl.start();