MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / sendInput

Function sendInput

src/tools/browser/process-registry.ts:185–190  ·  view source on GitHub ↗
(name: string, data: string)

Source from the content-addressed store, hash-verified

183}
184
185export function sendInput(name: string, data: string): boolean {
186 const proc = processes.get(name);
187 if (!proc || proc.exitCode !== null) return false;
188 proc.child.stdin?.write(data);
189 return true;
190}
191
192function infoFor(proc: ManagedProcess): ProcessInfo {
193 return {

Callers

nothing calls this directly

Calls 2

getMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected