mirror of
https://github.com/paperclipai/paperclip
synced 2026-03-25 11:21:48 +00:00
Introduce openclaw adapter package with server execution, CLI stream formatting, and UI config fields. Register the adapter across CLI, server, and UI registries. Add adapter label in all relevant pages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import type { TranscriptEntry } from "@paperclip/adapter-utils";
|
|
|
|
export function parseOpenClawStdoutLine(line: string, ts: string): TranscriptEntry[] {
|
|
return [{ kind: "stdout", ts, text: line }];
|
|
}
|