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

Function parseSteerInput

src/agent/steering.ts:23–27  ·  view source on GitHub ↗
(raw: string)

Source from the content-addressed store, hash-verified

21 * the caller can fall through to normal prompt handling.
22 */
23export function parseSteerInput(raw: string): string | null {
24 const m = raw.match(STEER_PREFIX);
25 if (!m) return null;
26 return raw.slice(m[0].length).trim();
27}
28
29/**
30 * Frame a steering note as the user message that gets injected mid-task. The

Callers 2

steering.test.tsFile · 0.85
AppFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected