Core runtime logic for Terminal Agent UI (TAUI)
npm install @taui-standard/coreThe core runtime logic for the Terminal Agent UI (TAUI) standard.
Author: Tariq Shams
bash
npm install @taui-standard/core
`Usage
`typescript
import { TAUIRuntime } from '@taui-standard/core';const runtime = new TAUIRuntime();
runtime.setDocument(mySpecDoc);
runtime.onEvent((event) => {
console.log('Agent received event:', event);
});
``